Skip to content

Commit

Permalink
auth1probe
Browse files Browse the repository at this point in the history
  • Loading branch information
edsilv committed Aug 29, 2018
1 parent 5ae6557 commit 0bc925b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/client/manifesto.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
};
Expand Down
3 changes: 3 additions & 0 deletions dist/client/manifesto.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
};
Expand Down
1 change: 1 addition & 0 deletions dist/manifesto.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ declare namespace Manifesto {
auth1Kiosk(): ServiceProfile;
auth1Login(): ServiceProfile;
auth1Logout(): ServiceProfile;
auth1Probe(): ServiceProfile;
auth1Token(): ServiceProfile;
autoComplete(): ServiceProfile;
iiif1ImageLevel1(): ServiceProfile;
Expand Down
3 changes: 3 additions & 0 deletions dist/server/manifesto.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
};
Expand Down
4 changes: 4 additions & 0 deletions src/ServiceProfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
Expand Down

0 comments on commit 0bc925b

Please sign in to comment.