@solidstarters/solid-core 1.2.103 → 1.2.105
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/services/import-transaction.service.d.ts.map +1 -1
- package/dist/services/import-transaction.service.js +1 -0
- package/dist/services/import-transaction.service.js.map +1 -1
- package/dist/services/rabbitmq-subscriber.service.js +1 -1
- package/dist/services/rabbitmq-subscriber.service.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/services/import-transaction.service.ts +1 -0
- package/src/services/rabbitmq-subscriber.service.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidstarters/solid-core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.105",
|
|
4
4
|
"description": "This module is a NestJS module containing all the required core providers required by a Solid application",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -196,6 +196,7 @@ export class ImportTransactionService extends CRUDService<ImportTransaction> {
|
|
|
196
196
|
const importableFields: ImportableFieldInfo[] = this.fieldsAllowedForImport(importTransaction.modelMetadata.fields).map(field => ({
|
|
197
197
|
name: field.name,
|
|
198
198
|
displayName: field.displayName,
|
|
199
|
+
required: field.required,
|
|
199
200
|
}));
|
|
200
201
|
|
|
201
202
|
// Get the import file media object from the import transaction
|
|
@@ -16,7 +16,7 @@ export abstract class RabbitMqSubscriber<T> implements OnModuleInit, QueueSubscr
|
|
|
16
16
|
protected readonly mqMessageQueueService: MqMessageQueueService,
|
|
17
17
|
) {
|
|
18
18
|
this.url = process.env.QUEUES_RABBIT_MQ_URL;
|
|
19
|
-
this.serviceRole = process.env.
|
|
19
|
+
this.serviceRole = process.env.QUEUES_SERVICE_ROLE;
|
|
20
20
|
if (!this.url) {
|
|
21
21
|
this.logger.debug('RabbitMqPublisher url is not defined in the environment variables');
|
|
22
22
|
}
|