@develit-services/bank 0.0.15 → 0.0.16
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/database/schema.d.cts +1 -1
- package/dist/database/schema.d.mts +1 -1
- package/dist/database/schema.d.ts +1 -1
- package/dist/export/worker.cjs +2 -2
- package/dist/export/worker.d.cts +5 -5
- package/dist/export/worker.d.mts +5 -5
- package/dist/export/worker.d.ts +5 -5
- package/dist/export/worker.mjs +2 -2
- package/dist/shared/{bank.DiMNzl60.d.cts → bank.BT_Yf43j.d.cts} +6 -6
- package/dist/shared/{bank.DiMNzl60.d.mts → bank.BT_Yf43j.d.mts} +6 -6
- package/dist/shared/{bank.DiMNzl60.d.ts → bank.BT_Yf43j.d.ts} +6 -6
- package/dist/shared/{bank.BlmUZQ6s.d.cts → bank.BoVUuQ1D.d.mts} +1 -1
- package/dist/shared/{bank.tyFkXmr8.d.mts → bank.BwleO_ON.d.cts} +1 -1
- package/dist/shared/{bank.j2Z-uViN.d.ts → bank.DlquvmPs.d.ts} +1 -1
- package/dist/types.d.cts +4 -4
- package/dist/types.d.mts +4 -4
- package/dist/types.d.ts +4 -4
- package/package.json +1 -1
package/dist/export/worker.cjs
CHANGED
|
@@ -45,8 +45,8 @@ const simulateDepositInputSchema = zod.z.object({
|
|
|
45
45
|
amount: zod.z.number(),
|
|
46
46
|
currency: zod.z.enum(generalCodes.CURRENCY_CODES),
|
|
47
47
|
bankingVs: zod.z.string().max(10),
|
|
48
|
-
bankingSs: zod.z.string().max(10),
|
|
49
|
-
bankingKs: zod.z.string().max(10),
|
|
48
|
+
bankingSs: zod.z.string().max(10).optional(),
|
|
49
|
+
bankingKs: zod.z.string().max(10).optional(),
|
|
50
50
|
message: zod.z.string(),
|
|
51
51
|
creditorIban: zod.z.string().max(34),
|
|
52
52
|
creditorHolderName: zod.z.string(),
|
package/dist/export/worker.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as _develit_io_backend_sdk from '@develit-io/backend-sdk';
|
|
2
2
|
import { IRPCResponse } from '@develit-io/backend-sdk';
|
|
3
|
-
import { P as PaymentSelectType, B as BatchSelectType, t as tables, a as PaymentInsertType } from '../shared/bank.
|
|
3
|
+
import { P as PaymentSelectType, B as BatchSelectType, t as tables, a as PaymentInsertType } from '../shared/bank.BT_Yf43j.cjs';
|
|
4
4
|
import { WorkerEntrypoint } from 'cloudflare:workers';
|
|
5
5
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
6
6
|
import { z } from 'zod';
|
|
7
|
-
import { C as ConfigEnvironmentBankAccount, I as IBankConnector, a as ConfigBankAccount, b as ConnectorKey, B as BankAccountWithLastSync } from '../shared/bank.
|
|
7
|
+
import { C as ConfigEnvironmentBankAccount, I as IBankConnector, a as ConfigBankAccount, b as ConnectorKey, B as BankAccountWithLastSync } from '../shared/bank.BwleO_ON.cjs';
|
|
8
8
|
import 'drizzle-orm/sqlite-core';
|
|
9
9
|
import 'drizzle-orm';
|
|
10
10
|
import '@develit-io/general-codes';
|
|
@@ -157,8 +157,8 @@ declare const simulateDepositInputSchema: z.ZodObject<{
|
|
|
157
157
|
AVAX: "AVAX";
|
|
158
158
|
}>;
|
|
159
159
|
bankingVs: z.ZodString;
|
|
160
|
-
bankingSs: z.ZodString
|
|
161
|
-
bankingKs: z.ZodString
|
|
160
|
+
bankingSs: z.ZodOptional<z.ZodString>;
|
|
161
|
+
bankingKs: z.ZodOptional<z.ZodString>;
|
|
162
162
|
message: z.ZodString;
|
|
163
163
|
creditorIban: z.ZodString;
|
|
164
164
|
creditorHolderName: z.ZodString;
|
|
@@ -211,10 +211,10 @@ declare class BankServiceBase extends BankServiceBase_base {
|
|
|
211
211
|
addPaymentsToBatch({ paymentsToBatch, }: {
|
|
212
212
|
paymentsToBatch: SendPaymentInput[];
|
|
213
213
|
}): Promise<IRPCResponse<{
|
|
214
|
-
status: "PREPARED" | "FAILED" | "COMPLETED" | "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | null;
|
|
215
214
|
batchPaymentInitiatedAt: Date | null;
|
|
216
215
|
authorizationUrls: string | string[] | null;
|
|
217
216
|
accountId: string | null;
|
|
217
|
+
status: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED" | null;
|
|
218
218
|
payments: PaymentInsertType[];
|
|
219
219
|
metadata: object | null;
|
|
220
220
|
id: string;
|
package/dist/export/worker.d.mts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as _develit_io_backend_sdk from '@develit-io/backend-sdk';
|
|
2
2
|
import { IRPCResponse } from '@develit-io/backend-sdk';
|
|
3
|
-
import { P as PaymentSelectType, B as BatchSelectType, t as tables, a as PaymentInsertType } from '../shared/bank.
|
|
3
|
+
import { P as PaymentSelectType, B as BatchSelectType, t as tables, a as PaymentInsertType } from '../shared/bank.BT_Yf43j.mjs';
|
|
4
4
|
import { WorkerEntrypoint } from 'cloudflare:workers';
|
|
5
5
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
6
6
|
import { z } from 'zod';
|
|
7
|
-
import { C as ConfigEnvironmentBankAccount, I as IBankConnector, a as ConfigBankAccount, b as ConnectorKey, B as BankAccountWithLastSync } from '../shared/bank.
|
|
7
|
+
import { C as ConfigEnvironmentBankAccount, I as IBankConnector, a as ConfigBankAccount, b as ConnectorKey, B as BankAccountWithLastSync } from '../shared/bank.BoVUuQ1D.mjs';
|
|
8
8
|
import 'drizzle-orm/sqlite-core';
|
|
9
9
|
import 'drizzle-orm';
|
|
10
10
|
import '@develit-io/general-codes';
|
|
@@ -157,8 +157,8 @@ declare const simulateDepositInputSchema: z.ZodObject<{
|
|
|
157
157
|
AVAX: "AVAX";
|
|
158
158
|
}>;
|
|
159
159
|
bankingVs: z.ZodString;
|
|
160
|
-
bankingSs: z.ZodString
|
|
161
|
-
bankingKs: z.ZodString
|
|
160
|
+
bankingSs: z.ZodOptional<z.ZodString>;
|
|
161
|
+
bankingKs: z.ZodOptional<z.ZodString>;
|
|
162
162
|
message: z.ZodString;
|
|
163
163
|
creditorIban: z.ZodString;
|
|
164
164
|
creditorHolderName: z.ZodString;
|
|
@@ -211,10 +211,10 @@ declare class BankServiceBase extends BankServiceBase_base {
|
|
|
211
211
|
addPaymentsToBatch({ paymentsToBatch, }: {
|
|
212
212
|
paymentsToBatch: SendPaymentInput[];
|
|
213
213
|
}): Promise<IRPCResponse<{
|
|
214
|
-
status: "PREPARED" | "FAILED" | "COMPLETED" | "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | null;
|
|
215
214
|
batchPaymentInitiatedAt: Date | null;
|
|
216
215
|
authorizationUrls: string | string[] | null;
|
|
217
216
|
accountId: string | null;
|
|
217
|
+
status: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED" | null;
|
|
218
218
|
payments: PaymentInsertType[];
|
|
219
219
|
metadata: object | null;
|
|
220
220
|
id: string;
|
package/dist/export/worker.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as _develit_io_backend_sdk from '@develit-io/backend-sdk';
|
|
2
2
|
import { IRPCResponse } from '@develit-io/backend-sdk';
|
|
3
|
-
import { P as PaymentSelectType, B as BatchSelectType, t as tables, a as PaymentInsertType } from '../shared/bank.
|
|
3
|
+
import { P as PaymentSelectType, B as BatchSelectType, t as tables, a as PaymentInsertType } from '../shared/bank.BT_Yf43j.js';
|
|
4
4
|
import { WorkerEntrypoint } from 'cloudflare:workers';
|
|
5
5
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
6
6
|
import { z } from 'zod';
|
|
7
|
-
import { C as ConfigEnvironmentBankAccount, I as IBankConnector, a as ConfigBankAccount, b as ConnectorKey, B as BankAccountWithLastSync } from '../shared/bank.
|
|
7
|
+
import { C as ConfigEnvironmentBankAccount, I as IBankConnector, a as ConfigBankAccount, b as ConnectorKey, B as BankAccountWithLastSync } from '../shared/bank.DlquvmPs.js';
|
|
8
8
|
import 'drizzle-orm/sqlite-core';
|
|
9
9
|
import 'drizzle-orm';
|
|
10
10
|
import '@develit-io/general-codes';
|
|
@@ -157,8 +157,8 @@ declare const simulateDepositInputSchema: z.ZodObject<{
|
|
|
157
157
|
AVAX: "AVAX";
|
|
158
158
|
}>;
|
|
159
159
|
bankingVs: z.ZodString;
|
|
160
|
-
bankingSs: z.ZodString
|
|
161
|
-
bankingKs: z.ZodString
|
|
160
|
+
bankingSs: z.ZodOptional<z.ZodString>;
|
|
161
|
+
bankingKs: z.ZodOptional<z.ZodString>;
|
|
162
162
|
message: z.ZodString;
|
|
163
163
|
creditorIban: z.ZodString;
|
|
164
164
|
creditorHolderName: z.ZodString;
|
|
@@ -211,10 +211,10 @@ declare class BankServiceBase extends BankServiceBase_base {
|
|
|
211
211
|
addPaymentsToBatch({ paymentsToBatch, }: {
|
|
212
212
|
paymentsToBatch: SendPaymentInput[];
|
|
213
213
|
}): Promise<IRPCResponse<{
|
|
214
|
-
status: "PREPARED" | "FAILED" | "COMPLETED" | "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | null;
|
|
215
214
|
batchPaymentInitiatedAt: Date | null;
|
|
216
215
|
authorizationUrls: string | string[] | null;
|
|
217
216
|
accountId: string | null;
|
|
217
|
+
status: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED" | null;
|
|
218
218
|
payments: PaymentInsertType[];
|
|
219
219
|
metadata: object | null;
|
|
220
220
|
id: string;
|
package/dist/export/worker.mjs
CHANGED
|
@@ -37,8 +37,8 @@ const simulateDepositInputSchema = z.object({
|
|
|
37
37
|
amount: z.number(),
|
|
38
38
|
currency: z.enum(CURRENCY_CODES),
|
|
39
39
|
bankingVs: z.string().max(10),
|
|
40
|
-
bankingSs: z.string().max(10),
|
|
41
|
-
bankingKs: z.string().max(10),
|
|
40
|
+
bankingSs: z.string().max(10).optional(),
|
|
41
|
+
bankingKs: z.string().max(10).optional(),
|
|
42
42
|
message: z.string(),
|
|
43
43
|
creditorIban: z.string().max(34),
|
|
44
44
|
creditorHolderName: z.string(),
|
|
@@ -82,10 +82,10 @@ declare const paymentInsertTypeZod: z.ZodObject<{
|
|
|
82
82
|
}>;
|
|
83
83
|
status: z.ZodEnum<{
|
|
84
84
|
PREPARED: "PREPARED";
|
|
85
|
-
|
|
85
|
+
COMPLETED: "COMPLETED";
|
|
86
86
|
FAILED: "FAILED";
|
|
87
|
+
INITIALIZED: "INITIALIZED";
|
|
87
88
|
PENDING: "PENDING";
|
|
88
|
-
COMPLETED: "COMPLETED";
|
|
89
89
|
CREATED: "CREATED";
|
|
90
90
|
}>;
|
|
91
91
|
batchId: z.ZodString;
|
|
@@ -165,7 +165,7 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
165
165
|
tableName: "batch";
|
|
166
166
|
dataType: "string";
|
|
167
167
|
columnType: "SQLiteText";
|
|
168
|
-
data: "
|
|
168
|
+
data: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED";
|
|
169
169
|
driverParam: string;
|
|
170
170
|
notNull: false;
|
|
171
171
|
hasDefault: false;
|
|
@@ -178,7 +178,7 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
178
178
|
generated: undefined;
|
|
179
179
|
}, {}, {
|
|
180
180
|
length: number | undefined;
|
|
181
|
-
$type: "
|
|
181
|
+
$type: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED";
|
|
182
182
|
}>;
|
|
183
183
|
payments: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
184
184
|
name: "payments";
|
|
@@ -416,7 +416,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
416
416
|
tableName: "payment";
|
|
417
417
|
dataType: "string";
|
|
418
418
|
columnType: "SQLiteText";
|
|
419
|
-
data: "PREPARED" | "
|
|
419
|
+
data: "PREPARED" | "COMPLETED" | "FAILED" | "INITIALIZED" | "PENDING" | "CREATED";
|
|
420
420
|
driverParam: string;
|
|
421
421
|
notNull: true;
|
|
422
422
|
hasDefault: false;
|
|
@@ -429,7 +429,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
429
429
|
generated: undefined;
|
|
430
430
|
}, {}, {
|
|
431
431
|
length: number | undefined;
|
|
432
|
-
$type: "PREPARED" | "
|
|
432
|
+
$type: "PREPARED" | "COMPLETED" | "FAILED" | "INITIALIZED" | "PENDING" | "CREATED";
|
|
433
433
|
}>;
|
|
434
434
|
statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
435
435
|
name: "status_reason";
|
|
@@ -82,10 +82,10 @@ declare const paymentInsertTypeZod: z.ZodObject<{
|
|
|
82
82
|
}>;
|
|
83
83
|
status: z.ZodEnum<{
|
|
84
84
|
PREPARED: "PREPARED";
|
|
85
|
-
|
|
85
|
+
COMPLETED: "COMPLETED";
|
|
86
86
|
FAILED: "FAILED";
|
|
87
|
+
INITIALIZED: "INITIALIZED";
|
|
87
88
|
PENDING: "PENDING";
|
|
88
|
-
COMPLETED: "COMPLETED";
|
|
89
89
|
CREATED: "CREATED";
|
|
90
90
|
}>;
|
|
91
91
|
batchId: z.ZodString;
|
|
@@ -165,7 +165,7 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
165
165
|
tableName: "batch";
|
|
166
166
|
dataType: "string";
|
|
167
167
|
columnType: "SQLiteText";
|
|
168
|
-
data: "
|
|
168
|
+
data: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED";
|
|
169
169
|
driverParam: string;
|
|
170
170
|
notNull: false;
|
|
171
171
|
hasDefault: false;
|
|
@@ -178,7 +178,7 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
178
178
|
generated: undefined;
|
|
179
179
|
}, {}, {
|
|
180
180
|
length: number | undefined;
|
|
181
|
-
$type: "
|
|
181
|
+
$type: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED";
|
|
182
182
|
}>;
|
|
183
183
|
payments: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
184
184
|
name: "payments";
|
|
@@ -416,7 +416,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
416
416
|
tableName: "payment";
|
|
417
417
|
dataType: "string";
|
|
418
418
|
columnType: "SQLiteText";
|
|
419
|
-
data: "PREPARED" | "
|
|
419
|
+
data: "PREPARED" | "COMPLETED" | "FAILED" | "INITIALIZED" | "PENDING" | "CREATED";
|
|
420
420
|
driverParam: string;
|
|
421
421
|
notNull: true;
|
|
422
422
|
hasDefault: false;
|
|
@@ -429,7 +429,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
429
429
|
generated: undefined;
|
|
430
430
|
}, {}, {
|
|
431
431
|
length: number | undefined;
|
|
432
|
-
$type: "PREPARED" | "
|
|
432
|
+
$type: "PREPARED" | "COMPLETED" | "FAILED" | "INITIALIZED" | "PENDING" | "CREATED";
|
|
433
433
|
}>;
|
|
434
434
|
statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
435
435
|
name: "status_reason";
|
|
@@ -82,10 +82,10 @@ declare const paymentInsertTypeZod: z.ZodObject<{
|
|
|
82
82
|
}>;
|
|
83
83
|
status: z.ZodEnum<{
|
|
84
84
|
PREPARED: "PREPARED";
|
|
85
|
-
|
|
85
|
+
COMPLETED: "COMPLETED";
|
|
86
86
|
FAILED: "FAILED";
|
|
87
|
+
INITIALIZED: "INITIALIZED";
|
|
87
88
|
PENDING: "PENDING";
|
|
88
|
-
COMPLETED: "COMPLETED";
|
|
89
89
|
CREATED: "CREATED";
|
|
90
90
|
}>;
|
|
91
91
|
batchId: z.ZodString;
|
|
@@ -165,7 +165,7 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
165
165
|
tableName: "batch";
|
|
166
166
|
dataType: "string";
|
|
167
167
|
columnType: "SQLiteText";
|
|
168
|
-
data: "
|
|
168
|
+
data: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED";
|
|
169
169
|
driverParam: string;
|
|
170
170
|
notNull: false;
|
|
171
171
|
hasDefault: false;
|
|
@@ -178,7 +178,7 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
178
178
|
generated: undefined;
|
|
179
179
|
}, {}, {
|
|
180
180
|
length: number | undefined;
|
|
181
|
-
$type: "
|
|
181
|
+
$type: "OPEN" | "WAITING_FOR_PROCESSING" | "PROCESSING" | "READY_TO_SIGN" | "PREPARED" | "COMPLETED" | "FAILED";
|
|
182
182
|
}>;
|
|
183
183
|
payments: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
184
184
|
name: "payments";
|
|
@@ -416,7 +416,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
416
416
|
tableName: "payment";
|
|
417
417
|
dataType: "string";
|
|
418
418
|
columnType: "SQLiteText";
|
|
419
|
-
data: "PREPARED" | "
|
|
419
|
+
data: "PREPARED" | "COMPLETED" | "FAILED" | "INITIALIZED" | "PENDING" | "CREATED";
|
|
420
420
|
driverParam: string;
|
|
421
421
|
notNull: true;
|
|
422
422
|
hasDefault: false;
|
|
@@ -429,7 +429,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
429
429
|
generated: undefined;
|
|
430
430
|
}, {}, {
|
|
431
431
|
length: number | undefined;
|
|
432
|
-
$type: "PREPARED" | "
|
|
432
|
+
$type: "PREPARED" | "COMPLETED" | "FAILED" | "INITIALIZED" | "PENDING" | "CREATED";
|
|
433
433
|
}>;
|
|
434
434
|
statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
435
435
|
name: "status_reason";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Environment } from '@develit-io/backend-sdk';
|
|
2
2
|
import { BANK_CODES, CURRENCY_CODES, CODES } from '@develit-io/general-codes';
|
|
3
|
-
import { a as PaymentInsertType, t as tables } from './bank.
|
|
3
|
+
import { a as PaymentInsertType, t as tables } from './bank.BT_Yf43j.mjs';
|
|
4
4
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
5
5
|
|
|
6
6
|
declare const PAYMENT_TYPES: readonly ["SEPA", "SWIFT", "IFSC", "DOMESTIC"];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Environment } from '@develit-io/backend-sdk';
|
|
2
2
|
import { BANK_CODES, CURRENCY_CODES, CODES } from '@develit-io/general-codes';
|
|
3
|
-
import { a as PaymentInsertType, t as tables } from './bank.
|
|
3
|
+
import { a as PaymentInsertType, t as tables } from './bank.BT_Yf43j.cjs';
|
|
4
4
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
5
5
|
|
|
6
6
|
declare const PAYMENT_TYPES: readonly ["SEPA", "SWIFT", "IFSC", "DOMESTIC"];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Environment } from '@develit-io/backend-sdk';
|
|
2
2
|
import { BANK_CODES, CURRENCY_CODES, CODES } from '@develit-io/general-codes';
|
|
3
|
-
import { a as PaymentInsertType, t as tables } from './bank.
|
|
3
|
+
import { a as PaymentInsertType, t as tables } from './bank.BT_Yf43j.js';
|
|
4
4
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
5
5
|
|
|
6
6
|
declare const PAYMENT_TYPES: readonly ["SEPA", "SWIFT", "IFSC", "DOMESTIC"];
|
package/dist/types.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { c as CurrencyCode, d as BankCode, e as CountryCode, I as IBankConnector, b as ConnectorKey, A as AccountConnection, f as AuthInput, g as IncomingPaymentMessage, P as PaymentPreparedInsertType, h as InitiatedBatch, i as InitiatedPayment, a as ConfigBankAccount, S as SyncLog, j as PaymentStatus, k as BatchStatus, l as BatchMetadata, m as Currency } from './shared/bank.
|
|
2
|
-
export { o as BATCH_STATUES, o as BATCH_STATUSES, B as BankAccountWithLastSync, v as COUNTRY_CODES, C as ConfigEnvironmentBankAccount, O as OutgoingPaymentMessage, t as PAYMENT_DIRECTIONS, s as PAYMENT_STATUSES, q as PAYMENT_TYPES, u as PaymentDirection, n as PaymentFailedInsertType, r as PaymentType, p as paymentInitializedInsertType } from './shared/bank.
|
|
3
|
-
import { t as tables, a as PaymentInsertType, P as PaymentSelectType } from './shared/bank.
|
|
4
|
-
export { b as BatchInsertType, B as BatchSelectType, p as paymentInsertTypeZod } from './shared/bank.
|
|
1
|
+
import { c as CurrencyCode, d as BankCode, e as CountryCode, I as IBankConnector, b as ConnectorKey, A as AccountConnection, f as AuthInput, g as IncomingPaymentMessage, P as PaymentPreparedInsertType, h as InitiatedBatch, i as InitiatedPayment, a as ConfigBankAccount, S as SyncLog, j as PaymentStatus, k as BatchStatus, l as BatchMetadata, m as Currency } from './shared/bank.BwleO_ON.cjs';
|
|
2
|
+
export { o as BATCH_STATUES, o as BATCH_STATUSES, B as BankAccountWithLastSync, v as COUNTRY_CODES, C as ConfigEnvironmentBankAccount, O as OutgoingPaymentMessage, t as PAYMENT_DIRECTIONS, s as PAYMENT_STATUSES, q as PAYMENT_TYPES, u as PaymentDirection, n as PaymentFailedInsertType, r as PaymentType, p as paymentInitializedInsertType } from './shared/bank.BwleO_ON.cjs';
|
|
3
|
+
import { t as tables, a as PaymentInsertType, P as PaymentSelectType } from './shared/bank.BT_Yf43j.cjs';
|
|
4
|
+
export { b as BatchInsertType, B as BatchSelectType, p as paymentInsertTypeZod } from './shared/bank.BT_Yf43j.cjs';
|
|
5
5
|
import { Environment, BaseEvent } from '@develit-io/backend-sdk';
|
|
6
6
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
7
7
|
export { b as BankServiceEnv, a as BankServiceEnvironmentConfig, B as BankServiceWranglerConfig } from './shared/bank.CJFy17-g.cjs';
|
package/dist/types.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { c as CurrencyCode, d as BankCode, e as CountryCode, I as IBankConnector, b as ConnectorKey, A as AccountConnection, f as AuthInput, g as IncomingPaymentMessage, P as PaymentPreparedInsertType, h as InitiatedBatch, i as InitiatedPayment, a as ConfigBankAccount, S as SyncLog, j as PaymentStatus, k as BatchStatus, l as BatchMetadata, m as Currency } from './shared/bank.
|
|
2
|
-
export { o as BATCH_STATUES, o as BATCH_STATUSES, B as BankAccountWithLastSync, v as COUNTRY_CODES, C as ConfigEnvironmentBankAccount, O as OutgoingPaymentMessage, t as PAYMENT_DIRECTIONS, s as PAYMENT_STATUSES, q as PAYMENT_TYPES, u as PaymentDirection, n as PaymentFailedInsertType, r as PaymentType, p as paymentInitializedInsertType } from './shared/bank.
|
|
3
|
-
import { t as tables, a as PaymentInsertType, P as PaymentSelectType } from './shared/bank.
|
|
4
|
-
export { b as BatchInsertType, B as BatchSelectType, p as paymentInsertTypeZod } from './shared/bank.
|
|
1
|
+
import { c as CurrencyCode, d as BankCode, e as CountryCode, I as IBankConnector, b as ConnectorKey, A as AccountConnection, f as AuthInput, g as IncomingPaymentMessage, P as PaymentPreparedInsertType, h as InitiatedBatch, i as InitiatedPayment, a as ConfigBankAccount, S as SyncLog, j as PaymentStatus, k as BatchStatus, l as BatchMetadata, m as Currency } from './shared/bank.BoVUuQ1D.mjs';
|
|
2
|
+
export { o as BATCH_STATUES, o as BATCH_STATUSES, B as BankAccountWithLastSync, v as COUNTRY_CODES, C as ConfigEnvironmentBankAccount, O as OutgoingPaymentMessage, t as PAYMENT_DIRECTIONS, s as PAYMENT_STATUSES, q as PAYMENT_TYPES, u as PaymentDirection, n as PaymentFailedInsertType, r as PaymentType, p as paymentInitializedInsertType } from './shared/bank.BoVUuQ1D.mjs';
|
|
3
|
+
import { t as tables, a as PaymentInsertType, P as PaymentSelectType } from './shared/bank.BT_Yf43j.mjs';
|
|
4
|
+
export { b as BatchInsertType, B as BatchSelectType, p as paymentInsertTypeZod } from './shared/bank.BT_Yf43j.mjs';
|
|
5
5
|
import { Environment, BaseEvent } from '@develit-io/backend-sdk';
|
|
6
6
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
7
7
|
export { b as BankServiceEnv, a as BankServiceEnvironmentConfig, B as BankServiceWranglerConfig } from './shared/bank.CJFy17-g.mjs';
|
package/dist/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { c as CurrencyCode, d as BankCode, e as CountryCode, I as IBankConnector, b as ConnectorKey, A as AccountConnection, f as AuthInput, g as IncomingPaymentMessage, P as PaymentPreparedInsertType, h as InitiatedBatch, i as InitiatedPayment, a as ConfigBankAccount, S as SyncLog, j as PaymentStatus, k as BatchStatus, l as BatchMetadata, m as Currency } from './shared/bank.
|
|
2
|
-
export { o as BATCH_STATUES, o as BATCH_STATUSES, B as BankAccountWithLastSync, v as COUNTRY_CODES, C as ConfigEnvironmentBankAccount, O as OutgoingPaymentMessage, t as PAYMENT_DIRECTIONS, s as PAYMENT_STATUSES, q as PAYMENT_TYPES, u as PaymentDirection, n as PaymentFailedInsertType, r as PaymentType, p as paymentInitializedInsertType } from './shared/bank.
|
|
3
|
-
import { t as tables, a as PaymentInsertType, P as PaymentSelectType } from './shared/bank.
|
|
4
|
-
export { b as BatchInsertType, B as BatchSelectType, p as paymentInsertTypeZod } from './shared/bank.
|
|
1
|
+
import { c as CurrencyCode, d as BankCode, e as CountryCode, I as IBankConnector, b as ConnectorKey, A as AccountConnection, f as AuthInput, g as IncomingPaymentMessage, P as PaymentPreparedInsertType, h as InitiatedBatch, i as InitiatedPayment, a as ConfigBankAccount, S as SyncLog, j as PaymentStatus, k as BatchStatus, l as BatchMetadata, m as Currency } from './shared/bank.DlquvmPs.js';
|
|
2
|
+
export { o as BATCH_STATUES, o as BATCH_STATUSES, B as BankAccountWithLastSync, v as COUNTRY_CODES, C as ConfigEnvironmentBankAccount, O as OutgoingPaymentMessage, t as PAYMENT_DIRECTIONS, s as PAYMENT_STATUSES, q as PAYMENT_TYPES, u as PaymentDirection, n as PaymentFailedInsertType, r as PaymentType, p as paymentInitializedInsertType } from './shared/bank.DlquvmPs.js';
|
|
3
|
+
import { t as tables, a as PaymentInsertType, P as PaymentSelectType } from './shared/bank.BT_Yf43j.js';
|
|
4
|
+
export { b as BatchInsertType, B as BatchSelectType, p as paymentInsertTypeZod } from './shared/bank.BT_Yf43j.js';
|
|
5
5
|
import { Environment, BaseEvent } from '@develit-io/backend-sdk';
|
|
6
6
|
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
7
7
|
export { b as BankServiceEnv, a as BankServiceEnvironmentConfig, B as BankServiceWranglerConfig } from './shared/bank.CJFy17-g.js';
|