@felloh-org/lambda-wrapper 1.2.16 → 1.2.17

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.
@@ -0,0 +1,17 @@
1
+ const { MigrationInterface, QueryRunner } = require("typeorm");
2
+
3
+ module.exports = class organisationPaymentProviderCurrencyPopulate1664285327423 {
4
+ name = 'organisationPaymentProviderCurrencyPopulate1664285327423'
5
+
6
+ async up(queryRunner) {
7
+ await queryRunner.query(`
8
+ INSERT INTO "payment"."organisation_payment_provider_currency"
9
+ ("organisation_payment_provider_id", "currency_id")
10
+ SELECT "id", 'GBX' FROM "payment"."organisation_payment_provider"
11
+ `);
12
+ }
13
+
14
+ async down(queryRunner) {
15
+ // Do nothing
16
+ }
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@felloh-org/lambda-wrapper",
3
- "version": "1.2.16",
3
+ "version": "1.2.17",
4
4
  "description": "Lambda wrapper for all Felloh Serverless Projects",
5
5
  "main": "dist/index.js",
6
6
  "engines": {