@nexeraid/identity-schemas 2.3.18-dev → 2.3.20-dev
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/{customers.schema-1e51d306.esm.js → customers.schema-0306abb6.esm.js} +1 -1
- package/dist/{customers.schema-53d8aa84.cjs.dev.js → customers.schema-cc3df18f.cjs.dev.js} +1 -1
- package/dist/{customers.schema-93908d1f.cjs.prod.js → customers.schema-f0d472b1.cjs.prod.js} +1 -1
- package/dist/declarations/src/identity-ids.schema.d.ts +16 -16
- package/dist/declarations/src/identity-ids.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/index.d.ts +1 -0
- package/dist/declarations/src/webhooks/index.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +2356 -38
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts +46 -0
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts.map +1 -0
- package/dist/{frontend-utilities.schema-64272e5a.esm.js → frontend-utilities.schema-02fc8336.esm.js} +1 -1
- package/dist/{frontend-utilities.schema-06549eb4.cjs.dev.js → frontend-utilities.schema-0be040b7.cjs.dev.js} +1 -1
- package/dist/{frontend-utilities.schema-c3ee7e20.cjs.prod.js → frontend-utilities.schema-cd88e673.cjs.prod.js} +1 -1
- package/dist/{identity-api.schema-1ac61550.cjs.prod.js → identity-api.schema-2de31155.cjs.prod.js} +8 -8
- package/dist/{identity-api.schema-c82dba7a.esm.js → identity-api.schema-68a83f54.esm.js} +8 -8
- package/dist/{identity-api.schema-9eaf0710.cjs.dev.js → identity-api.schema-bbb2c243.cjs.dev.js} +8 -8
- package/dist/nexeraid-identity-schemas.cjs.dev.js +17 -38
- package/dist/nexeraid-identity-schemas.cjs.prod.js +17 -38
- package/dist/nexeraid-identity-schemas.esm.js +5 -26
- package/dist/package.json +1 -1
- package/dist/transaction.schema-2141e819.cjs.dev.js +40 -0
- package/dist/transaction.schema-7297e823.cjs.prod.js +40 -0
- package/dist/transaction.schema-fb699c40.esm.js +25 -0
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +97 -7
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +97 -7
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +90 -8
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const WebhookEventTypes: readonly ["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"];
|
|
3
|
-
export declare const WebhookEventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>;
|
|
4
|
-
export declare const WebhookEventTypesForm: readonly ["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted"];
|
|
5
|
-
export declare const WebhookEventTypeForm: z.ZodEnum<["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted"]>;
|
|
2
|
+
export declare const WebhookEventTypes: readonly ["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"];
|
|
3
|
+
export declare const WebhookEventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>;
|
|
4
|
+
export declare const WebhookEventTypesForm: readonly ["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted", "webhooks.tmsCreated", "webhooks.tmsUpdated", "webhooks.tmsDeleted"];
|
|
5
|
+
export declare const WebhookEventTypeForm: z.ZodEnum<["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted", "webhooks.tmsCreated", "webhooks.tmsUpdated", "webhooks.tmsDeleted"]>;
|
|
6
6
|
export declare const AttemptsStatus: {
|
|
7
7
|
readonly Success: 0;
|
|
8
8
|
readonly Pending: 1;
|
|
@@ -138,6 +138,51 @@ declare const NexeraEventTypes: z.ZodUnion<[z.ZodObject<{
|
|
|
138
138
|
description: string;
|
|
139
139
|
archived: boolean;
|
|
140
140
|
schemas: Record<string, unknown>;
|
|
141
|
+
}>, z.ZodObject<{
|
|
142
|
+
name: z.ZodLiteral<"tms.created">;
|
|
143
|
+
description: z.ZodString;
|
|
144
|
+
archived: z.ZodBoolean;
|
|
145
|
+
schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
146
|
+
}, "strip", z.ZodTypeAny, {
|
|
147
|
+
name: "tms.created";
|
|
148
|
+
description: string;
|
|
149
|
+
archived: boolean;
|
|
150
|
+
schemas: Record<string, unknown>;
|
|
151
|
+
}, {
|
|
152
|
+
name: "tms.created";
|
|
153
|
+
description: string;
|
|
154
|
+
archived: boolean;
|
|
155
|
+
schemas: Record<string, unknown>;
|
|
156
|
+
}>, z.ZodObject<{
|
|
157
|
+
name: z.ZodLiteral<"tms.updated">;
|
|
158
|
+
description: z.ZodString;
|
|
159
|
+
archived: z.ZodBoolean;
|
|
160
|
+
schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
161
|
+
}, "strip", z.ZodTypeAny, {
|
|
162
|
+
name: "tms.updated";
|
|
163
|
+
description: string;
|
|
164
|
+
archived: boolean;
|
|
165
|
+
schemas: Record<string, unknown>;
|
|
166
|
+
}, {
|
|
167
|
+
name: "tms.updated";
|
|
168
|
+
description: string;
|
|
169
|
+
archived: boolean;
|
|
170
|
+
schemas: Record<string, unknown>;
|
|
171
|
+
}>, z.ZodObject<{
|
|
172
|
+
name: z.ZodLiteral<"tms.deleted">;
|
|
173
|
+
description: z.ZodString;
|
|
174
|
+
archived: z.ZodBoolean;
|
|
175
|
+
schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
176
|
+
}, "strip", z.ZodTypeAny, {
|
|
177
|
+
name: "tms.deleted";
|
|
178
|
+
description: string;
|
|
179
|
+
archived: boolean;
|
|
180
|
+
schemas: Record<string, unknown>;
|
|
181
|
+
}, {
|
|
182
|
+
name: "tms.deleted";
|
|
183
|
+
description: string;
|
|
184
|
+
archived: boolean;
|
|
185
|
+
schemas: Record<string, unknown>;
|
|
141
186
|
}>]>;
|
|
142
187
|
/**
|
|
143
188
|
*
|
|
@@ -9592,6 +9637,246 @@ export declare const AlertDeletedPayload: z.ZodObject<{
|
|
|
9592
9637
|
};
|
|
9593
9638
|
eventType: "alert.deleted";
|
|
9594
9639
|
}>;
|
|
9640
|
+
export declare const TMSCreatedPayload: z.ZodObject<{
|
|
9641
|
+
eventType: z.ZodLiteral<"tms.created">;
|
|
9642
|
+
payload: z.ZodObject<{
|
|
9643
|
+
id: z.ZodString;
|
|
9644
|
+
customerId: z.ZodString;
|
|
9645
|
+
externalTransactionId: z.ZodString;
|
|
9646
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
9647
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
9648
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
9649
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
9650
|
+
transactionInfo: z.ZodString;
|
|
9651
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
9652
|
+
originator: z.ZodString;
|
|
9653
|
+
beneficiary: z.ZodString;
|
|
9654
|
+
createdAt: z.ZodDate;
|
|
9655
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
9656
|
+
}, "strip", z.ZodTypeAny, {
|
|
9657
|
+
id: string;
|
|
9658
|
+
createdAt: Date;
|
|
9659
|
+
updatedAt: Date | null;
|
|
9660
|
+
customerId: string;
|
|
9661
|
+
originator: string;
|
|
9662
|
+
beneficiary: string;
|
|
9663
|
+
externalTransactionId: string;
|
|
9664
|
+
transactionDate: Date | null;
|
|
9665
|
+
transactionType: "crypto" | "fiat";
|
|
9666
|
+
transactionSubType: string | null;
|
|
9667
|
+
transactionReview: string | null;
|
|
9668
|
+
transactionInfo: string;
|
|
9669
|
+
transactionExtractedInfo: string | null;
|
|
9670
|
+
}, {
|
|
9671
|
+
id: string;
|
|
9672
|
+
createdAt: Date;
|
|
9673
|
+
updatedAt: Date | null;
|
|
9674
|
+
customerId: string;
|
|
9675
|
+
originator: string;
|
|
9676
|
+
beneficiary: string;
|
|
9677
|
+
externalTransactionId: string;
|
|
9678
|
+
transactionDate: Date | null;
|
|
9679
|
+
transactionType: "crypto" | "fiat";
|
|
9680
|
+
transactionSubType: string | null;
|
|
9681
|
+
transactionReview: string | null;
|
|
9682
|
+
transactionInfo: string;
|
|
9683
|
+
transactionExtractedInfo: string | null;
|
|
9684
|
+
}>;
|
|
9685
|
+
}, "strip", z.ZodTypeAny, {
|
|
9686
|
+
payload: {
|
|
9687
|
+
id: string;
|
|
9688
|
+
createdAt: Date;
|
|
9689
|
+
updatedAt: Date | null;
|
|
9690
|
+
customerId: string;
|
|
9691
|
+
originator: string;
|
|
9692
|
+
beneficiary: string;
|
|
9693
|
+
externalTransactionId: string;
|
|
9694
|
+
transactionDate: Date | null;
|
|
9695
|
+
transactionType: "crypto" | "fiat";
|
|
9696
|
+
transactionSubType: string | null;
|
|
9697
|
+
transactionReview: string | null;
|
|
9698
|
+
transactionInfo: string;
|
|
9699
|
+
transactionExtractedInfo: string | null;
|
|
9700
|
+
};
|
|
9701
|
+
eventType: "tms.created";
|
|
9702
|
+
}, {
|
|
9703
|
+
payload: {
|
|
9704
|
+
id: string;
|
|
9705
|
+
createdAt: Date;
|
|
9706
|
+
updatedAt: Date | null;
|
|
9707
|
+
customerId: string;
|
|
9708
|
+
originator: string;
|
|
9709
|
+
beneficiary: string;
|
|
9710
|
+
externalTransactionId: string;
|
|
9711
|
+
transactionDate: Date | null;
|
|
9712
|
+
transactionType: "crypto" | "fiat";
|
|
9713
|
+
transactionSubType: string | null;
|
|
9714
|
+
transactionReview: string | null;
|
|
9715
|
+
transactionInfo: string;
|
|
9716
|
+
transactionExtractedInfo: string | null;
|
|
9717
|
+
};
|
|
9718
|
+
eventType: "tms.created";
|
|
9719
|
+
}>;
|
|
9720
|
+
export declare const TMSUpdatedPayload: z.ZodObject<{
|
|
9721
|
+
eventType: z.ZodLiteral<"tms.updated">;
|
|
9722
|
+
payload: z.ZodObject<{
|
|
9723
|
+
id: z.ZodString;
|
|
9724
|
+
customerId: z.ZodString;
|
|
9725
|
+
externalTransactionId: z.ZodString;
|
|
9726
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
9727
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
9728
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
9729
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
9730
|
+
transactionInfo: z.ZodString;
|
|
9731
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
9732
|
+
originator: z.ZodString;
|
|
9733
|
+
beneficiary: z.ZodString;
|
|
9734
|
+
createdAt: z.ZodDate;
|
|
9735
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
9736
|
+
}, "strip", z.ZodTypeAny, {
|
|
9737
|
+
id: string;
|
|
9738
|
+
createdAt: Date;
|
|
9739
|
+
updatedAt: Date | null;
|
|
9740
|
+
customerId: string;
|
|
9741
|
+
originator: string;
|
|
9742
|
+
beneficiary: string;
|
|
9743
|
+
externalTransactionId: string;
|
|
9744
|
+
transactionDate: Date | null;
|
|
9745
|
+
transactionType: "crypto" | "fiat";
|
|
9746
|
+
transactionSubType: string | null;
|
|
9747
|
+
transactionReview: string | null;
|
|
9748
|
+
transactionInfo: string;
|
|
9749
|
+
transactionExtractedInfo: string | null;
|
|
9750
|
+
}, {
|
|
9751
|
+
id: string;
|
|
9752
|
+
createdAt: Date;
|
|
9753
|
+
updatedAt: Date | null;
|
|
9754
|
+
customerId: string;
|
|
9755
|
+
originator: string;
|
|
9756
|
+
beneficiary: string;
|
|
9757
|
+
externalTransactionId: string;
|
|
9758
|
+
transactionDate: Date | null;
|
|
9759
|
+
transactionType: "crypto" | "fiat";
|
|
9760
|
+
transactionSubType: string | null;
|
|
9761
|
+
transactionReview: string | null;
|
|
9762
|
+
transactionInfo: string;
|
|
9763
|
+
transactionExtractedInfo: string | null;
|
|
9764
|
+
}>;
|
|
9765
|
+
}, "strip", z.ZodTypeAny, {
|
|
9766
|
+
payload: {
|
|
9767
|
+
id: string;
|
|
9768
|
+
createdAt: Date;
|
|
9769
|
+
updatedAt: Date | null;
|
|
9770
|
+
customerId: string;
|
|
9771
|
+
originator: string;
|
|
9772
|
+
beneficiary: string;
|
|
9773
|
+
externalTransactionId: string;
|
|
9774
|
+
transactionDate: Date | null;
|
|
9775
|
+
transactionType: "crypto" | "fiat";
|
|
9776
|
+
transactionSubType: string | null;
|
|
9777
|
+
transactionReview: string | null;
|
|
9778
|
+
transactionInfo: string;
|
|
9779
|
+
transactionExtractedInfo: string | null;
|
|
9780
|
+
};
|
|
9781
|
+
eventType: "tms.updated";
|
|
9782
|
+
}, {
|
|
9783
|
+
payload: {
|
|
9784
|
+
id: string;
|
|
9785
|
+
createdAt: Date;
|
|
9786
|
+
updatedAt: Date | null;
|
|
9787
|
+
customerId: string;
|
|
9788
|
+
originator: string;
|
|
9789
|
+
beneficiary: string;
|
|
9790
|
+
externalTransactionId: string;
|
|
9791
|
+
transactionDate: Date | null;
|
|
9792
|
+
transactionType: "crypto" | "fiat";
|
|
9793
|
+
transactionSubType: string | null;
|
|
9794
|
+
transactionReview: string | null;
|
|
9795
|
+
transactionInfo: string;
|
|
9796
|
+
transactionExtractedInfo: string | null;
|
|
9797
|
+
};
|
|
9798
|
+
eventType: "tms.updated";
|
|
9799
|
+
}>;
|
|
9800
|
+
export declare const TMSDeletedPayload: z.ZodObject<{
|
|
9801
|
+
eventType: z.ZodLiteral<"tms.deleted">;
|
|
9802
|
+
payload: z.ZodObject<{
|
|
9803
|
+
id: z.ZodString;
|
|
9804
|
+
customerId: z.ZodString;
|
|
9805
|
+
externalTransactionId: z.ZodString;
|
|
9806
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
9807
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
9808
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
9809
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
9810
|
+
transactionInfo: z.ZodString;
|
|
9811
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
9812
|
+
originator: z.ZodString;
|
|
9813
|
+
beneficiary: z.ZodString;
|
|
9814
|
+
createdAt: z.ZodDate;
|
|
9815
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
9816
|
+
}, "strip", z.ZodTypeAny, {
|
|
9817
|
+
id: string;
|
|
9818
|
+
createdAt: Date;
|
|
9819
|
+
updatedAt: Date | null;
|
|
9820
|
+
customerId: string;
|
|
9821
|
+
originator: string;
|
|
9822
|
+
beneficiary: string;
|
|
9823
|
+
externalTransactionId: string;
|
|
9824
|
+
transactionDate: Date | null;
|
|
9825
|
+
transactionType: "crypto" | "fiat";
|
|
9826
|
+
transactionSubType: string | null;
|
|
9827
|
+
transactionReview: string | null;
|
|
9828
|
+
transactionInfo: string;
|
|
9829
|
+
transactionExtractedInfo: string | null;
|
|
9830
|
+
}, {
|
|
9831
|
+
id: string;
|
|
9832
|
+
createdAt: Date;
|
|
9833
|
+
updatedAt: Date | null;
|
|
9834
|
+
customerId: string;
|
|
9835
|
+
originator: string;
|
|
9836
|
+
beneficiary: string;
|
|
9837
|
+
externalTransactionId: string;
|
|
9838
|
+
transactionDate: Date | null;
|
|
9839
|
+
transactionType: "crypto" | "fiat";
|
|
9840
|
+
transactionSubType: string | null;
|
|
9841
|
+
transactionReview: string | null;
|
|
9842
|
+
transactionInfo: string;
|
|
9843
|
+
transactionExtractedInfo: string | null;
|
|
9844
|
+
}>;
|
|
9845
|
+
}, "strip", z.ZodTypeAny, {
|
|
9846
|
+
payload: {
|
|
9847
|
+
id: string;
|
|
9848
|
+
createdAt: Date;
|
|
9849
|
+
updatedAt: Date | null;
|
|
9850
|
+
customerId: string;
|
|
9851
|
+
originator: string;
|
|
9852
|
+
beneficiary: string;
|
|
9853
|
+
externalTransactionId: string;
|
|
9854
|
+
transactionDate: Date | null;
|
|
9855
|
+
transactionType: "crypto" | "fiat";
|
|
9856
|
+
transactionSubType: string | null;
|
|
9857
|
+
transactionReview: string | null;
|
|
9858
|
+
transactionInfo: string;
|
|
9859
|
+
transactionExtractedInfo: string | null;
|
|
9860
|
+
};
|
|
9861
|
+
eventType: "tms.deleted";
|
|
9862
|
+
}, {
|
|
9863
|
+
payload: {
|
|
9864
|
+
id: string;
|
|
9865
|
+
createdAt: Date;
|
|
9866
|
+
updatedAt: Date | null;
|
|
9867
|
+
customerId: string;
|
|
9868
|
+
originator: string;
|
|
9869
|
+
beneficiary: string;
|
|
9870
|
+
externalTransactionId: string;
|
|
9871
|
+
transactionDate: Date | null;
|
|
9872
|
+
transactionType: "crypto" | "fiat";
|
|
9873
|
+
transactionSubType: string | null;
|
|
9874
|
+
transactionReview: string | null;
|
|
9875
|
+
transactionInfo: string;
|
|
9876
|
+
transactionExtractedInfo: string | null;
|
|
9877
|
+
};
|
|
9878
|
+
eventType: "tms.deleted";
|
|
9879
|
+
}>;
|
|
9595
9880
|
export declare const WebhookScenariosEventPayload: z.ZodObject<{
|
|
9596
9881
|
eventType: z.ZodLiteral<"send.scenario">;
|
|
9597
9882
|
payload: z.ZodObject<{
|
|
@@ -19040,6 +19325,245 @@ export declare const WebhookAlertEventPayload: z.ZodUnion<[z.ZodObject<{
|
|
|
19040
19325
|
eventType: "alert.deleted";
|
|
19041
19326
|
}>]>;
|
|
19042
19327
|
export type WebhookAlertEventPayload = z.infer<typeof WebhookAlertEventPayload>;
|
|
19328
|
+
export declare const WebhookTMSEventPayload: z.ZodUnion<[z.ZodObject<{
|
|
19329
|
+
eventType: z.ZodLiteral<"tms.created">;
|
|
19330
|
+
payload: z.ZodObject<{
|
|
19331
|
+
id: z.ZodString;
|
|
19332
|
+
customerId: z.ZodString;
|
|
19333
|
+
externalTransactionId: z.ZodString;
|
|
19334
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
19335
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
19336
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
19337
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
19338
|
+
transactionInfo: z.ZodString;
|
|
19339
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
19340
|
+
originator: z.ZodString;
|
|
19341
|
+
beneficiary: z.ZodString;
|
|
19342
|
+
createdAt: z.ZodDate;
|
|
19343
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
19344
|
+
}, "strip", z.ZodTypeAny, {
|
|
19345
|
+
id: string;
|
|
19346
|
+
createdAt: Date;
|
|
19347
|
+
updatedAt: Date | null;
|
|
19348
|
+
customerId: string;
|
|
19349
|
+
originator: string;
|
|
19350
|
+
beneficiary: string;
|
|
19351
|
+
externalTransactionId: string;
|
|
19352
|
+
transactionDate: Date | null;
|
|
19353
|
+
transactionType: "crypto" | "fiat";
|
|
19354
|
+
transactionSubType: string | null;
|
|
19355
|
+
transactionReview: string | null;
|
|
19356
|
+
transactionInfo: string;
|
|
19357
|
+
transactionExtractedInfo: string | null;
|
|
19358
|
+
}, {
|
|
19359
|
+
id: string;
|
|
19360
|
+
createdAt: Date;
|
|
19361
|
+
updatedAt: Date | null;
|
|
19362
|
+
customerId: string;
|
|
19363
|
+
originator: string;
|
|
19364
|
+
beneficiary: string;
|
|
19365
|
+
externalTransactionId: string;
|
|
19366
|
+
transactionDate: Date | null;
|
|
19367
|
+
transactionType: "crypto" | "fiat";
|
|
19368
|
+
transactionSubType: string | null;
|
|
19369
|
+
transactionReview: string | null;
|
|
19370
|
+
transactionInfo: string;
|
|
19371
|
+
transactionExtractedInfo: string | null;
|
|
19372
|
+
}>;
|
|
19373
|
+
}, "strip", z.ZodTypeAny, {
|
|
19374
|
+
payload: {
|
|
19375
|
+
id: string;
|
|
19376
|
+
createdAt: Date;
|
|
19377
|
+
updatedAt: Date | null;
|
|
19378
|
+
customerId: string;
|
|
19379
|
+
originator: string;
|
|
19380
|
+
beneficiary: string;
|
|
19381
|
+
externalTransactionId: string;
|
|
19382
|
+
transactionDate: Date | null;
|
|
19383
|
+
transactionType: "crypto" | "fiat";
|
|
19384
|
+
transactionSubType: string | null;
|
|
19385
|
+
transactionReview: string | null;
|
|
19386
|
+
transactionInfo: string;
|
|
19387
|
+
transactionExtractedInfo: string | null;
|
|
19388
|
+
};
|
|
19389
|
+
eventType: "tms.created";
|
|
19390
|
+
}, {
|
|
19391
|
+
payload: {
|
|
19392
|
+
id: string;
|
|
19393
|
+
createdAt: Date;
|
|
19394
|
+
updatedAt: Date | null;
|
|
19395
|
+
customerId: string;
|
|
19396
|
+
originator: string;
|
|
19397
|
+
beneficiary: string;
|
|
19398
|
+
externalTransactionId: string;
|
|
19399
|
+
transactionDate: Date | null;
|
|
19400
|
+
transactionType: "crypto" | "fiat";
|
|
19401
|
+
transactionSubType: string | null;
|
|
19402
|
+
transactionReview: string | null;
|
|
19403
|
+
transactionInfo: string;
|
|
19404
|
+
transactionExtractedInfo: string | null;
|
|
19405
|
+
};
|
|
19406
|
+
eventType: "tms.created";
|
|
19407
|
+
}>, z.ZodObject<{
|
|
19408
|
+
eventType: z.ZodLiteral<"tms.updated">;
|
|
19409
|
+
payload: z.ZodObject<{
|
|
19410
|
+
id: z.ZodString;
|
|
19411
|
+
customerId: z.ZodString;
|
|
19412
|
+
externalTransactionId: z.ZodString;
|
|
19413
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
19414
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
19415
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
19416
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
19417
|
+
transactionInfo: z.ZodString;
|
|
19418
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
19419
|
+
originator: z.ZodString;
|
|
19420
|
+
beneficiary: z.ZodString;
|
|
19421
|
+
createdAt: z.ZodDate;
|
|
19422
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
19423
|
+
}, "strip", z.ZodTypeAny, {
|
|
19424
|
+
id: string;
|
|
19425
|
+
createdAt: Date;
|
|
19426
|
+
updatedAt: Date | null;
|
|
19427
|
+
customerId: string;
|
|
19428
|
+
originator: string;
|
|
19429
|
+
beneficiary: string;
|
|
19430
|
+
externalTransactionId: string;
|
|
19431
|
+
transactionDate: Date | null;
|
|
19432
|
+
transactionType: "crypto" | "fiat";
|
|
19433
|
+
transactionSubType: string | null;
|
|
19434
|
+
transactionReview: string | null;
|
|
19435
|
+
transactionInfo: string;
|
|
19436
|
+
transactionExtractedInfo: string | null;
|
|
19437
|
+
}, {
|
|
19438
|
+
id: string;
|
|
19439
|
+
createdAt: Date;
|
|
19440
|
+
updatedAt: Date | null;
|
|
19441
|
+
customerId: string;
|
|
19442
|
+
originator: string;
|
|
19443
|
+
beneficiary: string;
|
|
19444
|
+
externalTransactionId: string;
|
|
19445
|
+
transactionDate: Date | null;
|
|
19446
|
+
transactionType: "crypto" | "fiat";
|
|
19447
|
+
transactionSubType: string | null;
|
|
19448
|
+
transactionReview: string | null;
|
|
19449
|
+
transactionInfo: string;
|
|
19450
|
+
transactionExtractedInfo: string | null;
|
|
19451
|
+
}>;
|
|
19452
|
+
}, "strip", z.ZodTypeAny, {
|
|
19453
|
+
payload: {
|
|
19454
|
+
id: string;
|
|
19455
|
+
createdAt: Date;
|
|
19456
|
+
updatedAt: Date | null;
|
|
19457
|
+
customerId: string;
|
|
19458
|
+
originator: string;
|
|
19459
|
+
beneficiary: string;
|
|
19460
|
+
externalTransactionId: string;
|
|
19461
|
+
transactionDate: Date | null;
|
|
19462
|
+
transactionType: "crypto" | "fiat";
|
|
19463
|
+
transactionSubType: string | null;
|
|
19464
|
+
transactionReview: string | null;
|
|
19465
|
+
transactionInfo: string;
|
|
19466
|
+
transactionExtractedInfo: string | null;
|
|
19467
|
+
};
|
|
19468
|
+
eventType: "tms.updated";
|
|
19469
|
+
}, {
|
|
19470
|
+
payload: {
|
|
19471
|
+
id: string;
|
|
19472
|
+
createdAt: Date;
|
|
19473
|
+
updatedAt: Date | null;
|
|
19474
|
+
customerId: string;
|
|
19475
|
+
originator: string;
|
|
19476
|
+
beneficiary: string;
|
|
19477
|
+
externalTransactionId: string;
|
|
19478
|
+
transactionDate: Date | null;
|
|
19479
|
+
transactionType: "crypto" | "fiat";
|
|
19480
|
+
transactionSubType: string | null;
|
|
19481
|
+
transactionReview: string | null;
|
|
19482
|
+
transactionInfo: string;
|
|
19483
|
+
transactionExtractedInfo: string | null;
|
|
19484
|
+
};
|
|
19485
|
+
eventType: "tms.updated";
|
|
19486
|
+
}>, z.ZodObject<{
|
|
19487
|
+
eventType: z.ZodLiteral<"tms.deleted">;
|
|
19488
|
+
payload: z.ZodObject<{
|
|
19489
|
+
id: z.ZodString;
|
|
19490
|
+
customerId: z.ZodString;
|
|
19491
|
+
externalTransactionId: z.ZodString;
|
|
19492
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
19493
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
19494
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
19495
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
19496
|
+
transactionInfo: z.ZodString;
|
|
19497
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
19498
|
+
originator: z.ZodString;
|
|
19499
|
+
beneficiary: z.ZodString;
|
|
19500
|
+
createdAt: z.ZodDate;
|
|
19501
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
19502
|
+
}, "strip", z.ZodTypeAny, {
|
|
19503
|
+
id: string;
|
|
19504
|
+
createdAt: Date;
|
|
19505
|
+
updatedAt: Date | null;
|
|
19506
|
+
customerId: string;
|
|
19507
|
+
originator: string;
|
|
19508
|
+
beneficiary: string;
|
|
19509
|
+
externalTransactionId: string;
|
|
19510
|
+
transactionDate: Date | null;
|
|
19511
|
+
transactionType: "crypto" | "fiat";
|
|
19512
|
+
transactionSubType: string | null;
|
|
19513
|
+
transactionReview: string | null;
|
|
19514
|
+
transactionInfo: string;
|
|
19515
|
+
transactionExtractedInfo: string | null;
|
|
19516
|
+
}, {
|
|
19517
|
+
id: string;
|
|
19518
|
+
createdAt: Date;
|
|
19519
|
+
updatedAt: Date | null;
|
|
19520
|
+
customerId: string;
|
|
19521
|
+
originator: string;
|
|
19522
|
+
beneficiary: string;
|
|
19523
|
+
externalTransactionId: string;
|
|
19524
|
+
transactionDate: Date | null;
|
|
19525
|
+
transactionType: "crypto" | "fiat";
|
|
19526
|
+
transactionSubType: string | null;
|
|
19527
|
+
transactionReview: string | null;
|
|
19528
|
+
transactionInfo: string;
|
|
19529
|
+
transactionExtractedInfo: string | null;
|
|
19530
|
+
}>;
|
|
19531
|
+
}, "strip", z.ZodTypeAny, {
|
|
19532
|
+
payload: {
|
|
19533
|
+
id: string;
|
|
19534
|
+
createdAt: Date;
|
|
19535
|
+
updatedAt: Date | null;
|
|
19536
|
+
customerId: string;
|
|
19537
|
+
originator: string;
|
|
19538
|
+
beneficiary: string;
|
|
19539
|
+
externalTransactionId: string;
|
|
19540
|
+
transactionDate: Date | null;
|
|
19541
|
+
transactionType: "crypto" | "fiat";
|
|
19542
|
+
transactionSubType: string | null;
|
|
19543
|
+
transactionReview: string | null;
|
|
19544
|
+
transactionInfo: string;
|
|
19545
|
+
transactionExtractedInfo: string | null;
|
|
19546
|
+
};
|
|
19547
|
+
eventType: "tms.deleted";
|
|
19548
|
+
}, {
|
|
19549
|
+
payload: {
|
|
19550
|
+
id: string;
|
|
19551
|
+
createdAt: Date;
|
|
19552
|
+
updatedAt: Date | null;
|
|
19553
|
+
customerId: string;
|
|
19554
|
+
originator: string;
|
|
19555
|
+
beneficiary: string;
|
|
19556
|
+
externalTransactionId: string;
|
|
19557
|
+
transactionDate: Date | null;
|
|
19558
|
+
transactionType: "crypto" | "fiat";
|
|
19559
|
+
transactionSubType: string | null;
|
|
19560
|
+
transactionReview: string | null;
|
|
19561
|
+
transactionInfo: string;
|
|
19562
|
+
transactionExtractedInfo: string | null;
|
|
19563
|
+
};
|
|
19564
|
+
eventType: "tms.deleted";
|
|
19565
|
+
}>]>;
|
|
19566
|
+
export type WebhookTMSEventPayload = z.infer<typeof WebhookTMSEventPayload>;
|
|
19043
19567
|
export declare const WebhookEventPayload: z.ZodUnion<[z.ZodObject<{
|
|
19044
19568
|
eventType: z.ZodLiteral<"send.scenario">;
|
|
19045
19569
|
payload: z.ZodObject<{
|
|
@@ -28480,6 +29004,243 @@ export declare const WebhookEventPayload: z.ZodUnion<[z.ZodObject<{
|
|
|
28480
29004
|
deletedAt?: Date | null | undefined;
|
|
28481
29005
|
};
|
|
28482
29006
|
eventType: "alert.deleted";
|
|
29007
|
+
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
29008
|
+
eventType: z.ZodLiteral<"tms.created">;
|
|
29009
|
+
payload: z.ZodObject<{
|
|
29010
|
+
id: z.ZodString;
|
|
29011
|
+
customerId: z.ZodString;
|
|
29012
|
+
externalTransactionId: z.ZodString;
|
|
29013
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
29014
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
29015
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
29016
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
29017
|
+
transactionInfo: z.ZodString;
|
|
29018
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
29019
|
+
originator: z.ZodString;
|
|
29020
|
+
beneficiary: z.ZodString;
|
|
29021
|
+
createdAt: z.ZodDate;
|
|
29022
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
29023
|
+
}, "strip", z.ZodTypeAny, {
|
|
29024
|
+
id: string;
|
|
29025
|
+
createdAt: Date;
|
|
29026
|
+
updatedAt: Date | null;
|
|
29027
|
+
customerId: string;
|
|
29028
|
+
originator: string;
|
|
29029
|
+
beneficiary: string;
|
|
29030
|
+
externalTransactionId: string;
|
|
29031
|
+
transactionDate: Date | null;
|
|
29032
|
+
transactionType: "crypto" | "fiat";
|
|
29033
|
+
transactionSubType: string | null;
|
|
29034
|
+
transactionReview: string | null;
|
|
29035
|
+
transactionInfo: string;
|
|
29036
|
+
transactionExtractedInfo: string | null;
|
|
29037
|
+
}, {
|
|
29038
|
+
id: string;
|
|
29039
|
+
createdAt: Date;
|
|
29040
|
+
updatedAt: Date | null;
|
|
29041
|
+
customerId: string;
|
|
29042
|
+
originator: string;
|
|
29043
|
+
beneficiary: string;
|
|
29044
|
+
externalTransactionId: string;
|
|
29045
|
+
transactionDate: Date | null;
|
|
29046
|
+
transactionType: "crypto" | "fiat";
|
|
29047
|
+
transactionSubType: string | null;
|
|
29048
|
+
transactionReview: string | null;
|
|
29049
|
+
transactionInfo: string;
|
|
29050
|
+
transactionExtractedInfo: string | null;
|
|
29051
|
+
}>;
|
|
29052
|
+
}, "strip", z.ZodTypeAny, {
|
|
29053
|
+
payload: {
|
|
29054
|
+
id: string;
|
|
29055
|
+
createdAt: Date;
|
|
29056
|
+
updatedAt: Date | null;
|
|
29057
|
+
customerId: string;
|
|
29058
|
+
originator: string;
|
|
29059
|
+
beneficiary: string;
|
|
29060
|
+
externalTransactionId: string;
|
|
29061
|
+
transactionDate: Date | null;
|
|
29062
|
+
transactionType: "crypto" | "fiat";
|
|
29063
|
+
transactionSubType: string | null;
|
|
29064
|
+
transactionReview: string | null;
|
|
29065
|
+
transactionInfo: string;
|
|
29066
|
+
transactionExtractedInfo: string | null;
|
|
29067
|
+
};
|
|
29068
|
+
eventType: "tms.created";
|
|
29069
|
+
}, {
|
|
29070
|
+
payload: {
|
|
29071
|
+
id: string;
|
|
29072
|
+
createdAt: Date;
|
|
29073
|
+
updatedAt: Date | null;
|
|
29074
|
+
customerId: string;
|
|
29075
|
+
originator: string;
|
|
29076
|
+
beneficiary: string;
|
|
29077
|
+
externalTransactionId: string;
|
|
29078
|
+
transactionDate: Date | null;
|
|
29079
|
+
transactionType: "crypto" | "fiat";
|
|
29080
|
+
transactionSubType: string | null;
|
|
29081
|
+
transactionReview: string | null;
|
|
29082
|
+
transactionInfo: string;
|
|
29083
|
+
transactionExtractedInfo: string | null;
|
|
29084
|
+
};
|
|
29085
|
+
eventType: "tms.created";
|
|
29086
|
+
}>, z.ZodObject<{
|
|
29087
|
+
eventType: z.ZodLiteral<"tms.updated">;
|
|
29088
|
+
payload: z.ZodObject<{
|
|
29089
|
+
id: z.ZodString;
|
|
29090
|
+
customerId: z.ZodString;
|
|
29091
|
+
externalTransactionId: z.ZodString;
|
|
29092
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
29093
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
29094
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
29095
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
29096
|
+
transactionInfo: z.ZodString;
|
|
29097
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
29098
|
+
originator: z.ZodString;
|
|
29099
|
+
beneficiary: z.ZodString;
|
|
29100
|
+
createdAt: z.ZodDate;
|
|
29101
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
29102
|
+
}, "strip", z.ZodTypeAny, {
|
|
29103
|
+
id: string;
|
|
29104
|
+
createdAt: Date;
|
|
29105
|
+
updatedAt: Date | null;
|
|
29106
|
+
customerId: string;
|
|
29107
|
+
originator: string;
|
|
29108
|
+
beneficiary: string;
|
|
29109
|
+
externalTransactionId: string;
|
|
29110
|
+
transactionDate: Date | null;
|
|
29111
|
+
transactionType: "crypto" | "fiat";
|
|
29112
|
+
transactionSubType: string | null;
|
|
29113
|
+
transactionReview: string | null;
|
|
29114
|
+
transactionInfo: string;
|
|
29115
|
+
transactionExtractedInfo: string | null;
|
|
29116
|
+
}, {
|
|
29117
|
+
id: string;
|
|
29118
|
+
createdAt: Date;
|
|
29119
|
+
updatedAt: Date | null;
|
|
29120
|
+
customerId: string;
|
|
29121
|
+
originator: string;
|
|
29122
|
+
beneficiary: string;
|
|
29123
|
+
externalTransactionId: string;
|
|
29124
|
+
transactionDate: Date | null;
|
|
29125
|
+
transactionType: "crypto" | "fiat";
|
|
29126
|
+
transactionSubType: string | null;
|
|
29127
|
+
transactionReview: string | null;
|
|
29128
|
+
transactionInfo: string;
|
|
29129
|
+
transactionExtractedInfo: string | null;
|
|
29130
|
+
}>;
|
|
29131
|
+
}, "strip", z.ZodTypeAny, {
|
|
29132
|
+
payload: {
|
|
29133
|
+
id: string;
|
|
29134
|
+
createdAt: Date;
|
|
29135
|
+
updatedAt: Date | null;
|
|
29136
|
+
customerId: string;
|
|
29137
|
+
originator: string;
|
|
29138
|
+
beneficiary: string;
|
|
29139
|
+
externalTransactionId: string;
|
|
29140
|
+
transactionDate: Date | null;
|
|
29141
|
+
transactionType: "crypto" | "fiat";
|
|
29142
|
+
transactionSubType: string | null;
|
|
29143
|
+
transactionReview: string | null;
|
|
29144
|
+
transactionInfo: string;
|
|
29145
|
+
transactionExtractedInfo: string | null;
|
|
29146
|
+
};
|
|
29147
|
+
eventType: "tms.updated";
|
|
29148
|
+
}, {
|
|
29149
|
+
payload: {
|
|
29150
|
+
id: string;
|
|
29151
|
+
createdAt: Date;
|
|
29152
|
+
updatedAt: Date | null;
|
|
29153
|
+
customerId: string;
|
|
29154
|
+
originator: string;
|
|
29155
|
+
beneficiary: string;
|
|
29156
|
+
externalTransactionId: string;
|
|
29157
|
+
transactionDate: Date | null;
|
|
29158
|
+
transactionType: "crypto" | "fiat";
|
|
29159
|
+
transactionSubType: string | null;
|
|
29160
|
+
transactionReview: string | null;
|
|
29161
|
+
transactionInfo: string;
|
|
29162
|
+
transactionExtractedInfo: string | null;
|
|
29163
|
+
};
|
|
29164
|
+
eventType: "tms.updated";
|
|
29165
|
+
}>, z.ZodObject<{
|
|
29166
|
+
eventType: z.ZodLiteral<"tms.deleted">;
|
|
29167
|
+
payload: z.ZodObject<{
|
|
29168
|
+
id: z.ZodString;
|
|
29169
|
+
customerId: z.ZodString;
|
|
29170
|
+
externalTransactionId: z.ZodString;
|
|
29171
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
29172
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
29173
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
29174
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
29175
|
+
transactionInfo: z.ZodString;
|
|
29176
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
29177
|
+
originator: z.ZodString;
|
|
29178
|
+
beneficiary: z.ZodString;
|
|
29179
|
+
createdAt: z.ZodDate;
|
|
29180
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
29181
|
+
}, "strip", z.ZodTypeAny, {
|
|
29182
|
+
id: string;
|
|
29183
|
+
createdAt: Date;
|
|
29184
|
+
updatedAt: Date | null;
|
|
29185
|
+
customerId: string;
|
|
29186
|
+
originator: string;
|
|
29187
|
+
beneficiary: string;
|
|
29188
|
+
externalTransactionId: string;
|
|
29189
|
+
transactionDate: Date | null;
|
|
29190
|
+
transactionType: "crypto" | "fiat";
|
|
29191
|
+
transactionSubType: string | null;
|
|
29192
|
+
transactionReview: string | null;
|
|
29193
|
+
transactionInfo: string;
|
|
29194
|
+
transactionExtractedInfo: string | null;
|
|
29195
|
+
}, {
|
|
29196
|
+
id: string;
|
|
29197
|
+
createdAt: Date;
|
|
29198
|
+
updatedAt: Date | null;
|
|
29199
|
+
customerId: string;
|
|
29200
|
+
originator: string;
|
|
29201
|
+
beneficiary: string;
|
|
29202
|
+
externalTransactionId: string;
|
|
29203
|
+
transactionDate: Date | null;
|
|
29204
|
+
transactionType: "crypto" | "fiat";
|
|
29205
|
+
transactionSubType: string | null;
|
|
29206
|
+
transactionReview: string | null;
|
|
29207
|
+
transactionInfo: string;
|
|
29208
|
+
transactionExtractedInfo: string | null;
|
|
29209
|
+
}>;
|
|
29210
|
+
}, "strip", z.ZodTypeAny, {
|
|
29211
|
+
payload: {
|
|
29212
|
+
id: string;
|
|
29213
|
+
createdAt: Date;
|
|
29214
|
+
updatedAt: Date | null;
|
|
29215
|
+
customerId: string;
|
|
29216
|
+
originator: string;
|
|
29217
|
+
beneficiary: string;
|
|
29218
|
+
externalTransactionId: string;
|
|
29219
|
+
transactionDate: Date | null;
|
|
29220
|
+
transactionType: "crypto" | "fiat";
|
|
29221
|
+
transactionSubType: string | null;
|
|
29222
|
+
transactionReview: string | null;
|
|
29223
|
+
transactionInfo: string;
|
|
29224
|
+
transactionExtractedInfo: string | null;
|
|
29225
|
+
};
|
|
29226
|
+
eventType: "tms.deleted";
|
|
29227
|
+
}, {
|
|
29228
|
+
payload: {
|
|
29229
|
+
id: string;
|
|
29230
|
+
createdAt: Date;
|
|
29231
|
+
updatedAt: Date | null;
|
|
29232
|
+
customerId: string;
|
|
29233
|
+
originator: string;
|
|
29234
|
+
beneficiary: string;
|
|
29235
|
+
externalTransactionId: string;
|
|
29236
|
+
transactionDate: Date | null;
|
|
29237
|
+
transactionType: "crypto" | "fiat";
|
|
29238
|
+
transactionSubType: string | null;
|
|
29239
|
+
transactionReview: string | null;
|
|
29240
|
+
transactionInfo: string;
|
|
29241
|
+
transactionExtractedInfo: string | null;
|
|
29242
|
+
};
|
|
29243
|
+
eventType: "tms.deleted";
|
|
28483
29244
|
}>]>]>;
|
|
28484
29245
|
export type WebhookEventPayload = z.infer<typeof WebhookEventPayload>;
|
|
28485
29246
|
export declare const AllNexeraEventTypes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -28602,6 +29363,51 @@ export declare const AllNexeraEventTypes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
28602
29363
|
description: string;
|
|
28603
29364
|
archived: boolean;
|
|
28604
29365
|
schemas: Record<string, unknown>;
|
|
29366
|
+
}>, z.ZodObject<{
|
|
29367
|
+
name: z.ZodLiteral<"tms.created">;
|
|
29368
|
+
description: z.ZodString;
|
|
29369
|
+
archived: z.ZodBoolean;
|
|
29370
|
+
schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
29371
|
+
}, "strip", z.ZodTypeAny, {
|
|
29372
|
+
name: "tms.created";
|
|
29373
|
+
description: string;
|
|
29374
|
+
archived: boolean;
|
|
29375
|
+
schemas: Record<string, unknown>;
|
|
29376
|
+
}, {
|
|
29377
|
+
name: "tms.created";
|
|
29378
|
+
description: string;
|
|
29379
|
+
archived: boolean;
|
|
29380
|
+
schemas: Record<string, unknown>;
|
|
29381
|
+
}>, z.ZodObject<{
|
|
29382
|
+
name: z.ZodLiteral<"tms.updated">;
|
|
29383
|
+
description: z.ZodString;
|
|
29384
|
+
archived: z.ZodBoolean;
|
|
29385
|
+
schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
29386
|
+
}, "strip", z.ZodTypeAny, {
|
|
29387
|
+
name: "tms.updated";
|
|
29388
|
+
description: string;
|
|
29389
|
+
archived: boolean;
|
|
29390
|
+
schemas: Record<string, unknown>;
|
|
29391
|
+
}, {
|
|
29392
|
+
name: "tms.updated";
|
|
29393
|
+
description: string;
|
|
29394
|
+
archived: boolean;
|
|
29395
|
+
schemas: Record<string, unknown>;
|
|
29396
|
+
}>, z.ZodObject<{
|
|
29397
|
+
name: z.ZodLiteral<"tms.deleted">;
|
|
29398
|
+
description: z.ZodString;
|
|
29399
|
+
archived: z.ZodBoolean;
|
|
29400
|
+
schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
29401
|
+
}, "strip", z.ZodTypeAny, {
|
|
29402
|
+
name: "tms.deleted";
|
|
29403
|
+
description: string;
|
|
29404
|
+
archived: boolean;
|
|
29405
|
+
schemas: Record<string, unknown>;
|
|
29406
|
+
}, {
|
|
29407
|
+
name: "tms.deleted";
|
|
29408
|
+
description: string;
|
|
29409
|
+
archived: boolean;
|
|
29410
|
+
schemas: Record<string, unknown>;
|
|
28605
29411
|
}>]>, "many">;
|
|
28606
29412
|
export declare const NexeraSvixEnvironmentConfig: z.ZodObject<{
|
|
28607
29413
|
env: z.ZodEnum<["cicd", "local", "test-dev-1", "test-dev-2", "dev", "stage", "prod"]>;
|
|
@@ -28622,6 +29428,9 @@ export declare const EndpointHandlingForm: z.ZodObject<{
|
|
|
28622
29428
|
alertCreated: z.ZodOptional<z.ZodBoolean>;
|
|
28623
29429
|
alertUpdated: z.ZodOptional<z.ZodBoolean>;
|
|
28624
29430
|
alertDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
29431
|
+
tmsCreated: z.ZodOptional<z.ZodBoolean>;
|
|
29432
|
+
tmsUpdated: z.ZodOptional<z.ZodBoolean>;
|
|
29433
|
+
tmsDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
28625
29434
|
}, "strip", z.ZodTypeAny, {
|
|
28626
29435
|
sendScenario?: boolean | undefined;
|
|
28627
29436
|
sendVerificationFlow?: boolean | undefined;
|
|
@@ -28631,6 +29440,9 @@ export declare const EndpointHandlingForm: z.ZodObject<{
|
|
|
28631
29440
|
alertCreated?: boolean | undefined;
|
|
28632
29441
|
alertUpdated?: boolean | undefined;
|
|
28633
29442
|
alertDeleted?: boolean | undefined;
|
|
29443
|
+
tmsCreated?: boolean | undefined;
|
|
29444
|
+
tmsUpdated?: boolean | undefined;
|
|
29445
|
+
tmsDeleted?: boolean | undefined;
|
|
28634
29446
|
}, {
|
|
28635
29447
|
sendScenario?: boolean | undefined;
|
|
28636
29448
|
sendVerificationFlow?: boolean | undefined;
|
|
@@ -28640,6 +29452,9 @@ export declare const EndpointHandlingForm: z.ZodObject<{
|
|
|
28640
29452
|
alertCreated?: boolean | undefined;
|
|
28641
29453
|
alertUpdated?: boolean | undefined;
|
|
28642
29454
|
alertDeleted?: boolean | undefined;
|
|
29455
|
+
tmsCreated?: boolean | undefined;
|
|
29456
|
+
tmsUpdated?: boolean | undefined;
|
|
29457
|
+
tmsDeleted?: boolean | undefined;
|
|
28643
29458
|
}>>;
|
|
28644
29459
|
}, "strip", z.ZodTypeAny, {
|
|
28645
29460
|
name: string;
|
|
@@ -28653,6 +29468,9 @@ export declare const EndpointHandlingForm: z.ZodObject<{
|
|
|
28653
29468
|
alertCreated?: boolean | undefined;
|
|
28654
29469
|
alertUpdated?: boolean | undefined;
|
|
28655
29470
|
alertDeleted?: boolean | undefined;
|
|
29471
|
+
tmsCreated?: boolean | undefined;
|
|
29472
|
+
tmsUpdated?: boolean | undefined;
|
|
29473
|
+
tmsDeleted?: boolean | undefined;
|
|
28656
29474
|
} | undefined;
|
|
28657
29475
|
}, {
|
|
28658
29476
|
name: string;
|
|
@@ -28666,18 +29484,21 @@ export declare const EndpointHandlingForm: z.ZodObject<{
|
|
|
28666
29484
|
alertCreated?: boolean | undefined;
|
|
28667
29485
|
alertUpdated?: boolean | undefined;
|
|
28668
29486
|
alertDeleted?: boolean | undefined;
|
|
29487
|
+
tmsCreated?: boolean | undefined;
|
|
29488
|
+
tmsUpdated?: boolean | undefined;
|
|
29489
|
+
tmsDeleted?: boolean | undefined;
|
|
28669
29490
|
} | undefined;
|
|
28670
29491
|
}>;
|
|
28671
29492
|
export declare const WebhookCheckboxInformation: z.ZodObject<{
|
|
28672
|
-
name: z.ZodEnum<["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted"]>;
|
|
29493
|
+
name: z.ZodEnum<["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted", "webhooks.tmsCreated", "webhooks.tmsUpdated", "webhooks.tmsDeleted"]>;
|
|
28673
29494
|
label: z.ZodString;
|
|
28674
29495
|
description: z.ZodString;
|
|
28675
29496
|
}, "strip", z.ZodTypeAny, {
|
|
28676
|
-
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted";
|
|
29497
|
+
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted" | "webhooks.tmsCreated" | "webhooks.tmsUpdated" | "webhooks.tmsDeleted";
|
|
28677
29498
|
description: string;
|
|
28678
29499
|
label: string;
|
|
28679
29500
|
}, {
|
|
28680
|
-
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted";
|
|
29501
|
+
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted" | "webhooks.tmsCreated" | "webhooks.tmsUpdated" | "webhooks.tmsDeleted";
|
|
28681
29502
|
description: string;
|
|
28682
29503
|
label: string;
|
|
28683
29504
|
}>;
|
|
@@ -28686,35 +29507,38 @@ export declare const EndpointCheckboxsCollapsiblesSchema: z.ZodObject<{
|
|
|
28686
29507
|
icon: z.ZodAny;
|
|
28687
29508
|
description: z.ZodString;
|
|
28688
29509
|
webhooks: z.ZodArray<z.ZodObject<{
|
|
28689
|
-
name: z.ZodEnum<["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted"]>;
|
|
29510
|
+
name: z.ZodEnum<["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted", "webhooks.tmsCreated", "webhooks.tmsUpdated", "webhooks.tmsDeleted"]>;
|
|
28690
29511
|
label: z.ZodString;
|
|
28691
29512
|
description: z.ZodString;
|
|
28692
29513
|
}, "strip", z.ZodTypeAny, {
|
|
28693
|
-
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted";
|
|
29514
|
+
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted" | "webhooks.tmsCreated" | "webhooks.tmsUpdated" | "webhooks.tmsDeleted";
|
|
28694
29515
|
description: string;
|
|
28695
29516
|
label: string;
|
|
28696
29517
|
}, {
|
|
28697
|
-
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted";
|
|
29518
|
+
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted" | "webhooks.tmsCreated" | "webhooks.tmsUpdated" | "webhooks.tmsDeleted";
|
|
28698
29519
|
description: string;
|
|
28699
29520
|
label: string;
|
|
28700
29521
|
}>, "many">;
|
|
29522
|
+
type: z.ZodOptional<z.ZodString>;
|
|
28701
29523
|
}, "strip", z.ZodTypeAny, {
|
|
28702
29524
|
title: string;
|
|
28703
29525
|
description: string;
|
|
28704
29526
|
webhooks: {
|
|
28705
|
-
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted";
|
|
29527
|
+
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted" | "webhooks.tmsCreated" | "webhooks.tmsUpdated" | "webhooks.tmsDeleted";
|
|
28706
29528
|
description: string;
|
|
28707
29529
|
label: string;
|
|
28708
29530
|
}[];
|
|
29531
|
+
type?: string | undefined;
|
|
28709
29532
|
icon?: any;
|
|
28710
29533
|
}, {
|
|
28711
29534
|
title: string;
|
|
28712
29535
|
description: string;
|
|
28713
29536
|
webhooks: {
|
|
28714
|
-
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted";
|
|
29537
|
+
name: "webhooks.sendScenario" | "webhooks.sendVerificationFlow" | "webhooks.customerCreated" | "webhooks.customerUpdated" | "webhooks.customerDeleted" | "webhooks.alertCreated" | "webhooks.alertUpdated" | "webhooks.alertDeleted" | "webhooks.tmsCreated" | "webhooks.tmsUpdated" | "webhooks.tmsDeleted";
|
|
28715
29538
|
description: string;
|
|
28716
29539
|
label: string;
|
|
28717
29540
|
}[];
|
|
29541
|
+
type?: string | undefined;
|
|
28718
29542
|
icon?: any;
|
|
28719
29543
|
}>;
|
|
28720
29544
|
export declare const EndpointOut: z.ZodObject<{
|
|
@@ -28759,7 +29583,7 @@ export declare const EndpointOut: z.ZodObject<{
|
|
|
28759
29583
|
}>;
|
|
28760
29584
|
export declare const MessageDataOut: z.ZodObject<{
|
|
28761
29585
|
id: z.ZodString;
|
|
28762
|
-
eventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>;
|
|
29586
|
+
eventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>;
|
|
28763
29587
|
timestamp: z.ZodDate;
|
|
28764
29588
|
payload: z.ZodUnion<[z.ZodObject<{
|
|
28765
29589
|
eventType: z.ZodLiteral<"send.scenario">;
|
|
@@ -38201,6 +39025,243 @@ export declare const MessageDataOut: z.ZodObject<{
|
|
|
38201
39025
|
deletedAt?: Date | null | undefined;
|
|
38202
39026
|
};
|
|
38203
39027
|
eventType: "alert.deleted";
|
|
39028
|
+
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
39029
|
+
eventType: z.ZodLiteral<"tms.created">;
|
|
39030
|
+
payload: z.ZodObject<{
|
|
39031
|
+
id: z.ZodString;
|
|
39032
|
+
customerId: z.ZodString;
|
|
39033
|
+
externalTransactionId: z.ZodString;
|
|
39034
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
39035
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
39036
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
39037
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
39038
|
+
transactionInfo: z.ZodString;
|
|
39039
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
39040
|
+
originator: z.ZodString;
|
|
39041
|
+
beneficiary: z.ZodString;
|
|
39042
|
+
createdAt: z.ZodDate;
|
|
39043
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
39044
|
+
}, "strip", z.ZodTypeAny, {
|
|
39045
|
+
id: string;
|
|
39046
|
+
createdAt: Date;
|
|
39047
|
+
updatedAt: Date | null;
|
|
39048
|
+
customerId: string;
|
|
39049
|
+
originator: string;
|
|
39050
|
+
beneficiary: string;
|
|
39051
|
+
externalTransactionId: string;
|
|
39052
|
+
transactionDate: Date | null;
|
|
39053
|
+
transactionType: "crypto" | "fiat";
|
|
39054
|
+
transactionSubType: string | null;
|
|
39055
|
+
transactionReview: string | null;
|
|
39056
|
+
transactionInfo: string;
|
|
39057
|
+
transactionExtractedInfo: string | null;
|
|
39058
|
+
}, {
|
|
39059
|
+
id: string;
|
|
39060
|
+
createdAt: Date;
|
|
39061
|
+
updatedAt: Date | null;
|
|
39062
|
+
customerId: string;
|
|
39063
|
+
originator: string;
|
|
39064
|
+
beneficiary: string;
|
|
39065
|
+
externalTransactionId: string;
|
|
39066
|
+
transactionDate: Date | null;
|
|
39067
|
+
transactionType: "crypto" | "fiat";
|
|
39068
|
+
transactionSubType: string | null;
|
|
39069
|
+
transactionReview: string | null;
|
|
39070
|
+
transactionInfo: string;
|
|
39071
|
+
transactionExtractedInfo: string | null;
|
|
39072
|
+
}>;
|
|
39073
|
+
}, "strip", z.ZodTypeAny, {
|
|
39074
|
+
payload: {
|
|
39075
|
+
id: string;
|
|
39076
|
+
createdAt: Date;
|
|
39077
|
+
updatedAt: Date | null;
|
|
39078
|
+
customerId: string;
|
|
39079
|
+
originator: string;
|
|
39080
|
+
beneficiary: string;
|
|
39081
|
+
externalTransactionId: string;
|
|
39082
|
+
transactionDate: Date | null;
|
|
39083
|
+
transactionType: "crypto" | "fiat";
|
|
39084
|
+
transactionSubType: string | null;
|
|
39085
|
+
transactionReview: string | null;
|
|
39086
|
+
transactionInfo: string;
|
|
39087
|
+
transactionExtractedInfo: string | null;
|
|
39088
|
+
};
|
|
39089
|
+
eventType: "tms.created";
|
|
39090
|
+
}, {
|
|
39091
|
+
payload: {
|
|
39092
|
+
id: string;
|
|
39093
|
+
createdAt: Date;
|
|
39094
|
+
updatedAt: Date | null;
|
|
39095
|
+
customerId: string;
|
|
39096
|
+
originator: string;
|
|
39097
|
+
beneficiary: string;
|
|
39098
|
+
externalTransactionId: string;
|
|
39099
|
+
transactionDate: Date | null;
|
|
39100
|
+
transactionType: "crypto" | "fiat";
|
|
39101
|
+
transactionSubType: string | null;
|
|
39102
|
+
transactionReview: string | null;
|
|
39103
|
+
transactionInfo: string;
|
|
39104
|
+
transactionExtractedInfo: string | null;
|
|
39105
|
+
};
|
|
39106
|
+
eventType: "tms.created";
|
|
39107
|
+
}>, z.ZodObject<{
|
|
39108
|
+
eventType: z.ZodLiteral<"tms.updated">;
|
|
39109
|
+
payload: z.ZodObject<{
|
|
39110
|
+
id: z.ZodString;
|
|
39111
|
+
customerId: z.ZodString;
|
|
39112
|
+
externalTransactionId: z.ZodString;
|
|
39113
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
39114
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
39115
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
39116
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
39117
|
+
transactionInfo: z.ZodString;
|
|
39118
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
39119
|
+
originator: z.ZodString;
|
|
39120
|
+
beneficiary: z.ZodString;
|
|
39121
|
+
createdAt: z.ZodDate;
|
|
39122
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
39123
|
+
}, "strip", z.ZodTypeAny, {
|
|
39124
|
+
id: string;
|
|
39125
|
+
createdAt: Date;
|
|
39126
|
+
updatedAt: Date | null;
|
|
39127
|
+
customerId: string;
|
|
39128
|
+
originator: string;
|
|
39129
|
+
beneficiary: string;
|
|
39130
|
+
externalTransactionId: string;
|
|
39131
|
+
transactionDate: Date | null;
|
|
39132
|
+
transactionType: "crypto" | "fiat";
|
|
39133
|
+
transactionSubType: string | null;
|
|
39134
|
+
transactionReview: string | null;
|
|
39135
|
+
transactionInfo: string;
|
|
39136
|
+
transactionExtractedInfo: string | null;
|
|
39137
|
+
}, {
|
|
39138
|
+
id: string;
|
|
39139
|
+
createdAt: Date;
|
|
39140
|
+
updatedAt: Date | null;
|
|
39141
|
+
customerId: string;
|
|
39142
|
+
originator: string;
|
|
39143
|
+
beneficiary: string;
|
|
39144
|
+
externalTransactionId: string;
|
|
39145
|
+
transactionDate: Date | null;
|
|
39146
|
+
transactionType: "crypto" | "fiat";
|
|
39147
|
+
transactionSubType: string | null;
|
|
39148
|
+
transactionReview: string | null;
|
|
39149
|
+
transactionInfo: string;
|
|
39150
|
+
transactionExtractedInfo: string | null;
|
|
39151
|
+
}>;
|
|
39152
|
+
}, "strip", z.ZodTypeAny, {
|
|
39153
|
+
payload: {
|
|
39154
|
+
id: string;
|
|
39155
|
+
createdAt: Date;
|
|
39156
|
+
updatedAt: Date | null;
|
|
39157
|
+
customerId: string;
|
|
39158
|
+
originator: string;
|
|
39159
|
+
beneficiary: string;
|
|
39160
|
+
externalTransactionId: string;
|
|
39161
|
+
transactionDate: Date | null;
|
|
39162
|
+
transactionType: "crypto" | "fiat";
|
|
39163
|
+
transactionSubType: string | null;
|
|
39164
|
+
transactionReview: string | null;
|
|
39165
|
+
transactionInfo: string;
|
|
39166
|
+
transactionExtractedInfo: string | null;
|
|
39167
|
+
};
|
|
39168
|
+
eventType: "tms.updated";
|
|
39169
|
+
}, {
|
|
39170
|
+
payload: {
|
|
39171
|
+
id: string;
|
|
39172
|
+
createdAt: Date;
|
|
39173
|
+
updatedAt: Date | null;
|
|
39174
|
+
customerId: string;
|
|
39175
|
+
originator: string;
|
|
39176
|
+
beneficiary: string;
|
|
39177
|
+
externalTransactionId: string;
|
|
39178
|
+
transactionDate: Date | null;
|
|
39179
|
+
transactionType: "crypto" | "fiat";
|
|
39180
|
+
transactionSubType: string | null;
|
|
39181
|
+
transactionReview: string | null;
|
|
39182
|
+
transactionInfo: string;
|
|
39183
|
+
transactionExtractedInfo: string | null;
|
|
39184
|
+
};
|
|
39185
|
+
eventType: "tms.updated";
|
|
39186
|
+
}>, z.ZodObject<{
|
|
39187
|
+
eventType: z.ZodLiteral<"tms.deleted">;
|
|
39188
|
+
payload: z.ZodObject<{
|
|
39189
|
+
id: z.ZodString;
|
|
39190
|
+
customerId: z.ZodString;
|
|
39191
|
+
externalTransactionId: z.ZodString;
|
|
39192
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
39193
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
39194
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
39195
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
39196
|
+
transactionInfo: z.ZodString;
|
|
39197
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
39198
|
+
originator: z.ZodString;
|
|
39199
|
+
beneficiary: z.ZodString;
|
|
39200
|
+
createdAt: z.ZodDate;
|
|
39201
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
39202
|
+
}, "strip", z.ZodTypeAny, {
|
|
39203
|
+
id: string;
|
|
39204
|
+
createdAt: Date;
|
|
39205
|
+
updatedAt: Date | null;
|
|
39206
|
+
customerId: string;
|
|
39207
|
+
originator: string;
|
|
39208
|
+
beneficiary: string;
|
|
39209
|
+
externalTransactionId: string;
|
|
39210
|
+
transactionDate: Date | null;
|
|
39211
|
+
transactionType: "crypto" | "fiat";
|
|
39212
|
+
transactionSubType: string | null;
|
|
39213
|
+
transactionReview: string | null;
|
|
39214
|
+
transactionInfo: string;
|
|
39215
|
+
transactionExtractedInfo: string | null;
|
|
39216
|
+
}, {
|
|
39217
|
+
id: string;
|
|
39218
|
+
createdAt: Date;
|
|
39219
|
+
updatedAt: Date | null;
|
|
39220
|
+
customerId: string;
|
|
39221
|
+
originator: string;
|
|
39222
|
+
beneficiary: string;
|
|
39223
|
+
externalTransactionId: string;
|
|
39224
|
+
transactionDate: Date | null;
|
|
39225
|
+
transactionType: "crypto" | "fiat";
|
|
39226
|
+
transactionSubType: string | null;
|
|
39227
|
+
transactionReview: string | null;
|
|
39228
|
+
transactionInfo: string;
|
|
39229
|
+
transactionExtractedInfo: string | null;
|
|
39230
|
+
}>;
|
|
39231
|
+
}, "strip", z.ZodTypeAny, {
|
|
39232
|
+
payload: {
|
|
39233
|
+
id: string;
|
|
39234
|
+
createdAt: Date;
|
|
39235
|
+
updatedAt: Date | null;
|
|
39236
|
+
customerId: string;
|
|
39237
|
+
originator: string;
|
|
39238
|
+
beneficiary: string;
|
|
39239
|
+
externalTransactionId: string;
|
|
39240
|
+
transactionDate: Date | null;
|
|
39241
|
+
transactionType: "crypto" | "fiat";
|
|
39242
|
+
transactionSubType: string | null;
|
|
39243
|
+
transactionReview: string | null;
|
|
39244
|
+
transactionInfo: string;
|
|
39245
|
+
transactionExtractedInfo: string | null;
|
|
39246
|
+
};
|
|
39247
|
+
eventType: "tms.deleted";
|
|
39248
|
+
}, {
|
|
39249
|
+
payload: {
|
|
39250
|
+
id: string;
|
|
39251
|
+
createdAt: Date;
|
|
39252
|
+
updatedAt: Date | null;
|
|
39253
|
+
customerId: string;
|
|
39254
|
+
originator: string;
|
|
39255
|
+
beneficiary: string;
|
|
39256
|
+
externalTransactionId: string;
|
|
39257
|
+
transactionDate: Date | null;
|
|
39258
|
+
transactionType: "crypto" | "fiat";
|
|
39259
|
+
transactionSubType: string | null;
|
|
39260
|
+
transactionReview: string | null;
|
|
39261
|
+
transactionInfo: string;
|
|
39262
|
+
transactionExtractedInfo: string | null;
|
|
39263
|
+
};
|
|
39264
|
+
eventType: "tms.deleted";
|
|
38204
39265
|
}>]>]>;
|
|
38205
39266
|
}, "strip", z.ZodTypeAny, {
|
|
38206
39267
|
id: string;
|
|
@@ -39015,8 +40076,59 @@ export declare const MessageDataOut: z.ZodObject<{
|
|
|
39015
40076
|
deletedAt?: Date | null | undefined;
|
|
39016
40077
|
};
|
|
39017
40078
|
eventType: "alert.deleted";
|
|
40079
|
+
} | {
|
|
40080
|
+
payload: {
|
|
40081
|
+
id: string;
|
|
40082
|
+
createdAt: Date;
|
|
40083
|
+
updatedAt: Date | null;
|
|
40084
|
+
customerId: string;
|
|
40085
|
+
originator: string;
|
|
40086
|
+
beneficiary: string;
|
|
40087
|
+
externalTransactionId: string;
|
|
40088
|
+
transactionDate: Date | null;
|
|
40089
|
+
transactionType: "crypto" | "fiat";
|
|
40090
|
+
transactionSubType: string | null;
|
|
40091
|
+
transactionReview: string | null;
|
|
40092
|
+
transactionInfo: string;
|
|
40093
|
+
transactionExtractedInfo: string | null;
|
|
40094
|
+
};
|
|
40095
|
+
eventType: "tms.created";
|
|
40096
|
+
} | {
|
|
40097
|
+
payload: {
|
|
40098
|
+
id: string;
|
|
40099
|
+
createdAt: Date;
|
|
40100
|
+
updatedAt: Date | null;
|
|
40101
|
+
customerId: string;
|
|
40102
|
+
originator: string;
|
|
40103
|
+
beneficiary: string;
|
|
40104
|
+
externalTransactionId: string;
|
|
40105
|
+
transactionDate: Date | null;
|
|
40106
|
+
transactionType: "crypto" | "fiat";
|
|
40107
|
+
transactionSubType: string | null;
|
|
40108
|
+
transactionReview: string | null;
|
|
40109
|
+
transactionInfo: string;
|
|
40110
|
+
transactionExtractedInfo: string | null;
|
|
40111
|
+
};
|
|
40112
|
+
eventType: "tms.updated";
|
|
40113
|
+
} | {
|
|
40114
|
+
payload: {
|
|
40115
|
+
id: string;
|
|
40116
|
+
createdAt: Date;
|
|
40117
|
+
updatedAt: Date | null;
|
|
40118
|
+
customerId: string;
|
|
40119
|
+
originator: string;
|
|
40120
|
+
beneficiary: string;
|
|
40121
|
+
externalTransactionId: string;
|
|
40122
|
+
transactionDate: Date | null;
|
|
40123
|
+
transactionType: "crypto" | "fiat";
|
|
40124
|
+
transactionSubType: string | null;
|
|
40125
|
+
transactionReview: string | null;
|
|
40126
|
+
transactionInfo: string;
|
|
40127
|
+
transactionExtractedInfo: string | null;
|
|
40128
|
+
};
|
|
40129
|
+
eventType: "tms.deleted";
|
|
39018
40130
|
};
|
|
39019
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
40131
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
39020
40132
|
}, {
|
|
39021
40133
|
id: string;
|
|
39022
40134
|
timestamp: Date;
|
|
@@ -39830,8 +40942,59 @@ export declare const MessageDataOut: z.ZodObject<{
|
|
|
39830
40942
|
deletedAt?: Date | null | undefined;
|
|
39831
40943
|
};
|
|
39832
40944
|
eventType: "alert.deleted";
|
|
40945
|
+
} | {
|
|
40946
|
+
payload: {
|
|
40947
|
+
id: string;
|
|
40948
|
+
createdAt: Date;
|
|
40949
|
+
updatedAt: Date | null;
|
|
40950
|
+
customerId: string;
|
|
40951
|
+
originator: string;
|
|
40952
|
+
beneficiary: string;
|
|
40953
|
+
externalTransactionId: string;
|
|
40954
|
+
transactionDate: Date | null;
|
|
40955
|
+
transactionType: "crypto" | "fiat";
|
|
40956
|
+
transactionSubType: string | null;
|
|
40957
|
+
transactionReview: string | null;
|
|
40958
|
+
transactionInfo: string;
|
|
40959
|
+
transactionExtractedInfo: string | null;
|
|
40960
|
+
};
|
|
40961
|
+
eventType: "tms.created";
|
|
40962
|
+
} | {
|
|
40963
|
+
payload: {
|
|
40964
|
+
id: string;
|
|
40965
|
+
createdAt: Date;
|
|
40966
|
+
updatedAt: Date | null;
|
|
40967
|
+
customerId: string;
|
|
40968
|
+
originator: string;
|
|
40969
|
+
beneficiary: string;
|
|
40970
|
+
externalTransactionId: string;
|
|
40971
|
+
transactionDate: Date | null;
|
|
40972
|
+
transactionType: "crypto" | "fiat";
|
|
40973
|
+
transactionSubType: string | null;
|
|
40974
|
+
transactionReview: string | null;
|
|
40975
|
+
transactionInfo: string;
|
|
40976
|
+
transactionExtractedInfo: string | null;
|
|
40977
|
+
};
|
|
40978
|
+
eventType: "tms.updated";
|
|
40979
|
+
} | {
|
|
40980
|
+
payload: {
|
|
40981
|
+
id: string;
|
|
40982
|
+
createdAt: Date;
|
|
40983
|
+
updatedAt: Date | null;
|
|
40984
|
+
customerId: string;
|
|
40985
|
+
originator: string;
|
|
40986
|
+
beneficiary: string;
|
|
40987
|
+
externalTransactionId: string;
|
|
40988
|
+
transactionDate: Date | null;
|
|
40989
|
+
transactionType: "crypto" | "fiat";
|
|
40990
|
+
transactionSubType: string | null;
|
|
40991
|
+
transactionReview: string | null;
|
|
40992
|
+
transactionInfo: string;
|
|
40993
|
+
transactionExtractedInfo: string | null;
|
|
40994
|
+
};
|
|
40995
|
+
eventType: "tms.deleted";
|
|
39833
40996
|
};
|
|
39834
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
40997
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
39835
40998
|
}>;
|
|
39836
40999
|
export declare const AttemptDataOut: z.ZodObject<{
|
|
39837
41000
|
id: z.ZodString;
|
|
@@ -39863,7 +41026,7 @@ export declare const AttemptDataOut: z.ZodObject<{
|
|
|
39863
41026
|
}>;
|
|
39864
41027
|
export declare const MessageDataOutExtended: z.ZodObject<z.objectUtil.extendShape<{
|
|
39865
41028
|
id: z.ZodString;
|
|
39866
|
-
eventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>;
|
|
41029
|
+
eventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>;
|
|
39867
41030
|
timestamp: z.ZodDate;
|
|
39868
41031
|
payload: z.ZodUnion<[z.ZodObject<{
|
|
39869
41032
|
eventType: z.ZodLiteral<"send.scenario">;
|
|
@@ -49305,6 +50468,243 @@ export declare const MessageDataOutExtended: z.ZodObject<z.objectUtil.extendShap
|
|
|
49305
50468
|
deletedAt?: Date | null | undefined;
|
|
49306
50469
|
};
|
|
49307
50470
|
eventType: "alert.deleted";
|
|
50471
|
+
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
50472
|
+
eventType: z.ZodLiteral<"tms.created">;
|
|
50473
|
+
payload: z.ZodObject<{
|
|
50474
|
+
id: z.ZodString;
|
|
50475
|
+
customerId: z.ZodString;
|
|
50476
|
+
externalTransactionId: z.ZodString;
|
|
50477
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
50478
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
50479
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
50480
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
50481
|
+
transactionInfo: z.ZodString;
|
|
50482
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
50483
|
+
originator: z.ZodString;
|
|
50484
|
+
beneficiary: z.ZodString;
|
|
50485
|
+
createdAt: z.ZodDate;
|
|
50486
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
50487
|
+
}, "strip", z.ZodTypeAny, {
|
|
50488
|
+
id: string;
|
|
50489
|
+
createdAt: Date;
|
|
50490
|
+
updatedAt: Date | null;
|
|
50491
|
+
customerId: string;
|
|
50492
|
+
originator: string;
|
|
50493
|
+
beneficiary: string;
|
|
50494
|
+
externalTransactionId: string;
|
|
50495
|
+
transactionDate: Date | null;
|
|
50496
|
+
transactionType: "crypto" | "fiat";
|
|
50497
|
+
transactionSubType: string | null;
|
|
50498
|
+
transactionReview: string | null;
|
|
50499
|
+
transactionInfo: string;
|
|
50500
|
+
transactionExtractedInfo: string | null;
|
|
50501
|
+
}, {
|
|
50502
|
+
id: string;
|
|
50503
|
+
createdAt: Date;
|
|
50504
|
+
updatedAt: Date | null;
|
|
50505
|
+
customerId: string;
|
|
50506
|
+
originator: string;
|
|
50507
|
+
beneficiary: string;
|
|
50508
|
+
externalTransactionId: string;
|
|
50509
|
+
transactionDate: Date | null;
|
|
50510
|
+
transactionType: "crypto" | "fiat";
|
|
50511
|
+
transactionSubType: string | null;
|
|
50512
|
+
transactionReview: string | null;
|
|
50513
|
+
transactionInfo: string;
|
|
50514
|
+
transactionExtractedInfo: string | null;
|
|
50515
|
+
}>;
|
|
50516
|
+
}, "strip", z.ZodTypeAny, {
|
|
50517
|
+
payload: {
|
|
50518
|
+
id: string;
|
|
50519
|
+
createdAt: Date;
|
|
50520
|
+
updatedAt: Date | null;
|
|
50521
|
+
customerId: string;
|
|
50522
|
+
originator: string;
|
|
50523
|
+
beneficiary: string;
|
|
50524
|
+
externalTransactionId: string;
|
|
50525
|
+
transactionDate: Date | null;
|
|
50526
|
+
transactionType: "crypto" | "fiat";
|
|
50527
|
+
transactionSubType: string | null;
|
|
50528
|
+
transactionReview: string | null;
|
|
50529
|
+
transactionInfo: string;
|
|
50530
|
+
transactionExtractedInfo: string | null;
|
|
50531
|
+
};
|
|
50532
|
+
eventType: "tms.created";
|
|
50533
|
+
}, {
|
|
50534
|
+
payload: {
|
|
50535
|
+
id: string;
|
|
50536
|
+
createdAt: Date;
|
|
50537
|
+
updatedAt: Date | null;
|
|
50538
|
+
customerId: string;
|
|
50539
|
+
originator: string;
|
|
50540
|
+
beneficiary: string;
|
|
50541
|
+
externalTransactionId: string;
|
|
50542
|
+
transactionDate: Date | null;
|
|
50543
|
+
transactionType: "crypto" | "fiat";
|
|
50544
|
+
transactionSubType: string | null;
|
|
50545
|
+
transactionReview: string | null;
|
|
50546
|
+
transactionInfo: string;
|
|
50547
|
+
transactionExtractedInfo: string | null;
|
|
50548
|
+
};
|
|
50549
|
+
eventType: "tms.created";
|
|
50550
|
+
}>, z.ZodObject<{
|
|
50551
|
+
eventType: z.ZodLiteral<"tms.updated">;
|
|
50552
|
+
payload: z.ZodObject<{
|
|
50553
|
+
id: z.ZodString;
|
|
50554
|
+
customerId: z.ZodString;
|
|
50555
|
+
externalTransactionId: z.ZodString;
|
|
50556
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
50557
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
50558
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
50559
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
50560
|
+
transactionInfo: z.ZodString;
|
|
50561
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
50562
|
+
originator: z.ZodString;
|
|
50563
|
+
beneficiary: z.ZodString;
|
|
50564
|
+
createdAt: z.ZodDate;
|
|
50565
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
50566
|
+
}, "strip", z.ZodTypeAny, {
|
|
50567
|
+
id: string;
|
|
50568
|
+
createdAt: Date;
|
|
50569
|
+
updatedAt: Date | null;
|
|
50570
|
+
customerId: string;
|
|
50571
|
+
originator: string;
|
|
50572
|
+
beneficiary: string;
|
|
50573
|
+
externalTransactionId: string;
|
|
50574
|
+
transactionDate: Date | null;
|
|
50575
|
+
transactionType: "crypto" | "fiat";
|
|
50576
|
+
transactionSubType: string | null;
|
|
50577
|
+
transactionReview: string | null;
|
|
50578
|
+
transactionInfo: string;
|
|
50579
|
+
transactionExtractedInfo: string | null;
|
|
50580
|
+
}, {
|
|
50581
|
+
id: string;
|
|
50582
|
+
createdAt: Date;
|
|
50583
|
+
updatedAt: Date | null;
|
|
50584
|
+
customerId: string;
|
|
50585
|
+
originator: string;
|
|
50586
|
+
beneficiary: string;
|
|
50587
|
+
externalTransactionId: string;
|
|
50588
|
+
transactionDate: Date | null;
|
|
50589
|
+
transactionType: "crypto" | "fiat";
|
|
50590
|
+
transactionSubType: string | null;
|
|
50591
|
+
transactionReview: string | null;
|
|
50592
|
+
transactionInfo: string;
|
|
50593
|
+
transactionExtractedInfo: string | null;
|
|
50594
|
+
}>;
|
|
50595
|
+
}, "strip", z.ZodTypeAny, {
|
|
50596
|
+
payload: {
|
|
50597
|
+
id: string;
|
|
50598
|
+
createdAt: Date;
|
|
50599
|
+
updatedAt: Date | null;
|
|
50600
|
+
customerId: string;
|
|
50601
|
+
originator: string;
|
|
50602
|
+
beneficiary: string;
|
|
50603
|
+
externalTransactionId: string;
|
|
50604
|
+
transactionDate: Date | null;
|
|
50605
|
+
transactionType: "crypto" | "fiat";
|
|
50606
|
+
transactionSubType: string | null;
|
|
50607
|
+
transactionReview: string | null;
|
|
50608
|
+
transactionInfo: string;
|
|
50609
|
+
transactionExtractedInfo: string | null;
|
|
50610
|
+
};
|
|
50611
|
+
eventType: "tms.updated";
|
|
50612
|
+
}, {
|
|
50613
|
+
payload: {
|
|
50614
|
+
id: string;
|
|
50615
|
+
createdAt: Date;
|
|
50616
|
+
updatedAt: Date | null;
|
|
50617
|
+
customerId: string;
|
|
50618
|
+
originator: string;
|
|
50619
|
+
beneficiary: string;
|
|
50620
|
+
externalTransactionId: string;
|
|
50621
|
+
transactionDate: Date | null;
|
|
50622
|
+
transactionType: "crypto" | "fiat";
|
|
50623
|
+
transactionSubType: string | null;
|
|
50624
|
+
transactionReview: string | null;
|
|
50625
|
+
transactionInfo: string;
|
|
50626
|
+
transactionExtractedInfo: string | null;
|
|
50627
|
+
};
|
|
50628
|
+
eventType: "tms.updated";
|
|
50629
|
+
}>, z.ZodObject<{
|
|
50630
|
+
eventType: z.ZodLiteral<"tms.deleted">;
|
|
50631
|
+
payload: z.ZodObject<{
|
|
50632
|
+
id: z.ZodString;
|
|
50633
|
+
customerId: z.ZodString;
|
|
50634
|
+
externalTransactionId: z.ZodString;
|
|
50635
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
50636
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
50637
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
50638
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
50639
|
+
transactionInfo: z.ZodString;
|
|
50640
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
50641
|
+
originator: z.ZodString;
|
|
50642
|
+
beneficiary: z.ZodString;
|
|
50643
|
+
createdAt: z.ZodDate;
|
|
50644
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
50645
|
+
}, "strip", z.ZodTypeAny, {
|
|
50646
|
+
id: string;
|
|
50647
|
+
createdAt: Date;
|
|
50648
|
+
updatedAt: Date | null;
|
|
50649
|
+
customerId: string;
|
|
50650
|
+
originator: string;
|
|
50651
|
+
beneficiary: string;
|
|
50652
|
+
externalTransactionId: string;
|
|
50653
|
+
transactionDate: Date | null;
|
|
50654
|
+
transactionType: "crypto" | "fiat";
|
|
50655
|
+
transactionSubType: string | null;
|
|
50656
|
+
transactionReview: string | null;
|
|
50657
|
+
transactionInfo: string;
|
|
50658
|
+
transactionExtractedInfo: string | null;
|
|
50659
|
+
}, {
|
|
50660
|
+
id: string;
|
|
50661
|
+
createdAt: Date;
|
|
50662
|
+
updatedAt: Date | null;
|
|
50663
|
+
customerId: string;
|
|
50664
|
+
originator: string;
|
|
50665
|
+
beneficiary: string;
|
|
50666
|
+
externalTransactionId: string;
|
|
50667
|
+
transactionDate: Date | null;
|
|
50668
|
+
transactionType: "crypto" | "fiat";
|
|
50669
|
+
transactionSubType: string | null;
|
|
50670
|
+
transactionReview: string | null;
|
|
50671
|
+
transactionInfo: string;
|
|
50672
|
+
transactionExtractedInfo: string | null;
|
|
50673
|
+
}>;
|
|
50674
|
+
}, "strip", z.ZodTypeAny, {
|
|
50675
|
+
payload: {
|
|
50676
|
+
id: string;
|
|
50677
|
+
createdAt: Date;
|
|
50678
|
+
updatedAt: Date | null;
|
|
50679
|
+
customerId: string;
|
|
50680
|
+
originator: string;
|
|
50681
|
+
beneficiary: string;
|
|
50682
|
+
externalTransactionId: string;
|
|
50683
|
+
transactionDate: Date | null;
|
|
50684
|
+
transactionType: "crypto" | "fiat";
|
|
50685
|
+
transactionSubType: string | null;
|
|
50686
|
+
transactionReview: string | null;
|
|
50687
|
+
transactionInfo: string;
|
|
50688
|
+
transactionExtractedInfo: string | null;
|
|
50689
|
+
};
|
|
50690
|
+
eventType: "tms.deleted";
|
|
50691
|
+
}, {
|
|
50692
|
+
payload: {
|
|
50693
|
+
id: string;
|
|
50694
|
+
createdAt: Date;
|
|
50695
|
+
updatedAt: Date | null;
|
|
50696
|
+
customerId: string;
|
|
50697
|
+
originator: string;
|
|
50698
|
+
beneficiary: string;
|
|
50699
|
+
externalTransactionId: string;
|
|
50700
|
+
transactionDate: Date | null;
|
|
50701
|
+
transactionType: "crypto" | "fiat";
|
|
50702
|
+
transactionSubType: string | null;
|
|
50703
|
+
transactionReview: string | null;
|
|
50704
|
+
transactionInfo: string;
|
|
50705
|
+
transactionExtractedInfo: string | null;
|
|
50706
|
+
};
|
|
50707
|
+
eventType: "tms.deleted";
|
|
49308
50708
|
}>]>]>;
|
|
49309
50709
|
}, {
|
|
49310
50710
|
status: z.ZodNumber;
|
|
@@ -50152,8 +51552,59 @@ export declare const MessageDataOutExtended: z.ZodObject<z.objectUtil.extendShap
|
|
|
50152
51552
|
deletedAt?: Date | null | undefined;
|
|
50153
51553
|
};
|
|
50154
51554
|
eventType: "alert.deleted";
|
|
51555
|
+
} | {
|
|
51556
|
+
payload: {
|
|
51557
|
+
id: string;
|
|
51558
|
+
createdAt: Date;
|
|
51559
|
+
updatedAt: Date | null;
|
|
51560
|
+
customerId: string;
|
|
51561
|
+
originator: string;
|
|
51562
|
+
beneficiary: string;
|
|
51563
|
+
externalTransactionId: string;
|
|
51564
|
+
transactionDate: Date | null;
|
|
51565
|
+
transactionType: "crypto" | "fiat";
|
|
51566
|
+
transactionSubType: string | null;
|
|
51567
|
+
transactionReview: string | null;
|
|
51568
|
+
transactionInfo: string;
|
|
51569
|
+
transactionExtractedInfo: string | null;
|
|
51570
|
+
};
|
|
51571
|
+
eventType: "tms.created";
|
|
51572
|
+
} | {
|
|
51573
|
+
payload: {
|
|
51574
|
+
id: string;
|
|
51575
|
+
createdAt: Date;
|
|
51576
|
+
updatedAt: Date | null;
|
|
51577
|
+
customerId: string;
|
|
51578
|
+
originator: string;
|
|
51579
|
+
beneficiary: string;
|
|
51580
|
+
externalTransactionId: string;
|
|
51581
|
+
transactionDate: Date | null;
|
|
51582
|
+
transactionType: "crypto" | "fiat";
|
|
51583
|
+
transactionSubType: string | null;
|
|
51584
|
+
transactionReview: string | null;
|
|
51585
|
+
transactionInfo: string;
|
|
51586
|
+
transactionExtractedInfo: string | null;
|
|
51587
|
+
};
|
|
51588
|
+
eventType: "tms.updated";
|
|
51589
|
+
} | {
|
|
51590
|
+
payload: {
|
|
51591
|
+
id: string;
|
|
51592
|
+
createdAt: Date;
|
|
51593
|
+
updatedAt: Date | null;
|
|
51594
|
+
customerId: string;
|
|
51595
|
+
originator: string;
|
|
51596
|
+
beneficiary: string;
|
|
51597
|
+
externalTransactionId: string;
|
|
51598
|
+
transactionDate: Date | null;
|
|
51599
|
+
transactionType: "crypto" | "fiat";
|
|
51600
|
+
transactionSubType: string | null;
|
|
51601
|
+
transactionReview: string | null;
|
|
51602
|
+
transactionInfo: string;
|
|
51603
|
+
transactionExtractedInfo: string | null;
|
|
51604
|
+
};
|
|
51605
|
+
eventType: "tms.deleted";
|
|
50155
51606
|
};
|
|
50156
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
51607
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
50157
51608
|
attempts: {
|
|
50158
51609
|
id: string;
|
|
50159
51610
|
status: number;
|
|
@@ -50979,8 +52430,59 @@ export declare const MessageDataOutExtended: z.ZodObject<z.objectUtil.extendShap
|
|
|
50979
52430
|
deletedAt?: Date | null | undefined;
|
|
50980
52431
|
};
|
|
50981
52432
|
eventType: "alert.deleted";
|
|
52433
|
+
} | {
|
|
52434
|
+
payload: {
|
|
52435
|
+
id: string;
|
|
52436
|
+
createdAt: Date;
|
|
52437
|
+
updatedAt: Date | null;
|
|
52438
|
+
customerId: string;
|
|
52439
|
+
originator: string;
|
|
52440
|
+
beneficiary: string;
|
|
52441
|
+
externalTransactionId: string;
|
|
52442
|
+
transactionDate: Date | null;
|
|
52443
|
+
transactionType: "crypto" | "fiat";
|
|
52444
|
+
transactionSubType: string | null;
|
|
52445
|
+
transactionReview: string | null;
|
|
52446
|
+
transactionInfo: string;
|
|
52447
|
+
transactionExtractedInfo: string | null;
|
|
52448
|
+
};
|
|
52449
|
+
eventType: "tms.created";
|
|
52450
|
+
} | {
|
|
52451
|
+
payload: {
|
|
52452
|
+
id: string;
|
|
52453
|
+
createdAt: Date;
|
|
52454
|
+
updatedAt: Date | null;
|
|
52455
|
+
customerId: string;
|
|
52456
|
+
originator: string;
|
|
52457
|
+
beneficiary: string;
|
|
52458
|
+
externalTransactionId: string;
|
|
52459
|
+
transactionDate: Date | null;
|
|
52460
|
+
transactionType: "crypto" | "fiat";
|
|
52461
|
+
transactionSubType: string | null;
|
|
52462
|
+
transactionReview: string | null;
|
|
52463
|
+
transactionInfo: string;
|
|
52464
|
+
transactionExtractedInfo: string | null;
|
|
52465
|
+
};
|
|
52466
|
+
eventType: "tms.updated";
|
|
52467
|
+
} | {
|
|
52468
|
+
payload: {
|
|
52469
|
+
id: string;
|
|
52470
|
+
createdAt: Date;
|
|
52471
|
+
updatedAt: Date | null;
|
|
52472
|
+
customerId: string;
|
|
52473
|
+
originator: string;
|
|
52474
|
+
beneficiary: string;
|
|
52475
|
+
externalTransactionId: string;
|
|
52476
|
+
transactionDate: Date | null;
|
|
52477
|
+
transactionType: "crypto" | "fiat";
|
|
52478
|
+
transactionSubType: string | null;
|
|
52479
|
+
transactionReview: string | null;
|
|
52480
|
+
transactionInfo: string;
|
|
52481
|
+
transactionExtractedInfo: string | null;
|
|
52482
|
+
};
|
|
52483
|
+
eventType: "tms.deleted";
|
|
50982
52484
|
};
|
|
50983
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
52485
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
50984
52486
|
attempts: {
|
|
50985
52487
|
id: string;
|
|
50986
52488
|
status: number;
|
|
@@ -51076,18 +52578,18 @@ export declare const ListEventTypeOutput: z.ZodObject<{
|
|
|
51076
52578
|
export declare const CreateEndpointInput: z.ZodObject<{
|
|
51077
52579
|
projectId: z.ZodString;
|
|
51078
52580
|
name: z.ZodString;
|
|
51079
|
-
eventTypes: z.ZodArray<z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>, "many">;
|
|
52581
|
+
eventTypes: z.ZodArray<z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>, "many">;
|
|
51080
52582
|
url: z.ZodString;
|
|
51081
52583
|
}, "strip", z.ZodTypeAny, {
|
|
51082
52584
|
name: string;
|
|
51083
52585
|
url: string;
|
|
51084
52586
|
projectId: string;
|
|
51085
|
-
eventTypes: ("send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted")[];
|
|
52587
|
+
eventTypes: ("send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted")[];
|
|
51086
52588
|
}, {
|
|
51087
52589
|
name: string;
|
|
51088
52590
|
url: string;
|
|
51089
52591
|
projectId: string;
|
|
51090
|
-
eventTypes: ("send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted")[];
|
|
52592
|
+
eventTypes: ("send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted")[];
|
|
51091
52593
|
}>;
|
|
51092
52594
|
export declare const CreateEndpointOutput: z.ZodOptional<z.ZodObject<{
|
|
51093
52595
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -51213,7 +52715,7 @@ export declare const UpdateEndpointInput: z.ZodObject<{
|
|
|
51213
52715
|
endpointId: z.ZodString;
|
|
51214
52716
|
url: z.ZodString;
|
|
51215
52717
|
name: z.ZodString;
|
|
51216
|
-
eventTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>, "many">>;
|
|
52718
|
+
eventTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>, "many">>;
|
|
51217
52719
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
51218
52720
|
}, "strip", z.ZodTypeAny, {
|
|
51219
52721
|
name: string;
|
|
@@ -51221,14 +52723,14 @@ export declare const UpdateEndpointInput: z.ZodObject<{
|
|
|
51221
52723
|
projectId: string;
|
|
51222
52724
|
endpointId: string;
|
|
51223
52725
|
disabled?: boolean | undefined;
|
|
51224
|
-
eventTypes?: ("send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted")[] | undefined;
|
|
52726
|
+
eventTypes?: ("send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted")[] | undefined;
|
|
51225
52727
|
}, {
|
|
51226
52728
|
name: string;
|
|
51227
52729
|
url: string;
|
|
51228
52730
|
projectId: string;
|
|
51229
52731
|
endpointId: string;
|
|
51230
52732
|
disabled?: boolean | undefined;
|
|
51231
|
-
eventTypes?: ("send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted")[] | undefined;
|
|
52733
|
+
eventTypes?: ("send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted")[] | undefined;
|
|
51232
52734
|
}>;
|
|
51233
52735
|
export declare const UpdateEndpointOutput: z.ZodOptional<z.ZodObject<{
|
|
51234
52736
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -62443,6 +63945,375 @@ export declare const SendMessageForAlertDeletedInput: z.ZodObject<{
|
|
|
62443
63945
|
eventType: "alert.deleted";
|
|
62444
63946
|
};
|
|
62445
63947
|
}>;
|
|
63948
|
+
export declare const SendMessageForTMSCreatedInput: z.ZodObject<{
|
|
63949
|
+
projectId: z.ZodString;
|
|
63950
|
+
payload: z.ZodObject<{
|
|
63951
|
+
eventType: z.ZodLiteral<"tms.created">;
|
|
63952
|
+
payload: z.ZodObject<{
|
|
63953
|
+
id: z.ZodString;
|
|
63954
|
+
customerId: z.ZodString;
|
|
63955
|
+
externalTransactionId: z.ZodString;
|
|
63956
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
63957
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
63958
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
63959
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
63960
|
+
transactionInfo: z.ZodString;
|
|
63961
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
63962
|
+
originator: z.ZodString;
|
|
63963
|
+
beneficiary: z.ZodString;
|
|
63964
|
+
createdAt: z.ZodDate;
|
|
63965
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
63966
|
+
}, "strip", z.ZodTypeAny, {
|
|
63967
|
+
id: string;
|
|
63968
|
+
createdAt: Date;
|
|
63969
|
+
updatedAt: Date | null;
|
|
63970
|
+
customerId: string;
|
|
63971
|
+
originator: string;
|
|
63972
|
+
beneficiary: string;
|
|
63973
|
+
externalTransactionId: string;
|
|
63974
|
+
transactionDate: Date | null;
|
|
63975
|
+
transactionType: "crypto" | "fiat";
|
|
63976
|
+
transactionSubType: string | null;
|
|
63977
|
+
transactionReview: string | null;
|
|
63978
|
+
transactionInfo: string;
|
|
63979
|
+
transactionExtractedInfo: string | null;
|
|
63980
|
+
}, {
|
|
63981
|
+
id: string;
|
|
63982
|
+
createdAt: Date;
|
|
63983
|
+
updatedAt: Date | null;
|
|
63984
|
+
customerId: string;
|
|
63985
|
+
originator: string;
|
|
63986
|
+
beneficiary: string;
|
|
63987
|
+
externalTransactionId: string;
|
|
63988
|
+
transactionDate: Date | null;
|
|
63989
|
+
transactionType: "crypto" | "fiat";
|
|
63990
|
+
transactionSubType: string | null;
|
|
63991
|
+
transactionReview: string | null;
|
|
63992
|
+
transactionInfo: string;
|
|
63993
|
+
transactionExtractedInfo: string | null;
|
|
63994
|
+
}>;
|
|
63995
|
+
}, "strip", z.ZodTypeAny, {
|
|
63996
|
+
payload: {
|
|
63997
|
+
id: string;
|
|
63998
|
+
createdAt: Date;
|
|
63999
|
+
updatedAt: Date | null;
|
|
64000
|
+
customerId: string;
|
|
64001
|
+
originator: string;
|
|
64002
|
+
beneficiary: string;
|
|
64003
|
+
externalTransactionId: string;
|
|
64004
|
+
transactionDate: Date | null;
|
|
64005
|
+
transactionType: "crypto" | "fiat";
|
|
64006
|
+
transactionSubType: string | null;
|
|
64007
|
+
transactionReview: string | null;
|
|
64008
|
+
transactionInfo: string;
|
|
64009
|
+
transactionExtractedInfo: string | null;
|
|
64010
|
+
};
|
|
64011
|
+
eventType: "tms.created";
|
|
64012
|
+
}, {
|
|
64013
|
+
payload: {
|
|
64014
|
+
id: string;
|
|
64015
|
+
createdAt: Date;
|
|
64016
|
+
updatedAt: Date | null;
|
|
64017
|
+
customerId: string;
|
|
64018
|
+
originator: string;
|
|
64019
|
+
beneficiary: string;
|
|
64020
|
+
externalTransactionId: string;
|
|
64021
|
+
transactionDate: Date | null;
|
|
64022
|
+
transactionType: "crypto" | "fiat";
|
|
64023
|
+
transactionSubType: string | null;
|
|
64024
|
+
transactionReview: string | null;
|
|
64025
|
+
transactionInfo: string;
|
|
64026
|
+
transactionExtractedInfo: string | null;
|
|
64027
|
+
};
|
|
64028
|
+
eventType: "tms.created";
|
|
64029
|
+
}>;
|
|
64030
|
+
}, "strip", z.ZodTypeAny, {
|
|
64031
|
+
projectId: string;
|
|
64032
|
+
payload: {
|
|
64033
|
+
payload: {
|
|
64034
|
+
id: string;
|
|
64035
|
+
createdAt: Date;
|
|
64036
|
+
updatedAt: Date | null;
|
|
64037
|
+
customerId: string;
|
|
64038
|
+
originator: string;
|
|
64039
|
+
beneficiary: string;
|
|
64040
|
+
externalTransactionId: string;
|
|
64041
|
+
transactionDate: Date | null;
|
|
64042
|
+
transactionType: "crypto" | "fiat";
|
|
64043
|
+
transactionSubType: string | null;
|
|
64044
|
+
transactionReview: string | null;
|
|
64045
|
+
transactionInfo: string;
|
|
64046
|
+
transactionExtractedInfo: string | null;
|
|
64047
|
+
};
|
|
64048
|
+
eventType: "tms.created";
|
|
64049
|
+
};
|
|
64050
|
+
}, {
|
|
64051
|
+
projectId: string;
|
|
64052
|
+
payload: {
|
|
64053
|
+
payload: {
|
|
64054
|
+
id: string;
|
|
64055
|
+
createdAt: Date;
|
|
64056
|
+
updatedAt: Date | null;
|
|
64057
|
+
customerId: string;
|
|
64058
|
+
originator: string;
|
|
64059
|
+
beneficiary: string;
|
|
64060
|
+
externalTransactionId: string;
|
|
64061
|
+
transactionDate: Date | null;
|
|
64062
|
+
transactionType: "crypto" | "fiat";
|
|
64063
|
+
transactionSubType: string | null;
|
|
64064
|
+
transactionReview: string | null;
|
|
64065
|
+
transactionInfo: string;
|
|
64066
|
+
transactionExtractedInfo: string | null;
|
|
64067
|
+
};
|
|
64068
|
+
eventType: "tms.created";
|
|
64069
|
+
};
|
|
64070
|
+
}>;
|
|
64071
|
+
export declare const SendMessageForTMSUpdatedInput: z.ZodObject<{
|
|
64072
|
+
projectId: z.ZodString;
|
|
64073
|
+
payload: z.ZodObject<{
|
|
64074
|
+
eventType: z.ZodLiteral<"tms.updated">;
|
|
64075
|
+
payload: z.ZodObject<{
|
|
64076
|
+
id: z.ZodString;
|
|
64077
|
+
customerId: z.ZodString;
|
|
64078
|
+
externalTransactionId: z.ZodString;
|
|
64079
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
64080
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
64081
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
64082
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
64083
|
+
transactionInfo: z.ZodString;
|
|
64084
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
64085
|
+
originator: z.ZodString;
|
|
64086
|
+
beneficiary: z.ZodString;
|
|
64087
|
+
createdAt: z.ZodDate;
|
|
64088
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
64089
|
+
}, "strip", z.ZodTypeAny, {
|
|
64090
|
+
id: string;
|
|
64091
|
+
createdAt: Date;
|
|
64092
|
+
updatedAt: Date | null;
|
|
64093
|
+
customerId: string;
|
|
64094
|
+
originator: string;
|
|
64095
|
+
beneficiary: string;
|
|
64096
|
+
externalTransactionId: string;
|
|
64097
|
+
transactionDate: Date | null;
|
|
64098
|
+
transactionType: "crypto" | "fiat";
|
|
64099
|
+
transactionSubType: string | null;
|
|
64100
|
+
transactionReview: string | null;
|
|
64101
|
+
transactionInfo: string;
|
|
64102
|
+
transactionExtractedInfo: string | null;
|
|
64103
|
+
}, {
|
|
64104
|
+
id: string;
|
|
64105
|
+
createdAt: Date;
|
|
64106
|
+
updatedAt: Date | null;
|
|
64107
|
+
customerId: string;
|
|
64108
|
+
originator: string;
|
|
64109
|
+
beneficiary: string;
|
|
64110
|
+
externalTransactionId: string;
|
|
64111
|
+
transactionDate: Date | null;
|
|
64112
|
+
transactionType: "crypto" | "fiat";
|
|
64113
|
+
transactionSubType: string | null;
|
|
64114
|
+
transactionReview: string | null;
|
|
64115
|
+
transactionInfo: string;
|
|
64116
|
+
transactionExtractedInfo: string | null;
|
|
64117
|
+
}>;
|
|
64118
|
+
}, "strip", z.ZodTypeAny, {
|
|
64119
|
+
payload: {
|
|
64120
|
+
id: string;
|
|
64121
|
+
createdAt: Date;
|
|
64122
|
+
updatedAt: Date | null;
|
|
64123
|
+
customerId: string;
|
|
64124
|
+
originator: string;
|
|
64125
|
+
beneficiary: string;
|
|
64126
|
+
externalTransactionId: string;
|
|
64127
|
+
transactionDate: Date | null;
|
|
64128
|
+
transactionType: "crypto" | "fiat";
|
|
64129
|
+
transactionSubType: string | null;
|
|
64130
|
+
transactionReview: string | null;
|
|
64131
|
+
transactionInfo: string;
|
|
64132
|
+
transactionExtractedInfo: string | null;
|
|
64133
|
+
};
|
|
64134
|
+
eventType: "tms.updated";
|
|
64135
|
+
}, {
|
|
64136
|
+
payload: {
|
|
64137
|
+
id: string;
|
|
64138
|
+
createdAt: Date;
|
|
64139
|
+
updatedAt: Date | null;
|
|
64140
|
+
customerId: string;
|
|
64141
|
+
originator: string;
|
|
64142
|
+
beneficiary: string;
|
|
64143
|
+
externalTransactionId: string;
|
|
64144
|
+
transactionDate: Date | null;
|
|
64145
|
+
transactionType: "crypto" | "fiat";
|
|
64146
|
+
transactionSubType: string | null;
|
|
64147
|
+
transactionReview: string | null;
|
|
64148
|
+
transactionInfo: string;
|
|
64149
|
+
transactionExtractedInfo: string | null;
|
|
64150
|
+
};
|
|
64151
|
+
eventType: "tms.updated";
|
|
64152
|
+
}>;
|
|
64153
|
+
}, "strip", z.ZodTypeAny, {
|
|
64154
|
+
projectId: string;
|
|
64155
|
+
payload: {
|
|
64156
|
+
payload: {
|
|
64157
|
+
id: string;
|
|
64158
|
+
createdAt: Date;
|
|
64159
|
+
updatedAt: Date | null;
|
|
64160
|
+
customerId: string;
|
|
64161
|
+
originator: string;
|
|
64162
|
+
beneficiary: string;
|
|
64163
|
+
externalTransactionId: string;
|
|
64164
|
+
transactionDate: Date | null;
|
|
64165
|
+
transactionType: "crypto" | "fiat";
|
|
64166
|
+
transactionSubType: string | null;
|
|
64167
|
+
transactionReview: string | null;
|
|
64168
|
+
transactionInfo: string;
|
|
64169
|
+
transactionExtractedInfo: string | null;
|
|
64170
|
+
};
|
|
64171
|
+
eventType: "tms.updated";
|
|
64172
|
+
};
|
|
64173
|
+
}, {
|
|
64174
|
+
projectId: string;
|
|
64175
|
+
payload: {
|
|
64176
|
+
payload: {
|
|
64177
|
+
id: string;
|
|
64178
|
+
createdAt: Date;
|
|
64179
|
+
updatedAt: Date | null;
|
|
64180
|
+
customerId: string;
|
|
64181
|
+
originator: string;
|
|
64182
|
+
beneficiary: string;
|
|
64183
|
+
externalTransactionId: string;
|
|
64184
|
+
transactionDate: Date | null;
|
|
64185
|
+
transactionType: "crypto" | "fiat";
|
|
64186
|
+
transactionSubType: string | null;
|
|
64187
|
+
transactionReview: string | null;
|
|
64188
|
+
transactionInfo: string;
|
|
64189
|
+
transactionExtractedInfo: string | null;
|
|
64190
|
+
};
|
|
64191
|
+
eventType: "tms.updated";
|
|
64192
|
+
};
|
|
64193
|
+
}>;
|
|
64194
|
+
export declare const SendMessageForTMSDeletedInput: z.ZodObject<{
|
|
64195
|
+
projectId: z.ZodString;
|
|
64196
|
+
payload: z.ZodObject<{
|
|
64197
|
+
eventType: z.ZodLiteral<"tms.deleted">;
|
|
64198
|
+
payload: z.ZodObject<{
|
|
64199
|
+
id: z.ZodString;
|
|
64200
|
+
customerId: z.ZodString;
|
|
64201
|
+
externalTransactionId: z.ZodString;
|
|
64202
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
64203
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
64204
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
64205
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
64206
|
+
transactionInfo: z.ZodString;
|
|
64207
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
64208
|
+
originator: z.ZodString;
|
|
64209
|
+
beneficiary: z.ZodString;
|
|
64210
|
+
createdAt: z.ZodDate;
|
|
64211
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
64212
|
+
}, "strip", z.ZodTypeAny, {
|
|
64213
|
+
id: string;
|
|
64214
|
+
createdAt: Date;
|
|
64215
|
+
updatedAt: Date | null;
|
|
64216
|
+
customerId: string;
|
|
64217
|
+
originator: string;
|
|
64218
|
+
beneficiary: string;
|
|
64219
|
+
externalTransactionId: string;
|
|
64220
|
+
transactionDate: Date | null;
|
|
64221
|
+
transactionType: "crypto" | "fiat";
|
|
64222
|
+
transactionSubType: string | null;
|
|
64223
|
+
transactionReview: string | null;
|
|
64224
|
+
transactionInfo: string;
|
|
64225
|
+
transactionExtractedInfo: string | null;
|
|
64226
|
+
}, {
|
|
64227
|
+
id: string;
|
|
64228
|
+
createdAt: Date;
|
|
64229
|
+
updatedAt: Date | null;
|
|
64230
|
+
customerId: string;
|
|
64231
|
+
originator: string;
|
|
64232
|
+
beneficiary: string;
|
|
64233
|
+
externalTransactionId: string;
|
|
64234
|
+
transactionDate: Date | null;
|
|
64235
|
+
transactionType: "crypto" | "fiat";
|
|
64236
|
+
transactionSubType: string | null;
|
|
64237
|
+
transactionReview: string | null;
|
|
64238
|
+
transactionInfo: string;
|
|
64239
|
+
transactionExtractedInfo: string | null;
|
|
64240
|
+
}>;
|
|
64241
|
+
}, "strip", z.ZodTypeAny, {
|
|
64242
|
+
payload: {
|
|
64243
|
+
id: string;
|
|
64244
|
+
createdAt: Date;
|
|
64245
|
+
updatedAt: Date | null;
|
|
64246
|
+
customerId: string;
|
|
64247
|
+
originator: string;
|
|
64248
|
+
beneficiary: string;
|
|
64249
|
+
externalTransactionId: string;
|
|
64250
|
+
transactionDate: Date | null;
|
|
64251
|
+
transactionType: "crypto" | "fiat";
|
|
64252
|
+
transactionSubType: string | null;
|
|
64253
|
+
transactionReview: string | null;
|
|
64254
|
+
transactionInfo: string;
|
|
64255
|
+
transactionExtractedInfo: string | null;
|
|
64256
|
+
};
|
|
64257
|
+
eventType: "tms.deleted";
|
|
64258
|
+
}, {
|
|
64259
|
+
payload: {
|
|
64260
|
+
id: string;
|
|
64261
|
+
createdAt: Date;
|
|
64262
|
+
updatedAt: Date | null;
|
|
64263
|
+
customerId: string;
|
|
64264
|
+
originator: string;
|
|
64265
|
+
beneficiary: string;
|
|
64266
|
+
externalTransactionId: string;
|
|
64267
|
+
transactionDate: Date | null;
|
|
64268
|
+
transactionType: "crypto" | "fiat";
|
|
64269
|
+
transactionSubType: string | null;
|
|
64270
|
+
transactionReview: string | null;
|
|
64271
|
+
transactionInfo: string;
|
|
64272
|
+
transactionExtractedInfo: string | null;
|
|
64273
|
+
};
|
|
64274
|
+
eventType: "tms.deleted";
|
|
64275
|
+
}>;
|
|
64276
|
+
}, "strip", z.ZodTypeAny, {
|
|
64277
|
+
projectId: string;
|
|
64278
|
+
payload: {
|
|
64279
|
+
payload: {
|
|
64280
|
+
id: string;
|
|
64281
|
+
createdAt: Date;
|
|
64282
|
+
updatedAt: Date | null;
|
|
64283
|
+
customerId: string;
|
|
64284
|
+
originator: string;
|
|
64285
|
+
beneficiary: string;
|
|
64286
|
+
externalTransactionId: string;
|
|
64287
|
+
transactionDate: Date | null;
|
|
64288
|
+
transactionType: "crypto" | "fiat";
|
|
64289
|
+
transactionSubType: string | null;
|
|
64290
|
+
transactionReview: string | null;
|
|
64291
|
+
transactionInfo: string;
|
|
64292
|
+
transactionExtractedInfo: string | null;
|
|
64293
|
+
};
|
|
64294
|
+
eventType: "tms.deleted";
|
|
64295
|
+
};
|
|
64296
|
+
}, {
|
|
64297
|
+
projectId: string;
|
|
64298
|
+
payload: {
|
|
64299
|
+
payload: {
|
|
64300
|
+
id: string;
|
|
64301
|
+
createdAt: Date;
|
|
64302
|
+
updatedAt: Date | null;
|
|
64303
|
+
customerId: string;
|
|
64304
|
+
originator: string;
|
|
64305
|
+
beneficiary: string;
|
|
64306
|
+
externalTransactionId: string;
|
|
64307
|
+
transactionDate: Date | null;
|
|
64308
|
+
transactionType: "crypto" | "fiat";
|
|
64309
|
+
transactionSubType: string | null;
|
|
64310
|
+
transactionReview: string | null;
|
|
64311
|
+
transactionInfo: string;
|
|
64312
|
+
transactionExtractedInfo: string | null;
|
|
64313
|
+
};
|
|
64314
|
+
eventType: "tms.deleted";
|
|
64315
|
+
};
|
|
64316
|
+
}>;
|
|
62446
64317
|
/**
|
|
62447
64318
|
*
|
|
62448
64319
|
*
|
|
@@ -62450,13 +64321,13 @@ export declare const SendMessageForAlertDeletedInput: z.ZodObject<{
|
|
|
62450
64321
|
*/
|
|
62451
64322
|
export declare const ListMessagesInput: z.ZodObject<{
|
|
62452
64323
|
projectId: z.ZodString;
|
|
62453
|
-
eventType: z.ZodOptional<z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>>;
|
|
64324
|
+
eventType: z.ZodOptional<z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>>;
|
|
62454
64325
|
}, "strip", z.ZodTypeAny, {
|
|
62455
64326
|
projectId: string;
|
|
62456
|
-
eventType?: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | undefined;
|
|
64327
|
+
eventType?: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted" | undefined;
|
|
62457
64328
|
}, {
|
|
62458
64329
|
projectId: string;
|
|
62459
|
-
eventType?: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | undefined;
|
|
64330
|
+
eventType?: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted" | undefined;
|
|
62460
64331
|
}>;
|
|
62461
64332
|
export declare const GetMessagesInput: z.ZodObject<{
|
|
62462
64333
|
projectId: z.ZodString;
|
|
@@ -62471,7 +64342,7 @@ export declare const GetMessagesInput: z.ZodObject<{
|
|
|
62471
64342
|
export declare const ListMessagesOutput: z.ZodObject<{
|
|
62472
64343
|
messages: z.ZodArray<z.ZodObject<{
|
|
62473
64344
|
id: z.ZodString;
|
|
62474
|
-
eventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>;
|
|
64345
|
+
eventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>;
|
|
62475
64346
|
timestamp: z.ZodDate;
|
|
62476
64347
|
payload: z.ZodUnion<[z.ZodObject<{
|
|
62477
64348
|
eventType: z.ZodLiteral<"send.scenario">;
|
|
@@ -71913,6 +73784,243 @@ export declare const ListMessagesOutput: z.ZodObject<{
|
|
|
71913
73784
|
deletedAt?: Date | null | undefined;
|
|
71914
73785
|
};
|
|
71915
73786
|
eventType: "alert.deleted";
|
|
73787
|
+
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
73788
|
+
eventType: z.ZodLiteral<"tms.created">;
|
|
73789
|
+
payload: z.ZodObject<{
|
|
73790
|
+
id: z.ZodString;
|
|
73791
|
+
customerId: z.ZodString;
|
|
73792
|
+
externalTransactionId: z.ZodString;
|
|
73793
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
73794
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
73795
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
73796
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
73797
|
+
transactionInfo: z.ZodString;
|
|
73798
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
73799
|
+
originator: z.ZodString;
|
|
73800
|
+
beneficiary: z.ZodString;
|
|
73801
|
+
createdAt: z.ZodDate;
|
|
73802
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
73803
|
+
}, "strip", z.ZodTypeAny, {
|
|
73804
|
+
id: string;
|
|
73805
|
+
createdAt: Date;
|
|
73806
|
+
updatedAt: Date | null;
|
|
73807
|
+
customerId: string;
|
|
73808
|
+
originator: string;
|
|
73809
|
+
beneficiary: string;
|
|
73810
|
+
externalTransactionId: string;
|
|
73811
|
+
transactionDate: Date | null;
|
|
73812
|
+
transactionType: "crypto" | "fiat";
|
|
73813
|
+
transactionSubType: string | null;
|
|
73814
|
+
transactionReview: string | null;
|
|
73815
|
+
transactionInfo: string;
|
|
73816
|
+
transactionExtractedInfo: string | null;
|
|
73817
|
+
}, {
|
|
73818
|
+
id: string;
|
|
73819
|
+
createdAt: Date;
|
|
73820
|
+
updatedAt: Date | null;
|
|
73821
|
+
customerId: string;
|
|
73822
|
+
originator: string;
|
|
73823
|
+
beneficiary: string;
|
|
73824
|
+
externalTransactionId: string;
|
|
73825
|
+
transactionDate: Date | null;
|
|
73826
|
+
transactionType: "crypto" | "fiat";
|
|
73827
|
+
transactionSubType: string | null;
|
|
73828
|
+
transactionReview: string | null;
|
|
73829
|
+
transactionInfo: string;
|
|
73830
|
+
transactionExtractedInfo: string | null;
|
|
73831
|
+
}>;
|
|
73832
|
+
}, "strip", z.ZodTypeAny, {
|
|
73833
|
+
payload: {
|
|
73834
|
+
id: string;
|
|
73835
|
+
createdAt: Date;
|
|
73836
|
+
updatedAt: Date | null;
|
|
73837
|
+
customerId: string;
|
|
73838
|
+
originator: string;
|
|
73839
|
+
beneficiary: string;
|
|
73840
|
+
externalTransactionId: string;
|
|
73841
|
+
transactionDate: Date | null;
|
|
73842
|
+
transactionType: "crypto" | "fiat";
|
|
73843
|
+
transactionSubType: string | null;
|
|
73844
|
+
transactionReview: string | null;
|
|
73845
|
+
transactionInfo: string;
|
|
73846
|
+
transactionExtractedInfo: string | null;
|
|
73847
|
+
};
|
|
73848
|
+
eventType: "tms.created";
|
|
73849
|
+
}, {
|
|
73850
|
+
payload: {
|
|
73851
|
+
id: string;
|
|
73852
|
+
createdAt: Date;
|
|
73853
|
+
updatedAt: Date | null;
|
|
73854
|
+
customerId: string;
|
|
73855
|
+
originator: string;
|
|
73856
|
+
beneficiary: string;
|
|
73857
|
+
externalTransactionId: string;
|
|
73858
|
+
transactionDate: Date | null;
|
|
73859
|
+
transactionType: "crypto" | "fiat";
|
|
73860
|
+
transactionSubType: string | null;
|
|
73861
|
+
transactionReview: string | null;
|
|
73862
|
+
transactionInfo: string;
|
|
73863
|
+
transactionExtractedInfo: string | null;
|
|
73864
|
+
};
|
|
73865
|
+
eventType: "tms.created";
|
|
73866
|
+
}>, z.ZodObject<{
|
|
73867
|
+
eventType: z.ZodLiteral<"tms.updated">;
|
|
73868
|
+
payload: z.ZodObject<{
|
|
73869
|
+
id: z.ZodString;
|
|
73870
|
+
customerId: z.ZodString;
|
|
73871
|
+
externalTransactionId: z.ZodString;
|
|
73872
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
73873
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
73874
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
73875
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
73876
|
+
transactionInfo: z.ZodString;
|
|
73877
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
73878
|
+
originator: z.ZodString;
|
|
73879
|
+
beneficiary: z.ZodString;
|
|
73880
|
+
createdAt: z.ZodDate;
|
|
73881
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
73882
|
+
}, "strip", z.ZodTypeAny, {
|
|
73883
|
+
id: string;
|
|
73884
|
+
createdAt: Date;
|
|
73885
|
+
updatedAt: Date | null;
|
|
73886
|
+
customerId: string;
|
|
73887
|
+
originator: string;
|
|
73888
|
+
beneficiary: string;
|
|
73889
|
+
externalTransactionId: string;
|
|
73890
|
+
transactionDate: Date | null;
|
|
73891
|
+
transactionType: "crypto" | "fiat";
|
|
73892
|
+
transactionSubType: string | null;
|
|
73893
|
+
transactionReview: string | null;
|
|
73894
|
+
transactionInfo: string;
|
|
73895
|
+
transactionExtractedInfo: string | null;
|
|
73896
|
+
}, {
|
|
73897
|
+
id: string;
|
|
73898
|
+
createdAt: Date;
|
|
73899
|
+
updatedAt: Date | null;
|
|
73900
|
+
customerId: string;
|
|
73901
|
+
originator: string;
|
|
73902
|
+
beneficiary: string;
|
|
73903
|
+
externalTransactionId: string;
|
|
73904
|
+
transactionDate: Date | null;
|
|
73905
|
+
transactionType: "crypto" | "fiat";
|
|
73906
|
+
transactionSubType: string | null;
|
|
73907
|
+
transactionReview: string | null;
|
|
73908
|
+
transactionInfo: string;
|
|
73909
|
+
transactionExtractedInfo: string | null;
|
|
73910
|
+
}>;
|
|
73911
|
+
}, "strip", z.ZodTypeAny, {
|
|
73912
|
+
payload: {
|
|
73913
|
+
id: string;
|
|
73914
|
+
createdAt: Date;
|
|
73915
|
+
updatedAt: Date | null;
|
|
73916
|
+
customerId: string;
|
|
73917
|
+
originator: string;
|
|
73918
|
+
beneficiary: string;
|
|
73919
|
+
externalTransactionId: string;
|
|
73920
|
+
transactionDate: Date | null;
|
|
73921
|
+
transactionType: "crypto" | "fiat";
|
|
73922
|
+
transactionSubType: string | null;
|
|
73923
|
+
transactionReview: string | null;
|
|
73924
|
+
transactionInfo: string;
|
|
73925
|
+
transactionExtractedInfo: string | null;
|
|
73926
|
+
};
|
|
73927
|
+
eventType: "tms.updated";
|
|
73928
|
+
}, {
|
|
73929
|
+
payload: {
|
|
73930
|
+
id: string;
|
|
73931
|
+
createdAt: Date;
|
|
73932
|
+
updatedAt: Date | null;
|
|
73933
|
+
customerId: string;
|
|
73934
|
+
originator: string;
|
|
73935
|
+
beneficiary: string;
|
|
73936
|
+
externalTransactionId: string;
|
|
73937
|
+
transactionDate: Date | null;
|
|
73938
|
+
transactionType: "crypto" | "fiat";
|
|
73939
|
+
transactionSubType: string | null;
|
|
73940
|
+
transactionReview: string | null;
|
|
73941
|
+
transactionInfo: string;
|
|
73942
|
+
transactionExtractedInfo: string | null;
|
|
73943
|
+
};
|
|
73944
|
+
eventType: "tms.updated";
|
|
73945
|
+
}>, z.ZodObject<{
|
|
73946
|
+
eventType: z.ZodLiteral<"tms.deleted">;
|
|
73947
|
+
payload: z.ZodObject<{
|
|
73948
|
+
id: z.ZodString;
|
|
73949
|
+
customerId: z.ZodString;
|
|
73950
|
+
externalTransactionId: z.ZodString;
|
|
73951
|
+
transactionDate: z.ZodNullable<z.ZodDate>;
|
|
73952
|
+
transactionType: z.ZodEnum<["crypto", "fiat"]>;
|
|
73953
|
+
transactionSubType: z.ZodNullable<z.ZodString>;
|
|
73954
|
+
transactionReview: z.ZodNullable<z.ZodString>;
|
|
73955
|
+
transactionInfo: z.ZodString;
|
|
73956
|
+
transactionExtractedInfo: z.ZodNullable<z.ZodString>;
|
|
73957
|
+
originator: z.ZodString;
|
|
73958
|
+
beneficiary: z.ZodString;
|
|
73959
|
+
createdAt: z.ZodDate;
|
|
73960
|
+
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
73961
|
+
}, "strip", z.ZodTypeAny, {
|
|
73962
|
+
id: string;
|
|
73963
|
+
createdAt: Date;
|
|
73964
|
+
updatedAt: Date | null;
|
|
73965
|
+
customerId: string;
|
|
73966
|
+
originator: string;
|
|
73967
|
+
beneficiary: string;
|
|
73968
|
+
externalTransactionId: string;
|
|
73969
|
+
transactionDate: Date | null;
|
|
73970
|
+
transactionType: "crypto" | "fiat";
|
|
73971
|
+
transactionSubType: string | null;
|
|
73972
|
+
transactionReview: string | null;
|
|
73973
|
+
transactionInfo: string;
|
|
73974
|
+
transactionExtractedInfo: string | null;
|
|
73975
|
+
}, {
|
|
73976
|
+
id: string;
|
|
73977
|
+
createdAt: Date;
|
|
73978
|
+
updatedAt: Date | null;
|
|
73979
|
+
customerId: string;
|
|
73980
|
+
originator: string;
|
|
73981
|
+
beneficiary: string;
|
|
73982
|
+
externalTransactionId: string;
|
|
73983
|
+
transactionDate: Date | null;
|
|
73984
|
+
transactionType: "crypto" | "fiat";
|
|
73985
|
+
transactionSubType: string | null;
|
|
73986
|
+
transactionReview: string | null;
|
|
73987
|
+
transactionInfo: string;
|
|
73988
|
+
transactionExtractedInfo: string | null;
|
|
73989
|
+
}>;
|
|
73990
|
+
}, "strip", z.ZodTypeAny, {
|
|
73991
|
+
payload: {
|
|
73992
|
+
id: string;
|
|
73993
|
+
createdAt: Date;
|
|
73994
|
+
updatedAt: Date | null;
|
|
73995
|
+
customerId: string;
|
|
73996
|
+
originator: string;
|
|
73997
|
+
beneficiary: string;
|
|
73998
|
+
externalTransactionId: string;
|
|
73999
|
+
transactionDate: Date | null;
|
|
74000
|
+
transactionType: "crypto" | "fiat";
|
|
74001
|
+
transactionSubType: string | null;
|
|
74002
|
+
transactionReview: string | null;
|
|
74003
|
+
transactionInfo: string;
|
|
74004
|
+
transactionExtractedInfo: string | null;
|
|
74005
|
+
};
|
|
74006
|
+
eventType: "tms.deleted";
|
|
74007
|
+
}, {
|
|
74008
|
+
payload: {
|
|
74009
|
+
id: string;
|
|
74010
|
+
createdAt: Date;
|
|
74011
|
+
updatedAt: Date | null;
|
|
74012
|
+
customerId: string;
|
|
74013
|
+
originator: string;
|
|
74014
|
+
beneficiary: string;
|
|
74015
|
+
externalTransactionId: string;
|
|
74016
|
+
transactionDate: Date | null;
|
|
74017
|
+
transactionType: "crypto" | "fiat";
|
|
74018
|
+
transactionSubType: string | null;
|
|
74019
|
+
transactionReview: string | null;
|
|
74020
|
+
transactionInfo: string;
|
|
74021
|
+
transactionExtractedInfo: string | null;
|
|
74022
|
+
};
|
|
74023
|
+
eventType: "tms.deleted";
|
|
71916
74024
|
}>]>]>;
|
|
71917
74025
|
}, "strip", z.ZodTypeAny, {
|
|
71918
74026
|
id: string;
|
|
@@ -72727,8 +74835,59 @@ export declare const ListMessagesOutput: z.ZodObject<{
|
|
|
72727
74835
|
deletedAt?: Date | null | undefined;
|
|
72728
74836
|
};
|
|
72729
74837
|
eventType: "alert.deleted";
|
|
74838
|
+
} | {
|
|
74839
|
+
payload: {
|
|
74840
|
+
id: string;
|
|
74841
|
+
createdAt: Date;
|
|
74842
|
+
updatedAt: Date | null;
|
|
74843
|
+
customerId: string;
|
|
74844
|
+
originator: string;
|
|
74845
|
+
beneficiary: string;
|
|
74846
|
+
externalTransactionId: string;
|
|
74847
|
+
transactionDate: Date | null;
|
|
74848
|
+
transactionType: "crypto" | "fiat";
|
|
74849
|
+
transactionSubType: string | null;
|
|
74850
|
+
transactionReview: string | null;
|
|
74851
|
+
transactionInfo: string;
|
|
74852
|
+
transactionExtractedInfo: string | null;
|
|
74853
|
+
};
|
|
74854
|
+
eventType: "tms.created";
|
|
74855
|
+
} | {
|
|
74856
|
+
payload: {
|
|
74857
|
+
id: string;
|
|
74858
|
+
createdAt: Date;
|
|
74859
|
+
updatedAt: Date | null;
|
|
74860
|
+
customerId: string;
|
|
74861
|
+
originator: string;
|
|
74862
|
+
beneficiary: string;
|
|
74863
|
+
externalTransactionId: string;
|
|
74864
|
+
transactionDate: Date | null;
|
|
74865
|
+
transactionType: "crypto" | "fiat";
|
|
74866
|
+
transactionSubType: string | null;
|
|
74867
|
+
transactionReview: string | null;
|
|
74868
|
+
transactionInfo: string;
|
|
74869
|
+
transactionExtractedInfo: string | null;
|
|
74870
|
+
};
|
|
74871
|
+
eventType: "tms.updated";
|
|
74872
|
+
} | {
|
|
74873
|
+
payload: {
|
|
74874
|
+
id: string;
|
|
74875
|
+
createdAt: Date;
|
|
74876
|
+
updatedAt: Date | null;
|
|
74877
|
+
customerId: string;
|
|
74878
|
+
originator: string;
|
|
74879
|
+
beneficiary: string;
|
|
74880
|
+
externalTransactionId: string;
|
|
74881
|
+
transactionDate: Date | null;
|
|
74882
|
+
transactionType: "crypto" | "fiat";
|
|
74883
|
+
transactionSubType: string | null;
|
|
74884
|
+
transactionReview: string | null;
|
|
74885
|
+
transactionInfo: string;
|
|
74886
|
+
transactionExtractedInfo: string | null;
|
|
74887
|
+
};
|
|
74888
|
+
eventType: "tms.deleted";
|
|
72730
74889
|
};
|
|
72731
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
74890
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
72732
74891
|
}, {
|
|
72733
74892
|
id: string;
|
|
72734
74893
|
timestamp: Date;
|
|
@@ -73542,8 +75701,59 @@ export declare const ListMessagesOutput: z.ZodObject<{
|
|
|
73542
75701
|
deletedAt?: Date | null | undefined;
|
|
73543
75702
|
};
|
|
73544
75703
|
eventType: "alert.deleted";
|
|
75704
|
+
} | {
|
|
75705
|
+
payload: {
|
|
75706
|
+
id: string;
|
|
75707
|
+
createdAt: Date;
|
|
75708
|
+
updatedAt: Date | null;
|
|
75709
|
+
customerId: string;
|
|
75710
|
+
originator: string;
|
|
75711
|
+
beneficiary: string;
|
|
75712
|
+
externalTransactionId: string;
|
|
75713
|
+
transactionDate: Date | null;
|
|
75714
|
+
transactionType: "crypto" | "fiat";
|
|
75715
|
+
transactionSubType: string | null;
|
|
75716
|
+
transactionReview: string | null;
|
|
75717
|
+
transactionInfo: string;
|
|
75718
|
+
transactionExtractedInfo: string | null;
|
|
75719
|
+
};
|
|
75720
|
+
eventType: "tms.created";
|
|
75721
|
+
} | {
|
|
75722
|
+
payload: {
|
|
75723
|
+
id: string;
|
|
75724
|
+
createdAt: Date;
|
|
75725
|
+
updatedAt: Date | null;
|
|
75726
|
+
customerId: string;
|
|
75727
|
+
originator: string;
|
|
75728
|
+
beneficiary: string;
|
|
75729
|
+
externalTransactionId: string;
|
|
75730
|
+
transactionDate: Date | null;
|
|
75731
|
+
transactionType: "crypto" | "fiat";
|
|
75732
|
+
transactionSubType: string | null;
|
|
75733
|
+
transactionReview: string | null;
|
|
75734
|
+
transactionInfo: string;
|
|
75735
|
+
transactionExtractedInfo: string | null;
|
|
75736
|
+
};
|
|
75737
|
+
eventType: "tms.updated";
|
|
75738
|
+
} | {
|
|
75739
|
+
payload: {
|
|
75740
|
+
id: string;
|
|
75741
|
+
createdAt: Date;
|
|
75742
|
+
updatedAt: Date | null;
|
|
75743
|
+
customerId: string;
|
|
75744
|
+
originator: string;
|
|
75745
|
+
beneficiary: string;
|
|
75746
|
+
externalTransactionId: string;
|
|
75747
|
+
transactionDate: Date | null;
|
|
75748
|
+
transactionType: "crypto" | "fiat";
|
|
75749
|
+
transactionSubType: string | null;
|
|
75750
|
+
transactionReview: string | null;
|
|
75751
|
+
transactionInfo: string;
|
|
75752
|
+
transactionExtractedInfo: string | null;
|
|
75753
|
+
};
|
|
75754
|
+
eventType: "tms.deleted";
|
|
73545
75755
|
};
|
|
73546
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
75756
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
73547
75757
|
}>, "many">;
|
|
73548
75758
|
}, "strip", z.ZodTypeAny, {
|
|
73549
75759
|
messages: {
|
|
@@ -74359,8 +76569,59 @@ export declare const ListMessagesOutput: z.ZodObject<{
|
|
|
74359
76569
|
deletedAt?: Date | null | undefined;
|
|
74360
76570
|
};
|
|
74361
76571
|
eventType: "alert.deleted";
|
|
76572
|
+
} | {
|
|
76573
|
+
payload: {
|
|
76574
|
+
id: string;
|
|
76575
|
+
createdAt: Date;
|
|
76576
|
+
updatedAt: Date | null;
|
|
76577
|
+
customerId: string;
|
|
76578
|
+
originator: string;
|
|
76579
|
+
beneficiary: string;
|
|
76580
|
+
externalTransactionId: string;
|
|
76581
|
+
transactionDate: Date | null;
|
|
76582
|
+
transactionType: "crypto" | "fiat";
|
|
76583
|
+
transactionSubType: string | null;
|
|
76584
|
+
transactionReview: string | null;
|
|
76585
|
+
transactionInfo: string;
|
|
76586
|
+
transactionExtractedInfo: string | null;
|
|
76587
|
+
};
|
|
76588
|
+
eventType: "tms.created";
|
|
76589
|
+
} | {
|
|
76590
|
+
payload: {
|
|
76591
|
+
id: string;
|
|
76592
|
+
createdAt: Date;
|
|
76593
|
+
updatedAt: Date | null;
|
|
76594
|
+
customerId: string;
|
|
76595
|
+
originator: string;
|
|
76596
|
+
beneficiary: string;
|
|
76597
|
+
externalTransactionId: string;
|
|
76598
|
+
transactionDate: Date | null;
|
|
76599
|
+
transactionType: "crypto" | "fiat";
|
|
76600
|
+
transactionSubType: string | null;
|
|
76601
|
+
transactionReview: string | null;
|
|
76602
|
+
transactionInfo: string;
|
|
76603
|
+
transactionExtractedInfo: string | null;
|
|
76604
|
+
};
|
|
76605
|
+
eventType: "tms.updated";
|
|
76606
|
+
} | {
|
|
76607
|
+
payload: {
|
|
76608
|
+
id: string;
|
|
76609
|
+
createdAt: Date;
|
|
76610
|
+
updatedAt: Date | null;
|
|
76611
|
+
customerId: string;
|
|
76612
|
+
originator: string;
|
|
76613
|
+
beneficiary: string;
|
|
76614
|
+
externalTransactionId: string;
|
|
76615
|
+
transactionDate: Date | null;
|
|
76616
|
+
transactionType: "crypto" | "fiat";
|
|
76617
|
+
transactionSubType: string | null;
|
|
76618
|
+
transactionReview: string | null;
|
|
76619
|
+
transactionInfo: string;
|
|
76620
|
+
transactionExtractedInfo: string | null;
|
|
76621
|
+
};
|
|
76622
|
+
eventType: "tms.deleted";
|
|
74362
76623
|
};
|
|
74363
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
76624
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
74364
76625
|
}[];
|
|
74365
76626
|
}, {
|
|
74366
76627
|
messages: {
|
|
@@ -75176,8 +77437,59 @@ export declare const ListMessagesOutput: z.ZodObject<{
|
|
|
75176
77437
|
deletedAt?: Date | null | undefined;
|
|
75177
77438
|
};
|
|
75178
77439
|
eventType: "alert.deleted";
|
|
77440
|
+
} | {
|
|
77441
|
+
payload: {
|
|
77442
|
+
id: string;
|
|
77443
|
+
createdAt: Date;
|
|
77444
|
+
updatedAt: Date | null;
|
|
77445
|
+
customerId: string;
|
|
77446
|
+
originator: string;
|
|
77447
|
+
beneficiary: string;
|
|
77448
|
+
externalTransactionId: string;
|
|
77449
|
+
transactionDate: Date | null;
|
|
77450
|
+
transactionType: "crypto" | "fiat";
|
|
77451
|
+
transactionSubType: string | null;
|
|
77452
|
+
transactionReview: string | null;
|
|
77453
|
+
transactionInfo: string;
|
|
77454
|
+
transactionExtractedInfo: string | null;
|
|
77455
|
+
};
|
|
77456
|
+
eventType: "tms.created";
|
|
77457
|
+
} | {
|
|
77458
|
+
payload: {
|
|
77459
|
+
id: string;
|
|
77460
|
+
createdAt: Date;
|
|
77461
|
+
updatedAt: Date | null;
|
|
77462
|
+
customerId: string;
|
|
77463
|
+
originator: string;
|
|
77464
|
+
beneficiary: string;
|
|
77465
|
+
externalTransactionId: string;
|
|
77466
|
+
transactionDate: Date | null;
|
|
77467
|
+
transactionType: "crypto" | "fiat";
|
|
77468
|
+
transactionSubType: string | null;
|
|
77469
|
+
transactionReview: string | null;
|
|
77470
|
+
transactionInfo: string;
|
|
77471
|
+
transactionExtractedInfo: string | null;
|
|
77472
|
+
};
|
|
77473
|
+
eventType: "tms.updated";
|
|
77474
|
+
} | {
|
|
77475
|
+
payload: {
|
|
77476
|
+
id: string;
|
|
77477
|
+
createdAt: Date;
|
|
77478
|
+
updatedAt: Date | null;
|
|
77479
|
+
customerId: string;
|
|
77480
|
+
originator: string;
|
|
77481
|
+
beneficiary: string;
|
|
77482
|
+
externalTransactionId: string;
|
|
77483
|
+
transactionDate: Date | null;
|
|
77484
|
+
transactionType: "crypto" | "fiat";
|
|
77485
|
+
transactionSubType: string | null;
|
|
77486
|
+
transactionReview: string | null;
|
|
77487
|
+
transactionInfo: string;
|
|
77488
|
+
transactionExtractedInfo: string | null;
|
|
77489
|
+
};
|
|
77490
|
+
eventType: "tms.deleted";
|
|
75179
77491
|
};
|
|
75180
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
77492
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
75181
77493
|
}[];
|
|
75182
77494
|
}>;
|
|
75183
77495
|
export declare const ListAttemptsByMessageInput: z.ZodObject<{
|
|
@@ -75193,7 +77505,7 @@ export declare const ListAttemptsByMessageInput: z.ZodObject<{
|
|
|
75193
77505
|
export declare const ListAttemptsByEndpointInput: z.ZodObject<{
|
|
75194
77506
|
projectId: z.ZodString;
|
|
75195
77507
|
endpointId: z.ZodString;
|
|
75196
|
-
eventType: z.ZodOptional<z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>>;
|
|
77508
|
+
eventType: z.ZodOptional<z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>>;
|
|
75197
77509
|
status: z.ZodOptional<z.ZodEnum<["Pending" | "Success" | "Fail" | "Sending", ...("Pending" | "Success" | "Fail" | "Sending")[]]>>;
|
|
75198
77510
|
statusCode: z.ZodOptional<z.ZodEnum<["0", "100", "200", "300", "400", "500"]>>;
|
|
75199
77511
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -75201,13 +77513,13 @@ export declare const ListAttemptsByEndpointInput: z.ZodObject<{
|
|
|
75201
77513
|
endpointId: string;
|
|
75202
77514
|
status?: "Pending" | "Success" | "Fail" | "Sending" | undefined;
|
|
75203
77515
|
statusCode?: "0" | "100" | "200" | "300" | "400" | "500" | undefined;
|
|
75204
|
-
eventType?: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | undefined;
|
|
77516
|
+
eventType?: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted" | undefined;
|
|
75205
77517
|
}, {
|
|
75206
77518
|
projectId: string;
|
|
75207
77519
|
endpointId: string;
|
|
75208
77520
|
status?: "Pending" | "Success" | "Fail" | "Sending" | undefined;
|
|
75209
77521
|
statusCode?: "0" | "100" | "200" | "300" | "400" | "500" | undefined;
|
|
75210
|
-
eventType?: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | undefined;
|
|
77522
|
+
eventType?: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted" | undefined;
|
|
75211
77523
|
}>;
|
|
75212
77524
|
export declare const ListAttemptsByMessageOutput: z.ZodObject<{
|
|
75213
77525
|
attempts: z.ZodArray<z.ZodObject<{
|
|
@@ -75272,14 +77584,14 @@ export declare const ConnectionHandlingWorkspaceOutput: z.ZodBoolean;
|
|
|
75272
77584
|
export declare const SendExampleMessageInput: z.ZodObject<{
|
|
75273
77585
|
projectId: z.ZodString;
|
|
75274
77586
|
endpointId: z.ZodString;
|
|
75275
|
-
eventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]>;
|
|
77587
|
+
eventType: z.ZodEnum<["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]>;
|
|
75276
77588
|
}, "strip", z.ZodTypeAny, {
|
|
75277
77589
|
projectId: string;
|
|
75278
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
77590
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
75279
77591
|
endpointId: string;
|
|
75280
77592
|
}, {
|
|
75281
77593
|
projectId: string;
|
|
75282
|
-
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted";
|
|
77594
|
+
eventType: "send.scenario" | "send.verification.flow" | "customer.created" | "customer.updated" | "customer.deleted" | "alert.created" | "alert.updated" | "alert.deleted" | "tms.created" | "tms.updated" | "tms.deleted";
|
|
75283
77595
|
endpointId: string;
|
|
75284
77596
|
}>;
|
|
75285
77597
|
export declare const ResendWebhookInput: z.ZodObject<{
|
|
@@ -75336,6 +77648,9 @@ export type SendMessageForCustomerDeletedInput = z.infer<typeof SendMessageForCu
|
|
|
75336
77648
|
export type SendMessageForAlertCreatedInput = z.infer<typeof SendMessageForAlertCreatedInput>;
|
|
75337
77649
|
export type SendMessageForAlertUpdatedInput = z.infer<typeof SendMessageForAlertUpdatedInput>;
|
|
75338
77650
|
export type SendMessageForAlertDeletedInput = z.infer<typeof SendMessageForAlertDeletedInput>;
|
|
77651
|
+
export type SendMessageForTMSCreatedInput = z.infer<typeof SendMessageForTMSCreatedInput>;
|
|
77652
|
+
export type SendMessageForTMSUpdatedInput = z.infer<typeof SendMessageForTMSUpdatedInput>;
|
|
77653
|
+
export type SendMessageForTMSDeletedInput = z.infer<typeof SendMessageForTMSDeletedInput>;
|
|
75339
77654
|
/**
|
|
75340
77655
|
*
|
|
75341
77656
|
*
|
|
@@ -75366,6 +77681,9 @@ export type CustomerDeletedPayload = z.infer<typeof CustomerDeletedPayload>;
|
|
|
75366
77681
|
export type AlertCreatedPayload = z.infer<typeof AlertCreatedPayload>;
|
|
75367
77682
|
export type AlertUpdatedPayload = z.infer<typeof AlertUpdatedPayload>;
|
|
75368
77683
|
export type AlertDeletedPayload = z.infer<typeof AlertDeletedPayload>;
|
|
77684
|
+
export type TMSCreatedPayload = z.infer<typeof TMSCreatedPayload>;
|
|
77685
|
+
export type TMSUpdatedPayload = z.infer<typeof TMSUpdatedPayload>;
|
|
77686
|
+
export type TMSDeletedPayload = z.infer<typeof TMSDeletedPayload>;
|
|
75369
77687
|
/**
|
|
75370
77688
|
*
|
|
75371
77689
|
* Constants definitions
|