Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions WeniFluxos/WeniFluxos.pq
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ MaxAttempts = 3;

AttemptTimeMultiplier = 5;

shared WeniFluxos.ConnectionTest = () =>
let
source = Web.Contents(BaseUrl),
res = Xml.Document(source)
in
res;

[DataSource.Kind="WeniFluxos", Publish="WeniFluxos.Publish"]
shared WeniFluxos.Contents = (token as text, optional after as datetime, optional before as datetime) => WeniFluxosNavTable(BaseUrl, token, after, before) as table;

Expand Down Expand Up @@ -137,6 +144,7 @@ TryRequest = (url as text, reqOptions as record, tryCount as number, isRetry as
GetNextLink = (response) as nullable text => Record.FieldOrDefault(response, "next");

WeniFluxos = [
TestConnection = (dataSourcePath) => { "WeniFluxos.ConnectionTest" },
Authentication = [
Implicit = []
],
Expand Down