lepto-types 1.0.8 → 1.0.12

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,3 +1,4 @@
1
1
  export * from './create-event.input';
2
2
  export * from './event.response';
3
+ export * from './update-event.input';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC"}
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./create-event.input"), exports);
18
18
  __exportStar(require("./event.response"), exports);
19
+ __exportStar(require("./update-event.input"), exports);
@@ -0,0 +1,5 @@
1
+ export interface UpdateEventInput {
2
+ title: string;
3
+ category: string;
4
+ }
5
+ //# sourceMappingURL=update-event.input.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-event.input.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event/update-event.input.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,5 @@
1
1
  export interface CreateEventAttendeeInput {
2
- userId: string | null;
3
- name: string;
2
+ id: string | null;
3
+ eventPseudo: string;
4
4
  }
5
5
  //# sourceMappingURL=create-event-attendee.input.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-event-attendee.input.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event-attendee/create-event-attendee.input.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;CACd"}
1
+ {"version":3,"file":"create-event-attendee.input.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event-attendee/create-event-attendee.input.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,wBAAwB;IACvC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;CACrB"}
@@ -1,5 +1,6 @@
1
1
  export interface EventAttendeeResponse {
2
2
  id: string;
3
3
  eventPseudo: string;
4
+ userId: string | null;
4
5
  }
5
6
  //# sourceMappingURL=event-attendee.response.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"event-attendee.response.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event-attendee/event-attendee.response.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,qBAAqB;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;CACrB"}
1
+ {"version":3,"file":"event-attendee.response.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event-attendee/event-attendee.response.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,qBAAqB;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB"}
@@ -1,4 +1,5 @@
1
1
  export interface UpdateEventAttendeeInput {
2
- eventPseudo?: string;
2
+ userId: string | null;
3
+ isCreator: boolean;
3
4
  }
4
5
  //# sourceMappingURL=update-event-attendee.input.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-event-attendee.input.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event-attendee/update-event-attendee.input.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,wBAAwB;IACvC,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB"}
1
+ {"version":3,"file":"update-event-attendee.input.d.ts","sourceRoot":"","sources":["../../../src/interfaces/event-attendee/update-event-attendee.input.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,SAAS,EAAE,OAAO,CAAC;CACpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lepto-types",
3
- "version": "1.0.8",
3
+ "version": "1.0.12",
4
4
  "description": "Shared types, interfaces, and enums for Lepto backend and frontend",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",