@vality/swag-wallets 0.1.3
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 +236 -0
- package/api/api.d.ts +23 -0
- package/api/currencies.service.d.ts +41 -0
- package/api/deposits.service.d.ts +171 -0
- package/api/downloads.service.d.ts +41 -0
- package/api/identities.service.d.ts +134 -0
- package/api/providers.service.d.ts +70 -0
- package/api/reports.service.d.ts +116 -0
- package/api/residences.service.d.ts +41 -0
- package/api/w2W.service.d.ts +71 -0
- package/api/wallets.service.d.ts +199 -0
- package/api/webhooks.service.d.ts +132 -0
- package/api/withdrawals.service.d.ts +410 -0
- package/api.base.service.d.ts +12 -0
- package/api.module.d.ts +11 -0
- package/configuration.d.ts +106 -0
- package/encoder.d.ts +11 -0
- package/fesm2022/vality-swag-wallets.mjs +3577 -0
- package/fesm2022/vality-swag-wallets.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/model/asset.d.ts +22 -0
- package/model/badRequest.d.ts +38 -0
- package/model/bankCardDestinationResource.d.ts +29 -0
- package/model/bankCardReceiverResource.d.ts +33 -0
- package/model/bankCardReceiverResourceParams.d.ts +29 -0
- package/model/bankCardSenderResource.d.ts +33 -0
- package/model/bankCardSenderResourceParams.d.ts +33 -0
- package/model/browserGetRequest.d.ts +16 -0
- package/model/browserPostRequest.d.ts +21 -0
- package/model/browserRequest.d.ts +15 -0
- package/model/conflictRequest.d.ts +23 -0
- package/model/contactInfo.d.ts +22 -0
- package/model/cryptoWallet.d.ts +22 -0
- package/model/cryptoWalletDestinationResource.d.ts +25 -0
- package/model/currency.d.ts +34 -0
- package/model/deposit.d.ts +56 -0
- package/model/depositAdjustment.d.ts +40 -0
- package/model/depositAdjustmentFailure.d.ts +17 -0
- package/model/depositAdjustmentStatus.d.ts +25 -0
- package/model/depositAdjustmentStatusFailure.d.ts +20 -0
- package/model/depositAllOfBody.d.ts +22 -0
- package/model/depositAllOfFee.d.ts +22 -0
- package/model/depositFailure.d.ts +17 -0
- package/model/depositRevert.d.ts +51 -0
- package/model/depositRevertAllOfBody.d.ts +22 -0
- package/model/depositRevertFailure.d.ts +17 -0
- package/model/depositRevertStatus.d.ts +25 -0
- package/model/depositRevertStatusFailure.d.ts +20 -0
- package/model/depositStatus.d.ts +25 -0
- package/model/depositStatusFailure.d.ts +20 -0
- package/model/destination.d.ts +65 -0
- package/model/destinationAuthData.d.ts +24 -0
- package/model/destinationGrantRequest.d.ts +22 -0
- package/model/destinationResource.d.ts +26 -0
- package/model/destinationStatus.d.ts +26 -0
- package/model/destinationsTopic.d.ts +27 -0
- package/model/digitalWallet.d.ts +34 -0
- package/model/digitalWalletDestinationResource.d.ts +37 -0
- package/model/fileDownload.d.ts +19 -0
- package/model/getWithdrawalMethods200Response.d.ts +13 -0
- package/model/identity.d.ts +46 -0
- package/model/invalidOperationParameters.d.ts +15 -0
- package/model/listDepositAdjustments200Response.d.ts +20 -0
- package/model/listDepositReverts200Response.d.ts +20 -0
- package/model/listDeposits200Response.d.ts +20 -0
- package/model/listDestinations200Response.d.ts +20 -0
- package/model/listIdentities200Response.d.ts +20 -0
- package/model/listWallets200Response.d.ts +20 -0
- package/model/listWithdrawals200Response.d.ts +20 -0
- package/model/models.d.ts +104 -0
- package/model/provider.d.ts +26 -0
- package/model/quoteParameters.d.ts +24 -0
- package/model/quoteParametersBody.d.ts +22 -0
- package/model/receiverResource.d.ts +24 -0
- package/model/receiverResourceParams.d.ts +24 -0
- package/model/redirect.d.ts +14 -0
- package/model/report.d.ts +49 -0
- package/model/reportFilesInner.d.ts +15 -0
- package/model/reportParams.d.ts +29 -0
- package/model/residence.d.ts +26 -0
- package/model/securedBankCard.d.ts +26 -0
- package/model/senderReceiverDestinationAuthData.d.ts +25 -0
- package/model/senderResource.d.ts +24 -0
- package/model/senderResourceParams.d.ts +24 -0
- package/model/subFailure.d.ts +19 -0
- package/model/userInteraction.d.ts +15 -0
- package/model/userInteractionChange.d.ts +22 -0
- package/model/userInteractionCreated.d.ts +16 -0
- package/model/userInteractionFinished.d.ts +14 -0
- package/model/userInteractionFormInner.d.ts +19 -0
- package/model/w2WTransfer.d.ts +38 -0
- package/model/w2WTransferFailure.d.ts +20 -0
- package/model/w2WTransferParameters.d.ts +28 -0
- package/model/w2WTransferParametersBody.d.ts +22 -0
- package/model/w2WTransferStatus.d.ts +25 -0
- package/model/w2WTransferStatusFailure.d.ts +20 -0
- package/model/wallet.d.ts +46 -0
- package/model/walletAccount.d.ts +18 -0
- package/model/walletAccountAvailable.d.ts +22 -0
- package/model/walletAccountOwn.d.ts +22 -0
- package/model/walletGrantRequest.d.ts +24 -0
- package/model/walletGrantRequestAsset.d.ts +22 -0
- package/model/webhook.d.ts +33 -0
- package/model/webhookScope.d.ts +25 -0
- package/model/withdrawal.d.ts +58 -0
- package/model/withdrawalAllOfBody.d.ts +22 -0
- package/model/withdrawalAllOfQuote.d.ts +24 -0
- package/model/withdrawalEvent.d.ts +24 -0
- package/model/withdrawalEventChange.d.ts +24 -0
- package/model/withdrawalFailure.d.ts +17 -0
- package/model/withdrawalMethod.d.ts +23 -0
- package/model/withdrawalMethodBankCard.d.ts +18 -0
- package/model/withdrawalMethodDigitalWallet.d.ts +18 -0
- package/model/withdrawalMethodGeneric.d.ts +18 -0
- package/model/withdrawalParameters.d.ts +70 -0
- package/model/withdrawalQuote.d.ts +30 -0
- package/model/withdrawalQuoteCashFrom.d.ts +22 -0
- package/model/withdrawalQuoteCashTo.d.ts +22 -0
- package/model/withdrawalQuoteParams.d.ts +44 -0
- package/model/withdrawalQuoteParamsCash.d.ts +22 -0
- package/model/withdrawalReadQuote.d.ts +26 -0
- package/model/withdrawalStatus.d.ts +25 -0
- package/model/withdrawalStatusChanged.d.ts +29 -0
- package/model/withdrawalStatusFailure.d.ts +20 -0
- package/model/withdrawalsTopic.d.ts +31 -0
- package/package.json +34 -0
- package/param.d.ts +37 -0
- package/variables.d.ts +8 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { Provider } from '../model/provider';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import { BaseService } from '../api.base.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export interface GetProviderRequestParams {
|
|
8
|
+
/** Unique identifier of the request to the system */
|
|
9
|
+
xRequestID: string;
|
|
10
|
+
/** Identifier of the provider */
|
|
11
|
+
providerID: string;
|
|
12
|
+
/** Maximum request processing time */
|
|
13
|
+
xRequestDeadline?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface ListProvidersRequestParams {
|
|
16
|
+
/** Unique identifier of the request to the system */
|
|
17
|
+
xRequestID: string;
|
|
18
|
+
/** Maximum request processing time */
|
|
19
|
+
xRequestDeadline?: string;
|
|
20
|
+
/** The residence within which the services are provided, [ISO 3166-1] country or region code (https://en.wikipedia.org/wiki/ISO_3166-1) */
|
|
21
|
+
residence?: string;
|
|
22
|
+
}
|
|
23
|
+
export declare class ProvidersService extends BaseService {
|
|
24
|
+
protected httpClient: HttpClient;
|
|
25
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
26
|
+
/**
|
|
27
|
+
* Get provider details
|
|
28
|
+
* @param requestParameters
|
|
29
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
30
|
+
* @param reportProgress flag to report request and response progress.
|
|
31
|
+
*/
|
|
32
|
+
getProvider(requestParameters: GetProviderRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
33
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
34
|
+
context?: HttpContext;
|
|
35
|
+
transferCache?: boolean;
|
|
36
|
+
}): Observable<Provider>;
|
|
37
|
+
getProvider(requestParameters: GetProviderRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
38
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
39
|
+
context?: HttpContext;
|
|
40
|
+
transferCache?: boolean;
|
|
41
|
+
}): Observable<HttpResponse<Provider>>;
|
|
42
|
+
getProvider(requestParameters: GetProviderRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
43
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
44
|
+
context?: HttpContext;
|
|
45
|
+
transferCache?: boolean;
|
|
46
|
+
}): Observable<HttpEvent<Provider>>;
|
|
47
|
+
/**
|
|
48
|
+
* List available providers
|
|
49
|
+
* @param requestParameters
|
|
50
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
51
|
+
* @param reportProgress flag to report request and response progress.
|
|
52
|
+
*/
|
|
53
|
+
listProviders(requestParameters: ListProvidersRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
54
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
55
|
+
context?: HttpContext;
|
|
56
|
+
transferCache?: boolean;
|
|
57
|
+
}): Observable<Array<Provider>>;
|
|
58
|
+
listProviders(requestParameters: ListProvidersRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
59
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
60
|
+
context?: HttpContext;
|
|
61
|
+
transferCache?: boolean;
|
|
62
|
+
}): Observable<HttpResponse<Array<Provider>>>;
|
|
63
|
+
listProviders(requestParameters: ListProvidersRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
64
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
65
|
+
context?: HttpContext;
|
|
66
|
+
transferCache?: boolean;
|
|
67
|
+
}): Observable<HttpEvent<Array<Provider>>>;
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService, [null, { optional: true; }, { optional: true; }]>;
|
|
69
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService>;
|
|
70
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { Report } from '../model/report';
|
|
4
|
+
import { ReportParams } from '../model/reportParams';
|
|
5
|
+
import { Configuration } from '../configuration';
|
|
6
|
+
import { BaseService } from '../api.base.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export interface CreateReportRequestParams {
|
|
9
|
+
/** Unique identifier of the request to the system */
|
|
10
|
+
xRequestID: string;
|
|
11
|
+
/** Identifier of the owner\'s identity */
|
|
12
|
+
identityID: string;
|
|
13
|
+
/** Report generation options */
|
|
14
|
+
reportParams: ReportParams;
|
|
15
|
+
/** Maximum request processing time */
|
|
16
|
+
xRequestDeadline?: string;
|
|
17
|
+
/** The participant\'s unique identifier within the system. */
|
|
18
|
+
partyID?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface GetReportRequestParams {
|
|
21
|
+
/** Unique identifier of the request to the system */
|
|
22
|
+
xRequestID: string;
|
|
23
|
+
/** Identifier of the owner\'s identity */
|
|
24
|
+
identityID: string;
|
|
25
|
+
/** The report identifier */
|
|
26
|
+
reportID: number;
|
|
27
|
+
/** Maximum request processing time */
|
|
28
|
+
xRequestDeadline?: string;
|
|
29
|
+
/** The participant\'s unique identifier within the system. */
|
|
30
|
+
partyID?: string;
|
|
31
|
+
}
|
|
32
|
+
export interface GetReportsRequestParams {
|
|
33
|
+
/** Unique identifier of the request to the system */
|
|
34
|
+
xRequestID: string;
|
|
35
|
+
/** Identifier of the owner\'s identity */
|
|
36
|
+
identityID: string;
|
|
37
|
+
/** Start of the time period */
|
|
38
|
+
fromTime: string;
|
|
39
|
+
/** End of the time period */
|
|
40
|
+
toTime: string;
|
|
41
|
+
/** Maximum request processing time */
|
|
42
|
+
xRequestDeadline?: string;
|
|
43
|
+
/** The participant\'s unique identifier within the system. */
|
|
44
|
+
partyID?: string;
|
|
45
|
+
/** Type of reports received */
|
|
46
|
+
type?: 'withdrawalRegistry';
|
|
47
|
+
}
|
|
48
|
+
export declare class ReportsService extends BaseService {
|
|
49
|
+
protected httpClient: HttpClient;
|
|
50
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
51
|
+
/**
|
|
52
|
+
* Generate a report with the specified type on the identity of the owner for the specified period of time
|
|
53
|
+
* @param requestParameters
|
|
54
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
55
|
+
* @param reportProgress flag to report request and response progress.
|
|
56
|
+
*/
|
|
57
|
+
createReport(requestParameters: CreateReportRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
58
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
59
|
+
context?: HttpContext;
|
|
60
|
+
transferCache?: boolean;
|
|
61
|
+
}): Observable<Report>;
|
|
62
|
+
createReport(requestParameters: CreateReportRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
63
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
64
|
+
context?: HttpContext;
|
|
65
|
+
transferCache?: boolean;
|
|
66
|
+
}): Observable<HttpResponse<Report>>;
|
|
67
|
+
createReport(requestParameters: CreateReportRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
68
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
69
|
+
context?: HttpContext;
|
|
70
|
+
transferCache?: boolean;
|
|
71
|
+
}): Observable<HttpEvent<Report>>;
|
|
72
|
+
/**
|
|
73
|
+
* Get a report for a given identifier
|
|
74
|
+
* @param requestParameters
|
|
75
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
76
|
+
* @param reportProgress flag to report request and response progress.
|
|
77
|
+
*/
|
|
78
|
+
getReport(requestParameters: GetReportRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
79
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
80
|
+
context?: HttpContext;
|
|
81
|
+
transferCache?: boolean;
|
|
82
|
+
}): Observable<Report>;
|
|
83
|
+
getReport(requestParameters: GetReportRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
84
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
85
|
+
context?: HttpContext;
|
|
86
|
+
transferCache?: boolean;
|
|
87
|
+
}): Observable<HttpResponse<Report>>;
|
|
88
|
+
getReport(requestParameters: GetReportRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
89
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
90
|
+
context?: HttpContext;
|
|
91
|
+
transferCache?: boolean;
|
|
92
|
+
}): Observable<HttpEvent<Report>>;
|
|
93
|
+
/**
|
|
94
|
+
* Get a list of owner identity reports for a period
|
|
95
|
+
* @param requestParameters
|
|
96
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
97
|
+
* @param reportProgress flag to report request and response progress.
|
|
98
|
+
*/
|
|
99
|
+
getReports(requestParameters: GetReportsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
100
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
101
|
+
context?: HttpContext;
|
|
102
|
+
transferCache?: boolean;
|
|
103
|
+
}): Observable<Array<Report>>;
|
|
104
|
+
getReports(requestParameters: GetReportsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
105
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
106
|
+
context?: HttpContext;
|
|
107
|
+
transferCache?: boolean;
|
|
108
|
+
}): Observable<HttpResponse<Array<Report>>>;
|
|
109
|
+
getReports(requestParameters: GetReportsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
110
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
111
|
+
context?: HttpContext;
|
|
112
|
+
transferCache?: boolean;
|
|
113
|
+
}): Observable<HttpEvent<Array<Report>>>;
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReportsService, [null, { optional: true; }, { optional: true; }]>;
|
|
115
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReportsService>;
|
|
116
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { Residence } from '../model/residence';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import { BaseService } from '../api.base.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export interface GetResidenceRequestParams {
|
|
8
|
+
/** Unique identifier of the request to the system */
|
|
9
|
+
xRequestID: string;
|
|
10
|
+
/** The residence within which the services are provided, [ISO 3166-1] country or region code (https://en.wikipedia.org/wiki/ISO_3166-1) */
|
|
11
|
+
residence: string;
|
|
12
|
+
/** Maximum request processing time */
|
|
13
|
+
xRequestDeadline?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class ResidencesService extends BaseService {
|
|
16
|
+
protected httpClient: HttpClient;
|
|
17
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
18
|
+
/**
|
|
19
|
+
* Get a description of the residence region
|
|
20
|
+
* @param requestParameters
|
|
21
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
22
|
+
* @param reportProgress flag to report request and response progress.
|
|
23
|
+
*/
|
|
24
|
+
getResidence(requestParameters: GetResidenceRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
25
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
26
|
+
context?: HttpContext;
|
|
27
|
+
transferCache?: boolean;
|
|
28
|
+
}): Observable<Residence>;
|
|
29
|
+
getResidence(requestParameters: GetResidenceRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
30
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
31
|
+
context?: HttpContext;
|
|
32
|
+
transferCache?: boolean;
|
|
33
|
+
}): Observable<HttpResponse<Residence>>;
|
|
34
|
+
getResidence(requestParameters: GetResidenceRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
35
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
36
|
+
context?: HttpContext;
|
|
37
|
+
transferCache?: boolean;
|
|
38
|
+
}): Observable<HttpEvent<Residence>>;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResidencesService, [null, { optional: true; }, { optional: true; }]>;
|
|
40
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResidencesService>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { W2WTransfer } from '../model/w2WTransfer';
|
|
4
|
+
import { W2WTransferParameters } from '../model/w2WTransferParameters';
|
|
5
|
+
import { Configuration } from '../configuration';
|
|
6
|
+
import { BaseService } from '../api.base.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export interface CreateW2WTransferRequestParams {
|
|
9
|
+
/** Unique identifier of the request to the system */
|
|
10
|
+
xRequestID: string;
|
|
11
|
+
/** Maximum request processing time */
|
|
12
|
+
xRequestDeadline?: string;
|
|
13
|
+
/** Transfer creation options */
|
|
14
|
+
transferParams?: W2WTransferParameters;
|
|
15
|
+
}
|
|
16
|
+
export interface GetW2WTransferRequestParams {
|
|
17
|
+
/** Unique identifier of the request to the system */
|
|
18
|
+
xRequestID: string;
|
|
19
|
+
/** Identifier of transfer */
|
|
20
|
+
w2wTransferID: string;
|
|
21
|
+
/** Maximum request processing time */
|
|
22
|
+
xRequestDeadline?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare class W2WService extends BaseService {
|
|
25
|
+
protected httpClient: HttpClient;
|
|
26
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
27
|
+
/**
|
|
28
|
+
* Create a transfer
|
|
29
|
+
* @param requestParameters
|
|
30
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
31
|
+
* @param reportProgress flag to report request and response progress.
|
|
32
|
+
*/
|
|
33
|
+
createW2WTransfer(requestParameters: CreateW2WTransferRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
34
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
35
|
+
context?: HttpContext;
|
|
36
|
+
transferCache?: boolean;
|
|
37
|
+
}): Observable<W2WTransfer>;
|
|
38
|
+
createW2WTransfer(requestParameters: CreateW2WTransferRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
39
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
40
|
+
context?: HttpContext;
|
|
41
|
+
transferCache?: boolean;
|
|
42
|
+
}): Observable<HttpResponse<W2WTransfer>>;
|
|
43
|
+
createW2WTransfer(requestParameters: CreateW2WTransferRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
44
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
45
|
+
context?: HttpContext;
|
|
46
|
+
transferCache?: boolean;
|
|
47
|
+
}): Observable<HttpEvent<W2WTransfer>>;
|
|
48
|
+
/**
|
|
49
|
+
* Get the transfer status.
|
|
50
|
+
* @param requestParameters
|
|
51
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
52
|
+
* @param reportProgress flag to report request and response progress.
|
|
53
|
+
*/
|
|
54
|
+
getW2WTransfer(requestParameters: GetW2WTransferRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
55
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
56
|
+
context?: HttpContext;
|
|
57
|
+
transferCache?: boolean;
|
|
58
|
+
}): Observable<W2WTransfer>;
|
|
59
|
+
getW2WTransfer(requestParameters: GetW2WTransferRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
60
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
61
|
+
context?: HttpContext;
|
|
62
|
+
transferCache?: boolean;
|
|
63
|
+
}): Observable<HttpResponse<W2WTransfer>>;
|
|
64
|
+
getW2WTransfer(requestParameters: GetW2WTransferRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
65
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
66
|
+
context?: HttpContext;
|
|
67
|
+
transferCache?: boolean;
|
|
68
|
+
}): Observable<HttpEvent<W2WTransfer>>;
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<W2WService, [null, { optional: true; }, { optional: true; }]>;
|
|
70
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<W2WService>;
|
|
71
|
+
}
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ListWallets200Response } from '../model/listWallets200Response';
|
|
4
|
+
import { Wallet } from '../model/wallet';
|
|
5
|
+
import { WalletAccount } from '../model/walletAccount';
|
|
6
|
+
import { WalletGrantRequest } from '../model/walletGrantRequest';
|
|
7
|
+
import { Configuration } from '../configuration';
|
|
8
|
+
import { BaseService } from '../api.base.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export interface CreateWalletRequestParams {
|
|
11
|
+
/** Unique identifier of the request to the system */
|
|
12
|
+
xRequestID: string;
|
|
13
|
+
/** Data of the created wallet */
|
|
14
|
+
wallet: Wallet;
|
|
15
|
+
/** Maximum request processing time */
|
|
16
|
+
xRequestDeadline?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface GetWalletRequestParams {
|
|
19
|
+
/** Unique identifier of the request to the system */
|
|
20
|
+
xRequestID: string;
|
|
21
|
+
/** Identifier of the wallet */
|
|
22
|
+
walletID: string;
|
|
23
|
+
/** Maximum request processing time */
|
|
24
|
+
xRequestDeadline?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface GetWalletAccountRequestParams {
|
|
27
|
+
/** Unique identifier of the request to the system */
|
|
28
|
+
xRequestID: string;
|
|
29
|
+
/** Identifier of the wallet */
|
|
30
|
+
walletID: string;
|
|
31
|
+
/** Maximum request processing time */
|
|
32
|
+
xRequestDeadline?: string;
|
|
33
|
+
}
|
|
34
|
+
export interface GetWalletByExternalIDRequestParams {
|
|
35
|
+
/** Unique identifier of the request to the system */
|
|
36
|
+
xRequestID: string;
|
|
37
|
+
/** External wallet identifier */
|
|
38
|
+
externalID: string;
|
|
39
|
+
/** Maximum request processing time */
|
|
40
|
+
xRequestDeadline?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface IssueWalletGrantRequestParams {
|
|
43
|
+
/** Unique identifier of the request to the system */
|
|
44
|
+
xRequestID: string;
|
|
45
|
+
/** Identifier of the wallet */
|
|
46
|
+
walletID: string;
|
|
47
|
+
/** Request for the right to manage funds on the wallet */
|
|
48
|
+
request: WalletGrantRequest;
|
|
49
|
+
/** Maximum request processing time */
|
|
50
|
+
xRequestDeadline?: string;
|
|
51
|
+
}
|
|
52
|
+
export interface ListWalletsRequestParams {
|
|
53
|
+
/** Unique identifier of the request to the system */
|
|
54
|
+
xRequestID: string;
|
|
55
|
+
/** Selection limit */
|
|
56
|
+
limit: number;
|
|
57
|
+
/** Maximum request processing time */
|
|
58
|
+
xRequestDeadline?: string;
|
|
59
|
+
/** The participant\'s unique identifier within the system. */
|
|
60
|
+
partyID?: string;
|
|
61
|
+
/** Identifier of owner\'s identity */
|
|
62
|
+
identityID?: string;
|
|
63
|
+
/** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */
|
|
64
|
+
currencyID?: string;
|
|
65
|
+
/** A token signalling that only part of the data has been transmitted in the response. To retrieve the next part, you need repeat the request to the service again, specifying the same set of conditions and the received token. If there is no token, the last piece of data is received. */
|
|
66
|
+
continuationToken?: string;
|
|
67
|
+
}
|
|
68
|
+
export declare class WalletsService extends BaseService {
|
|
69
|
+
protected httpClient: HttpClient;
|
|
70
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
71
|
+
/**
|
|
72
|
+
* Create a new wallet
|
|
73
|
+
* @param requestParameters
|
|
74
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
75
|
+
* @param reportProgress flag to report request and response progress.
|
|
76
|
+
*/
|
|
77
|
+
createWallet(requestParameters: CreateWalletRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
78
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
79
|
+
context?: HttpContext;
|
|
80
|
+
transferCache?: boolean;
|
|
81
|
+
}): Observable<Wallet>;
|
|
82
|
+
createWallet(requestParameters: CreateWalletRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
83
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
84
|
+
context?: HttpContext;
|
|
85
|
+
transferCache?: boolean;
|
|
86
|
+
}): Observable<HttpResponse<Wallet>>;
|
|
87
|
+
createWallet(requestParameters: CreateWalletRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
88
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
89
|
+
context?: HttpContext;
|
|
90
|
+
transferCache?: boolean;
|
|
91
|
+
}): Observable<HttpEvent<Wallet>>;
|
|
92
|
+
/**
|
|
93
|
+
* Get wallet data
|
|
94
|
+
* @param requestParameters
|
|
95
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
96
|
+
* @param reportProgress flag to report request and response progress.
|
|
97
|
+
*/
|
|
98
|
+
getWallet(requestParameters: GetWalletRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
99
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
100
|
+
context?: HttpContext;
|
|
101
|
+
transferCache?: boolean;
|
|
102
|
+
}): Observable<Wallet>;
|
|
103
|
+
getWallet(requestParameters: GetWalletRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
104
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
105
|
+
context?: HttpContext;
|
|
106
|
+
transferCache?: boolean;
|
|
107
|
+
}): Observable<HttpResponse<Wallet>>;
|
|
108
|
+
getWallet(requestParameters: GetWalletRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
109
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
110
|
+
context?: HttpContext;
|
|
111
|
+
transferCache?: boolean;
|
|
112
|
+
}): Observable<HttpEvent<Wallet>>;
|
|
113
|
+
/**
|
|
114
|
+
* Get account status
|
|
115
|
+
* @param requestParameters
|
|
116
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
117
|
+
* @param reportProgress flag to report request and response progress.
|
|
118
|
+
*/
|
|
119
|
+
getWalletAccount(requestParameters: GetWalletAccountRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
120
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
121
|
+
context?: HttpContext;
|
|
122
|
+
transferCache?: boolean;
|
|
123
|
+
}): Observable<WalletAccount>;
|
|
124
|
+
getWalletAccount(requestParameters: GetWalletAccountRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
125
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
126
|
+
context?: HttpContext;
|
|
127
|
+
transferCache?: boolean;
|
|
128
|
+
}): Observable<HttpResponse<WalletAccount>>;
|
|
129
|
+
getWalletAccount(requestParameters: GetWalletAccountRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
130
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
131
|
+
context?: HttpContext;
|
|
132
|
+
transferCache?: boolean;
|
|
133
|
+
}): Observable<HttpEvent<WalletAccount>>;
|
|
134
|
+
/**
|
|
135
|
+
* Get wallet by specified external identifier
|
|
136
|
+
* @param requestParameters
|
|
137
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
138
|
+
* @param reportProgress flag to report request and response progress.
|
|
139
|
+
*/
|
|
140
|
+
getWalletByExternalID(requestParameters: GetWalletByExternalIDRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
141
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
142
|
+
context?: HttpContext;
|
|
143
|
+
transferCache?: boolean;
|
|
144
|
+
}): Observable<Wallet>;
|
|
145
|
+
getWalletByExternalID(requestParameters: GetWalletByExternalIDRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
146
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
147
|
+
context?: HttpContext;
|
|
148
|
+
transferCache?: boolean;
|
|
149
|
+
}): Observable<HttpResponse<Wallet>>;
|
|
150
|
+
getWalletByExternalID(requestParameters: GetWalletByExternalIDRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
151
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
152
|
+
context?: HttpContext;
|
|
153
|
+
transferCache?: boolean;
|
|
154
|
+
}): Observable<HttpEvent<Wallet>>;
|
|
155
|
+
/**
|
|
156
|
+
* Grant the right to manage funds
|
|
157
|
+
* @param requestParameters
|
|
158
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
159
|
+
* @param reportProgress flag to report request and response progress.
|
|
160
|
+
*/
|
|
161
|
+
issueWalletGrant(requestParameters: IssueWalletGrantRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
162
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
163
|
+
context?: HttpContext;
|
|
164
|
+
transferCache?: boolean;
|
|
165
|
+
}): Observable<WalletGrantRequest>;
|
|
166
|
+
issueWalletGrant(requestParameters: IssueWalletGrantRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
167
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
168
|
+
context?: HttpContext;
|
|
169
|
+
transferCache?: boolean;
|
|
170
|
+
}): Observable<HttpResponse<WalletGrantRequest>>;
|
|
171
|
+
issueWalletGrant(requestParameters: IssueWalletGrantRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
172
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
173
|
+
context?: HttpContext;
|
|
174
|
+
transferCache?: boolean;
|
|
175
|
+
}): Observable<HttpEvent<WalletGrantRequest>>;
|
|
176
|
+
/**
|
|
177
|
+
* List the wallets
|
|
178
|
+
* @param requestParameters
|
|
179
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
180
|
+
* @param reportProgress flag to report request and response progress.
|
|
181
|
+
*/
|
|
182
|
+
listWallets(requestParameters: ListWalletsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
183
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
184
|
+
context?: HttpContext;
|
|
185
|
+
transferCache?: boolean;
|
|
186
|
+
}): Observable<ListWallets200Response>;
|
|
187
|
+
listWallets(requestParameters: ListWalletsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
188
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
189
|
+
context?: HttpContext;
|
|
190
|
+
transferCache?: boolean;
|
|
191
|
+
}): Observable<HttpResponse<ListWallets200Response>>;
|
|
192
|
+
listWallets(requestParameters: ListWalletsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
193
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
194
|
+
context?: HttpContext;
|
|
195
|
+
transferCache?: boolean;
|
|
196
|
+
}): Observable<HttpEvent<ListWallets200Response>>;
|
|
197
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WalletsService, [null, { optional: true; }, { optional: true; }]>;
|
|
198
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WalletsService>;
|
|
199
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { Webhook } from '../model/webhook';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import { BaseService } from '../api.base.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export interface CreateWebhookRequestParams {
|
|
8
|
+
/** Unique identifier of the request to the system */
|
|
9
|
+
xRequestID: string;
|
|
10
|
+
/** Parameters of the created webhook */
|
|
11
|
+
webhookParams: Webhook;
|
|
12
|
+
/** Maximum request processing time */
|
|
13
|
+
xRequestDeadline?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface DeleteWebhookByIDRequestParams {
|
|
16
|
+
/** Unique identifier of the request to the system */
|
|
17
|
+
xRequestID: string;
|
|
18
|
+
/** Webhook identifier */
|
|
19
|
+
webhookID: string;
|
|
20
|
+
/** Identifier of the owner\'s identity */
|
|
21
|
+
identityID: string;
|
|
22
|
+
/** Maximum request processing time */
|
|
23
|
+
xRequestDeadline?: string;
|
|
24
|
+
}
|
|
25
|
+
export interface GetWebhookByIDRequestParams {
|
|
26
|
+
/** Unique identifier of the request to the system */
|
|
27
|
+
xRequestID: string;
|
|
28
|
+
/** Webhook identifier */
|
|
29
|
+
webhookID: string;
|
|
30
|
+
/** Identifier of the owner\'s identity */
|
|
31
|
+
identityID: string;
|
|
32
|
+
/** Maximum request processing time */
|
|
33
|
+
xRequestDeadline?: string;
|
|
34
|
+
}
|
|
35
|
+
export interface GetWebhooksRequestParams {
|
|
36
|
+
/** Unique identifier of the request to the system */
|
|
37
|
+
xRequestID: string;
|
|
38
|
+
/** Identifier of the owner\'s identity */
|
|
39
|
+
identityID: string;
|
|
40
|
+
/** Maximum request processing time */
|
|
41
|
+
xRequestDeadline?: string;
|
|
42
|
+
}
|
|
43
|
+
export declare class WebhooksService extends BaseService {
|
|
44
|
+
protected httpClient: HttpClient;
|
|
45
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
46
|
+
/**
|
|
47
|
+
* Create a new webhook.
|
|
48
|
+
* @param requestParameters
|
|
49
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
50
|
+
* @param reportProgress flag to report request and response progress.
|
|
51
|
+
*/
|
|
52
|
+
createWebhook(requestParameters: CreateWebhookRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
53
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
54
|
+
context?: HttpContext;
|
|
55
|
+
transferCache?: boolean;
|
|
56
|
+
}): Observable<Webhook>;
|
|
57
|
+
createWebhook(requestParameters: CreateWebhookRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
58
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
59
|
+
context?: HttpContext;
|
|
60
|
+
transferCache?: boolean;
|
|
61
|
+
}): Observable<HttpResponse<Webhook>>;
|
|
62
|
+
createWebhook(requestParameters: CreateWebhookRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
63
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
64
|
+
context?: HttpContext;
|
|
65
|
+
transferCache?: boolean;
|
|
66
|
+
}): Observable<HttpEvent<Webhook>>;
|
|
67
|
+
/**
|
|
68
|
+
* Remove the specified webhook.
|
|
69
|
+
* @param requestParameters
|
|
70
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
71
|
+
* @param reportProgress flag to report request and response progress.
|
|
72
|
+
*/
|
|
73
|
+
deleteWebhookByID(requestParameters: DeleteWebhookByIDRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
74
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
75
|
+
context?: HttpContext;
|
|
76
|
+
transferCache?: boolean;
|
|
77
|
+
}): Observable<any>;
|
|
78
|
+
deleteWebhookByID(requestParameters: DeleteWebhookByIDRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
79
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
80
|
+
context?: HttpContext;
|
|
81
|
+
transferCache?: boolean;
|
|
82
|
+
}): Observable<HttpResponse<any>>;
|
|
83
|
+
deleteWebhookByID(requestParameters: DeleteWebhookByIDRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
84
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
85
|
+
context?: HttpContext;
|
|
86
|
+
transferCache?: boolean;
|
|
87
|
+
}): Observable<HttpEvent<any>>;
|
|
88
|
+
/**
|
|
89
|
+
* Get a webhook by its identifier.
|
|
90
|
+
* @param requestParameters
|
|
91
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
92
|
+
* @param reportProgress flag to report request and response progress.
|
|
93
|
+
*/
|
|
94
|
+
getWebhookByID(requestParameters: GetWebhookByIDRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
95
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
96
|
+
context?: HttpContext;
|
|
97
|
+
transferCache?: boolean;
|
|
98
|
+
}): Observable<Webhook>;
|
|
99
|
+
getWebhookByID(requestParameters: GetWebhookByIDRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
100
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
101
|
+
context?: HttpContext;
|
|
102
|
+
transferCache?: boolean;
|
|
103
|
+
}): Observable<HttpResponse<Webhook>>;
|
|
104
|
+
getWebhookByID(requestParameters: GetWebhookByIDRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
105
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
106
|
+
context?: HttpContext;
|
|
107
|
+
transferCache?: boolean;
|
|
108
|
+
}): Observable<HttpEvent<Webhook>>;
|
|
109
|
+
/**
|
|
110
|
+
* Get list of existing webhooks.
|
|
111
|
+
* @param requestParameters
|
|
112
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
113
|
+
* @param reportProgress flag to report request and response progress.
|
|
114
|
+
*/
|
|
115
|
+
getWebhooks(requestParameters: GetWebhooksRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
116
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
117
|
+
context?: HttpContext;
|
|
118
|
+
transferCache?: boolean;
|
|
119
|
+
}): Observable<Array<Webhook>>;
|
|
120
|
+
getWebhooks(requestParameters: GetWebhooksRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
121
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
122
|
+
context?: HttpContext;
|
|
123
|
+
transferCache?: boolean;
|
|
124
|
+
}): Observable<HttpResponse<Array<Webhook>>>;
|
|
125
|
+
getWebhooks(requestParameters: GetWebhooksRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
126
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
127
|
+
context?: HttpContext;
|
|
128
|
+
transferCache?: boolean;
|
|
129
|
+
}): Observable<HttpEvent<Array<Webhook>>>;
|
|
130
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WebhooksService, [null, { optional: true; }, { optional: true; }]>;
|
|
131
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WebhooksService>;
|
|
132
|
+
}
|