├── .fernignore ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.yml ├── README.md ├── package.json ├── src ├── Client.ts ├── api │ ├── index.ts │ └── resources │ │ ├── batches │ │ ├── client │ │ │ ├── Client.ts │ │ │ ├── index.ts │ │ │ └── requests │ │ │ │ ├── CreateBatchRequest.ts │ │ │ │ ├── ListBatchesRequest.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── Batch.ts │ │ │ ├── BatchList.ts │ │ │ ├── BatchStatus.ts │ │ │ ├── BatchStatusResponse.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── projects │ │ ├── client │ │ │ ├── Client.ts │ │ │ ├── index.ts │ │ │ └── requests │ │ │ │ ├── CreateProjectRequest.ts │ │ │ │ ├── ListProjectsRequest.ts │ │ │ │ ├── SetOntologyRequest.ts │ │ │ │ ├── UpdateProjectParametersRequest.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── Project.ts │ │ │ ├── ProjectPramHistory.ts │ │ │ └── index.ts │ │ ├── studio │ │ ├── client │ │ │ ├── Client.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── resources │ │ │ ├── assignments │ │ │ ├── client │ │ │ │ ├── Client.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── AssignTeammate.ts │ │ │ │ ├── Assignment.ts │ │ │ │ └── index.ts │ │ │ ├── batches │ │ │ ├── client │ │ │ │ ├── Client.ts │ │ │ │ ├── index.ts │ │ │ │ └── requests │ │ │ │ │ ├── SetBatchGroupRequest.ts │ │ │ │ │ ├── SetBatchPrioritiesRequest.ts │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── Batch.ts │ │ │ │ ├── BatchName.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── projectGroups │ │ │ ├── client │ │ │ ├── Client.ts │ │ │ ├── index.ts │ │ │ └── requests │ │ │ │ ├── CreateProjectGroupRequest.ts │ │ │ │ ├── UpdateProjectGroupRequest.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── ProjectGroup.ts │ │ │ ├── Workers.ts │ │ │ └── index.ts │ │ ├── tasks │ │ ├── client │ │ │ ├── Client.ts │ │ │ ├── index.ts │ │ │ └── requests │ │ │ │ ├── CancelTasksRequest.ts │ │ │ │ ├── ListTasksRequest.ts │ │ │ │ ├── SetTaskMetadataRequest.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── Annotations.ts │ │ │ ├── ListTasksResponse.ts │ │ │ ├── Task.ts │ │ │ ├── TaskGeometries.ts │ │ │ ├── TaskParams.ts │ │ │ ├── TaskType.ts │ │ │ └── index.ts │ │ ├── teammates │ │ ├── client │ │ │ ├── Client.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── Teammate.ts │ │ │ ├── TeamsInvite.ts │ │ │ └── index.ts │ │ └── video │ │ ├── client │ │ ├── Client.ts │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ ├── AnnotationAttribute.ts │ │ ├── Box.ts │ │ ├── CameraIntrinsics.ts │ │ ├── CameraRotationQuaternion.ts │ │ ├── Cuboid.ts │ │ ├── Ellipse.ts │ │ ├── Geometries.ts │ │ ├── Line.ts │ │ ├── Links.ts │ │ ├── ObjectsToAnnotate.ts │ │ ├── Point.ts │ │ ├── Polygon.ts │ │ ├── VideoPlaybackAnnotationRequest.ts │ │ ├── VideoPlaybackAnnotationResponse.ts │ │ ├── VideoPlaybackGeometries.ts │ │ ├── VideoPlaybackParams.ts │ │ └── index.ts ├── core │ ├── auth │ │ ├── BasicAuth.ts │ │ ├── BearerToken.ts │ │ └── index.ts │ ├── fetcher │ │ ├── APIResponse.ts │ │ ├── Fetcher.ts │ │ ├── Supplier.ts │ │ └── index.ts │ ├── index.ts │ └── schemas │ │ ├── Schema.ts │ │ ├── builders │ │ ├── date │ │ │ ├── date.ts │ │ │ └── index.ts │ │ ├── enum │ │ │ ├── enum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── lazy │ │ │ ├── index.ts │ │ │ ├── lazy.ts │ │ │ └── lazyObject.ts │ │ ├── list │ │ │ ├── index.ts │ │ │ └── list.ts │ │ ├── literals │ │ │ ├── index.ts │ │ │ └── stringLiteral.ts │ │ ├── object-like │ │ │ ├── getObjectLikeUtils.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── object │ │ │ ├── index.ts │ │ │ ├── object.ts │ │ │ ├── property.ts │ │ │ └── types.ts │ │ ├── primitives │ │ │ ├── any.ts │ │ │ ├── boolean.ts │ │ │ ├── index.ts │ │ │ ├── number.ts │ │ │ ├── string.ts │ │ │ └── unknown.ts │ │ ├── record │ │ │ ├── index.ts │ │ │ ├── record.ts │ │ │ └── types.ts │ │ ├── schema-utils │ │ │ ├── JsonError.ts │ │ │ ├── ParseError.ts │ │ │ ├── getSchemaUtils.ts │ │ │ ├── index.ts │ │ │ └── stringifyValidationErrors.ts │ │ ├── set │ │ │ ├── index.ts │ │ │ └── set.ts │ │ └── union │ │ │ ├── discriminant.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── union.ts │ │ ├── index.ts │ │ └── utils │ │ ├── MaybePromise.ts │ │ ├── OptionalRecord.ts │ │ ├── addQuestionMarksToNullableProperties.ts │ │ ├── createIdentitySchemaCreator.ts │ │ ├── entries.ts │ │ ├── filterObject.ts │ │ ├── isPlainObject.ts │ │ ├── keys.ts │ │ └── partition.ts ├── environments.ts ├── errors │ ├── ScaleError.ts │ ├── ScaleTimeoutError.ts │ └── index.ts ├── index.ts └── serialization │ ├── index.ts │ └── resources │ ├── batches │ ├── client │ │ ├── index.ts │ │ └── requests │ │ │ ├── CreateBatchRequest.ts │ │ │ └── index.ts │ ├── index.ts │ └── types │ │ ├── Batch.ts │ │ ├── BatchList.ts │ │ ├── BatchStatus.ts │ │ ├── BatchStatusResponse.ts │ │ └── index.ts │ ├── index.ts │ ├── projects │ ├── client │ │ ├── index.ts │ │ ├── list.ts │ │ └── requests │ │ │ ├── CreateProjectRequest.ts │ │ │ ├── SetOntologyRequest.ts │ │ │ ├── UpdateProjectParametersRequest.ts │ │ │ └── index.ts │ ├── index.ts │ └── types │ │ ├── Project.ts │ │ ├── ProjectPramHistory.ts │ │ └── index.ts │ ├── studio │ ├── index.ts │ └── resources │ │ ├── assignments │ │ ├── client │ │ │ ├── index.ts │ │ │ └── list.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── AssignTeammate.ts │ │ │ ├── Assignment.ts │ │ │ └── index.ts │ │ ├── batches │ │ ├── client │ │ │ ├── index.ts │ │ │ ├── list.ts │ │ │ ├── requests │ │ │ │ ├── SetBatchGroupRequest.ts │ │ │ │ ├── SetBatchPrioritiesRequest.ts │ │ │ │ └── index.ts │ │ │ ├── resetPriorities.ts │ │ │ └── setPriorities.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── Batch.ts │ │ │ ├── BatchName.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── projectGroups │ │ ├── client │ │ ├── index.ts │ │ └── requests │ │ │ ├── CreateProjectGroupRequest.ts │ │ │ ├── UpdateProjectGroupRequest.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ ├── ProjectGroup.ts │ │ ├── Workers.ts │ │ └── index.ts │ ├── tasks │ ├── client │ │ ├── index.ts │ │ └── requests │ │ │ ├── SetTaskMetadataRequest.ts │ │ │ └── index.ts │ ├── index.ts │ └── types │ │ ├── Annotations.ts │ │ ├── ListTasksResponse.ts │ │ ├── Task.ts │ │ ├── TaskGeometries.ts │ │ ├── TaskParams.ts │ │ ├── TaskType.ts │ │ └── index.ts │ ├── teammates │ ├── client │ │ ├── index.ts │ │ └── list.ts │ ├── index.ts │ └── types │ │ ├── Teammate.ts │ │ ├── TeamsInvite.ts │ │ └── index.ts │ └── video │ ├── index.ts │ └── types │ ├── AnnotationAttribute.ts │ ├── Box.ts │ ├── CameraIntrinsics.ts │ ├── CameraRotationQuaternion.ts │ ├── Cuboid.ts │ ├── Ellipse.ts │ ├── Geometries.ts │ ├── Line.ts │ ├── Links.ts │ ├── ObjectsToAnnotate.ts │ ├── Point.ts │ ├── Polygon.ts │ ├── VideoPlaybackAnnotationRequest.ts │ ├── VideoPlaybackAnnotationResponse.ts │ ├── VideoPlaybackGeometries.ts │ ├── VideoPlaybackParams.ts │ └── index.ts ├── static ├── compile-error.png ├── hero.png ├── method-autocomplete.png └── property-autocomplete.png ├── tsconfig.json └── yarn.lock /.fernignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/.fernignore -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/package.json -------------------------------------------------------------------------------- /src/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/Client.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./resources"; 2 | -------------------------------------------------------------------------------- /src/api/resources/batches/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/batches/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/batches/client/requests/CreateBatchRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/client/requests/CreateBatchRequest.ts -------------------------------------------------------------------------------- /src/api/resources/batches/client/requests/ListBatchesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/client/requests/ListBatchesRequest.ts -------------------------------------------------------------------------------- /src/api/resources/batches/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/batches/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/index.ts -------------------------------------------------------------------------------- /src/api/resources/batches/types/Batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/types/Batch.ts -------------------------------------------------------------------------------- /src/api/resources/batches/types/BatchList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/types/BatchList.ts -------------------------------------------------------------------------------- /src/api/resources/batches/types/BatchStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/types/BatchStatus.ts -------------------------------------------------------------------------------- /src/api/resources/batches/types/BatchStatusResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/types/BatchStatusResponse.ts -------------------------------------------------------------------------------- /src/api/resources/batches/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/batches/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/index.ts -------------------------------------------------------------------------------- /src/api/resources/projects/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/projects/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/projects/client/requests/CreateProjectRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/client/requests/CreateProjectRequest.ts -------------------------------------------------------------------------------- /src/api/resources/projects/client/requests/ListProjectsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/client/requests/ListProjectsRequest.ts -------------------------------------------------------------------------------- /src/api/resources/projects/client/requests/SetOntologyRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/client/requests/SetOntologyRequest.ts -------------------------------------------------------------------------------- /src/api/resources/projects/client/requests/UpdateProjectParametersRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/client/requests/UpdateProjectParametersRequest.ts -------------------------------------------------------------------------------- /src/api/resources/projects/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/index.ts -------------------------------------------------------------------------------- /src/api/resources/projects/types/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/types/Project.ts -------------------------------------------------------------------------------- /src/api/resources/projects/types/ProjectPramHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/types/ProjectPramHistory.ts -------------------------------------------------------------------------------- /src/api/resources/projects/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/projects/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/studio/client/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/api/resources/studio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/assignments/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/assignments/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/assignments/client/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/api/resources/studio/resources/assignments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/assignments/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/assignments/types/AssignTeammate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/assignments/types/AssignTeammate.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/assignments/types/Assignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/assignments/types/Assignment.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/assignments/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/assignments/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/batches/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/client/requests/SetBatchGroupRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/batches/client/requests/SetBatchGroupRequest.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/client/requests/SetBatchPrioritiesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/batches/client/requests/SetBatchPrioritiesRequest.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/batches/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/batches/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/types/Batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/batches/types/Batch.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/types/BatchName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/batches/types/BatchName.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/batches/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/batches/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/projectGroups/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/client/requests/CreateProjectGroupRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/projectGroups/client/requests/CreateProjectGroupRequest.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/client/requests/UpdateProjectGroupRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/projectGroups/client/requests/UpdateProjectGroupRequest.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/projectGroups/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/projectGroups/index.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/types/ProjectGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/projectGroups/types/ProjectGroup.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/types/Workers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/projectGroups/types/Workers.ts -------------------------------------------------------------------------------- /src/api/resources/studio/resources/projectGroups/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/studio/resources/projectGroups/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/tasks/client/requests/CancelTasksRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/client/requests/CancelTasksRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/client/requests/ListTasksRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/client/requests/ListTasksRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/client/requests/SetTaskMetadataRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/client/requests/SetTaskMetadataRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/index.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/types/Annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/types/Annotations.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/types/ListTasksResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/types/ListTasksResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/types/Task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/types/Task.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/types/TaskGeometries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/types/TaskGeometries.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/types/TaskParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/types/TaskParams.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/types/TaskType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/types/TaskType.ts -------------------------------------------------------------------------------- /src/api/resources/tasks/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/tasks/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/teammates/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/teammates/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/teammates/client/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/api/resources/teammates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/teammates/index.ts -------------------------------------------------------------------------------- /src/api/resources/teammates/types/Teammate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/teammates/types/Teammate.ts -------------------------------------------------------------------------------- /src/api/resources/teammates/types/TeamsInvite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/teammates/types/TeamsInvite.ts -------------------------------------------------------------------------------- /src/api/resources/teammates/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/teammates/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/video/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/video/client/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/api/resources/video/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/index.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/AnnotationAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/AnnotationAttribute.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/Box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/Box.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/CameraIntrinsics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/CameraIntrinsics.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/CameraRotationQuaternion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/CameraRotationQuaternion.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/Cuboid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/Cuboid.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/Ellipse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/Ellipse.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/Geometries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/Geometries.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/Line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/Line.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/Links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/Links.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/ObjectsToAnnotate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/ObjectsToAnnotate.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/Point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/Point.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/Polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/Polygon.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/VideoPlaybackAnnotationRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/VideoPlaybackAnnotationRequest.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/VideoPlaybackAnnotationResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/VideoPlaybackAnnotationResponse.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/VideoPlaybackGeometries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/VideoPlaybackGeometries.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/VideoPlaybackParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/VideoPlaybackParams.ts -------------------------------------------------------------------------------- /src/api/resources/video/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/api/resources/video/types/index.ts -------------------------------------------------------------------------------- /src/core/auth/BasicAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/auth/BasicAuth.ts -------------------------------------------------------------------------------- /src/core/auth/BearerToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/auth/BearerToken.ts -------------------------------------------------------------------------------- /src/core/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/auth/index.ts -------------------------------------------------------------------------------- /src/core/fetcher/APIResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/fetcher/APIResponse.ts -------------------------------------------------------------------------------- /src/core/fetcher/Fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/fetcher/Fetcher.ts -------------------------------------------------------------------------------- /src/core/fetcher/Supplier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/fetcher/Supplier.ts -------------------------------------------------------------------------------- /src/core/fetcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/fetcher/index.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/schemas/Schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/Schema.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/date/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/date/date.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/date/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/enum/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/enum/enum.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/enum/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/enum/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/lazy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/lazy/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/lazy/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/lazy/lazy.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/lazy/lazyObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/lazy/lazyObject.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/list/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/list/list.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/literals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/literals/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/literals/stringLiteral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/literals/stringLiteral.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object-like/getObjectLikeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/object-like/getObjectLikeUtils.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object-like/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/object-like/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object-like/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/object-like/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/object/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/object/object.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/object/property.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/object/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/primitives/any.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/primitives/boolean.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/primitives/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/primitives/number.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/primitives/string.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/unknown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/primitives/unknown.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/record/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/record/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/record/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/record/record.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/record/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/record/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/JsonError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/schema-utils/JsonError.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/ParseError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/schema-utils/ParseError.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/getSchemaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/schema-utils/getSchemaUtils.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/schema-utils/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/stringifyValidationErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/schema-utils/stringifyValidationErrors.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/set/index.ts: -------------------------------------------------------------------------------- 1 | export { set } from "./set"; 2 | -------------------------------------------------------------------------------- /src/core/schemas/builders/set/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/set/set.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/union/discriminant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/union/discriminant.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/union/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/union/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/union/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/union/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/union/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/builders/union/union.ts -------------------------------------------------------------------------------- /src/core/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/index.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/MaybePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/MaybePromise.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/OptionalRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/OptionalRecord.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/addQuestionMarksToNullableProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/addQuestionMarksToNullableProperties.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/createIdentitySchemaCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/createIdentitySchemaCreator.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/entries.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/filterObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/filterObject.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/isPlainObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/isPlainObject.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/keys.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/core/schemas/utils/partition.ts -------------------------------------------------------------------------------- /src/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/environments.ts -------------------------------------------------------------------------------- /src/errors/ScaleError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/errors/ScaleError.ts -------------------------------------------------------------------------------- /src/errors/ScaleTimeoutError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/errors/ScaleTimeoutError.ts -------------------------------------------------------------------------------- /src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/errors/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/serialization/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./resources"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/batches/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/batches/client/requests/CreateBatchRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/batches/client/requests/CreateBatchRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/batches/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/batches/client/requests/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/batches/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/batches/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/batches/types/Batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/batches/types/Batch.ts -------------------------------------------------------------------------------- /src/serialization/resources/batches/types/BatchList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/batches/types/BatchList.ts -------------------------------------------------------------------------------- /src/serialization/resources/batches/types/BatchStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/batches/types/BatchStatus.ts -------------------------------------------------------------------------------- /src/serialization/resources/batches/types/BatchStatusResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/batches/types/BatchStatusResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/batches/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/batches/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/client/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/client/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/client/list.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/client/requests/CreateProjectRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/client/requests/CreateProjectRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/client/requests/SetOntologyRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/client/requests/SetOntologyRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/client/requests/UpdateProjectParametersRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/client/requests/UpdateProjectParametersRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/client/requests/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/types/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/types/Project.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/types/ProjectPramHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/types/ProjectPramHistory.ts -------------------------------------------------------------------------------- /src/serialization/resources/projects/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/projects/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./resources"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/assignments/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/assignments/client/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/assignments/client/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/assignments/client/list.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/assignments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/assignments/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/assignments/types/AssignTeammate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/assignments/types/AssignTeammate.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/assignments/types/Assignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/assignments/types/Assignment.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/assignments/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/assignments/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/client/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/client/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/client/list.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/client/requests/SetBatchGroupRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/client/requests/SetBatchGroupRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/client/requests/SetBatchPrioritiesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/client/requests/SetBatchPrioritiesRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/client/requests/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/client/resetPriorities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/client/resetPriorities.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/client/setPriorities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/client/setPriorities.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/types/Batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/types/Batch.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/types/BatchName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/types/BatchName.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/batches/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/batches/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/projectGroups/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/projectGroups/client/requests/CreateProjectGroupRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/projectGroups/client/requests/CreateProjectGroupRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/projectGroups/client/requests/UpdateProjectGroupRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/projectGroups/client/requests/UpdateProjectGroupRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/projectGroups/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/projectGroups/client/requests/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/projectGroups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/projectGroups/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/projectGroups/types/ProjectGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/projectGroups/types/ProjectGroup.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/projectGroups/types/Workers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/projectGroups/types/Workers.ts -------------------------------------------------------------------------------- /src/serialization/resources/studio/resources/projectGroups/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/studio/resources/projectGroups/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/tasks/client/requests/SetTaskMetadataRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/client/requests/SetTaskMetadataRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/client/requests/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/types/Annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/types/Annotations.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/types/ListTasksResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/types/ListTasksResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/types/Task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/types/Task.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/types/TaskGeometries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/types/TaskGeometries.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/types/TaskParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/types/TaskParams.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/types/TaskType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/types/TaskType.ts -------------------------------------------------------------------------------- /src/serialization/resources/tasks/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/tasks/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/teammates/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/teammates/client/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/teammates/client/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/teammates/client/list.ts -------------------------------------------------------------------------------- /src/serialization/resources/teammates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/teammates/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/teammates/types/Teammate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/teammates/types/Teammate.ts -------------------------------------------------------------------------------- /src/serialization/resources/teammates/types/TeamsInvite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/teammates/types/TeamsInvite.ts -------------------------------------------------------------------------------- /src/serialization/resources/teammates/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/teammates/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/video/types/AnnotationAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/AnnotationAttribute.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/Box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/Box.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/CameraIntrinsics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/CameraIntrinsics.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/CameraRotationQuaternion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/CameraRotationQuaternion.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/Cuboid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/Cuboid.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/Ellipse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/Ellipse.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/Geometries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/Geometries.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/Line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/Line.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/Links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/Links.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/ObjectsToAnnotate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/ObjectsToAnnotate.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/Point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/Point.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/Polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/Polygon.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/VideoPlaybackAnnotationRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/VideoPlaybackAnnotationRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/VideoPlaybackAnnotationResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/VideoPlaybackAnnotationResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/VideoPlaybackGeometries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/VideoPlaybackGeometries.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/VideoPlaybackParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/VideoPlaybackParams.ts -------------------------------------------------------------------------------- /src/serialization/resources/video/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/src/serialization/resources/video/types/index.ts -------------------------------------------------------------------------------- /static/compile-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/static/compile-error.png -------------------------------------------------------------------------------- /static/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/static/hero.png -------------------------------------------------------------------------------- /static/method-autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/static/method-autocomplete.png -------------------------------------------------------------------------------- /static/property-autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/static/property-autocomplete.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scaleapi/scaleapi-node/HEAD/yarn.lock --------------------------------------------------------------------------------