@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
package/README.md
ADDED
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
# @vality/swag-wallets@0.1.3
|
|
2
|
+
|
|
3
|
+
The Vality Wallet API is the base and only point of interaction with the wallet system. All system state changes are carried out by calling the corresponding API methods. Any third party applications, including our websites and other UIs, are external client applications. The Vality API works on top of the HTTP protocol. We use REST architecture, the scheme is described according to [OpenAPI 2.0](https://spec.openapis.org/oas/v2.0). Return codes are described by the corresponding HTTP statuses. The system accepts and returns JSON values in the body of requests and responses. ## Content Format Any API request must be encoded in UTF-8 and must contain JSON content. ``` Content-Type: application/json; charset=utf-8 ``` ## Date format The system accepts and returns timestamp values in the `date-time` format described in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339): ``` 2017-01-01T00:00:00Z 2017-01-01T00:00:01+00:00 ``` ## Maximum request processing time In any API call, you can pass a timeout parameter in the `X-Request-Deadline` header of the corresponding request, which determines the maximum time to wait for the operation to complete on the request: ``` X-Request-Deadline: 10s ``` After the specified time has elapsed, the system stops processing the request. It is recommended to specify a value of no more than one minute, but no less than three seconds. `X-Request-Deadline` can: * set in `date-time` format according to [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339); * specified in relative terms: in milliseconds (`150000ms`), seconds (`540s`) or minutes (`3.5m`). ## Request processing errors During the processing of requests by our system, various unforeseen situations may occur. The system signals about their appearance via the HTTP protocol with the corresponding [statuses][5xx], indicating server errors. | Code | Description | | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **500** | An unexpected situation occurred while the system was processing the request. If you receive such a response code, we recommend that you contact technical support. | | **503** | The system is temporarily unavailable and not ready to serve this request. The request is guaranteed to fail, if you receive a response code like this, try to implement it later when the system is restored to availability. | | **504** | The system has exceeded the allowable request processing time, the result of the request is undefined. Try to resubmit the request or find out the result of the original request, if you do not want to re-execute the request. | [5xx]: https://tools.ietf.org/html/rfc7231#section-6.6
|
|
4
|
+
|
|
5
|
+
The version of the OpenAPI document: 0.1.0
|
|
6
|
+
|
|
7
|
+
## Building
|
|
8
|
+
|
|
9
|
+
To install the required dependencies and to build the typescript sources run:
|
|
10
|
+
|
|
11
|
+
```console
|
|
12
|
+
npm install
|
|
13
|
+
npm run build
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Publishing
|
|
17
|
+
|
|
18
|
+
First build the package then run `npm publish dist` (don't forget to specify the `dist` folder!)
|
|
19
|
+
|
|
20
|
+
## Consuming
|
|
21
|
+
|
|
22
|
+
Navigate to the folder of your consuming project and run one of next commands.
|
|
23
|
+
|
|
24
|
+
_published:_
|
|
25
|
+
|
|
26
|
+
```console
|
|
27
|
+
npm install @vality/swag-wallets@0.1.3 --save
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
_without publishing (not recommended):_
|
|
31
|
+
|
|
32
|
+
```console
|
|
33
|
+
npm install PATH_TO_GENERATED_PACKAGE/dist.tgz --save
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_It's important to take the tgz file, otherwise you'll get trouble with links on windows_
|
|
37
|
+
|
|
38
|
+
_using `npm link`:_
|
|
39
|
+
|
|
40
|
+
In PATH_TO_GENERATED_PACKAGE/dist:
|
|
41
|
+
|
|
42
|
+
```console
|
|
43
|
+
npm link
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
In your project:
|
|
47
|
+
|
|
48
|
+
```console
|
|
49
|
+
npm link @vality/swag-wallets
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
__Note for Windows users:__ The Angular CLI has troubles to use linked npm packages.
|
|
53
|
+
Please refer to this issue <https://github.com/angular/angular-cli/issues/8284> for a solution / workaround.
|
|
54
|
+
Published packages are not effected by this issue.
|
|
55
|
+
|
|
56
|
+
### General usage
|
|
57
|
+
|
|
58
|
+
In your Angular project:
|
|
59
|
+
|
|
60
|
+
```typescript
|
|
61
|
+
// without configuring providers
|
|
62
|
+
import { ApiModule } from '@vality/swag-wallets';
|
|
63
|
+
import { HttpClientModule } from '@angular/common/http';
|
|
64
|
+
|
|
65
|
+
@NgModule({
|
|
66
|
+
imports: [
|
|
67
|
+
ApiModule,
|
|
68
|
+
// make sure to import the HttpClientModule in the AppModule only,
|
|
69
|
+
// see https://github.com/angular/angular/issues/20575
|
|
70
|
+
HttpClientModule
|
|
71
|
+
],
|
|
72
|
+
declarations: [ AppComponent ],
|
|
73
|
+
providers: [],
|
|
74
|
+
bootstrap: [ AppComponent ]
|
|
75
|
+
})
|
|
76
|
+
export class AppModule {}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
```typescript
|
|
80
|
+
// configuring providers
|
|
81
|
+
import { ApiModule, Configuration, ConfigurationParameters } from '@vality/swag-wallets';
|
|
82
|
+
|
|
83
|
+
export function apiConfigFactory (): Configuration {
|
|
84
|
+
const params: ConfigurationParameters = {
|
|
85
|
+
// set configuration parameters here.
|
|
86
|
+
}
|
|
87
|
+
return new Configuration(params);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@NgModule({
|
|
91
|
+
imports: [ ApiModule.forRoot(apiConfigFactory) ],
|
|
92
|
+
declarations: [ AppComponent ],
|
|
93
|
+
providers: [],
|
|
94
|
+
bootstrap: [ AppComponent ]
|
|
95
|
+
})
|
|
96
|
+
export class AppModule {}
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
```typescript
|
|
100
|
+
// configuring providers with an authentication service that manages your access tokens
|
|
101
|
+
import { ApiModule, Configuration } from '@vality/swag-wallets';
|
|
102
|
+
|
|
103
|
+
@NgModule({
|
|
104
|
+
imports: [ ApiModule ],
|
|
105
|
+
declarations: [ AppComponent ],
|
|
106
|
+
providers: [
|
|
107
|
+
{
|
|
108
|
+
provide: Configuration,
|
|
109
|
+
useFactory: (authService: AuthService) => new Configuration(
|
|
110
|
+
{
|
|
111
|
+
basePath: environment.apiUrl,
|
|
112
|
+
accessToken: authService.getAccessToken.bind(authService)
|
|
113
|
+
}
|
|
114
|
+
),
|
|
115
|
+
deps: [AuthService],
|
|
116
|
+
multi: false
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
bootstrap: [ AppComponent ]
|
|
120
|
+
})
|
|
121
|
+
export class AppModule {}
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
```typescript
|
|
125
|
+
import { DefaultApi } from '@vality/swag-wallets';
|
|
126
|
+
|
|
127
|
+
export class AppComponent {
|
|
128
|
+
constructor(private apiGateway: DefaultApi) { }
|
|
129
|
+
}
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Note: The ApiModule is restricted to being instantiated once app wide.
|
|
133
|
+
This is to ensure that all services are treated as singletons.
|
|
134
|
+
|
|
135
|
+
### Using multiple OpenAPI files / APIs / ApiModules
|
|
136
|
+
|
|
137
|
+
In order to use multiple `ApiModules` generated from different OpenAPI files,
|
|
138
|
+
you can create an alias name when importing the modules
|
|
139
|
+
in order to avoid naming conflicts:
|
|
140
|
+
|
|
141
|
+
```typescript
|
|
142
|
+
import { ApiModule } from 'my-api-path';
|
|
143
|
+
import { ApiModule as OtherApiModule } from 'my-other-api-path';
|
|
144
|
+
import { HttpClientModule } from '@angular/common/http';
|
|
145
|
+
|
|
146
|
+
@NgModule({
|
|
147
|
+
imports: [
|
|
148
|
+
ApiModule,
|
|
149
|
+
OtherApiModule,
|
|
150
|
+
// make sure to import the HttpClientModule in the AppModule only,
|
|
151
|
+
// see https://github.com/angular/angular/issues/20575
|
|
152
|
+
HttpClientModule
|
|
153
|
+
]
|
|
154
|
+
})
|
|
155
|
+
export class AppModule {
|
|
156
|
+
|
|
157
|
+
}
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### Set service base path
|
|
161
|
+
|
|
162
|
+
If different than the generated base path, during app bootstrap, you can provide the base path to your service.
|
|
163
|
+
|
|
164
|
+
```typescript
|
|
165
|
+
import { BASE_PATH } from '@vality/swag-wallets';
|
|
166
|
+
|
|
167
|
+
bootstrap(AppComponent, [
|
|
168
|
+
{ provide: BASE_PATH, useValue: 'https://your-web-service.com' },
|
|
169
|
+
]);
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
or
|
|
173
|
+
|
|
174
|
+
```typescript
|
|
175
|
+
import { BASE_PATH } from '@vality/swag-wallets';
|
|
176
|
+
|
|
177
|
+
@NgModule({
|
|
178
|
+
imports: [],
|
|
179
|
+
declarations: [ AppComponent ],
|
|
180
|
+
providers: [ provide: BASE_PATH, useValue: 'https://your-web-service.com' ],
|
|
181
|
+
bootstrap: [ AppComponent ]
|
|
182
|
+
})
|
|
183
|
+
export class AppModule {}
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
### Using @angular/cli
|
|
187
|
+
|
|
188
|
+
First extend your `src/environments/*.ts` files by adding the corresponding base path:
|
|
189
|
+
|
|
190
|
+
```typescript
|
|
191
|
+
export const environment = {
|
|
192
|
+
production: false,
|
|
193
|
+
API_BASE_PATH: 'http://127.0.0.1:8080'
|
|
194
|
+
};
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
In the src/app/app.module.ts:
|
|
198
|
+
|
|
199
|
+
```typescript
|
|
200
|
+
import { BASE_PATH } from '@vality/swag-wallets';
|
|
201
|
+
import { environment } from '../environments/environment';
|
|
202
|
+
|
|
203
|
+
@NgModule({
|
|
204
|
+
declarations: [
|
|
205
|
+
AppComponent
|
|
206
|
+
],
|
|
207
|
+
imports: [ ],
|
|
208
|
+
providers: [{ provide: BASE_PATH, useValue: environment.API_BASE_PATH }],
|
|
209
|
+
bootstrap: [ AppComponent ]
|
|
210
|
+
})
|
|
211
|
+
export class AppModule { }
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
### Customizing path parameter encoding
|
|
215
|
+
|
|
216
|
+
Without further customization, only [path-parameters][parameter-locations-url] of [style][style-values-url] 'simple'
|
|
217
|
+
and Dates for format 'date-time' are encoded correctly.
|
|
218
|
+
|
|
219
|
+
Other styles (e.g. "matrix") are not that easy to encode
|
|
220
|
+
and thus are best delegated to other libraries (e.g.: [@honoluluhenk/http-param-expander]).
|
|
221
|
+
|
|
222
|
+
To implement your own parameter encoding (or call another library),
|
|
223
|
+
pass an arrow-function or method-reference to the `encodeParam` property of the Configuration-object
|
|
224
|
+
(see [General Usage](#general-usage) above).
|
|
225
|
+
|
|
226
|
+
Example value for use in your Configuration-Provider:
|
|
227
|
+
|
|
228
|
+
```typescript
|
|
229
|
+
new Configuration({
|
|
230
|
+
encodeParam: (param: Param) => myFancyParamEncoder(param),
|
|
231
|
+
})
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
[parameter-locations-url]: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-locations
|
|
235
|
+
[style-values-url]: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values
|
|
236
|
+
[@honoluluhenk/http-param-expander]: https://www.npmjs.com/package/@honoluluhenk/http-param-expander
|
package/api/api.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export * from './currencies.service';
|
|
2
|
+
import { CurrenciesService } from './currencies.service';
|
|
3
|
+
export * from './deposits.service';
|
|
4
|
+
import { DepositsService } from './deposits.service';
|
|
5
|
+
export * from './downloads.service';
|
|
6
|
+
import { DownloadsService } from './downloads.service';
|
|
7
|
+
export * from './identities.service';
|
|
8
|
+
import { IdentitiesService } from './identities.service';
|
|
9
|
+
export * from './providers.service';
|
|
10
|
+
import { ProvidersService } from './providers.service';
|
|
11
|
+
export * from './reports.service';
|
|
12
|
+
import { ReportsService } from './reports.service';
|
|
13
|
+
export * from './residences.service';
|
|
14
|
+
import { ResidencesService } from './residences.service';
|
|
15
|
+
export * from './w2W.service';
|
|
16
|
+
import { W2WService } from './w2W.service';
|
|
17
|
+
export * from './wallets.service';
|
|
18
|
+
import { WalletsService } from './wallets.service';
|
|
19
|
+
export * from './webhooks.service';
|
|
20
|
+
import { WebhooksService } from './webhooks.service';
|
|
21
|
+
export * from './withdrawals.service';
|
|
22
|
+
import { WithdrawalsService } from './withdrawals.service';
|
|
23
|
+
export declare const APIS: (typeof CurrenciesService | typeof DepositsService | typeof DownloadsService | typeof IdentitiesService | typeof ProvidersService | typeof ReportsService | typeof ResidencesService | typeof W2WService | typeof WalletsService | typeof WebhooksService | typeof WithdrawalsService)[];
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { Currency } from '../model/currency';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import { BaseService } from '../api.base.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export interface GetCurrencyRequestParams {
|
|
8
|
+
/** Unique identifier of the request to the system */
|
|
9
|
+
xRequestID: string;
|
|
10
|
+
/** Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */
|
|
11
|
+
currencyID: string;
|
|
12
|
+
/** Maximum request processing time */
|
|
13
|
+
xRequestDeadline?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class CurrenciesService extends BaseService {
|
|
16
|
+
protected httpClient: HttpClient;
|
|
17
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
18
|
+
/**
|
|
19
|
+
* Get currency description
|
|
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
|
+
getCurrency(requestParameters: GetCurrencyRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
25
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
26
|
+
context?: HttpContext;
|
|
27
|
+
transferCache?: boolean;
|
|
28
|
+
}): Observable<Currency>;
|
|
29
|
+
getCurrency(requestParameters: GetCurrencyRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
30
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
31
|
+
context?: HttpContext;
|
|
32
|
+
transferCache?: boolean;
|
|
33
|
+
}): Observable<HttpResponse<Currency>>;
|
|
34
|
+
getCurrency(requestParameters: GetCurrencyRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
35
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
36
|
+
context?: HttpContext;
|
|
37
|
+
transferCache?: boolean;
|
|
38
|
+
}): Observable<HttpEvent<Currency>>;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrenciesService, [null, { optional: true; }, { optional: true; }]>;
|
|
40
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CurrenciesService>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ListDepositAdjustments200Response } from '../model/listDepositAdjustments200Response';
|
|
4
|
+
import { ListDepositReverts200Response } from '../model/listDepositReverts200Response';
|
|
5
|
+
import { ListDeposits200Response } from '../model/listDeposits200Response';
|
|
6
|
+
import { Configuration } from '../configuration';
|
|
7
|
+
import { BaseService } from '../api.base.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export interface ListDepositAdjustmentsRequestParams {
|
|
10
|
+
/** Unique identifier of the request to the system */
|
|
11
|
+
xRequestID: string;
|
|
12
|
+
/** Selection limit */
|
|
13
|
+
limit: number;
|
|
14
|
+
/** Maximum request processing time */
|
|
15
|
+
xRequestDeadline?: string;
|
|
16
|
+
/** The participant\'s unique identifier within the system. */
|
|
17
|
+
partyID?: string;
|
|
18
|
+
/** Wallet identifier */
|
|
19
|
+
walletID?: string;
|
|
20
|
+
/** Identifier of the owner\'s identity */
|
|
21
|
+
identityID?: string;
|
|
22
|
+
/** Identifier of the input of funds */
|
|
23
|
+
depositID?: string;
|
|
24
|
+
/** Identifier of the fund source */
|
|
25
|
+
sourceID?: string;
|
|
26
|
+
status?: 'Pending' | 'Succeeded' | 'Failed';
|
|
27
|
+
/** Creation date from */
|
|
28
|
+
createdAtFrom?: string;
|
|
29
|
+
/** Creation date to */
|
|
30
|
+
createdAtTo?: string;
|
|
31
|
+
/** Amount of monetary funds in minor units */
|
|
32
|
+
amountFrom?: number;
|
|
33
|
+
/** Amount of monetary funds in minor units */
|
|
34
|
+
amountTo?: number;
|
|
35
|
+
/** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */
|
|
36
|
+
currencyID?: string;
|
|
37
|
+
/** 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. */
|
|
38
|
+
continuationToken?: string;
|
|
39
|
+
}
|
|
40
|
+
export interface ListDepositRevertsRequestParams {
|
|
41
|
+
/** Unique identifier of the request to the system */
|
|
42
|
+
xRequestID: string;
|
|
43
|
+
/** Selection limit */
|
|
44
|
+
limit: number;
|
|
45
|
+
/** Maximum request processing time */
|
|
46
|
+
xRequestDeadline?: string;
|
|
47
|
+
/** The participant\'s unique identifier within the system. */
|
|
48
|
+
partyID?: string;
|
|
49
|
+
/** Identifier of the wallet */
|
|
50
|
+
walletID?: string;
|
|
51
|
+
/** Identifier of the owner\'s identity */
|
|
52
|
+
identityID?: string;
|
|
53
|
+
/** Identifier of the input of funds */
|
|
54
|
+
depositID?: string;
|
|
55
|
+
/** Identifier of the source of funds */
|
|
56
|
+
sourceID?: string;
|
|
57
|
+
status?: 'Pending' | 'Succeeded' | 'Failed';
|
|
58
|
+
/** Creation date from */
|
|
59
|
+
createdAtFrom?: string;
|
|
60
|
+
/** Creation date to */
|
|
61
|
+
createdAtTo?: string;
|
|
62
|
+
/** Amount of monetary funds in minor units */
|
|
63
|
+
amountFrom?: number;
|
|
64
|
+
/** Amount of monetary funds in minor units */
|
|
65
|
+
amountTo?: number;
|
|
66
|
+
/** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */
|
|
67
|
+
currencyID?: string;
|
|
68
|
+
/** 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. */
|
|
69
|
+
continuationToken?: string;
|
|
70
|
+
}
|
|
71
|
+
export interface ListDepositsRequestParams {
|
|
72
|
+
/** Unique identifier of the request to the system */
|
|
73
|
+
xRequestID: string;
|
|
74
|
+
/** Selection limit */
|
|
75
|
+
limit: number;
|
|
76
|
+
/** Maximum request processing time */
|
|
77
|
+
xRequestDeadline?: string;
|
|
78
|
+
/** The participant\'s unique identifier within the system. */
|
|
79
|
+
partyID?: string;
|
|
80
|
+
/** Identifier of the wallet */
|
|
81
|
+
walletID?: string;
|
|
82
|
+
/** Identifier of the owner\'s identity */
|
|
83
|
+
identityID?: string;
|
|
84
|
+
/** Identifier of the deposit */
|
|
85
|
+
depositID?: string;
|
|
86
|
+
/** Identifier of the funds source */
|
|
87
|
+
sourceID?: string;
|
|
88
|
+
status?: 'Pending' | 'Succeeded' | 'Failed';
|
|
89
|
+
/** Creation date from */
|
|
90
|
+
createdAtFrom?: string;
|
|
91
|
+
/** Creation date to */
|
|
92
|
+
createdAtTo?: string;
|
|
93
|
+
revertStatus?: 'None' | 'Partial' | 'Full';
|
|
94
|
+
/** Amount of monetary funds in minor units */
|
|
95
|
+
amountFrom?: number;
|
|
96
|
+
/** Amount of monetary funds in minor units */
|
|
97
|
+
amountTo?: number;
|
|
98
|
+
/** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */
|
|
99
|
+
currencyID?: string;
|
|
100
|
+
/** 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. */
|
|
101
|
+
continuationToken?: string;
|
|
102
|
+
}
|
|
103
|
+
export declare class DepositsService extends BaseService {
|
|
104
|
+
protected httpClient: HttpClient;
|
|
105
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
106
|
+
/**
|
|
107
|
+
* Finding adjustments
|
|
108
|
+
* @param requestParameters
|
|
109
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
110
|
+
* @param reportProgress flag to report request and response progress.
|
|
111
|
+
*/
|
|
112
|
+
listDepositAdjustments(requestParameters: ListDepositAdjustmentsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
113
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
114
|
+
context?: HttpContext;
|
|
115
|
+
transferCache?: boolean;
|
|
116
|
+
}): Observable<ListDepositAdjustments200Response>;
|
|
117
|
+
listDepositAdjustments(requestParameters: ListDepositAdjustmentsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
118
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
119
|
+
context?: HttpContext;
|
|
120
|
+
transferCache?: boolean;
|
|
121
|
+
}): Observable<HttpResponse<ListDepositAdjustments200Response>>;
|
|
122
|
+
listDepositAdjustments(requestParameters: ListDepositAdjustmentsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
123
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
124
|
+
context?: HttpContext;
|
|
125
|
+
transferCache?: boolean;
|
|
126
|
+
}): Observable<HttpEvent<ListDepositAdjustments200Response>>;
|
|
127
|
+
/**
|
|
128
|
+
* Search for reverts
|
|
129
|
+
* @param requestParameters
|
|
130
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
131
|
+
* @param reportProgress flag to report request and response progress.
|
|
132
|
+
*/
|
|
133
|
+
listDepositReverts(requestParameters: ListDepositRevertsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
134
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
135
|
+
context?: HttpContext;
|
|
136
|
+
transferCache?: boolean;
|
|
137
|
+
}): Observable<ListDepositReverts200Response>;
|
|
138
|
+
listDepositReverts(requestParameters: ListDepositRevertsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
139
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
140
|
+
context?: HttpContext;
|
|
141
|
+
transferCache?: boolean;
|
|
142
|
+
}): Observable<HttpResponse<ListDepositReverts200Response>>;
|
|
143
|
+
listDepositReverts(requestParameters: ListDepositRevertsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
144
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
145
|
+
context?: HttpContext;
|
|
146
|
+
transferCache?: boolean;
|
|
147
|
+
}): Observable<HttpEvent<ListDepositReverts200Response>>;
|
|
148
|
+
/**
|
|
149
|
+
* Search for deposits
|
|
150
|
+
* @param requestParameters
|
|
151
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
152
|
+
* @param reportProgress flag to report request and response progress.
|
|
153
|
+
*/
|
|
154
|
+
listDeposits(requestParameters: ListDepositsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
155
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
156
|
+
context?: HttpContext;
|
|
157
|
+
transferCache?: boolean;
|
|
158
|
+
}): Observable<ListDeposits200Response>;
|
|
159
|
+
listDeposits(requestParameters: ListDepositsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
160
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
161
|
+
context?: HttpContext;
|
|
162
|
+
transferCache?: boolean;
|
|
163
|
+
}): Observable<HttpResponse<ListDeposits200Response>>;
|
|
164
|
+
listDeposits(requestParameters: ListDepositsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
165
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
166
|
+
context?: HttpContext;
|
|
167
|
+
transferCache?: boolean;
|
|
168
|
+
}): Observable<HttpEvent<ListDeposits200Response>>;
|
|
169
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DepositsService, [null, { optional: true; }, { optional: true; }]>;
|
|
170
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DepositsService>;
|
|
171
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { FileDownload } from '../model/fileDownload';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import { BaseService } from '../api.base.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export interface DownloadFileRequestParams {
|
|
8
|
+
/** Unique identifier of the request to the system */
|
|
9
|
+
xRequestID: string;
|
|
10
|
+
/** The file identifier */
|
|
11
|
+
fileID: string;
|
|
12
|
+
/** Maximum request processing time */
|
|
13
|
+
xRequestDeadline?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class DownloadsService extends BaseService {
|
|
16
|
+
protected httpClient: HttpClient;
|
|
17
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
18
|
+
/**
|
|
19
|
+
* Get a link to download a file
|
|
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
|
+
downloadFile(requestParameters: DownloadFileRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
25
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
26
|
+
context?: HttpContext;
|
|
27
|
+
transferCache?: boolean;
|
|
28
|
+
}): Observable<FileDownload>;
|
|
29
|
+
downloadFile(requestParameters: DownloadFileRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
30
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
31
|
+
context?: HttpContext;
|
|
32
|
+
transferCache?: boolean;
|
|
33
|
+
}): Observable<HttpResponse<FileDownload>>;
|
|
34
|
+
downloadFile(requestParameters: DownloadFileRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
35
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
36
|
+
context?: HttpContext;
|
|
37
|
+
transferCache?: boolean;
|
|
38
|
+
}): Observable<HttpEvent<FileDownload>>;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DownloadsService, [null, { optional: true; }, { optional: true; }]>;
|
|
40
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DownloadsService>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { GetWithdrawalMethods200Response } from '../model/getWithdrawalMethods200Response';
|
|
4
|
+
import { Identity } from '../model/identity';
|
|
5
|
+
import { ListIdentities200Response } from '../model/listIdentities200Response';
|
|
6
|
+
import { Configuration } from '../configuration';
|
|
7
|
+
import { BaseService } from '../api.base.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export interface CreateIdentityRequestParams {
|
|
10
|
+
/** Unique identifier of the request to the system */
|
|
11
|
+
xRequestID: string;
|
|
12
|
+
/** Data of the identity created */
|
|
13
|
+
identity: Identity;
|
|
14
|
+
/** Maximum request processing time */
|
|
15
|
+
xRequestDeadline?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface GetIdentityRequestParams {
|
|
18
|
+
/** Unique identifier of the request to the system */
|
|
19
|
+
xRequestID: string;
|
|
20
|
+
/** Identifier of the owner\'s identity */
|
|
21
|
+
identityID: string;
|
|
22
|
+
/** Maximum request processing time */
|
|
23
|
+
xRequestDeadline?: string;
|
|
24
|
+
}
|
|
25
|
+
export interface GetWithdrawalMethodsRequestParams {
|
|
26
|
+
/** Unique identifier of the request to the system */
|
|
27
|
+
xRequestID: string;
|
|
28
|
+
/** Identifier of the owner\'s identity */
|
|
29
|
+
identityID: string;
|
|
30
|
+
/** Maximum request processing time */
|
|
31
|
+
xRequestDeadline?: string;
|
|
32
|
+
}
|
|
33
|
+
export interface ListIdentitiesRequestParams {
|
|
34
|
+
/** Unique identifier of the request to the system */
|
|
35
|
+
xRequestID: string;
|
|
36
|
+
/** Maximum request processing time */
|
|
37
|
+
xRequestDeadline?: string;
|
|
38
|
+
/** The participant\'s unique identifier within the system. */
|
|
39
|
+
partyID?: string;
|
|
40
|
+
/** Service provider\'s identifier */
|
|
41
|
+
providerID?: string;
|
|
42
|
+
/** 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. */
|
|
43
|
+
continuationToken?: string;
|
|
44
|
+
}
|
|
45
|
+
export declare class IdentitiesService extends BaseService {
|
|
46
|
+
protected httpClient: HttpClient;
|
|
47
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
48
|
+
/**
|
|
49
|
+
* Create owner identity
|
|
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
|
+
createIdentity(requestParameters: CreateIdentityRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
55
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
56
|
+
context?: HttpContext;
|
|
57
|
+
transferCache?: boolean;
|
|
58
|
+
}): Observable<Identity>;
|
|
59
|
+
createIdentity(requestParameters: CreateIdentityRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
60
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
61
|
+
context?: HttpContext;
|
|
62
|
+
transferCache?: boolean;
|
|
63
|
+
}): Observable<HttpResponse<Identity>>;
|
|
64
|
+
createIdentity(requestParameters: CreateIdentityRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
65
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
66
|
+
context?: HttpContext;
|
|
67
|
+
transferCache?: boolean;
|
|
68
|
+
}): Observable<HttpEvent<Identity>>;
|
|
69
|
+
/**
|
|
70
|
+
* Get the owner\'s identity
|
|
71
|
+
* @param requestParameters
|
|
72
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
73
|
+
* @param reportProgress flag to report request and response progress.
|
|
74
|
+
*/
|
|
75
|
+
getIdentity(requestParameters: GetIdentityRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
76
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
77
|
+
context?: HttpContext;
|
|
78
|
+
transferCache?: boolean;
|
|
79
|
+
}): Observable<Identity>;
|
|
80
|
+
getIdentity(requestParameters: GetIdentityRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
81
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
82
|
+
context?: HttpContext;
|
|
83
|
+
transferCache?: boolean;
|
|
84
|
+
}): Observable<HttpResponse<Identity>>;
|
|
85
|
+
getIdentity(requestParameters: GetIdentityRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
86
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
87
|
+
context?: HttpContext;
|
|
88
|
+
transferCache?: boolean;
|
|
89
|
+
}): Observable<HttpEvent<Identity>>;
|
|
90
|
+
/**
|
|
91
|
+
* Get withdrawal methods available by owner identity
|
|
92
|
+
* @param requestParameters
|
|
93
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
94
|
+
* @param reportProgress flag to report request and response progress.
|
|
95
|
+
*/
|
|
96
|
+
getWithdrawalMethods(requestParameters: GetWithdrawalMethodsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
97
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
98
|
+
context?: HttpContext;
|
|
99
|
+
transferCache?: boolean;
|
|
100
|
+
}): Observable<GetWithdrawalMethods200Response>;
|
|
101
|
+
getWithdrawalMethods(requestParameters: GetWithdrawalMethodsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
102
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
103
|
+
context?: HttpContext;
|
|
104
|
+
transferCache?: boolean;
|
|
105
|
+
}): Observable<HttpResponse<GetWithdrawalMethods200Response>>;
|
|
106
|
+
getWithdrawalMethods(requestParameters: GetWithdrawalMethodsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
107
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
108
|
+
context?: HttpContext;
|
|
109
|
+
transferCache?: boolean;
|
|
110
|
+
}): Observable<HttpEvent<GetWithdrawalMethods200Response>>;
|
|
111
|
+
/**
|
|
112
|
+
* List the identities of the owners
|
|
113
|
+
* @param requestParameters
|
|
114
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
115
|
+
* @param reportProgress flag to report request and response progress.
|
|
116
|
+
*/
|
|
117
|
+
listIdentities(requestParameters: ListIdentitiesRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
|
|
118
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
119
|
+
context?: HttpContext;
|
|
120
|
+
transferCache?: boolean;
|
|
121
|
+
}): Observable<ListIdentities200Response>;
|
|
122
|
+
listIdentities(requestParameters: ListIdentitiesRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
|
|
123
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
124
|
+
context?: HttpContext;
|
|
125
|
+
transferCache?: boolean;
|
|
126
|
+
}): Observable<HttpResponse<ListIdentities200Response>>;
|
|
127
|
+
listIdentities(requestParameters: ListIdentitiesRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
|
|
128
|
+
httpHeaderAccept?: 'application/json; charset=utf-8';
|
|
129
|
+
context?: HttpContext;
|
|
130
|
+
transferCache?: boolean;
|
|
131
|
+
}): Observable<HttpEvent<ListIdentities200Response>>;
|
|
132
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdentitiesService, [null, { optional: true; }, { optional: true; }]>;
|
|
133
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IdentitiesService>;
|
|
134
|
+
}
|