@flantastic/study-time-types 1.0.12 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { User } from "../schema/user.schema";
2
- export interface SignInResponse {
2
+ export interface AuthSignInResponse {
3
3
  data: {
4
4
  user: User;
5
5
  };
@@ -1,3 +1,3 @@
1
- export interface SignOutResponse {
1
+ export interface AuthSignOutResponse {
2
2
  data: {};
3
3
  }
@@ -1,5 +1,5 @@
1
1
  import { User } from "../schema/user.schema";
2
- export interface SignUpResponse {
2
+ export interface AuthSignUpResponse {
3
3
  data: {
4
4
  user: User;
5
5
  };
@@ -1,3 +1,3 @@
1
- export interface AddStudyItemResponse {
1
+ export interface StudyItemAddResponse {
2
2
  data: {};
3
3
  }
@@ -1,3 +1,3 @@
1
- export interface UpdateStudyItemResponse {
1
+ export interface StudyItemUpdateResponse {
2
2
  data: {};
3
3
  }
@@ -1,5 +1,5 @@
1
1
  import { StudyItemEntity } from "../schema/studyItemEntity.schema";
2
- export interface GetStudyItemsResponse {
2
+ export interface StudyItemsGetResponse {
3
3
  data: [
4
4
  id: string,
5
5
  studyItem: StudyItemEntity
@@ -1,5 +1,5 @@
1
1
  import { User } from "../schema/user.schema";
2
- export interface GetUsersResponse {
2
+ export interface UsersGetResponse {
3
3
  data: {
4
4
  users: User[];
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flantastic/study-time-types",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {