yellowgrid-api-ts 3.2.188 → 3.2.190

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,7 @@ docs/NumberPortingApi.md
124
124
  docs/NumberPortsModel.md
125
125
  docs/OAuth20Api.md
126
126
  docs/OfflineInstancesEntity.md
127
+ docs/OpayoRedirectDTO.md
127
128
  docs/OrderDTO.md
128
129
  docs/OrderDetailsDTO.md
129
130
  docs/OrderEntity.md
package/README.md CHANGED
@@ -426,6 +426,7 @@ Class | Method | HTTP request | Description
426
426
  - [NumberPortRangeRequestDTO](docs/NumberPortRangeRequestDTO.md)
427
427
  - [NumberPortsModel](docs/NumberPortsModel.md)
428
428
  - [OfflineInstancesEntity](docs/OfflineInstancesEntity.md)
429
+ - [OpayoRedirectDTO](docs/OpayoRedirectDTO.md)
429
430
  - [OrderDTO](docs/OrderDTO.md)
430
431
  - [OrderDetailsDTO](docs/OrderDetailsDTO.md)
431
432
  - [OrderEntity](docs/OrderEntity.md)
package/api.ts CHANGED
@@ -3568,6 +3568,31 @@ export interface OfflineInstancesEntity {
3568
3568
  */
3569
3569
  'alerted'?: number;
3570
3570
  }
3571
+ /**
3572
+ * Opayo Redirect
3573
+ */
3574
+ export interface OpayoRedirectDTO {
3575
+ /**
3576
+ * acsUrl
3577
+ */
3578
+ 'acsUrl'?: string | null;
3579
+ /**
3580
+ * paReq
3581
+ */
3582
+ 'paReq'?: string | null;
3583
+ /**
3584
+ * Transaction ID
3585
+ */
3586
+ 'transactionId'?: string | null;
3587
+ /**
3588
+ * dsTranId
3589
+ */
3590
+ 'dsTranId'?: string | null;
3591
+ /**
3592
+ * cReq
3593
+ */
3594
+ 'cReq'?: string | null;
3595
+ }
3571
3596
  /**
3572
3597
  * Legacy Portal Order
3573
3598
  */
package/dist/api.d.ts CHANGED
@@ -3527,6 +3527,31 @@ export interface OfflineInstancesEntity {
3527
3527
  */
3528
3528
  'alerted'?: number;
3529
3529
  }
3530
+ /**
3531
+ * Opayo Redirect
3532
+ */
3533
+ export interface OpayoRedirectDTO {
3534
+ /**
3535
+ * acsUrl
3536
+ */
3537
+ 'acsUrl'?: string | null;
3538
+ /**
3539
+ * paReq
3540
+ */
3541
+ 'paReq'?: string | null;
3542
+ /**
3543
+ * Transaction ID
3544
+ */
3545
+ 'transactionId'?: string | null;
3546
+ /**
3547
+ * dsTranId
3548
+ */
3549
+ 'dsTranId'?: string | null;
3550
+ /**
3551
+ * cReq
3552
+ */
3553
+ 'cReq'?: string | null;
3554
+ }
3530
3555
  /**
3531
3556
  * Legacy Portal Order
3532
3557
  */
@@ -0,0 +1,29 @@
1
+ # OpayoRedirectDTO
2
+
3
+ Opayo Redirect
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **acsUrl** | **string** | acsUrl | [optional] [default to undefined]
10
+ **paReq** | **string** | paReq | [optional] [default to undefined]
11
+ **transactionId** | **string** | Transaction ID | [optional] [default to undefined]
12
+ **dsTranId** | **string** | dsTranId | [optional] [default to undefined]
13
+ **cReq** | **string** | cReq | [optional] [default to undefined]
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import { OpayoRedirectDTO } from 'yellowgrid-api-ts';
19
+
20
+ const instance: OpayoRedirectDTO = {
21
+ acsUrl,
22
+ paReq,
23
+ transactionId,
24
+ dsTranId,
25
+ cReq,
26
+ };
27
+ ```
28
+
29
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.188",
3
+ "version": "3.2.190",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {