@kl1/contracts 1.1.24 → 1.1.25
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.
- package/dist/index.js +2644 -2444
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2642 -2444
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +22 -1
- package/dist/src/business-calendar/index.d.ts.map +1 -1
- package/dist/src/business-calendar/schema.d.ts +8 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +796 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +189 -21
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +140 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +9091 -305
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +140 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +140 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +140 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +140 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +140 -0
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +14 -834
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -2541,6 +2541,31 @@ export declare const instagramContract: {
|
|
2541
2541
|
note: string | null;
|
2542
2542
|
} | null;
|
2543
2543
|
}>;
|
2544
|
+
workflowRule: z.ZodObject<{
|
2545
|
+
id: z.ZodString;
|
2546
|
+
createdAt: z.ZodDate;
|
2547
|
+
updatedAt: z.ZodDate;
|
2548
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2549
|
+
name: z.ZodString;
|
2550
|
+
isActive: z.ZodBoolean;
|
2551
|
+
type: z.ZodString;
|
2552
|
+
}, "strip", z.ZodTypeAny, {
|
2553
|
+
type: string;
|
2554
|
+
id: string;
|
2555
|
+
name: string;
|
2556
|
+
createdAt: Date;
|
2557
|
+
updatedAt: Date;
|
2558
|
+
deletedAt: Date | null;
|
2559
|
+
isActive: boolean;
|
2560
|
+
}, {
|
2561
|
+
type: string;
|
2562
|
+
id: string;
|
2563
|
+
name: string;
|
2564
|
+
createdAt: Date;
|
2565
|
+
updatedAt: Date;
|
2566
|
+
deletedAt: Date | null;
|
2567
|
+
isActive: boolean;
|
2568
|
+
}>;
|
2544
2569
|
}, "strip", z.ZodTypeAny, {
|
2545
2570
|
id: string;
|
2546
2571
|
channel: {
|
@@ -2855,6 +2880,15 @@ export declare const instagramContract: {
|
|
2855
2880
|
note: string | null;
|
2856
2881
|
} | null;
|
2857
2882
|
};
|
2883
|
+
workflowRule: {
|
2884
|
+
type: string;
|
2885
|
+
id: string;
|
2886
|
+
name: string;
|
2887
|
+
createdAt: Date;
|
2888
|
+
updatedAt: Date;
|
2889
|
+
deletedAt: Date | null;
|
2890
|
+
isActive: boolean;
|
2891
|
+
};
|
2858
2892
|
}, {
|
2859
2893
|
id: string;
|
2860
2894
|
channel: {
|
@@ -3169,6 +3203,15 @@ export declare const instagramContract: {
|
|
3169
3203
|
note: string | null;
|
3170
3204
|
} | null;
|
3171
3205
|
};
|
3206
|
+
workflowRule: {
|
3207
|
+
type: string;
|
3208
|
+
id: string;
|
3209
|
+
name: string;
|
3210
|
+
createdAt: Date;
|
3211
|
+
updatedAt: Date;
|
3212
|
+
deletedAt: Date | null;
|
3213
|
+
isActive: boolean;
|
3214
|
+
};
|
3172
3215
|
}>;
|
3173
3216
|
upload: z.ZodObject<{
|
3174
3217
|
id: z.ZodString;
|
@@ -4805,6 +4848,31 @@ export declare const instagramContract: {
|
|
4805
4848
|
telephonySignature: string | null;
|
4806
4849
|
};
|
4807
4850
|
}>;
|
4851
|
+
workflowRule: z.ZodObject<{
|
4852
|
+
id: z.ZodString;
|
4853
|
+
createdAt: z.ZodDate;
|
4854
|
+
updatedAt: z.ZodDate;
|
4855
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
4856
|
+
name: z.ZodString;
|
4857
|
+
isActive: z.ZodBoolean;
|
4858
|
+
type: z.ZodString;
|
4859
|
+
}, "strip", z.ZodTypeAny, {
|
4860
|
+
type: string;
|
4861
|
+
id: string;
|
4862
|
+
name: string;
|
4863
|
+
createdAt: Date;
|
4864
|
+
updatedAt: Date;
|
4865
|
+
deletedAt: Date | null;
|
4866
|
+
isActive: boolean;
|
4867
|
+
}, {
|
4868
|
+
type: string;
|
4869
|
+
id: string;
|
4870
|
+
name: string;
|
4871
|
+
createdAt: Date;
|
4872
|
+
updatedAt: Date;
|
4873
|
+
deletedAt: Date | null;
|
4874
|
+
isActive: boolean;
|
4875
|
+
}>;
|
4808
4876
|
}, "strip", z.ZodTypeAny, {
|
4809
4877
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
4810
4878
|
message: string;
|
@@ -5229,6 +5297,24 @@ export declare const instagramContract: {
|
|
5229
5297
|
note: string | null;
|
5230
5298
|
} | null;
|
5231
5299
|
};
|
5300
|
+
workflowRule: {
|
5301
|
+
type: string;
|
5302
|
+
id: string;
|
5303
|
+
name: string;
|
5304
|
+
createdAt: Date;
|
5305
|
+
updatedAt: Date;
|
5306
|
+
deletedAt: Date | null;
|
5307
|
+
isActive: boolean;
|
5308
|
+
};
|
5309
|
+
};
|
5310
|
+
workflowRule: {
|
5311
|
+
type: string;
|
5312
|
+
id: string;
|
5313
|
+
name: string;
|
5314
|
+
createdAt: Date;
|
5315
|
+
updatedAt: Date;
|
5316
|
+
deletedAt: Date | null;
|
5317
|
+
isActive: boolean;
|
5232
5318
|
};
|
5233
5319
|
readAt: Date;
|
5234
5320
|
platformMessageId: string;
|
@@ -5869,6 +5955,24 @@ export declare const instagramContract: {
|
|
5869
5955
|
note: string | null;
|
5870
5956
|
} | null;
|
5871
5957
|
};
|
5958
|
+
workflowRule: {
|
5959
|
+
type: string;
|
5960
|
+
id: string;
|
5961
|
+
name: string;
|
5962
|
+
createdAt: Date;
|
5963
|
+
updatedAt: Date;
|
5964
|
+
deletedAt: Date | null;
|
5965
|
+
isActive: boolean;
|
5966
|
+
};
|
5967
|
+
};
|
5968
|
+
workflowRule: {
|
5969
|
+
type: string;
|
5970
|
+
id: string;
|
5971
|
+
name: string;
|
5972
|
+
createdAt: Date;
|
5973
|
+
updatedAt: Date;
|
5974
|
+
deletedAt: Date | null;
|
5975
|
+
isActive: boolean;
|
5872
5976
|
};
|
5873
5977
|
readAt: Date;
|
5874
5978
|
platformMessageId: string;
|
@@ -6511,6 +6615,24 @@ export declare const instagramContract: {
|
|
6511
6615
|
note: string | null;
|
6512
6616
|
} | null;
|
6513
6617
|
};
|
6618
|
+
workflowRule: {
|
6619
|
+
type: string;
|
6620
|
+
id: string;
|
6621
|
+
name: string;
|
6622
|
+
createdAt: Date;
|
6623
|
+
updatedAt: Date;
|
6624
|
+
deletedAt: Date | null;
|
6625
|
+
isActive: boolean;
|
6626
|
+
};
|
6627
|
+
};
|
6628
|
+
workflowRule: {
|
6629
|
+
type: string;
|
6630
|
+
id: string;
|
6631
|
+
name: string;
|
6632
|
+
createdAt: Date;
|
6633
|
+
updatedAt: Date;
|
6634
|
+
deletedAt: Date | null;
|
6635
|
+
isActive: boolean;
|
6514
6636
|
};
|
6515
6637
|
readAt: Date;
|
6516
6638
|
platformMessageId: string;
|
@@ -7154,6 +7276,24 @@ export declare const instagramContract: {
|
|
7154
7276
|
note: string | null;
|
7155
7277
|
} | null;
|
7156
7278
|
};
|
7279
|
+
workflowRule: {
|
7280
|
+
type: string;
|
7281
|
+
id: string;
|
7282
|
+
name: string;
|
7283
|
+
createdAt: Date;
|
7284
|
+
updatedAt: Date;
|
7285
|
+
deletedAt: Date | null;
|
7286
|
+
isActive: boolean;
|
7287
|
+
};
|
7288
|
+
};
|
7289
|
+
workflowRule: {
|
7290
|
+
type: string;
|
7291
|
+
id: string;
|
7292
|
+
name: string;
|
7293
|
+
createdAt: Date;
|
7294
|
+
updatedAt: Date;
|
7295
|
+
deletedAt: Date | null;
|
7296
|
+
isActive: boolean;
|
7157
7297
|
};
|
7158
7298
|
readAt: Date;
|
7159
7299
|
platformMessageId: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/instagram/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EACL,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAChF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAC1C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,iBAAiB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/instagram/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EACL,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAChF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAC1C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiF5B,CAAC"}
|
package/dist/src/line/index.d.ts
CHANGED
@@ -3376,6 +3376,31 @@ export declare const lineContract: {
|
|
3376
3376
|
note: string | null;
|
3377
3377
|
} | null;
|
3378
3378
|
}>;
|
3379
|
+
workflowRule: z.ZodObject<{
|
3380
|
+
id: z.ZodString;
|
3381
|
+
createdAt: z.ZodDate;
|
3382
|
+
updatedAt: z.ZodDate;
|
3383
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3384
|
+
name: z.ZodString;
|
3385
|
+
isActive: z.ZodBoolean;
|
3386
|
+
type: z.ZodString;
|
3387
|
+
}, "strip", z.ZodTypeAny, {
|
3388
|
+
type: string;
|
3389
|
+
id: string;
|
3390
|
+
name: string;
|
3391
|
+
createdAt: Date;
|
3392
|
+
updatedAt: Date;
|
3393
|
+
deletedAt: Date | null;
|
3394
|
+
isActive: boolean;
|
3395
|
+
}, {
|
3396
|
+
type: string;
|
3397
|
+
id: string;
|
3398
|
+
name: string;
|
3399
|
+
createdAt: Date;
|
3400
|
+
updatedAt: Date;
|
3401
|
+
deletedAt: Date | null;
|
3402
|
+
isActive: boolean;
|
3403
|
+
}>;
|
3379
3404
|
}, "strip", z.ZodTypeAny, {
|
3380
3405
|
id: string;
|
3381
3406
|
channel: {
|
@@ -3690,6 +3715,15 @@ export declare const lineContract: {
|
|
3690
3715
|
note: string | null;
|
3691
3716
|
} | null;
|
3692
3717
|
};
|
3718
|
+
workflowRule: {
|
3719
|
+
type: string;
|
3720
|
+
id: string;
|
3721
|
+
name: string;
|
3722
|
+
createdAt: Date;
|
3723
|
+
updatedAt: Date;
|
3724
|
+
deletedAt: Date | null;
|
3725
|
+
isActive: boolean;
|
3726
|
+
};
|
3693
3727
|
}, {
|
3694
3728
|
id: string;
|
3695
3729
|
channel: {
|
@@ -4004,6 +4038,15 @@ export declare const lineContract: {
|
|
4004
4038
|
note: string | null;
|
4005
4039
|
} | null;
|
4006
4040
|
};
|
4041
|
+
workflowRule: {
|
4042
|
+
type: string;
|
4043
|
+
id: string;
|
4044
|
+
name: string;
|
4045
|
+
createdAt: Date;
|
4046
|
+
updatedAt: Date;
|
4047
|
+
deletedAt: Date | null;
|
4048
|
+
isActive: boolean;
|
4049
|
+
};
|
4007
4050
|
}>;
|
4008
4051
|
upload: z.ZodObject<{
|
4009
4052
|
id: z.ZodString;
|
@@ -5640,6 +5683,31 @@ export declare const lineContract: {
|
|
5640
5683
|
telephonySignature: string | null;
|
5641
5684
|
};
|
5642
5685
|
}>;
|
5686
|
+
workflowRule: z.ZodObject<{
|
5687
|
+
id: z.ZodString;
|
5688
|
+
createdAt: z.ZodDate;
|
5689
|
+
updatedAt: z.ZodDate;
|
5690
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
5691
|
+
name: z.ZodString;
|
5692
|
+
isActive: z.ZodBoolean;
|
5693
|
+
type: z.ZodString;
|
5694
|
+
}, "strip", z.ZodTypeAny, {
|
5695
|
+
type: string;
|
5696
|
+
id: string;
|
5697
|
+
name: string;
|
5698
|
+
createdAt: Date;
|
5699
|
+
updatedAt: Date;
|
5700
|
+
deletedAt: Date | null;
|
5701
|
+
isActive: boolean;
|
5702
|
+
}, {
|
5703
|
+
type: string;
|
5704
|
+
id: string;
|
5705
|
+
name: string;
|
5706
|
+
createdAt: Date;
|
5707
|
+
updatedAt: Date;
|
5708
|
+
deletedAt: Date | null;
|
5709
|
+
isActive: boolean;
|
5710
|
+
}>;
|
5643
5711
|
}, "strip", z.ZodTypeAny, {
|
5644
5712
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
5645
5713
|
message: string;
|
@@ -6064,6 +6132,24 @@ export declare const lineContract: {
|
|
6064
6132
|
note: string | null;
|
6065
6133
|
} | null;
|
6066
6134
|
};
|
6135
|
+
workflowRule: {
|
6136
|
+
type: string;
|
6137
|
+
id: string;
|
6138
|
+
name: string;
|
6139
|
+
createdAt: Date;
|
6140
|
+
updatedAt: Date;
|
6141
|
+
deletedAt: Date | null;
|
6142
|
+
isActive: boolean;
|
6143
|
+
};
|
6144
|
+
};
|
6145
|
+
workflowRule: {
|
6146
|
+
type: string;
|
6147
|
+
id: string;
|
6148
|
+
name: string;
|
6149
|
+
createdAt: Date;
|
6150
|
+
updatedAt: Date;
|
6151
|
+
deletedAt: Date | null;
|
6152
|
+
isActive: boolean;
|
6067
6153
|
};
|
6068
6154
|
readAt: Date;
|
6069
6155
|
platformMessageId: string;
|
@@ -6704,6 +6790,24 @@ export declare const lineContract: {
|
|
6704
6790
|
note: string | null;
|
6705
6791
|
} | null;
|
6706
6792
|
};
|
6793
|
+
workflowRule: {
|
6794
|
+
type: string;
|
6795
|
+
id: string;
|
6796
|
+
name: string;
|
6797
|
+
createdAt: Date;
|
6798
|
+
updatedAt: Date;
|
6799
|
+
deletedAt: Date | null;
|
6800
|
+
isActive: boolean;
|
6801
|
+
};
|
6802
|
+
};
|
6803
|
+
workflowRule: {
|
6804
|
+
type: string;
|
6805
|
+
id: string;
|
6806
|
+
name: string;
|
6807
|
+
createdAt: Date;
|
6808
|
+
updatedAt: Date;
|
6809
|
+
deletedAt: Date | null;
|
6810
|
+
isActive: boolean;
|
6707
6811
|
};
|
6708
6812
|
readAt: Date;
|
6709
6813
|
platformMessageId: string;
|
@@ -7346,6 +7450,24 @@ export declare const lineContract: {
|
|
7346
7450
|
note: string | null;
|
7347
7451
|
} | null;
|
7348
7452
|
};
|
7453
|
+
workflowRule: {
|
7454
|
+
type: string;
|
7455
|
+
id: string;
|
7456
|
+
name: string;
|
7457
|
+
createdAt: Date;
|
7458
|
+
updatedAt: Date;
|
7459
|
+
deletedAt: Date | null;
|
7460
|
+
isActive: boolean;
|
7461
|
+
};
|
7462
|
+
};
|
7463
|
+
workflowRule: {
|
7464
|
+
type: string;
|
7465
|
+
id: string;
|
7466
|
+
name: string;
|
7467
|
+
createdAt: Date;
|
7468
|
+
updatedAt: Date;
|
7469
|
+
deletedAt: Date | null;
|
7470
|
+
isActive: boolean;
|
7349
7471
|
};
|
7350
7472
|
readAt: Date;
|
7351
7473
|
platformMessageId: string;
|
@@ -7989,6 +8111,24 @@ export declare const lineContract: {
|
|
7989
8111
|
note: string | null;
|
7990
8112
|
} | null;
|
7991
8113
|
};
|
8114
|
+
workflowRule: {
|
8115
|
+
type: string;
|
8116
|
+
id: string;
|
8117
|
+
name: string;
|
8118
|
+
createdAt: Date;
|
8119
|
+
updatedAt: Date;
|
8120
|
+
deletedAt: Date | null;
|
8121
|
+
isActive: boolean;
|
8122
|
+
};
|
8123
|
+
};
|
8124
|
+
workflowRule: {
|
8125
|
+
type: string;
|
8126
|
+
id: string;
|
8127
|
+
name: string;
|
8128
|
+
createdAt: Date;
|
8129
|
+
updatedAt: Date;
|
8130
|
+
deletedAt: Date | null;
|
8131
|
+
isActive: boolean;
|
7992
8132
|
};
|
7993
8133
|
readAt: Date;
|
7994
8134
|
platformMessageId: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAQrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAQrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EvB,CAAC"}
|
@@ -2544,6 +2544,31 @@ export declare const messengerContract: {
|
|
2544
2544
|
note: string | null;
|
2545
2545
|
} | null;
|
2546
2546
|
}>;
|
2547
|
+
workflowRule: z.ZodObject<{
|
2548
|
+
id: z.ZodString;
|
2549
|
+
createdAt: z.ZodDate;
|
2550
|
+
updatedAt: z.ZodDate;
|
2551
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2552
|
+
name: z.ZodString;
|
2553
|
+
isActive: z.ZodBoolean;
|
2554
|
+
type: z.ZodString;
|
2555
|
+
}, "strip", z.ZodTypeAny, {
|
2556
|
+
type: string;
|
2557
|
+
id: string;
|
2558
|
+
name: string;
|
2559
|
+
createdAt: Date;
|
2560
|
+
updatedAt: Date;
|
2561
|
+
deletedAt: Date | null;
|
2562
|
+
isActive: boolean;
|
2563
|
+
}, {
|
2564
|
+
type: string;
|
2565
|
+
id: string;
|
2566
|
+
name: string;
|
2567
|
+
createdAt: Date;
|
2568
|
+
updatedAt: Date;
|
2569
|
+
deletedAt: Date | null;
|
2570
|
+
isActive: boolean;
|
2571
|
+
}>;
|
2547
2572
|
}, "strip", z.ZodTypeAny, {
|
2548
2573
|
id: string;
|
2549
2574
|
channel: {
|
@@ -2858,6 +2883,15 @@ export declare const messengerContract: {
|
|
2858
2883
|
note: string | null;
|
2859
2884
|
} | null;
|
2860
2885
|
};
|
2886
|
+
workflowRule: {
|
2887
|
+
type: string;
|
2888
|
+
id: string;
|
2889
|
+
name: string;
|
2890
|
+
createdAt: Date;
|
2891
|
+
updatedAt: Date;
|
2892
|
+
deletedAt: Date | null;
|
2893
|
+
isActive: boolean;
|
2894
|
+
};
|
2861
2895
|
}, {
|
2862
2896
|
id: string;
|
2863
2897
|
channel: {
|
@@ -3172,6 +3206,15 @@ export declare const messengerContract: {
|
|
3172
3206
|
note: string | null;
|
3173
3207
|
} | null;
|
3174
3208
|
};
|
3209
|
+
workflowRule: {
|
3210
|
+
type: string;
|
3211
|
+
id: string;
|
3212
|
+
name: string;
|
3213
|
+
createdAt: Date;
|
3214
|
+
updatedAt: Date;
|
3215
|
+
deletedAt: Date | null;
|
3216
|
+
isActive: boolean;
|
3217
|
+
};
|
3175
3218
|
}>;
|
3176
3219
|
upload: z.ZodObject<{
|
3177
3220
|
id: z.ZodString;
|
@@ -4808,6 +4851,31 @@ export declare const messengerContract: {
|
|
4808
4851
|
telephonySignature: string | null;
|
4809
4852
|
};
|
4810
4853
|
}>;
|
4854
|
+
workflowRule: z.ZodObject<{
|
4855
|
+
id: z.ZodString;
|
4856
|
+
createdAt: z.ZodDate;
|
4857
|
+
updatedAt: z.ZodDate;
|
4858
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
4859
|
+
name: z.ZodString;
|
4860
|
+
isActive: z.ZodBoolean;
|
4861
|
+
type: z.ZodString;
|
4862
|
+
}, "strip", z.ZodTypeAny, {
|
4863
|
+
type: string;
|
4864
|
+
id: string;
|
4865
|
+
name: string;
|
4866
|
+
createdAt: Date;
|
4867
|
+
updatedAt: Date;
|
4868
|
+
deletedAt: Date | null;
|
4869
|
+
isActive: boolean;
|
4870
|
+
}, {
|
4871
|
+
type: string;
|
4872
|
+
id: string;
|
4873
|
+
name: string;
|
4874
|
+
createdAt: Date;
|
4875
|
+
updatedAt: Date;
|
4876
|
+
deletedAt: Date | null;
|
4877
|
+
isActive: boolean;
|
4878
|
+
}>;
|
4811
4879
|
}, "strip", z.ZodTypeAny, {
|
4812
4880
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
4813
4881
|
message: string;
|
@@ -5232,6 +5300,24 @@ export declare const messengerContract: {
|
|
5232
5300
|
note: string | null;
|
5233
5301
|
} | null;
|
5234
5302
|
};
|
5303
|
+
workflowRule: {
|
5304
|
+
type: string;
|
5305
|
+
id: string;
|
5306
|
+
name: string;
|
5307
|
+
createdAt: Date;
|
5308
|
+
updatedAt: Date;
|
5309
|
+
deletedAt: Date | null;
|
5310
|
+
isActive: boolean;
|
5311
|
+
};
|
5312
|
+
};
|
5313
|
+
workflowRule: {
|
5314
|
+
type: string;
|
5315
|
+
id: string;
|
5316
|
+
name: string;
|
5317
|
+
createdAt: Date;
|
5318
|
+
updatedAt: Date;
|
5319
|
+
deletedAt: Date | null;
|
5320
|
+
isActive: boolean;
|
5235
5321
|
};
|
5236
5322
|
readAt: Date;
|
5237
5323
|
platformMessageId: string;
|
@@ -5872,6 +5958,24 @@ export declare const messengerContract: {
|
|
5872
5958
|
note: string | null;
|
5873
5959
|
} | null;
|
5874
5960
|
};
|
5961
|
+
workflowRule: {
|
5962
|
+
type: string;
|
5963
|
+
id: string;
|
5964
|
+
name: string;
|
5965
|
+
createdAt: Date;
|
5966
|
+
updatedAt: Date;
|
5967
|
+
deletedAt: Date | null;
|
5968
|
+
isActive: boolean;
|
5969
|
+
};
|
5970
|
+
};
|
5971
|
+
workflowRule: {
|
5972
|
+
type: string;
|
5973
|
+
id: string;
|
5974
|
+
name: string;
|
5975
|
+
createdAt: Date;
|
5976
|
+
updatedAt: Date;
|
5977
|
+
deletedAt: Date | null;
|
5978
|
+
isActive: boolean;
|
5875
5979
|
};
|
5876
5980
|
readAt: Date;
|
5877
5981
|
platformMessageId: string;
|
@@ -6514,6 +6618,24 @@ export declare const messengerContract: {
|
|
6514
6618
|
note: string | null;
|
6515
6619
|
} | null;
|
6516
6620
|
};
|
6621
|
+
workflowRule: {
|
6622
|
+
type: string;
|
6623
|
+
id: string;
|
6624
|
+
name: string;
|
6625
|
+
createdAt: Date;
|
6626
|
+
updatedAt: Date;
|
6627
|
+
deletedAt: Date | null;
|
6628
|
+
isActive: boolean;
|
6629
|
+
};
|
6630
|
+
};
|
6631
|
+
workflowRule: {
|
6632
|
+
type: string;
|
6633
|
+
id: string;
|
6634
|
+
name: string;
|
6635
|
+
createdAt: Date;
|
6636
|
+
updatedAt: Date;
|
6637
|
+
deletedAt: Date | null;
|
6638
|
+
isActive: boolean;
|
6517
6639
|
};
|
6518
6640
|
readAt: Date;
|
6519
6641
|
platformMessageId: string;
|
@@ -7157,6 +7279,24 @@ export declare const messengerContract: {
|
|
7157
7279
|
note: string | null;
|
7158
7280
|
} | null;
|
7159
7281
|
};
|
7282
|
+
workflowRule: {
|
7283
|
+
type: string;
|
7284
|
+
id: string;
|
7285
|
+
name: string;
|
7286
|
+
createdAt: Date;
|
7287
|
+
updatedAt: Date;
|
7288
|
+
deletedAt: Date | null;
|
7289
|
+
isActive: boolean;
|
7290
|
+
};
|
7291
|
+
};
|
7292
|
+
workflowRule: {
|
7293
|
+
type: string;
|
7294
|
+
id: string;
|
7295
|
+
name: string;
|
7296
|
+
createdAt: Date;
|
7297
|
+
updatedAt: Date;
|
7298
|
+
deletedAt: Date | null;
|
7299
|
+
isActive: boolean;
|
7160
7300
|
};
|
7161
7301
|
readAt: Date;
|
7162
7302
|
platformMessageId: string;
|