@houlak/plexo-sdk 0.1.55 → 0.1.56
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.
|
@@ -81,6 +81,6 @@ export { TransactionQuery } from './TransactionQuery';
|
|
|
81
81
|
export { TransactionResult } from './TransactionResult';
|
|
82
82
|
export { TransactionType } from './TransactionType';
|
|
83
83
|
export { TransactionsCSV } from './TransactionsCSV';
|
|
84
|
-
export {
|
|
84
|
+
export { UIOptions } from './UIOptions';
|
|
85
85
|
export { WebFormSettings } from './WebFormSettings';
|
|
86
86
|
export { PlexoErrorEnum } from '../enums/plexo-error-enum';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TransactionCallback = exports.Transaction = exports.TokenizationSettings = exports.StateObject = exports.SignedObject = exports.ServerSignedResponse = exports.ServerSignedRequest = exports.ServerSignedCallback = exports.ServerResponse = exports.ResultCodes = exports.ReserveRequest = exports.Reserve = exports.ReferenceType = exports.Reference = exports.PaymentRequest = exports.PaymentProcessor = exports.IssuerSignedRequest = exports.IssuerRequest = exports.IssuerProcessor = exports.InstrumentWithMetadata = exports.InstrumentCallback = exports.InclusionType = exports.IdentificationType = exports.GenericStateObject = exports.GenericSignedObject = exports.GenericServerSignedResponse = exports.GenericIssuerSignedRequest = exports.GenericIssuerRequest = exports.GenericClientSignedRequest = exports.GenericClientRequest = exports.FieldType = exports.FieldInfoPaymentProcessors = exports.ExpressCheckoutSettingsDto = exports.DisplayOptions = exports.DeleteInstrumentRequest = exports.CodeAction = exports.ClientSignedResponse = exports.ClientSignedRequest = exports.ClientResponse = exports.ClientRequest = exports.CardTypes = exports.CardStatus = exports.CancelRequest = exports.BuiltInPagesOptions = exports.BaseServerResponse = exports.AuthorizationType = exports.AuthorizationInfo = exports.Authorization = exports.ActionType = exports.BaseResponse = void 0;
|
|
4
|
-
exports.PlexoErrorEnum = exports.WebFormSettings = exports.
|
|
4
|
+
exports.PlexoErrorEnum = exports.WebFormSettings = exports.UIOptions = exports.TransactionType = exports.TransactionResult = void 0;
|
|
5
5
|
var BaseResponse_1 = require("../../handler/types/BaseResponse");
|
|
6
6
|
Object.defineProperty(exports, "BaseResponse", { enumerable: true, get: function () { return BaseResponse_1.BaseResponse; } });
|
|
7
7
|
var ActionType_1 = require("./ActionType");
|
|
@@ -106,8 +106,8 @@ var TransactionResult_1 = require("./TransactionResult");
|
|
|
106
106
|
Object.defineProperty(exports, "TransactionResult", { enumerable: true, get: function () { return TransactionResult_1.TransactionResult; } });
|
|
107
107
|
var TransactionType_1 = require("./TransactionType");
|
|
108
108
|
Object.defineProperty(exports, "TransactionType", { enumerable: true, get: function () { return TransactionType_1.TransactionType; } });
|
|
109
|
-
var
|
|
110
|
-
Object.defineProperty(exports, "
|
|
109
|
+
var UIOptions_1 = require("./UIOptions");
|
|
110
|
+
Object.defineProperty(exports, "UIOptions", { enumerable: true, get: function () { return UIOptions_1.UIOptions; } });
|
|
111
111
|
var WebFormSettings_1 = require("./WebFormSettings");
|
|
112
112
|
Object.defineProperty(exports, "WebFormSettings", { enumerable: true, get: function () { return WebFormSettings_1.WebFormSettings; } });
|
|
113
113
|
var plexo_error_enum_1 = require("../enums/plexo-error-enum");
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UIOptions = void 0;
|
|
4
|
+
var UIOptions = /** @class */ (function () {
|
|
5
|
+
function UIOptions(colors, theme, autoDarkTheme, logoURL) {
|
|
6
|
+
this.colors = colors;
|
|
7
|
+
this.theme = theme;
|
|
8
|
+
this.autoDarkTheme = autoDarkTheme;
|
|
9
|
+
this.logoURL = logoURL;
|
|
10
|
+
}
|
|
11
|
+
return UIOptions;
|
|
12
|
+
}());
|
|
13
|
+
exports.UIOptions = UIOptions;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExpressCheckoutSettingsDto } from './ExpressCheckoutSettings';
|
|
2
2
|
import { TokenizationSettings } from './TokenizationSettings';
|
|
3
|
-
import {
|
|
3
|
+
import { UIOptions } from './UIOptions';
|
|
4
4
|
export declare class WebFormSettings {
|
|
5
|
-
ui?:
|
|
5
|
+
ui?: UIOptions;
|
|
6
6
|
expressCheckout?: ExpressCheckoutSettingsDto;
|
|
7
7
|
tokenization?: TokenizationSettings;
|
|
8
8
|
}
|