oci-ospgateway 2.12.1 → 2.13.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.
- package/index.d.ts +3 -2
- package/index.js +4 -3
- package/index.js.map +1 -1
- package/lib/client.d.ts +93 -7
- package/lib/client.js +425 -10
- package/lib/client.js.map +1 -1
- package/lib/model/authorize-subscription-payment-details.d.ts +31 -0
- package/lib/model/authorize-subscription-payment-details.js +57 -0
- package/lib/model/authorize-subscription-payment-details.js.map +1 -0
- package/lib/model/authorize-subscription-payment-receipt.d.ts +33 -0
- package/lib/model/authorize-subscription-payment-receipt.js +29 -0
- package/lib/model/authorize-subscription-payment-receipt.js.map +1 -0
- package/lib/model/{address.d.ts → bill-to-address.d.ts} +6 -6
- package/lib/model/{address.js → bill-to-address.js} +9 -9
- package/lib/model/bill-to-address.js.map +1 -0
- package/lib/model/billing-address.d.ts +65 -0
- package/lib/model/billing-address.js +29 -0
- package/lib/model/billing-address.js.map +1 -0
- package/lib/model/country.d.ts +2 -2
- package/lib/model/country.js +2 -2
- package/lib/model/credit-card-payment-detail.d.ts +2 -2
- package/lib/model/credit-card-payment-detail.js +2 -2
- package/lib/model/credit-card-payment-option.d.ts +24 -0
- package/lib/model/credit-card-payment-option.js +52 -0
- package/lib/model/credit-card-payment-option.js.map +1 -0
- package/lib/model/credit-card-type.d.ts +28 -0
- package/lib/model/credit-card-type.js +39 -0
- package/lib/model/credit-card-type.js.map +1 -0
- package/lib/model/currency.d.ts +2 -2
- package/lib/model/currency.js +2 -2
- package/lib/model/index.d.ts +38 -4
- package/lib/model/index.js +39 -5
- package/lib/model/index.js.map +1 -1
- package/lib/model/invoice-collection.d.ts +2 -2
- package/lib/model/invoice-collection.js +2 -2
- package/lib/model/invoice-line-collection.d.ts +2 -2
- package/lib/model/invoice-line-collection.js +2 -2
- package/lib/model/invoice-line-summary.d.ts +2 -2
- package/lib/model/invoice-line-summary.js +2 -2
- package/lib/model/invoice-summary.d.ts +2 -2
- package/lib/model/invoice-summary.js +2 -2
- package/lib/model/invoice.d.ts +3 -3
- package/lib/model/invoice.js +6 -4
- package/lib/model/invoice.js.map +1 -1
- package/lib/model/merchant-defined-data.d.ts +29 -0
- package/lib/model/merchant-defined-data.js +29 -0
- package/lib/model/merchant-defined-data.js.map +1 -0
- package/lib/model/other-payment-detail.d.ts +2 -2
- package/lib/model/other-payment-detail.js +2 -2
- package/lib/model/pay-invoice-details.d.ts +2 -2
- package/lib/model/pay-invoice-details.js +2 -2
- package/lib/model/pay-invoice-receipt.d.ts +2 -2
- package/lib/model/pay-invoice-receipt.js +2 -2
- package/lib/model/pay-subscription-details.d.ts +31 -0
- package/lib/model/pay-subscription-details.js +57 -0
- package/lib/model/pay-subscription-details.js.map +1 -0
- package/lib/model/pay-subscription-receipt.d.ts +33 -0
- package/lib/model/pay-subscription-receipt.js +29 -0
- package/lib/model/pay-subscription-receipt.js.map +1 -0
- package/lib/model/payment-detail.d.ts +2 -2
- package/lib/model/payment-detail.js +2 -2
- package/lib/model/payment-gateway.d.ts +23 -0
- package/lib/model/payment-gateway.js +57 -0
- package/lib/model/payment-gateway.js.map +1 -0
- package/lib/model/payment-method.d.ts +28 -0
- package/lib/model/payment-method.js +39 -0
- package/lib/model/payment-method.js.map +1 -0
- package/lib/model/payment-option.d.ts +30 -0
- package/lib/model/payment-option.js +69 -0
- package/lib/model/payment-option.js.map +1 -0
- package/lib/model/paypal-payment-detail.d.ts +2 -2
- package/lib/model/paypal-payment-detail.js +2 -2
- package/lib/model/paypal-payment-option.d.ts +24 -0
- package/lib/model/paypal-payment-option.js +52 -0
- package/lib/model/paypal-payment-option.js.map +1 -0
- package/lib/model/subscription-collection.d.ts +26 -0
- package/lib/model/subscription-collection.js +61 -0
- package/lib/model/subscription-collection.js.map +1 -0
- package/lib/model/subscription-summary.d.ts +118 -0
- package/lib/model/subscription-summary.js +107 -0
- package/lib/model/subscription-summary.js.map +1 -0
- package/lib/model/subscription.d.ts +118 -0
- package/lib/model/subscription.js +107 -0
- package/lib/model/subscription.js.map +1 -0
- package/lib/model/tax-info.d.ts +41 -0
- package/lib/model/tax-info.js +29 -0
- package/lib/model/tax-info.js.map +1 -0
- package/lib/model/update-subscription-details.d.ts +27 -0
- package/lib/model/update-subscription-details.js +57 -0
- package/lib/model/update-subscription-details.js.map +1 -0
- package/lib/request/authorize-subscription-payment-request.d.ts +58 -0
- package/lib/request/authorize-subscription-payment-request.js +15 -0
- package/lib/request/authorize-subscription-payment-request.js.map +1 -0
- package/lib/request/download-pdf-content-request.d.ts +1 -1
- package/lib/request/get-invoice-request.d.ts +1 -1
- package/lib/request/get-subscription-request.d.ts +38 -0
- package/lib/request/get-subscription-request.js +15 -0
- package/lib/request/get-subscription-request.js.map +1 -0
- package/lib/request/index.d.ts +12 -2
- package/lib/request/index.js +5 -3
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-invoice-lines-request.d.ts +1 -1
- package/lib/request/list-invoices-request.d.ts +1 -1
- package/lib/request/list-subscriptions-request.d.ts +71 -0
- package/lib/request/list-subscriptions-request.js +36 -0
- package/lib/request/list-subscriptions-request.js.map +1 -0
- package/lib/request/pay-invoice-request.d.ts +1 -1
- package/lib/request/pay-subscription-request.d.ts +58 -0
- package/lib/request/pay-subscription-request.js +15 -0
- package/lib/request/pay-subscription-request.js.map +1 -0
- package/lib/request/update-subscription-request.d.ts +52 -0
- package/lib/request/update-subscription-request.js +15 -0
- package/lib/request/update-subscription-request.js.map +1 -0
- package/lib/response/authorize-subscription-payment-response.d.ts +29 -0
- package/lib/response/authorize-subscription-payment-response.js +15 -0
- package/lib/response/authorize-subscription-payment-response.js.map +1 -0
- package/lib/response/get-subscription-response.d.ts +29 -0
- package/lib/response/get-subscription-response.js +15 -0
- package/lib/response/get-subscription-response.js.map +1 -0
- package/lib/response/index.d.ts +12 -2
- package/lib/response/index.js +2 -2
- package/lib/response/list-subscriptions-response.d.ts +36 -0
- package/lib/response/list-subscriptions-response.js +15 -0
- package/lib/response/list-subscriptions-response.js.map +1 -0
- package/lib/response/pay-subscription-response.d.ts +29 -0
- package/lib/response/pay-subscription-response.js +15 -0
- package/lib/response/pay-subscription-response.js.map +1 -0
- package/lib/response/update-subscription-response.d.ts +29 -0
- package/lib/response/update-subscription-response.js +15 -0
- package/lib/response/update-subscription-response.js.map +1 -0
- package/package.json +3 -3
- package/lib/model/address.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorize-subscription-payment-details.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/authorize-subscription-payment-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAkBlC,IAAiB,mCAAmC,CAyBnD;AAzBD,WAAiB,mCAAmC;IAClD,SAAgB,UAAU,CAAC,GAAwC;QACjE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC;gBACjD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,8CAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwC;QAC7E,MAAM,OAAO,mCACR,GAAG,GACH;YACD,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,sBAAsB,CAAC,GAAG,CAAC,YAAY,CAAC;gBAC7D,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,0DAAsB,yBAWrC,CAAA;AACH,CAAC,EAzBgB,mCAAmC,GAAnC,2CAAmC,KAAnC,2CAAmC,QAyBnD"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Subscription payment authorization response
|
|
15
|
+
*/
|
|
16
|
+
export interface AuthorizeSubscriptionPaymentReceipt {
|
|
17
|
+
/**
|
|
18
|
+
* Payment header id
|
|
19
|
+
*/
|
|
20
|
+
"headerId": string;
|
|
21
|
+
/**
|
|
22
|
+
* Parameters in a token for Payment Service
|
|
23
|
+
*/
|
|
24
|
+
"apiToken"?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Session token created for Payment Service
|
|
27
|
+
*/
|
|
28
|
+
"userToken"?: string;
|
|
29
|
+
}
|
|
30
|
+
export declare namespace AuthorizeSubscriptionPaymentReceipt {
|
|
31
|
+
function getJsonObj(obj: AuthorizeSubscriptionPaymentReceipt): object;
|
|
32
|
+
function getDeserializedJsonObj(obj: AuthorizeSubscriptionPaymentReceipt): object;
|
|
33
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.AuthorizeSubscriptionPaymentReceipt = void 0;
|
|
16
|
+
var AuthorizeSubscriptionPaymentReceipt;
|
|
17
|
+
(function (AuthorizeSubscriptionPaymentReceipt) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
AuthorizeSubscriptionPaymentReceipt.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
AuthorizeSubscriptionPaymentReceipt.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(AuthorizeSubscriptionPaymentReceipt = exports.AuthorizeSubscriptionPaymentReceipt || (exports.AuthorizeSubscriptionPaymentReceipt = {}));
|
|
29
|
+
//# sourceMappingURL=authorize-subscription-payment-receipt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorize-subscription-payment-receipt.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/authorize-subscription-payment-receipt.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAuBH,IAAiB,mCAAmC,CAWnD;AAXD,WAAiB,mCAAmC;IAClD,SAAgB,UAAU,CAAC,GAAwC;QACjE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwC;QAC7E,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0DAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,mCAAmC,GAAnC,2CAAmC,KAAnC,2CAAmC,QAWnD"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* This site describes all the Rest endpoints of
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
4
|
* OpenAPI spec version: 20191001
|
|
5
5
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
6
|
*
|
|
@@ -14,7 +14,7 @@ import * as model from "../model";
|
|
|
14
14
|
/**
|
|
15
15
|
* Address details model
|
|
16
16
|
*/
|
|
17
|
-
export interface
|
|
17
|
+
export interface BillToAddress {
|
|
18
18
|
/**
|
|
19
19
|
* Name of the contact person
|
|
20
20
|
*/
|
|
@@ -69,7 +69,7 @@ export interface Address {
|
|
|
69
69
|
*/
|
|
70
70
|
"province"?: string;
|
|
71
71
|
}
|
|
72
|
-
export declare namespace
|
|
73
|
-
function getJsonObj(obj:
|
|
74
|
-
function getDeserializedJsonObj(obj:
|
|
72
|
+
export declare namespace BillToAddress {
|
|
73
|
+
function getJsonObj(obj: BillToAddress): object;
|
|
74
|
+
function getDeserializedJsonObj(obj: BillToAddress): object;
|
|
75
75
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* This site describes all the Rest endpoints of
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
5
|
* OpenAPI spec version: 20191001
|
|
6
6
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
7
|
*
|
|
@@ -31,23 +31,23 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
31
31
|
return result;
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
-
exports.
|
|
34
|
+
exports.BillToAddress = void 0;
|
|
35
35
|
const model = __importStar(require("../model"));
|
|
36
|
-
var
|
|
37
|
-
(function (
|
|
36
|
+
var BillToAddress;
|
|
37
|
+
(function (BillToAddress) {
|
|
38
38
|
function getJsonObj(obj) {
|
|
39
39
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
40
|
"country": obj.country ? model.Country.getJsonObj(obj.country) : undefined
|
|
41
41
|
});
|
|
42
42
|
return jsonObj;
|
|
43
43
|
}
|
|
44
|
-
|
|
44
|
+
BillToAddress.getJsonObj = getJsonObj;
|
|
45
45
|
function getDeserializedJsonObj(obj) {
|
|
46
46
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
47
47
|
"country": obj.country ? model.Country.getDeserializedJsonObj(obj.country) : undefined
|
|
48
48
|
});
|
|
49
49
|
return jsonObj;
|
|
50
50
|
}
|
|
51
|
-
|
|
52
|
-
})(
|
|
53
|
-
//# sourceMappingURL=address.js.map
|
|
51
|
+
BillToAddress.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
52
|
+
})(BillToAddress = exports.BillToAddress || (exports.BillToAddress = {}));
|
|
53
|
+
//# sourceMappingURL=bill-to-address.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bill-to-address.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/bill-to-address.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA8DlC,IAAiB,aAAa,CAqB7B;AArBD,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB;QAC3C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,SAAS,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;SAC3E,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,wBAAU,aASzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,SAAS,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,sBAAsB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;SACvF,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,oCAAsB,yBASrC,CAAA;AACH,CAAC,EArBgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAqB7B"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Billing address details model.
|
|
15
|
+
*/
|
|
16
|
+
export interface BillingAddress {
|
|
17
|
+
/**
|
|
18
|
+
* Address identifier.
|
|
19
|
+
*/
|
|
20
|
+
"addressKey"?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Address line 1.
|
|
23
|
+
*/
|
|
24
|
+
"line1"?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Address line 2.
|
|
27
|
+
*/
|
|
28
|
+
"line2"?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Name of the city.
|
|
31
|
+
*/
|
|
32
|
+
"city"?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Country of the address.
|
|
35
|
+
*/
|
|
36
|
+
"country"?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Post code of the address.
|
|
39
|
+
*/
|
|
40
|
+
"postalCode"?: string;
|
|
41
|
+
/**
|
|
42
|
+
* State of the address.
|
|
43
|
+
*/
|
|
44
|
+
"state"?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Contact person email address.
|
|
47
|
+
*/
|
|
48
|
+
"emailAddress"?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Name of the customer company.
|
|
51
|
+
*/
|
|
52
|
+
"companyName"?: string;
|
|
53
|
+
/**
|
|
54
|
+
* First name of the contact person.
|
|
55
|
+
*/
|
|
56
|
+
"firstName"?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Last name of the contact person.
|
|
59
|
+
*/
|
|
60
|
+
"lastName"?: string;
|
|
61
|
+
}
|
|
62
|
+
export declare namespace BillingAddress {
|
|
63
|
+
function getJsonObj(obj: BillingAddress): object;
|
|
64
|
+
function getDeserializedJsonObj(obj: BillingAddress): object;
|
|
65
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.BillingAddress = void 0;
|
|
16
|
+
var BillingAddress;
|
|
17
|
+
(function (BillingAddress) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
BillingAddress.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
BillingAddress.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(BillingAddress = exports.BillingAddress || (exports.BillingAddress = {}));
|
|
29
|
+
//# sourceMappingURL=billing-address.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"billing-address.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/billing-address.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAuDH,IAAiB,cAAc,CAW9B;AAXD,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB;QAC5C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmB;QACxD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAW9B"}
|
package/lib/model/country.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* This site describes all the Rest endpoints of
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
4
|
* OpenAPI spec version: 20191001
|
|
5
5
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
6
|
*
|
package/lib/model/country.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* This site describes all the Rest endpoints of
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
5
|
* OpenAPI spec version: 20191001
|
|
6
6
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
7
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* This site describes all the Rest endpoints of
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
4
|
* OpenAPI spec version: 20191001
|
|
5
5
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
6
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* This site describes all the Rest endpoints of
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
5
|
* OpenAPI spec version: 20191001
|
|
6
6
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
7
|
*
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* Credit card Payment related details
|
|
16
|
+
*/
|
|
17
|
+
export interface CreditCardPaymentOption extends model.PaymentOption {
|
|
18
|
+
"paymentMethod": string;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace CreditCardPaymentOption {
|
|
21
|
+
function getJsonObj(obj: CreditCardPaymentOption, isParentJsonObj?: boolean): object;
|
|
22
|
+
const paymentMethod = "CREDIT_CARD";
|
|
23
|
+
function getDeserializedJsonObj(obj: CreditCardPaymentOption, isParentJsonObj?: boolean): object;
|
|
24
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.CreditCardPaymentOption = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var CreditCardPaymentOption;
|
|
37
|
+
(function (CreditCardPaymentOption) {
|
|
38
|
+
function getJsonObj(obj, isParentJsonObj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.PaymentOption.getJsonObj(obj))), {});
|
|
40
|
+
return jsonObj;
|
|
41
|
+
}
|
|
42
|
+
CreditCardPaymentOption.getJsonObj = getJsonObj;
|
|
43
|
+
CreditCardPaymentOption.paymentMethod = "CREDIT_CARD";
|
|
44
|
+
function getDeserializedJsonObj(obj, isParentJsonObj) {
|
|
45
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
|
|
46
|
+
? obj
|
|
47
|
+
: model.PaymentOption.getDeserializedJsonObj(obj))), {});
|
|
48
|
+
return jsonObj;
|
|
49
|
+
}
|
|
50
|
+
CreditCardPaymentOption.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
51
|
+
})(CreditCardPaymentOption = exports.CreditCardPaymentOption || (exports.CreditCardPaymentOption = {}));
|
|
52
|
+
//# sourceMappingURL=credit-card-payment-option.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"credit-card-payment-option.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/credit-card-payment-option.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAUlC,IAAiB,uBAAuB,CAuBvC;AAvBD,WAAiB,uBAAuB;IACtC,SAAgB,UAAU,CAAC,GAA4B,EAAE,eAAyB;QAChF,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAA6B,CAAC,GAC1F,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,kCAAU,aAOzB,CAAA;IACY,qCAAa,GAAG,aAAa,CAAC;IAC3C,SAAgB,sBAAsB,CACpC,GAA4B,EAC5B,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,aAAa,CAAC,sBAAsB,CAAC,GAAG,CAA6B,CAAC,GAC9E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,8CAAsB,yBAYrC,CAAA;AACH,CAAC,EAvBgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAuBvC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Credit card type.
|
|
15
|
+
**/
|
|
16
|
+
export declare enum CreditCardType {
|
|
17
|
+
Visa = "VISA",
|
|
18
|
+
Amex = "AMEX",
|
|
19
|
+
Mastercard = "MASTERCARD",
|
|
20
|
+
Discover = "DISCOVER",
|
|
21
|
+
Jcb = "JCB",
|
|
22
|
+
Diner = "DINER",
|
|
23
|
+
Elo = "ELO"
|
|
24
|
+
}
|
|
25
|
+
export declare namespace CreditCardType {
|
|
26
|
+
function getJsonObj(obj: CreditCardType): CreditCardType;
|
|
27
|
+
function getDeserializedJsonObj(obj: CreditCardType): CreditCardType;
|
|
28
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.CreditCardType = void 0;
|
|
16
|
+
/**
|
|
17
|
+
* Credit card type.
|
|
18
|
+
**/
|
|
19
|
+
var CreditCardType;
|
|
20
|
+
(function (CreditCardType) {
|
|
21
|
+
CreditCardType["Visa"] = "VISA";
|
|
22
|
+
CreditCardType["Amex"] = "AMEX";
|
|
23
|
+
CreditCardType["Mastercard"] = "MASTERCARD";
|
|
24
|
+
CreditCardType["Discover"] = "DISCOVER";
|
|
25
|
+
CreditCardType["Jcb"] = "JCB";
|
|
26
|
+
CreditCardType["Diner"] = "DINER";
|
|
27
|
+
CreditCardType["Elo"] = "ELO";
|
|
28
|
+
})(CreditCardType = exports.CreditCardType || (exports.CreditCardType = {}));
|
|
29
|
+
(function (CreditCardType) {
|
|
30
|
+
function getJsonObj(obj) {
|
|
31
|
+
return obj;
|
|
32
|
+
}
|
|
33
|
+
CreditCardType.getJsonObj = getJsonObj;
|
|
34
|
+
function getDeserializedJsonObj(obj) {
|
|
35
|
+
return obj;
|
|
36
|
+
}
|
|
37
|
+
CreditCardType.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
38
|
+
})(CreditCardType = exports.CreditCardType || (exports.CreditCardType = {}));
|
|
39
|
+
//# sourceMappingURL=credit-card-type.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"credit-card-type.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/credit-card-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAKH;;IAEI;AACJ,IAAY,cAQX;AARD,WAAY,cAAc;IACxB,+BAAa,CAAA;IACb,+BAAa,CAAA;IACb,2CAAyB,CAAA;IACzB,uCAAqB,CAAA;IACrB,6BAAW,CAAA;IACX,iCAAe,CAAA;IACf,6BAAW,CAAA;AACb,CAAC,EARW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAQzB;AAED,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB;QAC5C,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,yBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmB;QACxD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,qCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAO9B"}
|
package/lib/model/currency.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* This site describes all the Rest endpoints of
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
4
|
* OpenAPI spec version: 20191001
|
|
5
5
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
6
|
*
|
package/lib/model/currency.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* This site describes all the Rest endpoints of
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
5
|
* OpenAPI spec version: 20191001
|
|
6
6
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
7
|
*
|
package/lib/model/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* This site describes all the Rest endpoints of
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
4
|
* OpenAPI spec version: 20191001
|
|
5
5
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
6
|
*
|
|
@@ -10,10 +10,18 @@
|
|
|
10
10
|
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
11
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
12
|
*/
|
|
13
|
-
import * as
|
|
14
|
-
export import
|
|
13
|
+
import * as AuthorizeSubscriptionPaymentDetails from "./authorize-subscription-payment-details";
|
|
14
|
+
export import AuthorizeSubscriptionPaymentDetails = AuthorizeSubscriptionPaymentDetails.AuthorizeSubscriptionPaymentDetails;
|
|
15
|
+
import * as AuthorizeSubscriptionPaymentReceipt from "./authorize-subscription-payment-receipt";
|
|
16
|
+
export import AuthorizeSubscriptionPaymentReceipt = AuthorizeSubscriptionPaymentReceipt.AuthorizeSubscriptionPaymentReceipt;
|
|
17
|
+
import * as BillToAddress from "./bill-to-address";
|
|
18
|
+
export import BillToAddress = BillToAddress.BillToAddress;
|
|
19
|
+
import * as BillingAddress from "./billing-address";
|
|
20
|
+
export import BillingAddress = BillingAddress.BillingAddress;
|
|
15
21
|
import * as Country from "./country";
|
|
16
22
|
export import Country = Country.Country;
|
|
23
|
+
import * as CreditCardType from "./credit-card-type";
|
|
24
|
+
export import CreditCardType = CreditCardType.CreditCardType;
|
|
17
25
|
import * as Currency from "./currency";
|
|
18
26
|
export import Currency = Currency.Currency;
|
|
19
27
|
import * as Invoice from "./invoice";
|
|
@@ -26,15 +34,41 @@ import * as InvoiceLineSummary from "./invoice-line-summary";
|
|
|
26
34
|
export import InvoiceLineSummary = InvoiceLineSummary.InvoiceLineSummary;
|
|
27
35
|
import * as InvoiceSummary from "./invoice-summary";
|
|
28
36
|
export import InvoiceSummary = InvoiceSummary.InvoiceSummary;
|
|
37
|
+
import * as MerchantDefinedData from "./merchant-defined-data";
|
|
38
|
+
export import MerchantDefinedData = MerchantDefinedData.MerchantDefinedData;
|
|
29
39
|
import * as PayInvoiceDetails from "./pay-invoice-details";
|
|
30
40
|
export import PayInvoiceDetails = PayInvoiceDetails.PayInvoiceDetails;
|
|
31
41
|
import * as PayInvoiceReceipt from "./pay-invoice-receipt";
|
|
32
42
|
export import PayInvoiceReceipt = PayInvoiceReceipt.PayInvoiceReceipt;
|
|
43
|
+
import * as PaySubscriptionDetails from "./pay-subscription-details";
|
|
44
|
+
export import PaySubscriptionDetails = PaySubscriptionDetails.PaySubscriptionDetails;
|
|
45
|
+
import * as PaySubscriptionReceipt from "./pay-subscription-receipt";
|
|
46
|
+
export import PaySubscriptionReceipt = PaySubscriptionReceipt.PaySubscriptionReceipt;
|
|
33
47
|
import * as PaymentDetail from "./payment-detail";
|
|
34
48
|
export import PaymentDetail = PaymentDetail.PaymentDetail;
|
|
49
|
+
import * as PaymentGateway from "./payment-gateway";
|
|
50
|
+
export import PaymentGateway = PaymentGateway.PaymentGateway;
|
|
51
|
+
import * as PaymentMethod from "./payment-method";
|
|
52
|
+
export import PaymentMethod = PaymentMethod.PaymentMethod;
|
|
53
|
+
import * as PaymentOption from "./payment-option";
|
|
54
|
+
export import PaymentOption = PaymentOption.PaymentOption;
|
|
55
|
+
import * as Subscription from "./subscription";
|
|
56
|
+
export import Subscription = Subscription.Subscription;
|
|
57
|
+
import * as SubscriptionCollection from "./subscription-collection";
|
|
58
|
+
export import SubscriptionCollection = SubscriptionCollection.SubscriptionCollection;
|
|
59
|
+
import * as SubscriptionSummary from "./subscription-summary";
|
|
60
|
+
export import SubscriptionSummary = SubscriptionSummary.SubscriptionSummary;
|
|
61
|
+
import * as TaxInfo from "./tax-info";
|
|
62
|
+
export import TaxInfo = TaxInfo.TaxInfo;
|
|
63
|
+
import * as UpdateSubscriptionDetails from "./update-subscription-details";
|
|
64
|
+
export import UpdateSubscriptionDetails = UpdateSubscriptionDetails.UpdateSubscriptionDetails;
|
|
35
65
|
import * as CreditCardPaymentDetail from "./credit-card-payment-detail";
|
|
36
66
|
export import CreditCardPaymentDetail = CreditCardPaymentDetail.CreditCardPaymentDetail;
|
|
67
|
+
import * as CreditCardPaymentOption from "./credit-card-payment-option";
|
|
68
|
+
export import CreditCardPaymentOption = CreditCardPaymentOption.CreditCardPaymentOption;
|
|
37
69
|
import * as OtherPaymentDetail from "./other-payment-detail";
|
|
38
70
|
export import OtherPaymentDetail = OtherPaymentDetail.OtherPaymentDetail;
|
|
39
71
|
import * as PaypalPaymentDetail from "./paypal-payment-detail";
|
|
40
72
|
export import PaypalPaymentDetail = PaypalPaymentDetail.PaypalPaymentDetail;
|
|
73
|
+
import * as PaypalPaymentOption from "./paypal-payment-option";
|
|
74
|
+
export import PaypalPaymentOption = PaypalPaymentOption.PaypalPaymentOption;
|
package/lib/model/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* This site describes all the Rest endpoints of
|
|
3
|
+
* OSP Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
5
5
|
* OpenAPI spec version: 20191001
|
|
6
6
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
7
|
*
|
|
@@ -31,11 +31,19 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
31
31
|
return result;
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
-
exports.PaypalPaymentDetail = exports.OtherPaymentDetail = exports.CreditCardPaymentDetail = exports.PaymentDetail = exports.PayInvoiceReceipt = exports.PayInvoiceDetails = exports.InvoiceSummary = exports.InvoiceLineSummary = exports.InvoiceLineCollection = exports.InvoiceCollection = exports.Invoice = exports.Currency = exports.Country = exports.
|
|
35
|
-
const
|
|
36
|
-
exports.
|
|
34
|
+
exports.PaypalPaymentOption = exports.PaypalPaymentDetail = exports.OtherPaymentDetail = exports.CreditCardPaymentOption = exports.CreditCardPaymentDetail = exports.UpdateSubscriptionDetails = exports.TaxInfo = exports.SubscriptionSummary = exports.SubscriptionCollection = exports.Subscription = exports.PaymentOption = exports.PaymentMethod = exports.PaymentGateway = exports.PaymentDetail = exports.PaySubscriptionReceipt = exports.PaySubscriptionDetails = exports.PayInvoiceReceipt = exports.PayInvoiceDetails = exports.MerchantDefinedData = exports.InvoiceSummary = exports.InvoiceLineSummary = exports.InvoiceLineCollection = exports.InvoiceCollection = exports.Invoice = exports.Currency = exports.CreditCardType = exports.Country = exports.BillingAddress = exports.BillToAddress = exports.AuthorizeSubscriptionPaymentReceipt = exports.AuthorizeSubscriptionPaymentDetails = void 0;
|
|
35
|
+
const AuthorizeSubscriptionPaymentDetails = __importStar(require("./authorize-subscription-payment-details"));
|
|
36
|
+
exports.AuthorizeSubscriptionPaymentDetails = AuthorizeSubscriptionPaymentDetails.AuthorizeSubscriptionPaymentDetails;
|
|
37
|
+
const AuthorizeSubscriptionPaymentReceipt = __importStar(require("./authorize-subscription-payment-receipt"));
|
|
38
|
+
exports.AuthorizeSubscriptionPaymentReceipt = AuthorizeSubscriptionPaymentReceipt.AuthorizeSubscriptionPaymentReceipt;
|
|
39
|
+
const BillToAddress = __importStar(require("./bill-to-address"));
|
|
40
|
+
exports.BillToAddress = BillToAddress.BillToAddress;
|
|
41
|
+
const BillingAddress = __importStar(require("./billing-address"));
|
|
42
|
+
exports.BillingAddress = BillingAddress.BillingAddress;
|
|
37
43
|
const Country = __importStar(require("./country"));
|
|
38
44
|
exports.Country = Country.Country;
|
|
45
|
+
const CreditCardType = __importStar(require("./credit-card-type"));
|
|
46
|
+
exports.CreditCardType = CreditCardType.CreditCardType;
|
|
39
47
|
const Currency = __importStar(require("./currency"));
|
|
40
48
|
exports.Currency = Currency.Currency;
|
|
41
49
|
const Invoice = __importStar(require("./invoice"));
|
|
@@ -48,16 +56,42 @@ const InvoiceLineSummary = __importStar(require("./invoice-line-summary"));
|
|
|
48
56
|
exports.InvoiceLineSummary = InvoiceLineSummary.InvoiceLineSummary;
|
|
49
57
|
const InvoiceSummary = __importStar(require("./invoice-summary"));
|
|
50
58
|
exports.InvoiceSummary = InvoiceSummary.InvoiceSummary;
|
|
59
|
+
const MerchantDefinedData = __importStar(require("./merchant-defined-data"));
|
|
60
|
+
exports.MerchantDefinedData = MerchantDefinedData.MerchantDefinedData;
|
|
51
61
|
const PayInvoiceDetails = __importStar(require("./pay-invoice-details"));
|
|
52
62
|
exports.PayInvoiceDetails = PayInvoiceDetails.PayInvoiceDetails;
|
|
53
63
|
const PayInvoiceReceipt = __importStar(require("./pay-invoice-receipt"));
|
|
54
64
|
exports.PayInvoiceReceipt = PayInvoiceReceipt.PayInvoiceReceipt;
|
|
65
|
+
const PaySubscriptionDetails = __importStar(require("./pay-subscription-details"));
|
|
66
|
+
exports.PaySubscriptionDetails = PaySubscriptionDetails.PaySubscriptionDetails;
|
|
67
|
+
const PaySubscriptionReceipt = __importStar(require("./pay-subscription-receipt"));
|
|
68
|
+
exports.PaySubscriptionReceipt = PaySubscriptionReceipt.PaySubscriptionReceipt;
|
|
55
69
|
const PaymentDetail = __importStar(require("./payment-detail"));
|
|
56
70
|
exports.PaymentDetail = PaymentDetail.PaymentDetail;
|
|
71
|
+
const PaymentGateway = __importStar(require("./payment-gateway"));
|
|
72
|
+
exports.PaymentGateway = PaymentGateway.PaymentGateway;
|
|
73
|
+
const PaymentMethod = __importStar(require("./payment-method"));
|
|
74
|
+
exports.PaymentMethod = PaymentMethod.PaymentMethod;
|
|
75
|
+
const PaymentOption = __importStar(require("./payment-option"));
|
|
76
|
+
exports.PaymentOption = PaymentOption.PaymentOption;
|
|
77
|
+
const Subscription = __importStar(require("./subscription"));
|
|
78
|
+
exports.Subscription = Subscription.Subscription;
|
|
79
|
+
const SubscriptionCollection = __importStar(require("./subscription-collection"));
|
|
80
|
+
exports.SubscriptionCollection = SubscriptionCollection.SubscriptionCollection;
|
|
81
|
+
const SubscriptionSummary = __importStar(require("./subscription-summary"));
|
|
82
|
+
exports.SubscriptionSummary = SubscriptionSummary.SubscriptionSummary;
|
|
83
|
+
const TaxInfo = __importStar(require("./tax-info"));
|
|
84
|
+
exports.TaxInfo = TaxInfo.TaxInfo;
|
|
85
|
+
const UpdateSubscriptionDetails = __importStar(require("./update-subscription-details"));
|
|
86
|
+
exports.UpdateSubscriptionDetails = UpdateSubscriptionDetails.UpdateSubscriptionDetails;
|
|
57
87
|
const CreditCardPaymentDetail = __importStar(require("./credit-card-payment-detail"));
|
|
58
88
|
exports.CreditCardPaymentDetail = CreditCardPaymentDetail.CreditCardPaymentDetail;
|
|
89
|
+
const CreditCardPaymentOption = __importStar(require("./credit-card-payment-option"));
|
|
90
|
+
exports.CreditCardPaymentOption = CreditCardPaymentOption.CreditCardPaymentOption;
|
|
59
91
|
const OtherPaymentDetail = __importStar(require("./other-payment-detail"));
|
|
60
92
|
exports.OtherPaymentDetail = OtherPaymentDetail.OtherPaymentDetail;
|
|
61
93
|
const PaypalPaymentDetail = __importStar(require("./paypal-payment-detail"));
|
|
62
94
|
exports.PaypalPaymentDetail = PaypalPaymentDetail.PaypalPaymentDetail;
|
|
95
|
+
const PaypalPaymentOption = __importStar(require("./paypal-payment-option"));
|
|
96
|
+
exports.PaypalPaymentOption = PaypalPaymentOption.PaypalPaymentOption;
|
|
63
97
|
//# sourceMappingURL=index.js.map
|
package/lib/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,8GAAgG;AAClF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,8GAAgG;AAClF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,iEAAmD;AACrC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,mEAAqD;AACvC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,qDAAuC;AACzB,QAAA,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;AAC3C,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,mFAAqE;AACvD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,mFAAqE;AACvD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,6DAA+C;AACjC,QAAA,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC;AACvD,kFAAoE;AACtD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,4EAA8D;AAChD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,oDAAsC;AACxB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,yFAA2E;AAC7D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAE9F,sFAAwE;AAC1D,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,sFAAwE;AAC1D,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* This site describes all the Rest endpoints of
|
|
2
|
+
* OSP Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of OSP Gateway.
|
|
4
4
|
* OpenAPI spec version: 20191001
|
|
5
5
|
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
6
|
*
|