hububb-saas-shared 1.0.55 → 1.0.56

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,6 +1,7 @@
1
1
  export declare enum ServiceType {
2
- ON_DEMAND = "FULL",
3
- SUBSCRIPTION = "PRORATED"
2
+ INTEGRATION = "INTEGRATION",
3
+ ON_DEMAND = "ON_DEMAND",
4
+ RECURRING = "RECURRING"
4
5
  }
5
6
  export declare enum TaskStatus {
6
7
  PENDING = "PENDING",
@@ -3,8 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SubscriptionStatus = exports.PurchaseStatus = exports.PriceType = exports.InvoiceStatus = exports.InvoiceType = exports.TaskPriority = exports.TaskStatus = exports.ServiceType = void 0;
4
4
  var ServiceType;
5
5
  (function (ServiceType) {
6
- ServiceType["ON_DEMAND"] = "FULL";
7
- ServiceType["SUBSCRIPTION"] = "PRORATED";
6
+ ServiceType["INTEGRATION"] = "INTEGRATION";
7
+ ServiceType["ON_DEMAND"] = "ON_DEMAND";
8
+ ServiceType["RECURRING"] = "RECURRING";
8
9
  })(ServiceType || (exports.ServiceType = ServiceType = {}));
9
10
  var TaskStatus;
10
11
  (function (TaskStatus) {
@@ -441,6 +441,8 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
441
441
  propertyNickname?: string | undefined;
442
442
  }>>;
443
443
  isInquiryThread: import("zod").ZodOptional<import("zod").ZodBoolean>;
444
+ whatsappTemplateSent: import("zod").ZodOptional<import("zod").ZodBoolean>;
445
+ whatsappUserReplied: import("zod").ZodOptional<import("zod").ZodBoolean>;
444
446
  }, "strip", import("zod").ZodTypeAny, {
445
447
  type: "ONE_TO_ONE" | "GROUP";
446
448
  createdAt: import("@firebase/firestore-types").Timestamp;
@@ -534,6 +536,8 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
534
536
  propertyNickname?: string | undefined;
535
537
  } | undefined;
536
538
  isInquiryThread?: boolean | undefined;
539
+ whatsappTemplateSent?: boolean | undefined;
540
+ whatsappUserReplied?: boolean | undefined;
537
541
  }, {
538
542
  type: "ONE_TO_ONE" | "GROUP";
539
543
  createdAt: import("@firebase/firestore-types").Timestamp;
@@ -627,6 +631,8 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
627
631
  propertyNickname?: string | undefined;
628
632
  } | undefined;
629
633
  isInquiryThread?: boolean | undefined;
634
+ whatsappTemplateSent?: boolean | undefined;
635
+ whatsappUserReplied?: boolean | undefined;
630
636
  }>;
631
637
  export declare const MessageAutomationTemplateSchema: import("zod").ZodObject<{
632
638
  id: import("zod").ZodOptional<import("zod").ZodString>;
@@ -57,6 +57,8 @@ exports.ChatThreadSchema = (0, zod_1.object)({
57
57
  property: (0, zod_1.optional)(property_1.propertySchema),
58
58
  })),
59
59
  isInquiryThread: (0, zod_1.optional)((0, zod_1.boolean)()),
60
+ whatsappTemplateSent: (0, zod_1.optional)((0, zod_1.boolean)()),
61
+ whatsappUserReplied: (0, zod_1.optional)((0, zod_1.boolean)()),
60
62
  });
61
63
  exports.MessageAutomationTemplateSchema = (0, zod_1.object)({
62
64
  id: (0, zod_1.optional)((0, zod_1.string)()),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "hububb-saas-shared",
4
- "version": "1.0.55",
4
+ "version": "1.0.56",
5
5
  "description": "This is a shared package for the hububb saas project",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",