hububb-models 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -541,6 +541,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
541
541
  checkOutInstructions?: string | undefined;
542
542
  checkInAgent?: string | undefined;
543
543
  }>>;
544
+ source: import("zod").ZodOptional<import("zod").ZodString>;
544
545
  }, "strip", import("zod").ZodTypeAny, {
545
546
  address: {
546
547
  full: string;
@@ -590,6 +591,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
590
591
  securityDepositFee?: number | undefined;
591
592
  };
592
593
  id?: string | undefined;
594
+ source?: string | undefined;
593
595
  picture?: {
594
596
  height?: number | undefined;
595
597
  width?: number | undefined;
@@ -726,6 +728,7 @@ export declare const ListingSchema: import("zod").ZodObject<{
726
728
  securityDepositFee?: number | undefined;
727
729
  };
728
730
  id?: string | undefined;
731
+ source?: string | undefined;
729
732
  picture?: {
730
733
  height?: number | undefined;
731
734
  width?: number | undefined;
@@ -981,6 +984,8 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
981
984
  checkOutInstructions: string;
982
985
  checkInAgent: string;
983
986
  }>;
987
+ source: import("zod").ZodOptional<import("zod").ZodString>;
988
+ externalId: import("zod").ZodOptional<import("zod").ZodString>;
984
989
  }, "strip", import("zod").ZodTypeAny, {
985
990
  address: {
986
991
  full: string;
@@ -1049,6 +1054,8 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
1049
1054
  cleaningFee: number;
1050
1055
  };
1051
1056
  nickname: string;
1057
+ source?: string | undefined;
1058
+ externalId?: string | undefined;
1052
1059
  publicDescription?: any;
1053
1060
  }, {
1054
1061
  address: {
@@ -1118,5 +1125,7 @@ export declare const CreateListingSchema: import("zod").ZodObject<{
1118
1125
  cleaningFee: number;
1119
1126
  };
1120
1127
  nickname: string;
1128
+ source?: string | undefined;
1129
+ externalId?: string | undefined;
1121
1130
  publicDescription?: any;
1122
1131
  }>;
@@ -131,6 +131,7 @@ exports.ListingSchema = (0, zod_1.object)({
131
131
  checkOutInstructions: (0, zod_1.optional)((0, zod_1.string)()),
132
132
  checkInAgent: (0, zod_1.optional)((0, zod_1.string)()),
133
133
  })),
134
+ source: (0, zod_1.optional)((0, zod_1.string)()),
134
135
  });
135
136
  exports.CreateListingSchema = (0, zod_1.object)({
136
137
  title: (0, zod_1.string)(),
@@ -172,4 +173,6 @@ exports.CreateListingSchema = (0, zod_1.object)({
172
173
  checkOutInstructions: (0, zod_1.string)(),
173
174
  checkInAgent: (0, zod_1.string)(),
174
175
  }),
176
+ source: (0, zod_1.optional)((0, zod_1.string)()),
177
+ externalId: (0, zod_1.optional)((0, zod_1.string)()),
175
178
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Models for Hububb application",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",