@dgac/nmb2b-client
Version:
EUROCONTROL Network Manager B2B SOAP client
22 lines (21 loc) • 819 B
text/typescript
import { B2BRequest, File, NMB2BVersion, ReplyWithData } from "../Common/types.mjs";
//#region src/GeneralInformation/types.d.ts
type NMB2BWSDLsRequest = B2BRequest & {
version: NMB2BVersion;
};
type NMB2BWSDLsReply = ReplyWithData<NMB2BWSDLsReplyData>;
interface NMB2BWSDLsReplyData {
file: B2BInfoFile;
}
interface B2BInfoFile extends File {
hasAddendaErrata?: boolean;
}
type UserInformationRequest = Record<string, never> & B2BRequest;
type UserInformationReply = ReplyWithData<UserInformationReplyData>;
type UserInformationReplyData = {
textReport: TextReport;
};
type TextReport = string;
//#endregion
export { B2BInfoFile, NMB2BWSDLsReply, NMB2BWSDLsReplyData, NMB2BWSDLsRequest, TextReport, UserInformationReply, UserInformationReplyData, UserInformationRequest };
//# sourceMappingURL=types.d.mts.map