prospay-sdk 1.1.1 → 1.1.2

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.
@@ -25,7 +25,7 @@ export interface CreateTransactionDto {
25
25
  entityType: string;
26
26
  referenceId: string;
27
27
  currency: string;
28
- vertical: string;
28
+ vertical?: string;
29
29
  fromStateCode?: string;
30
30
  toStateCode?: string;
31
31
  charges: TransactionCharge[];
package/manual.txt CHANGED
@@ -33,7 +33,7 @@ Invoices
33
33
 
34
34
  Transactions
35
35
  - `createTransaction(authToken, payload)`: POST `/uts/api/transactions`
36
- - Body: `customerId`, `entityType`, `referenceId`, `currency`, `charges`, optional `fromStateCode`, optional `toStateCode`
36
+ - Body: `customerId`, `entityType`, `referenceId`, `currency`, `charges`, optional `fromStateCode`, optional `toStateCode`, optional `vertical`
37
37
  - `addChargesToTransaction(authToken, transactionId, payload)`: POST `/uts/api/transactions/{transactionId}/charges`
38
38
  - `searchTransactions(authToken, payload)`: POST `/uts/api/transactions/search`
39
39
  - `getChargeSummary(authToken, params)`: GET `/uts/api/transactions/charge-summary/`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prospay-sdk",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "NestJS-based SDK for Prospay customer onboarding, order, and invoicing APIs.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",