From 0bc925b79746e3e2c18a75715a1d501cafa63773 Mon Sep 17 00:00:00 2001 From: edsilv Date: Wed, 29 Aug 2018 16:41:42 +0100 Subject: [PATCH] auth1probe --- dist/client/manifesto.bundle.js | 3 +++ dist/client/manifesto.js | 3 +++ dist/manifesto.d.ts | 1 + dist/server/manifesto.js | 3 +++ src/ServiceProfile.ts | 4 ++++ 5 files changed, 14 insertions(+) diff --git a/dist/client/manifesto.bundle.js b/dist/client/manifesto.bundle.js index 8d7998a6..6050a53a 100644 --- a/dist/client/manifesto.bundle.js +++ b/dist/client/manifesto.bundle.js @@ -488,6 +488,9 @@ var Manifesto; ServiceProfile.prototype.auth1Logout = function () { return new ServiceProfile(ServiceProfile.AUTH1LOGOUT.toString()); }; + ServiceProfile.prototype.auth1Probe = function () { + return new ServiceProfile(ServiceProfile.AUTH1PROBE.toString()); + }; ServiceProfile.prototype.auth1Token = function () { return new ServiceProfile(ServiceProfile.AUTH1TOKEN.toString()); }; diff --git a/dist/client/manifesto.js b/dist/client/manifesto.js index ef670cd7..d6c174ad 100644 --- a/dist/client/manifesto.js +++ b/dist/client/manifesto.js @@ -416,6 +416,9 @@ var Manifesto; ServiceProfile.prototype.auth1Logout = function () { return new ServiceProfile(ServiceProfile.AUTH1LOGOUT.toString()); }; + ServiceProfile.prototype.auth1Probe = function () { + return new ServiceProfile(ServiceProfile.AUTH1PROBE.toString()); + }; ServiceProfile.prototype.auth1Token = function () { return new ServiceProfile(ServiceProfile.AUTH1TOKEN.toString()); }; diff --git a/dist/manifesto.d.ts b/dist/manifesto.d.ts index 92aa94da..37f28973 100644 --- a/dist/manifesto.d.ts +++ b/dist/manifesto.d.ts @@ -185,6 +185,7 @@ declare namespace Manifesto { auth1Kiosk(): ServiceProfile; auth1Login(): ServiceProfile; auth1Logout(): ServiceProfile; + auth1Probe(): ServiceProfile; auth1Token(): ServiceProfile; autoComplete(): ServiceProfile; iiif1ImageLevel1(): ServiceProfile; diff --git a/dist/server/manifesto.js b/dist/server/manifesto.js index 6846ed5d..5ad25297 100644 --- a/dist/server/manifesto.js +++ b/dist/server/manifesto.js @@ -487,6 +487,9 @@ var Manifesto; ServiceProfile.prototype.auth1Logout = function () { return new ServiceProfile(ServiceProfile.AUTH1LOGOUT.toString()); }; + ServiceProfile.prototype.auth1Probe = function () { + return new ServiceProfile(ServiceProfile.AUTH1PROBE.toString()); + }; ServiceProfile.prototype.auth1Token = function () { return new ServiceProfile(ServiceProfile.AUTH1TOKEN.toString()); }; diff --git a/src/ServiceProfile.ts b/src/ServiceProfile.ts index 39d9aa97..7bb358f3 100644 --- a/src/ServiceProfile.ts +++ b/src/ServiceProfile.ts @@ -78,6 +78,10 @@ namespace Manifesto { return new ServiceProfile(ServiceProfile.AUTH1LOGOUT.toString()); } + auth1Probe(): ServiceProfile { + return new ServiceProfile(ServiceProfile.AUTH1PROBE.toString()); + } + auth1Token(): ServiceProfile { return new ServiceProfile(ServiceProfile.AUTH1TOKEN.toString()); }