108 lines
3.0 KiB
JavaScript
108 lines
3.0 KiB
JavaScript
var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
function adopt(value) {
|
|
return value instanceof P ? value : new P(function (resolve) {
|
|
resolve(value);
|
|
});
|
|
}
|
|
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
function fulfilled(value) {
|
|
try {
|
|
step(generator.next(value));
|
|
} catch (e) {
|
|
reject(e);
|
|
}
|
|
}
|
|
|
|
function rejected(value) {
|
|
try {
|
|
step(generator["throw"](value));
|
|
} catch (e) {
|
|
reject(e);
|
|
}
|
|
}
|
|
|
|
function step(result) {
|
|
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
}
|
|
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
});
|
|
};
|
|
|
|
import { http } from "../../utils/http.js";
|
|
const STAMPS_ENDPOINT = 'stamps';
|
|
export function getAllPostageBatches(ky) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
const response = yield http(ky, {
|
|
method: 'get',
|
|
path: `${STAMPS_ENDPOINT}`,
|
|
responseType: 'json'
|
|
});
|
|
return response.data.stamps || [];
|
|
});
|
|
}
|
|
export function getPostageBatch(ky, postageBatchId) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
const response = yield http(ky, {
|
|
method: 'get',
|
|
path: `${STAMPS_ENDPOINT}/${postageBatchId}`,
|
|
responseType: 'json'
|
|
});
|
|
return response.data;
|
|
});
|
|
}
|
|
export function getPostageBatchBuckets(ky, postageBatchId) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
const response = yield http(ky, {
|
|
method: 'get',
|
|
path: `${STAMPS_ENDPOINT}/${postageBatchId}/buckets`,
|
|
responseType: 'json'
|
|
});
|
|
return response.data;
|
|
});
|
|
}
|
|
export function createPostageBatch(ky, amount, depth, options) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
const headers = {};
|
|
|
|
if (options === null || options === void 0 ? void 0 : options.gasPrice) {
|
|
headers['gas-price'] = options.gasPrice.toString();
|
|
}
|
|
|
|
if ((options === null || options === void 0 ? void 0 : options.immutableFlag) !== undefined) {
|
|
headers.immutable = String(options.immutableFlag);
|
|
}
|
|
|
|
const response = yield http(ky, {
|
|
method: 'post',
|
|
path: `${STAMPS_ENDPOINT}/${amount}/${depth}`,
|
|
responseType: 'json',
|
|
searchParams: {
|
|
label: options === null || options === void 0 ? void 0 : options.label
|
|
},
|
|
headers
|
|
});
|
|
return response.data.batchID;
|
|
});
|
|
}
|
|
export function topUpBatch(ky, id, amount) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
const response = yield http(ky, {
|
|
method: 'patch',
|
|
path: `${STAMPS_ENDPOINT}/topup/${id}/${amount}`,
|
|
responseType: 'json'
|
|
});
|
|
return response.data.batchID;
|
|
});
|
|
}
|
|
export function diluteBatch(ky, id, depth) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
const response = yield http(ky, {
|
|
method: 'patch',
|
|
path: `${STAMPS_ENDPOINT}/dilute/${id}/${depth}`,
|
|
responseType: 'json'
|
|
});
|
|
return response.data.batchID;
|
|
});
|
|
} |