diff --git a/types/autobahn/index.d.ts b/types/autobahn/index.d.ts
index 8a37bdf21b..6741bcccd1 100644
--- a/types/autobahn/index.d.ts
+++ b/types/autobahn/index.d.ts
@@ -1,6 +1,6 @@
// Type definitions for AutobahnJS v0.9.7
// Project: http://autobahn.ws/js/
-// Definitions by: Elad Zelingher , Andy Hawkins
+// Definitions by: Elad Zelingher , Andy Hawkins , Wladimir Totino
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
///
@@ -167,8 +167,14 @@ declare namespace autobahn {
interface IPublishOptions {
acknowledge?: boolean;
exclude?: number[];
+ exclude_authid?: string[];
+ exclude_authrole?: string[];
eligible?: number[];
- disclose_me?: Boolean;
+ eligible_authid?: string[];
+ eligible_authrole?: string[];
+ retain?: boolean;
+ disclose_me?: boolean;
+ exclude_me?: boolean;
}
interface ISubscribeOptions {