@fiado/type-kit 1.0.5 → 1.0.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/bin/account/index.d.ts +4 -0
- package/bin/account/index.js +22 -0
- package/bin/address/index.d.ts +7 -0
- package/bin/address/index.js +9 -0
- package/bin/card/index.d.ts +11 -0
- package/bin/card/index.js +8 -4
- package/bin/country/index.d.ts +1 -0
- package/bin/country/index.js +3 -0
- package/bin/directory/index.d.ts +1 -0
- package/bin/directory/index.js +19 -0
- package/bin/index.d.ts +5 -15
- package/bin/index.js +17 -17
- package/package.json +1 -1
- package/src/account/index.ts +11 -0
- package/src/address/index.ts +11 -0
- package/src/card/index.ts +15 -0
- package/src/country/index.ts +6 -1
- package/src/directory/index.ts +7 -0
- package/src/index.ts +5 -18
- package/src/account/dtos/PocketResponse.ts +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
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
|
+
//dtos
|
|
18
|
+
__exportStar(require("./dtos/AccountResponse"), exports);
|
|
19
|
+
__exportStar(require("./dtos/CreateAccountRequest"), exports);
|
|
20
|
+
__exportStar(require("./dtos/CreatePockeRequest"), exports);
|
|
21
|
+
//enums
|
|
22
|
+
__exportStar(require("./enums/AccountStatus"), exports);
|
package/bin/address/index.d.ts
CHANGED
|
@@ -1 +1,8 @@
|
|
|
1
1
|
export * from './dtos/Shipping';
|
|
2
|
+
export * from './dtos/CreateAddressRequest';
|
|
3
|
+
export * from './dtos/AddressResponse';
|
|
4
|
+
export * from './dtos/Geometry';
|
|
5
|
+
export * from './dtos/Place';
|
|
6
|
+
export * from './dtos/Timezone';
|
|
7
|
+
export * from './enums/AddressStatus';
|
|
8
|
+
export * from './enums/AddressProvider';
|
package/bin/address/index.js
CHANGED
|
@@ -14,4 +14,13 @@ 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
|
+
//dtos
|
|
17
18
|
__exportStar(require("./dtos/Shipping"), exports);
|
|
19
|
+
__exportStar(require("./dtos/CreateAddressRequest"), exports);
|
|
20
|
+
__exportStar(require("./dtos/AddressResponse"), exports);
|
|
21
|
+
__exportStar(require("./dtos/Geometry"), exports);
|
|
22
|
+
__exportStar(require("./dtos/Place"), exports);
|
|
23
|
+
__exportStar(require("./dtos/Timezone"), exports);
|
|
24
|
+
//enums
|
|
25
|
+
__exportStar(require("./enums/AddressStatus"), exports);
|
|
26
|
+
__exportStar(require("./enums/AddressProvider"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './dtos/CardActivateRequest';
|
|
2
|
+
export * from './dtos/CardApplicationRequest';
|
|
3
|
+
export * from './dtos/CreateCardRequest';
|
|
4
|
+
export * from './dtos/CardUpdateRequest';
|
|
5
|
+
export * from './enums/CardType';
|
|
6
|
+
export * from './enums/CardUpdateKey';
|
|
7
|
+
export * from './enums/IssuanceType';
|
|
8
|
+
export * from './enums/Status';
|
|
9
|
+
export * from './enums/OwnershipType';
|
|
10
|
+
export * from './enums/Brand';
|
|
11
|
+
export * from './enums/UpdateKey';
|
package/bin/card/index.js
CHANGED
|
@@ -14,12 +14,16 @@ 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
|
-
|
|
18
|
-
__exportStar(require("./dtos/
|
|
19
|
-
__exportStar(require("./dtos/
|
|
17
|
+
//dtos
|
|
18
|
+
__exportStar(require("./dtos/CardActivateRequest"), exports);
|
|
19
|
+
__exportStar(require("./dtos/CardApplicationRequest"), exports);
|
|
20
|
+
__exportStar(require("./dtos/CreateCardRequest"), exports);
|
|
21
|
+
__exportStar(require("./dtos/CardUpdateRequest"), exports);
|
|
22
|
+
//enums
|
|
20
23
|
__exportStar(require("./enums/CardType"), exports);
|
|
21
24
|
__exportStar(require("./enums/CardUpdateKey"), exports);
|
|
22
25
|
__exportStar(require("./enums/IssuanceType"), exports);
|
|
23
26
|
__exportStar(require("./enums/Status"), exports);
|
|
24
|
-
__exportStar(require("./enums/IssuanceType"), exports);
|
|
25
27
|
__exportStar(require("./enums/OwnershipType"), exports);
|
|
28
|
+
__exportStar(require("./enums/Brand"), exports);
|
|
29
|
+
__exportStar(require("./enums/UpdateKey"), exports);
|
package/bin/country/index.d.ts
CHANGED
package/bin/country/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
//dto
|
|
2
3
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
4
|
if (k2 === undefined) k2 = k;
|
|
4
5
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -14,4 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
15
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
16
|
};
|
|
16
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
//enums
|
|
17
19
|
__exportStar(require("./enums/CountryId"), exports);
|
|
20
|
+
__exportStar(require("./enums/Country"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './enums/TypeOfDirectoryId';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
//dtos
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
|
+
};
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
//enums
|
|
19
|
+
__exportStar(require("./enums/TypeOfDirectoryId"), exports);
|
package/bin/index.d.ts
CHANGED
|
@@ -1,15 +1,5 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './card
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './card/enums/CardUpdateKey';
|
|
7
|
-
export * from './card/enums/IssuanceType';
|
|
8
|
-
export * from './card/enums/Status';
|
|
9
|
-
export * from './card/enums/IssuanceType';
|
|
10
|
-
export * from './card/enums/OwnershipType';
|
|
11
|
-
export * from './card/enums/Brand';
|
|
12
|
-
export * from './card/enums/UpdateKey';
|
|
13
|
-
export * from './card/enums/Status';
|
|
14
|
-
export * from './card/enums/CardType';
|
|
15
|
-
export * from './card/enums/OwnershipType';
|
|
1
|
+
export * as Account from './account';
|
|
2
|
+
export * as Address from './address';
|
|
3
|
+
export * as Card from './card';
|
|
4
|
+
export * as Country from './country';
|
|
5
|
+
export * as Directory from './directory';
|
package/bin/index.js
CHANGED
|
@@ -10,22 +10,22 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
10
10
|
if (k2 === undefined) k2 = k;
|
|
11
11
|
o[k2] = m[k];
|
|
12
12
|
}));
|
|
13
|
-
var
|
|
14
|
-
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
15
24
|
};
|
|
16
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
__exportStar(require("./card/enums/IssuanceType"), exports);
|
|
24
|
-
__exportStar(require("./card/enums/Status"), exports);
|
|
25
|
-
__exportStar(require("./card/enums/IssuanceType"), exports);
|
|
26
|
-
__exportStar(require("./card/enums/OwnershipType"), exports);
|
|
27
|
-
__exportStar(require("./card/enums/Brand"), exports);
|
|
28
|
-
__exportStar(require("./card/enums/UpdateKey"), exports);
|
|
29
|
-
__exportStar(require("./card/enums/Status"), exports);
|
|
30
|
-
__exportStar(require("./card/enums/CardType"), exports);
|
|
31
|
-
__exportStar(require("./card/enums/OwnershipType"), exports);
|
|
26
|
+
exports.Directory = exports.Country = exports.Card = exports.Address = exports.Account = void 0;
|
|
27
|
+
exports.Account = __importStar(require("./account"));
|
|
28
|
+
exports.Address = __importStar(require("./address"));
|
|
29
|
+
exports.Card = __importStar(require("./card"));
|
|
30
|
+
exports.Country = __importStar(require("./country"));
|
|
31
|
+
exports.Directory = __importStar(require("./directory"));
|
package/package.json
CHANGED
package/src/address/index.ts
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
+
//dtos
|
|
1
2
|
export * from './dtos/Shipping';
|
|
3
|
+
export * from './dtos/CreateAddressRequest';
|
|
4
|
+
export * from './dtos/AddressResponse';
|
|
5
|
+
export * from './dtos/Geometry';
|
|
6
|
+
export * from './dtos/Place';
|
|
7
|
+
export * from './dtos/Timezone';
|
|
8
|
+
|
|
9
|
+
//enums
|
|
10
|
+
export * from './enums/AddressStatus';
|
|
11
|
+
export * from './enums/AddressProvider';
|
|
12
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
//dtos
|
|
3
|
+
export * from './dtos/CardActivateRequest';
|
|
4
|
+
export * from './dtos/CardApplicationRequest';
|
|
5
|
+
export * from './dtos/CreateCardRequest';
|
|
6
|
+
export * from './dtos/CardUpdateRequest';
|
|
7
|
+
|
|
8
|
+
//enums
|
|
9
|
+
export * from './enums/CardType';
|
|
10
|
+
export * from './enums/CardUpdateKey';
|
|
11
|
+
export * from './enums/IssuanceType';
|
|
12
|
+
export * from './enums/Status';
|
|
13
|
+
export * from './enums/OwnershipType';
|
|
14
|
+
export * from './enums/Brand';
|
|
15
|
+
export * from './enums/UpdateKey';
|
package/src/country/index.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,23 +1,10 @@
|
|
|
1
|
-
export * from './card/dtos/CardActivateRequest';
|
|
2
|
-
export * from './card/dtos/CardApplicationRequest';
|
|
3
|
-
export * from './card/dtos/CreateCardRequest';
|
|
4
|
-
export * from './card/dtos/CardUpdateRequest';
|
|
5
1
|
|
|
6
2
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export * from './card
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './card/enums/Status';
|
|
13
|
-
export * from './card/enums/IssuanceType';
|
|
14
|
-
export * from './card/enums/OwnershipType';
|
|
15
|
-
export * from './card/enums/Brand';
|
|
16
|
-
export * from './card/enums/UpdateKey';
|
|
17
|
-
export * from './card/enums/Status';
|
|
18
|
-
export * from './card/enums/CardType';
|
|
19
|
-
export * from './card/enums/OwnershipType';
|
|
20
|
-
|
|
3
|
+
export * as Account from './account';
|
|
4
|
+
export * as Address from './address';
|
|
5
|
+
export * as Card from './card';
|
|
6
|
+
export * as Country from './country';
|
|
7
|
+
export * as Directory from './directory';
|
|
21
8
|
|
|
22
9
|
|
|
23
10
|
|
|
File without changes
|