Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "netsblox-cloud-client",
"version": "2.4.1",
"version": "2.5.0",
"description": "JS client for the netsblox cloud",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions src/types/CreateAssignmentData.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { GroupId } from "./GroupId";

export interface CreateAssignmentData { name: string, dueDate: any, }
export interface CreateAssignmentData { name: string, dueDate: any, }
4 changes: 4 additions & 0 deletions src/types/GroupJoinCode.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { GroupId } from "./GroupId";

export interface GroupJoinCode { group: GroupId, code: string, createdAt: any, }
3 changes: 3 additions & 0 deletions src/types/JoinCodeRequest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export interface JoinCodeRequest { code: string, }
3 changes: 3 additions & 0 deletions src/types/LogMessage.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export interface LogMessage { sender: string, recipients: Array<string>, content: object, }
4 changes: 4 additions & 0 deletions src/types/NewUserBatch.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { NewUser } from "./NewUser";

export interface NewUserBatch { users: Array<NewUser>, }
3 changes: 3 additions & 0 deletions src/types/NewUserErrorResponse.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export interface NewUserErrorResponse { username: string, status: number, message: string, }
3 changes: 2 additions & 1 deletion src/types/RoleMetadata.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { S3Key } from "./S3Key";

export interface RoleMetadata { name: string, code: string, media: string, }
export interface RoleMetadata { name: string, code: S3Key, media: S3Key, }
3 changes: 3 additions & 0 deletions src/types/S3Key.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type S3Key = string;
5 changes: 5 additions & 0 deletions src/types/UpdateUserData.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { GroupId } from "./GroupId";
import type { UserRole } from "./UserRole";

export interface UpdateUserData { email: string | null, groupId: GroupId | null, role: UserRole | null, }