@royalinvest/dto 0.74.6 → 0.75.1
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.
|
@@ -288,6 +288,8 @@ export interface ICreditCheckConsentTenantInfoResponse {
|
|
|
288
288
|
user_id?: string;
|
|
289
289
|
paid_by?: TPaymentBy | null;
|
|
290
290
|
credit_bureau?: TBureau | null;
|
|
291
|
+
consent_confirmed?: boolean;
|
|
292
|
+
consent_confirmed_at?: Date | null;
|
|
291
293
|
}
|
|
292
294
|
export interface ICreditCheckReportFileDownload {
|
|
293
295
|
id: string;
|
|
@@ -131,4 +131,13 @@ export declare const RABBITMQ_EXCHANGES: {
|
|
|
131
131
|
readonly email_automation: "email_automation";
|
|
132
132
|
};
|
|
133
133
|
};
|
|
134
|
+
readonly activity_feed: {
|
|
135
|
+
readonly name: "ACTIVITY_FEED_EXCHANGE";
|
|
136
|
+
readonly keys: {
|
|
137
|
+
readonly upsert: "activity_feed.upsert";
|
|
138
|
+
};
|
|
139
|
+
readonly queues: {
|
|
140
|
+
readonly activity_feed: "activity_feed_queue";
|
|
141
|
+
};
|
|
142
|
+
};
|
|
134
143
|
};
|
|
@@ -135,4 +135,13 @@ exports.RABBITMQ_EXCHANGES = {
|
|
|
135
135
|
email_automation: "email_automation",
|
|
136
136
|
},
|
|
137
137
|
},
|
|
138
|
+
activity_feed: {
|
|
139
|
+
name: "ACTIVITY_FEED_EXCHANGE",
|
|
140
|
+
keys: {
|
|
141
|
+
upsert: "activity_feed.upsert",
|
|
142
|
+
},
|
|
143
|
+
queues: {
|
|
144
|
+
activity_feed: "activity_feed_queue",
|
|
145
|
+
},
|
|
146
|
+
},
|
|
138
147
|
};
|
package/package.json
CHANGED