swoop-common 2.1.37 → 2.1.38

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.
@@ -31,6 +31,10 @@ export type { DTORegionCreate } from './index';
31
31
  export type { DTORegionEntity } from './index';
32
32
  export type { DTORegionRead } from './index';
33
33
  export type { DTORegionUpdate } from './index';
34
+ export type { DTOSnapshotCreate } from './index';
35
+ export type { DTOSnapshotEntity } from './index';
36
+ export type { DTOSnapshotRead } from './index';
37
+ export type { DTOSnapshotUpdate } from './index';
34
38
  export type { DTOTemplateCreate } from './index';
35
39
  export type { DTOTemplateEntity } from './index';
36
40
  export type { DTOTemplateRead } from './index';
@@ -33,6 +33,10 @@ export type { DTORegionCreate } from './models/DTORegionCreate';
33
33
  export type { DTORegionEntity } from './models/DTORegionEntity';
34
34
  export type { DTORegionRead } from './models/DTORegionRead';
35
35
  export type { DTORegionUpdate } from './models/DTORegionUpdate';
36
+ export type { DTOSnapshotCreate } from './models/DTOSnapshotCreate';
37
+ export type { DTOSnapshotEntity } from './models/DTOSnapshotEntity';
38
+ export type { DTOSnapshotRead } from './models/DTOSnapshotRead';
39
+ export type { DTOSnapshotUpdate } from './models/DTOSnapshotUpdate';
36
40
  export type { DTOTemplateCreate } from './models/DTOTemplateCreate';
37
41
  export type { DTOTemplateEntity } from './models/DTOTemplateEntity';
38
42
  export type { DTOTemplateRead } from './models/DTOTemplateRead';
@@ -0,0 +1,4 @@
1
+ export type DTOSnapshotCreate = {
2
+ name: string;
3
+ itineraryId: string;
4
+ };
@@ -0,0 +1,7 @@
1
+ import type { Metadata } from './Metadata';
2
+ export type DTOSnapshotEntity = {
3
+ id: string;
4
+ metadata: Metadata;
5
+ name: string;
6
+ itineraryId: string;
7
+ };
@@ -0,0 +1,7 @@
1
+ import type { Metadata } from './Metadata';
2
+ export type DTOSnapshotRead = {
3
+ id: string;
4
+ metadata: Metadata;
5
+ name: string;
6
+ itineraryId: string;
7
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ export type DTOSnapshotUpdate = {
2
+ name?: string;
3
+ itineraryId?: string;
4
+ };
@@ -1,8 +1,9 @@
1
+ import type { AssignedPassenger } from './AssignedPassenger';
1
2
  export type Discount = {
2
3
  name: string;
3
4
  reason: string;
4
5
  type: string;
5
6
  price: number;
6
7
  currency: string;
7
- assignedPassenger?: string;
8
+ assignedPassenger: AssignedPassenger;
8
9
  };
@@ -33,6 +33,10 @@ export type { DTORegionCreate } from './models/DTORegionCreate';
33
33
  export type { DTORegionEntity } from './models/DTORegionEntity';
34
34
  export type { DTORegionRead } from './models/DTORegionRead';
35
35
  export type { DTORegionUpdate } from './models/DTORegionUpdate';
36
+ export type { DTOSnapshotCreate } from './models/DTOSnapshotCreate';
37
+ export type { DTOSnapshotEntity } from './models/DTOSnapshotEntity';
38
+ export type { DTOSnapshotRead } from './models/DTOSnapshotRead';
39
+ export type { DTOSnapshotUpdate } from './models/DTOSnapshotUpdate';
36
40
  export type { DTOTemplateCreate } from './models/DTOTemplateCreate';
37
41
  export type { DTOTemplateEntity } from './models/DTOTemplateEntity';
38
42
  export type { DTOTemplateRead } from './models/DTOTemplateRead';
@@ -0,0 +1,4 @@
1
+ export type DTOSnapshotCreate = {
2
+ name: string;
3
+ itineraryId: string;
4
+ };
@@ -0,0 +1,7 @@
1
+ import type { Metadata } from './Metadata';
2
+ export type DTOSnapshotEntity = {
3
+ id: string;
4
+ metadata: Metadata;
5
+ name: string;
6
+ itineraryId: string;
7
+ };
@@ -0,0 +1,7 @@
1
+ import type { Metadata } from './Metadata';
2
+ export type DTOSnapshotRead = {
3
+ id: string;
4
+ metadata: Metadata;
5
+ name: string;
6
+ itineraryId: string;
7
+ };
@@ -0,0 +1,4 @@
1
+ export type DTOSnapshotUpdate = {
2
+ name?: string;
3
+ itineraryId?: string;
4
+ };
@@ -1,8 +1,9 @@
1
+ import type { AssignedPassenger } from './AssignedPassenger';
1
2
  export type Discount = {
2
3
  name: string;
3
4
  reason: string;
4
5
  type: string;
5
6
  price: number;
6
7
  currency: string;
7
- assignedPassenger?: string;
8
+ assignedPassenger: AssignedPassenger;
8
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.1.37",
3
+ "version": "2.1.38",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {