@openbox/shared-types 0.4.5 → 0.4.6
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/lib/invoices/Settings/ElectronincSv/Get/Response.d.ts +2 -0
- package/lib/invoices/Settings/ElectronincSv/Get/Response.js +3 -0
- package/lib/invoices/Settings/ElectronincSv/Get/Response.js.map +1 -0
- package/lib/invoices/Settings/ElectronincSv/Set/Request.d.ts +2 -0
- package/lib/invoices/Settings/ElectronincSv/Set/Request.js +3 -0
- package/lib/invoices/Settings/ElectronincSv/Set/Request.js.map +1 -0
- package/lib/invoices/Settings/ElectronincSv/Set/Response.d.ts +3 -0
- package/lib/invoices/Settings/ElectronincSv/Set/Response.js +3 -0
- package/lib/invoices/Settings/ElectronincSv/Set/Response.js.map +1 -0
- package/lib/invoices/Settings/ElectronincSv/index.d.ts +4 -0
- package/lib/invoices/Settings/ElectronincSv/index.js +21 -0
- package/lib/invoices/Settings/ElectronincSv/index.js.map +1 -0
- package/lib/invoices/Settings/ElectronincSv/invoices.settings.electronic-sv.type.d.ts +11 -0
- package/lib/invoices/Settings/ElectronincSv/invoices.settings.electronic-sv.type.js +3 -0
- package/lib/invoices/Settings/ElectronincSv/invoices.settings.electronic-sv.type.js.map +1 -0
- package/lib/invoices/Settings/index.d.ts +1 -0
- package/lib/invoices/Settings/index.js +1 -0
- package/lib/invoices/Settings/index.js.map +1 -1
- package/package.json +1 -1
- package/src/invoices/Settings/ElectronincSv/Get/Response.ts +3 -0
- package/src/invoices/Settings/ElectronincSv/Set/Request.ts +3 -0
- package/src/invoices/Settings/ElectronincSv/Set/Response.ts +3 -0
- package/src/invoices/Settings/ElectronincSv/index.ts +4 -0
- package/src/invoices/Settings/ElectronincSv/invoices.settings.electronic-sv.type.ts +11 -0
- package/src/invoices/Settings/index.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../../src/invoices/Settings/ElectronincSv/Get/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../../src/invoices/Settings/ElectronincSv/Set/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../../src/invoices/Settings/ElectronincSv/Set/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./Get/Response"), exports);
|
|
18
|
+
__exportStar(require("./Set/Request"), exports);
|
|
19
|
+
__exportStar(require("./Set/Response"), exports);
|
|
20
|
+
__exportStar(require("./invoices.settings.electronic-sv.type"), exports);
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/invoices/Settings/ElectronincSv/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,gDAA6B;AAC7B,iDAA8B;AAC9B,yEAAsD"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export type InvoicesSettingsElectronicSv = {
|
|
2
|
+
id: string;
|
|
3
|
+
isActive: boolean;
|
|
4
|
+
isProdEnv: boolean;
|
|
5
|
+
testEnvAPIPassword?: string;
|
|
6
|
+
testEnvPrivatePassword?: string;
|
|
7
|
+
testEnvCertificatePath?: string;
|
|
8
|
+
prodEnvAPIPassword?: string;
|
|
9
|
+
prodEnvPrivatePassword?: string;
|
|
10
|
+
prodEnvCertificatePath?: string;
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invoices.settings.electronic-sv.type.js","sourceRoot":"","sources":["../../../../src/invoices/Settings/ElectronincSv/invoices.settings.electronic-sv.type.ts"],"names":[],"mappings":""}
|
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./ElectronincSv"), exports);
|
|
17
18
|
__exportStar(require("./GetGenerals/Response"), exports);
|
|
18
19
|
__exportStar(require("./UpdateGenerals/Request"), exports);
|
|
19
20
|
__exportStar(require("./UpdateGenerals/Response"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/invoices/Settings/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAsC;AACtC,2DAAwC;AACxC,4DAAyC;AACzC,2DAAwC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/invoices/Settings/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA+B;AAC/B,yDAAsC;AACtC,2DAAwC;AACxC,4DAAyC;AACzC,2DAAwC"}
|
package/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export type InvoicesSettingsElectronicSv = {
|
|
2
|
+
id: string
|
|
3
|
+
isActive: boolean
|
|
4
|
+
isProdEnv: boolean
|
|
5
|
+
testEnvAPIPassword?: string
|
|
6
|
+
testEnvPrivatePassword?: string
|
|
7
|
+
testEnvCertificatePath?: string
|
|
8
|
+
prodEnvAPIPassword?: string
|
|
9
|
+
prodEnvPrivatePassword?: string
|
|
10
|
+
prodEnvCertificatePath?: string
|
|
11
|
+
}
|