@shipengine/js-api 2.6.0 → 2.7.0

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.
@@ -124,6 +124,13 @@ export type MetadataCarrierProfile = {
124
124
  requiredTerms: MetadataRequiredTerm[];
125
125
  };
126
126
  export type TransactionCategory = "adjustment" | "credit" | "debit" | "funds_added" | "insurance" | "label" | "refund" | "service_charge" | "unknown";
127
+ export type FundingSourceTransactionInvoice = {
128
+ invoiceDownload: {
129
+ pdf: string;
130
+ };
131
+ invoiceId: string;
132
+ reference: string;
133
+ };
127
134
  export type FundingSourceTransaction = {
128
135
  description?: string | null;
129
136
  endingBalance: {
@@ -132,6 +139,7 @@ export type FundingSourceTransaction = {
132
139
  };
133
140
  fundingSourceId: string;
134
141
  fundingSourceTransactionId: string;
142
+ invoice: FundingSourceTransactionInvoice | null;
135
143
  labelIds: string[];
136
144
  relatedFundingSourceTransactionIds: string[];
137
145
  shipmentIds: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/js-api",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {