gap-nodejs-sdk 1.0.857 → 1.0.858
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/dist/api/settings_api/1.0.0/api/index.d.ts +1 -0
- package/dist/api/settings_api/1.0.0/api/index.d.ts.map +1 -1
- package/dist/api/settings_api/1.0.0/api/index.js +1 -0
- package/dist/api/settings_api/1.0.0/api/payment_method.d.ts +13 -0
- package/dist/api/settings_api/1.0.0/api/payment_method.d.ts.map +1 -0
- package/dist/api/settings_api/1.0.0/api/payment_method.js +46 -0
- package/dist/api/settings_api/1.0.0/endpoints/index.d.ts +1 -0
- package/dist/api/settings_api/1.0.0/endpoints/index.d.ts.map +1 -1
- package/dist/api/settings_api/1.0.0/endpoints/index.js +1 -0
- package/dist/api/settings_api/1.0.0/endpoints/payment_method.d.ts +8 -0
- package/dist/api/settings_api/1.0.0/endpoints/payment_method.d.ts.map +1 -0
- package/dist/api/settings_api/1.0.0/endpoints/payment_method.js +6 -0
- package/dist/api/settings_api/1.0.0/interfaces/payment_method.d.ts +9 -0
- package/dist/api/settings_api/1.0.0/interfaces/payment_method.d.ts.map +1 -0
- package/dist/api/settings_api/1.0.0/interfaces/payment_method.js +2 -0
- package/dist/api/settings_api/1.0.0/models/index.d.ts +1 -0
- package/dist/api/settings_api/1.0.0/models/index.d.ts.map +1 -1
- package/dist/api/settings_api/1.0.0/models/index.js +1 -0
- package/dist/api/settings_api/1.0.0/models/payment_method.d.ts +29 -0
- package/dist/api/settings_api/1.0.0/models/payment_method.d.ts.map +1 -0
- package/dist/api/settings_api/1.0.0/models/payment_method.js +29 -0
- package/dist/api/settings_api/1.0.0/types/request/index.d.ts +1 -0
- package/dist/api/settings_api/1.0.0/types/request/index.d.ts.map +1 -1
- package/dist/api/settings_api/1.0.0/types/request/index.js +1 -0
- package/dist/api/settings_api/1.0.0/types/request/payment_method.d.ts +12 -0
- package/dist/api/settings_api/1.0.0/types/request/payment_method.d.ts.map +1 -0
- package/dist/api/settings_api/1.0.0/types/request/payment_method.js +1 -0
- package/dist/api/settings_api/1.0.0/types/response/index.d.ts +1 -0
- package/dist/api/settings_api/1.0.0/types/response/index.d.ts.map +1 -1
- package/dist/api/settings_api/1.0.0/types/response/index.js +1 -0
- package/dist/api/settings_api/1.0.0/types/response/payment_method.d.ts +23 -0
- package/dist/api/settings_api/1.0.0/types/response/payment_method.d.ts.map +1 -0
- package/dist/api/settings_api/1.0.0/types/response/payment_method.js +1 -0
- package/dist/api/settings_api/index.d.ts +1 -0
- package/dist/api/settings_api/index.d.ts.map +1 -1
- package/dist/api/settings_api/index.js +1 -0
- package/dist/gap-sdk.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/api/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,OAAO,IAAI,OAAO,EAAC,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/api/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,OAAO,IAAI,OAAO,EAAC,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import PaymentMethodAbstractClass from "../interfaces/payment_method";
|
|
2
|
+
import Base from "../../../../base/Base";
|
|
3
|
+
import { GapApiVersion } from "../../../../base_type";
|
|
4
|
+
import * as Request from "../types/request";
|
|
5
|
+
import * as Response from "../types/response";
|
|
6
|
+
export default class PaymentMethod extends Base implements PaymentMethodAbstractClass {
|
|
7
|
+
static API_VERSION: GapApiVersion;
|
|
8
|
+
static getPaymentMethod(): Promise<Response.GetPaymentMethodResponse>;
|
|
9
|
+
static createPaymentMethod(data: Request.CreatePaymentMethodRequest): Promise<Response.CreatePaymentMethodResponse>;
|
|
10
|
+
static updatePaymentMethod(data: Request.UpdatePaymentMethodRequest): Promise<Response.UpdatePaymentMethodResponse>;
|
|
11
|
+
static getBambooConfig(): Promise<Response.GetBambooConfigResponse>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=payment_method.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payment_method.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/api/payment_method.ts"],"names":[],"mappings":"AACA,OAAO,0BAA0B,MAAM,8BAA8B,CAAC;AACtE,OAAO,IAAI,MAAM,uBAAuB,CAAC;AACzC,OAAO,EAAC,aAAa,EAAC,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAG9C,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,IAAK,YAAW,0BAA0B;IACjF,OAAc,WAAW,gBAAoB;WAEzB,gBAAgB,IAAI,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAC;WAS9D,mBAAmB,CAAC,IAAI,EAAE,OAAO,CAAC,0BAA0B,GAAG,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CAAC;WAU5G,mBAAmB,CAAC,IAAI,EAAE,OAAO,CAAC,0BAA0B,GAAG,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CAAC;WAU5G,eAAe,IAAI,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAAC;CAQnF"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
2
|
+
import { paymentMethod } from "../endpoints";
|
|
3
|
+
import Base from "../../../../base/Base";
|
|
4
|
+
import { GapApiVersion } from "../../../../base_type";
|
|
5
|
+
import * as Model from "../models";
|
|
6
|
+
export default class PaymentMethod extends Base {
|
|
7
|
+
static getPaymentMethod() {
|
|
8
|
+
var _a;
|
|
9
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
10
|
+
const response = yield this.client.get({
|
|
11
|
+
path: paymentMethod.GET_PAYMENT_METHOD,
|
|
12
|
+
});
|
|
13
|
+
return Model.PaymentMethodListModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
static createPaymentMethod(data) {
|
|
17
|
+
var _a;
|
|
18
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
19
|
+
const response = yield this.client.post({
|
|
20
|
+
path: paymentMethod.CREATE_PAYMENT_METHOD,
|
|
21
|
+
data: data
|
|
22
|
+
});
|
|
23
|
+
return Model.PaymentMethodModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
static updatePaymentMethod(data) {
|
|
27
|
+
var _a;
|
|
28
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
29
|
+
const response = yield this.client.post({
|
|
30
|
+
path: paymentMethod.UPDATE_PAYMENT_METHOD,
|
|
31
|
+
data: data
|
|
32
|
+
});
|
|
33
|
+
return Model.PaymentMethodModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
static getBambooConfig() {
|
|
37
|
+
var _a;
|
|
38
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
39
|
+
const response = yield this.client.get({
|
|
40
|
+
path: paymentMethod.GET_BAMBOO_CONFIG,
|
|
41
|
+
});
|
|
42
|
+
return Model.BambooConfigModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
PaymentMethod.API_VERSION = GapApiVersion.V1;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,OAAO,IAAI,OAAO,EAAC,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAAC,OAAO,IAAI,OAAO,EAAC,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payment_method.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/endpoints/payment_method.ts"],"names":[],"mappings":";;;;;;AAAA,wBAKC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
GET_PAYMENT_METHOD: "/v1/settings/payment-method/get",
|
|
3
|
+
CREATE_PAYMENT_METHOD: "/v1/settings/payment-method/create",
|
|
4
|
+
UPDATE_PAYMENT_METHOD: "/v1/settings/payment-method/update",
|
|
5
|
+
GET_BAMBOO_CONFIG: "/v1/settings/payment-method/get-bamboo-config",
|
|
6
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as Request from "../types/request";
|
|
2
|
+
import * as Response from "../types/response";
|
|
3
|
+
export default abstract class PaymentMethod {
|
|
4
|
+
static getPaymentMethod: () => Promise<Response.GetPaymentMethodResponse>;
|
|
5
|
+
static createPaymentMethod: (data: Request.CreatePaymentMethodRequest) => Promise<Response.CreatePaymentMethodResponse>;
|
|
6
|
+
static updatePaymentMethod: (data: Request.UpdatePaymentMethodRequest) => Promise<Response.UpdatePaymentMethodResponse>;
|
|
7
|
+
static getBambooConfig: () => Promise<Response.GetBambooConfigResponse>;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=payment_method.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payment_method.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/interfaces/payment_method.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAE9C,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,aAAa;IACvC,OAAc,gBAAgB,EAAE,MAAM,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAC,CAAC;IACjF,OAAc,mBAAmB,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC,0BAA0B,KAAK,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CAAC,CAAC;IAC/H,OAAc,mBAAmB,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC,0BAA0B,KAAK,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CAAC,CAAC;IAC/H,OAAc,eAAe,EAAE,MAAM,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAAC,CAAC;CAClF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export declare function PaymentMethodModel(data: any): {
|
|
2
|
+
id: any;
|
|
3
|
+
name: any;
|
|
4
|
+
type: any;
|
|
5
|
+
params: any;
|
|
6
|
+
description: any;
|
|
7
|
+
is_active: any;
|
|
8
|
+
created_at: any;
|
|
9
|
+
updated_at: any;
|
|
10
|
+
status: any;
|
|
11
|
+
};
|
|
12
|
+
export declare function PaymentMethodListModel(data: any): {
|
|
13
|
+
id: any;
|
|
14
|
+
name: any;
|
|
15
|
+
type: any;
|
|
16
|
+
params: any;
|
|
17
|
+
description: any;
|
|
18
|
+
is_active: any;
|
|
19
|
+
created_at: any;
|
|
20
|
+
updated_at: any;
|
|
21
|
+
status: any;
|
|
22
|
+
}[];
|
|
23
|
+
export declare function BambooConfigModel(data: any): {
|
|
24
|
+
type: any;
|
|
25
|
+
api_login_id: any;
|
|
26
|
+
transaction_key: any;
|
|
27
|
+
merchant_id: any;
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=payment_method.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payment_method.d.ts","sourceRoot":"","sources":["../../../../../src/api/settings_api/1.0.0/models/payment_method.ts"],"names":[],"mappings":"AAcA,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,GAAG;;;;;;;;;;EAE3C;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG;;;;;;;;;;IAE/C;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,GAAG;;;;;EAO1C"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
function PaymentMethodItem(data) {
|
|
2
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
3
|
+
return {
|
|
4
|
+
id: (_a = data === null || data === void 0 ? void 0 : data.id) !== null && _a !== void 0 ? _a : null,
|
|
5
|
+
name: (_b = data === null || data === void 0 ? void 0 : data.name) !== null && _b !== void 0 ? _b : null,
|
|
6
|
+
type: (_c = data === null || data === void 0 ? void 0 : data.type) !== null && _c !== void 0 ? _c : null,
|
|
7
|
+
params: (_d = data === null || data === void 0 ? void 0 : data.params) !== null && _d !== void 0 ? _d : {},
|
|
8
|
+
description: (_e = data === null || data === void 0 ? void 0 : data.description) !== null && _e !== void 0 ? _e : null,
|
|
9
|
+
is_active: (_f = data === null || data === void 0 ? void 0 : data.is_active) !== null && _f !== void 0 ? _f : null,
|
|
10
|
+
created_at: (_g = data === null || data === void 0 ? void 0 : data.created_at) !== null && _g !== void 0 ? _g : null,
|
|
11
|
+
updated_at: (_h = data === null || data === void 0 ? void 0 : data.updated_at) !== null && _h !== void 0 ? _h : null,
|
|
12
|
+
status: (_j = data === null || data === void 0 ? void 0 : data.status) !== null && _j !== void 0 ? _j : null,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export function PaymentMethodModel(data) {
|
|
16
|
+
return PaymentMethodItem(data);
|
|
17
|
+
}
|
|
18
|
+
export function PaymentMethodListModel(data) {
|
|
19
|
+
return Array.isArray(data) ? data.map(PaymentMethodItem) : [];
|
|
20
|
+
}
|
|
21
|
+
export function BambooConfigModel(data) {
|
|
22
|
+
var _a, _b, _c, _d;
|
|
23
|
+
return {
|
|
24
|
+
type: (_a = data === null || data === void 0 ? void 0 : data.type) !== null && _a !== void 0 ? _a : null,
|
|
25
|
+
api_login_id: (_b = data === null || data === void 0 ? void 0 : data.api_login_id) !== null && _b !== void 0 ? _b : null,
|
|
26
|
+
transaction_key: (_c = data === null || data === void 0 ? void 0 : data.transaction_key) !== null && _c !== void 0 ? _c : null,
|
|
27
|
+
merchant_id: (_d = data === null || data === void 0 ? void 0 : data.merchant_id) !== null && _d !== void 0 ? _d : null,
|
|
28
|
+
};
|
|
29
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/settings_api/1.0.0/types/request/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/settings_api/1.0.0/types/request/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type GetPaymentMethodRequest = void;
|
|
2
|
+
export type CreatePaymentMethodRequest = {
|
|
3
|
+
type: string;
|
|
4
|
+
name: string;
|
|
5
|
+
is_active: number;
|
|
6
|
+
params: Record<string, any>;
|
|
7
|
+
};
|
|
8
|
+
export type UpdatePaymentMethodRequest = CreatePaymentMethodRequest & {
|
|
9
|
+
id: number;
|
|
10
|
+
};
|
|
11
|
+
export type GetBambooConfigRequest = void;
|
|
12
|
+
//# sourceMappingURL=payment_method.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payment_method.d.ts","sourceRoot":"","sources":["../../../../../../src/api/settings_api/1.0.0/types/request/payment_method.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG,IAAI,CAAC;AAE3C,MAAM,MAAM,0BAA0B,GAAG;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC/B,CAAA;AAED,MAAM,MAAM,0BAA0B,GAAG,0BAA0B,GAAG;IAClE,EAAE,EAAE,MAAM,CAAC;CACd,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG,IAAI,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/settings_api/1.0.0/types/response/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/settings_api/1.0.0/types/response/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Nullable } from "../../../../../base_type";
|
|
2
|
+
export type PaymentMethod = Nullable<{
|
|
3
|
+
id: number;
|
|
4
|
+
name: string;
|
|
5
|
+
type: string;
|
|
6
|
+
params: Record<string, any>;
|
|
7
|
+
description: string;
|
|
8
|
+
is_active: number;
|
|
9
|
+
created_at: string;
|
|
10
|
+
updated_at: string;
|
|
11
|
+
status: string;
|
|
12
|
+
}>;
|
|
13
|
+
export type GetPaymentMethodResponse = PaymentMethod[];
|
|
14
|
+
export type CreatePaymentMethodResponse = PaymentMethod;
|
|
15
|
+
export type UpdatePaymentMethodResponse = PaymentMethod;
|
|
16
|
+
export type BambooConfig = Nullable<{
|
|
17
|
+
type: string;
|
|
18
|
+
api_login_id: string;
|
|
19
|
+
transaction_key: string;
|
|
20
|
+
merchant_id: string;
|
|
21
|
+
}>;
|
|
22
|
+
export type GetBambooConfigResponse = BambooConfig;
|
|
23
|
+
//# sourceMappingURL=payment_method.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payment_method.d.ts","sourceRoot":"","sources":["../../../../../../src/api/settings_api/1.0.0/types/response/payment_method.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAC,MAAM,0BAA0B,CAAC;AAElD,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC;IACjC,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC3B,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;IAClB,MAAM,EAAE,MAAM,CAAA;CACjB,CAAC,CAAA;AAEF,MAAM,MAAM,wBAAwB,GAAG,aAAa,EAAE,CAAC;AAEvD,MAAM,MAAM,2BAA2B,GAAG,aAAa,CAAC;AAExD,MAAM,MAAM,2BAA2B,GAAG,aAAa,CAAC;AAExD,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC;IAChC,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,EAAE,MAAM,CAAA;IACpB,eAAe,EAAE,MAAM,CAAA;IACvB,WAAW,EAAE,MAAM,CAAA;CACtB,CAAC,CAAA;AAEF,MAAM,MAAM,uBAAuB,GAAG,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api/settings_api/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAG9C,MAAM,CAAC,OAAO,OAAO,WAAW;IAC5B,UAAU,MAAC;IACX,OAAO,MAAC;IACR,QAAQ,MAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api/settings_api/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAG9C,MAAM,CAAC,OAAO,OAAO,WAAW;IAC5B,UAAU,MAAC;IACX,OAAO,MAAC;IACR,QAAQ,MAAC;IACT,aAAa,MAAC;gBAEF,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,aAAa;CAQvF"}
|