@kl1/contracts 1.1.74-uat → 1.1.76-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/contract.d.ts +18 -238
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +18 -0
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/validation.d.ts +9 -0
- package/dist/api-contracts/src/dashboard/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/index.d.ts +77 -4
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/validation.d.ts +1 -1
- package/dist/api-contracts/src/index.d.ts +1 -0
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/index.js +516 -497
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +516 -497
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +652 -620
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +551 -4289
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +218 -200
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +134 -160
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +68 -68
- package/dist/src/comment/schema.d.ts +20 -20
- package/dist/src/contact/index.d.ts +79 -79
- package/dist/src/contact/schema.d.ts +12 -12
- package/dist/src/contact/validation.d.ts +49 -49
- package/dist/src/contract.d.ts +5733 -23901
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +48 -93
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +40 -40
- package/dist/src/dashboard/index.d.ts +231 -233
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +260 -217
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/dashboard/validation.d.ts +0 -26
- package/dist/src/dashboard/validation.d.ts.map +1 -1
- package/dist/src/facebook-feed/index.d.ts +122 -122
- package/dist/src/facebook-feed/schema.d.ts +14 -14
- package/dist/src/facebook-feed/validation.d.ts +11 -11
- package/dist/src/index.d.ts +0 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +101 -101
- package/dist/src/line/index.d.ts +106 -106
- package/dist/src/line/validation.d.ts +5 -5
- package/dist/src/mail/account-contract.d.ts +8 -8
- package/dist/src/mail/mail-contract.d.ts +5993 -28466
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +5 -5
- package/dist/src/mail/message-contract.d.ts +63 -6423
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +1583 -17698
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +4 -7
- package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +40 -762
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +376 -5668
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +486 -5817
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +101 -101
- package/dist/src/messenger/validation.d.ts +11 -11
- package/dist/src/public-api/index.d.ts +59 -59
- package/dist/src/public-api/schema.d.ts +12 -12
- package/dist/src/public-api/validation.d.ts +19 -19
- package/dist/src/role/index.d.ts +0 -125
- package/dist/src/role/index.d.ts.map +1 -1
- package/dist/src/snippet/index.d.ts +105 -105
- package/dist/src/snippet/schema.d.ts +40 -40
- package/dist/src/telephony-cdr/index.d.ts +54 -54
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +14 -14
- package/dist/src/ticket/index.d.ts +111 -111
- package/dist/src/ticket/schema.d.ts +21 -21
- package/dist/src/upload/schema.d.ts +3 -3
- package/dist/src/viber/index.d.ts +101 -101
- package/dist/src/webchat/index.d.ts +101 -101
- package/dist/src/workflow-rule/index.d.ts +26 -26
- package/package.json +1 -1
@@ -5,7 +5,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
5
5
|
updatedAt: z.ZodDate;
|
6
6
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7
7
|
message: z.ZodNullable<z.ZodString>;
|
8
|
-
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
8
|
+
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>]>;
|
9
9
|
metadata: z.ZodAny;
|
10
10
|
platformId: z.ZodString;
|
11
11
|
platformMessageId: z.ZodString;
|
@@ -734,10 +734,9 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
734
734
|
fileSize: z.ZodNumber;
|
735
735
|
fileKey: z.ZodString;
|
736
736
|
fileUrl: z.ZodNullable<z.ZodString>;
|
737
|
-
status: z.
|
737
|
+
status: z.ZodOptional<z.ZodString>;
|
738
738
|
}, "strip", z.ZodTypeAny, {
|
739
739
|
id: string;
|
740
|
-
status: string | null;
|
741
740
|
createdAt: Date;
|
742
741
|
updatedAt: Date;
|
743
742
|
deletedAt: Date | null;
|
@@ -746,9 +745,9 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
746
745
|
bucketName: string;
|
747
746
|
fileSize: number;
|
748
747
|
fileUrl: string | null;
|
748
|
+
status?: string | undefined;
|
749
749
|
}, {
|
750
750
|
id: string;
|
751
|
-
status: string | null;
|
752
751
|
createdAt: Date;
|
753
752
|
updatedAt: Date;
|
754
753
|
deletedAt: Date | null;
|
@@ -757,6 +756,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
757
756
|
bucketName: string;
|
758
757
|
fileSize: number;
|
759
758
|
fileUrl: string | null;
|
759
|
+
status?: string | undefined;
|
760
760
|
}>, "many">;
|
761
761
|
}, "strip", z.ZodTypeAny, {
|
762
762
|
id: string;
|
@@ -783,7 +783,6 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
783
783
|
dateValue: Date | null;
|
784
784
|
uploads: {
|
785
785
|
id: string;
|
786
|
-
status: string | null;
|
787
786
|
createdAt: Date;
|
788
787
|
updatedAt: Date;
|
789
788
|
deletedAt: Date | null;
|
@@ -792,6 +791,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
792
791
|
bucketName: string;
|
793
792
|
fileSize: number;
|
794
793
|
fileUrl: string | null;
|
794
|
+
status?: string | undefined;
|
795
795
|
}[];
|
796
796
|
}, {
|
797
797
|
id: string;
|
@@ -818,7 +818,6 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
818
818
|
dateValue: Date | null;
|
819
819
|
uploads: {
|
820
820
|
id: string;
|
821
|
-
status: string | null;
|
822
821
|
createdAt: Date;
|
823
822
|
updatedAt: Date;
|
824
823
|
deletedAt: Date | null;
|
@@ -827,6 +826,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
827
826
|
bucketName: string;
|
828
827
|
fileSize: number;
|
829
828
|
fileUrl: string | null;
|
829
|
+
status?: string | undefined;
|
830
830
|
}[];
|
831
831
|
}>, "many">;
|
832
832
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -966,7 +966,6 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
966
966
|
dateValue: Date | null;
|
967
967
|
uploads: {
|
968
968
|
id: string;
|
969
|
-
status: string | null;
|
970
969
|
createdAt: Date;
|
971
970
|
updatedAt: Date;
|
972
971
|
deletedAt: Date | null;
|
@@ -975,6 +974,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
975
974
|
bucketName: string;
|
976
975
|
fileSize: number;
|
977
976
|
fileUrl: string | null;
|
977
|
+
status?: string | undefined;
|
978
978
|
}[];
|
979
979
|
}[];
|
980
980
|
company: {
|
@@ -1062,7 +1062,6 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1062
1062
|
dateValue: Date | null;
|
1063
1063
|
uploads: {
|
1064
1064
|
id: string;
|
1065
|
-
status: string | null;
|
1066
1065
|
createdAt: Date;
|
1067
1066
|
updatedAt: Date;
|
1068
1067
|
deletedAt: Date | null;
|
@@ -1071,6 +1070,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1071
1070
|
bucketName: string;
|
1072
1071
|
fileSize: number;
|
1073
1072
|
fileUrl: string | null;
|
1073
|
+
status?: string | undefined;
|
1074
1074
|
}[];
|
1075
1075
|
}[];
|
1076
1076
|
company: {
|
@@ -1171,7 +1171,6 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1171
1171
|
dateValue: Date | null;
|
1172
1172
|
uploads: {
|
1173
1173
|
id: string;
|
1174
|
-
status: string | null;
|
1175
1174
|
createdAt: Date;
|
1176
1175
|
updatedAt: Date;
|
1177
1176
|
deletedAt: Date | null;
|
@@ -1180,6 +1179,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1180
1179
|
bucketName: string;
|
1181
1180
|
fileSize: number;
|
1182
1181
|
fileUrl: string | null;
|
1182
|
+
status?: string | undefined;
|
1183
1183
|
}[];
|
1184
1184
|
}[];
|
1185
1185
|
company: {
|
@@ -1282,7 +1282,6 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1282
1282
|
dateValue: Date | null;
|
1283
1283
|
uploads: {
|
1284
1284
|
id: string;
|
1285
|
-
status: string | null;
|
1286
1285
|
createdAt: Date;
|
1287
1286
|
updatedAt: Date;
|
1288
1287
|
deletedAt: Date | null;
|
@@ -1291,6 +1290,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1291
1290
|
bucketName: string;
|
1292
1291
|
fileSize: number;
|
1293
1292
|
fileUrl: string | null;
|
1293
|
+
status?: string | undefined;
|
1294
1294
|
}[];
|
1295
1295
|
}[];
|
1296
1296
|
company: {
|
@@ -1556,7 +1556,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1556
1556
|
imageURL: z.ZodString;
|
1557
1557
|
permalinkURL: z.ZodString;
|
1558
1558
|
}, "strip", z.ZodTypeAny, {
|
1559
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1559
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1560
1560
|
message: string | null;
|
1561
1561
|
id: string;
|
1562
1562
|
channel: {
|
@@ -1725,7 +1725,6 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1725
1725
|
dateValue: Date | null;
|
1726
1726
|
uploads: {
|
1727
1727
|
id: string;
|
1728
|
-
status: string | null;
|
1729
1728
|
createdAt: Date;
|
1730
1729
|
updatedAt: Date;
|
1731
1730
|
deletedAt: Date | null;
|
@@ -1734,6 +1733,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1734
1733
|
bucketName: string;
|
1735
1734
|
fileSize: number;
|
1736
1735
|
fileUrl: string | null;
|
1736
|
+
status?: string | undefined;
|
1737
1737
|
}[];
|
1738
1738
|
}[];
|
1739
1739
|
company: {
|
@@ -1800,7 +1800,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1800
1800
|
permalinkURL: string;
|
1801
1801
|
metadata?: any;
|
1802
1802
|
}, {
|
1803
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1803
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1804
1804
|
message: string | null;
|
1805
1805
|
id: string;
|
1806
1806
|
channel: {
|
@@ -1969,7 +1969,6 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1969
1969
|
dateValue: Date | null;
|
1970
1970
|
uploads: {
|
1971
1971
|
id: string;
|
1972
|
-
status: string | null;
|
1973
1972
|
createdAt: Date;
|
1974
1973
|
updatedAt: Date;
|
1975
1974
|
deletedAt: Date | null;
|
@@ -1978,6 +1977,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
1978
1977
|
bucketName: string;
|
1979
1978
|
fileSize: number;
|
1980
1979
|
fileUrl: string | null;
|
1980
|
+
status?: string | undefined;
|
1981
1981
|
}[];
|
1982
1982
|
}[];
|
1983
1983
|
company: {
|
@@ -678,10 +678,9 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
678
678
|
fileSize: z.ZodNumber;
|
679
679
|
fileKey: z.ZodString;
|
680
680
|
fileUrl: z.ZodNullable<z.ZodString>;
|
681
|
-
status: z.
|
681
|
+
status: z.ZodOptional<z.ZodString>;
|
682
682
|
}, "strip", z.ZodTypeAny, {
|
683
683
|
id: string;
|
684
|
-
status: string | null;
|
685
684
|
createdAt: Date;
|
686
685
|
updatedAt: Date;
|
687
686
|
deletedAt: Date | null;
|
@@ -690,9 +689,9 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
690
689
|
bucketName: string;
|
691
690
|
fileSize: number;
|
692
691
|
fileUrl: string | null;
|
692
|
+
status?: string | undefined;
|
693
693
|
}, {
|
694
694
|
id: string;
|
695
|
-
status: string | null;
|
696
695
|
createdAt: Date;
|
697
696
|
updatedAt: Date;
|
698
697
|
deletedAt: Date | null;
|
@@ -701,6 +700,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
701
700
|
bucketName: string;
|
702
701
|
fileSize: number;
|
703
702
|
fileUrl: string | null;
|
703
|
+
status?: string | undefined;
|
704
704
|
}>, "many">;
|
705
705
|
}, "strip", z.ZodTypeAny, {
|
706
706
|
id: string;
|
@@ -727,7 +727,6 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
727
727
|
dateValue: Date | null;
|
728
728
|
uploads: {
|
729
729
|
id: string;
|
730
|
-
status: string | null;
|
731
730
|
createdAt: Date;
|
732
731
|
updatedAt: Date;
|
733
732
|
deletedAt: Date | null;
|
@@ -736,6 +735,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
736
735
|
bucketName: string;
|
737
736
|
fileSize: number;
|
738
737
|
fileUrl: string | null;
|
738
|
+
status?: string | undefined;
|
739
739
|
}[];
|
740
740
|
}, {
|
741
741
|
id: string;
|
@@ -762,7 +762,6 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
762
762
|
dateValue: Date | null;
|
763
763
|
uploads: {
|
764
764
|
id: string;
|
765
|
-
status: string | null;
|
766
765
|
createdAt: Date;
|
767
766
|
updatedAt: Date;
|
768
767
|
deletedAt: Date | null;
|
@@ -771,6 +770,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
771
770
|
bucketName: string;
|
772
771
|
fileSize: number;
|
773
772
|
fileUrl: string | null;
|
773
|
+
status?: string | undefined;
|
774
774
|
}[];
|
775
775
|
}>, "many">;
|
776
776
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -910,7 +910,6 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
910
910
|
dateValue: Date | null;
|
911
911
|
uploads: {
|
912
912
|
id: string;
|
913
|
-
status: string | null;
|
914
913
|
createdAt: Date;
|
915
914
|
updatedAt: Date;
|
916
915
|
deletedAt: Date | null;
|
@@ -919,6 +918,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
919
918
|
bucketName: string;
|
920
919
|
fileSize: number;
|
921
920
|
fileUrl: string | null;
|
921
|
+
status?: string | undefined;
|
922
922
|
}[];
|
923
923
|
}[];
|
924
924
|
company: {
|
@@ -1006,7 +1006,6 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1006
1006
|
dateValue: Date | null;
|
1007
1007
|
uploads: {
|
1008
1008
|
id: string;
|
1009
|
-
status: string | null;
|
1010
1009
|
createdAt: Date;
|
1011
1010
|
updatedAt: Date;
|
1012
1011
|
deletedAt: Date | null;
|
@@ -1015,6 +1014,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1015
1014
|
bucketName: string;
|
1016
1015
|
fileSize: number;
|
1017
1016
|
fileUrl: string | null;
|
1017
|
+
status?: string | undefined;
|
1018
1018
|
}[];
|
1019
1019
|
}[];
|
1020
1020
|
company: {
|
@@ -1115,7 +1115,6 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1115
1115
|
dateValue: Date | null;
|
1116
1116
|
uploads: {
|
1117
1117
|
id: string;
|
1118
|
-
status: string | null;
|
1119
1118
|
createdAt: Date;
|
1120
1119
|
updatedAt: Date;
|
1121
1120
|
deletedAt: Date | null;
|
@@ -1124,6 +1123,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1124
1123
|
bucketName: string;
|
1125
1124
|
fileSize: number;
|
1126
1125
|
fileUrl: string | null;
|
1126
|
+
status?: string | undefined;
|
1127
1127
|
}[];
|
1128
1128
|
}[];
|
1129
1129
|
company: {
|
@@ -1226,7 +1226,6 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1226
1226
|
dateValue: Date | null;
|
1227
1227
|
uploads: {
|
1228
1228
|
id: string;
|
1229
|
-
status: string | null;
|
1230
1229
|
createdAt: Date;
|
1231
1230
|
updatedAt: Date;
|
1232
1231
|
deletedAt: Date | null;
|
@@ -1235,6 +1234,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1235
1234
|
bucketName: string;
|
1236
1235
|
fileSize: number;
|
1237
1236
|
fileUrl: string | null;
|
1237
|
+
status?: string | undefined;
|
1238
1238
|
}[];
|
1239
1239
|
}[];
|
1240
1240
|
company: {
|
@@ -1415,7 +1415,6 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1415
1415
|
dateValue: Date | null;
|
1416
1416
|
uploads: {
|
1417
1417
|
id: string;
|
1418
|
-
status: string | null;
|
1419
1418
|
createdAt: Date;
|
1420
1419
|
updatedAt: Date;
|
1421
1420
|
deletedAt: Date | null;
|
@@ -1424,6 +1423,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1424
1423
|
bucketName: string;
|
1425
1424
|
fileSize: number;
|
1426
1425
|
fileUrl: string | null;
|
1426
|
+
status?: string | undefined;
|
1427
1427
|
}[];
|
1428
1428
|
}[];
|
1429
1429
|
company: {
|
@@ -1599,7 +1599,6 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1599
1599
|
dateValue: Date | null;
|
1600
1600
|
uploads: {
|
1601
1601
|
id: string;
|
1602
|
-
status: string | null;
|
1603
1602
|
createdAt: Date;
|
1604
1603
|
updatedAt: Date;
|
1605
1604
|
deletedAt: Date | null;
|
@@ -1608,6 +1607,7 @@ export declare const ReconnectFacebookFeedSchema: z.ZodObject<{
|
|
1608
1607
|
bucketName: string;
|
1609
1608
|
fileSize: number;
|
1610
1609
|
fileUrl: string | null;
|
1610
|
+
status?: string | undefined;
|
1611
1611
|
}[];
|
1612
1612
|
}[];
|
1613
1613
|
company: {
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC"}
|