@cybrid/cybrid-api-bank-angular 0.125.53 → 0.125.54
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/README.md +2 -2
- package/api/internal.service.d.ts +4 -3
- package/esm2020/api/internal.service.mjs +5 -2
- package/fesm2015/cybrid-cybrid-api-bank-angular.mjs +4 -1
- package/fesm2015/cybrid-cybrid-api-bank-angular.mjs.map +1 -1
- package/fesm2020/cybrid-cybrid-api-bank-angular.mjs +4 -1
- package/fesm2020/cybrid-cybrid-api-bank-angular.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -146,7 +146,7 @@ An `Organization` can have multiple `banks`, in either `Sandbox` or `Production`
|
|
146
146
|
`Customers` must also have an `Account` to be able to transact, in the desired asset class. See the Accounts APIs for more details on setting up accounts for the customer.
|
147
147
|
|
148
148
|
|
149
|
-
## @cybrid/cybrid-api-bank-angular@0.125.
|
149
|
+
## @cybrid/cybrid-api-bank-angular@0.125.54
|
150
150
|
|
151
151
|
### Building
|
152
152
|
|
@@ -167,7 +167,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
167
167
|
_published:_
|
168
168
|
|
169
169
|
```
|
170
|
-
npm install @cybrid/cybrid-api-bank-angular@0.125.
|
170
|
+
npm install @cybrid/cybrid-api-bank-angular@0.125.54 --save
|
171
171
|
```
|
172
172
|
|
173
173
|
_without publishing (not recommended):_
|
@@ -1705,20 +1705,21 @@ export declare class InternalService {
|
|
1705
1705
|
* @param page
|
1706
1706
|
* @param perPage
|
1707
1707
|
* @param guid Comma separated assets to list customers for.
|
1708
|
+
* @param type Comma separated types to list customers for.
|
1708
1709
|
* @param bankGuid Comma separated bank_guids to list customers for.
|
1709
1710
|
* @param organizationGuid Comma separated organization_guids to list customers for.
|
1710
1711
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
1711
1712
|
* @param reportProgress flag to report request and response progress.
|
1712
1713
|
*/
|
1713
|
-
internalListCustomers(page?: string, perPage?: string, guid?: string, bankGuid?: string, organizationGuid?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
1714
|
+
internalListCustomers(page?: string, perPage?: string, guid?: string, type?: string, bankGuid?: string, organizationGuid?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
1714
1715
|
httpHeaderAccept?: 'application/json';
|
1715
1716
|
context?: HttpContext;
|
1716
1717
|
}): Observable<CustomerListBankModel>;
|
1717
|
-
internalListCustomers(page?: string, perPage?: string, guid?: string, bankGuid?: string, organizationGuid?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
1718
|
+
internalListCustomers(page?: string, perPage?: string, guid?: string, type?: string, bankGuid?: string, organizationGuid?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
1718
1719
|
httpHeaderAccept?: 'application/json';
|
1719
1720
|
context?: HttpContext;
|
1720
1721
|
}): Observable<HttpResponse<CustomerListBankModel>>;
|
1721
|
-
internalListCustomers(page?: string, perPage?: string, guid?: string, bankGuid?: string, organizationGuid?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
1722
|
+
internalListCustomers(page?: string, perPage?: string, guid?: string, type?: string, bankGuid?: string, organizationGuid?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
1722
1723
|
httpHeaderAccept?: 'application/json';
|
1723
1724
|
context?: HttpContext;
|
1724
1725
|
}): Observable<HttpEvent<CustomerListBankModel>>;
|