@microsoft/teams-js 2.0.0-beta.5-dev.1 → 2.0.0-beta.5-dev.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -791,6 +791,10 @@ export namespace legacy {
791
791
  */
792
792
  function isSupported(): boolean;
793
793
  }
794
+ /**
795
+ * Checks if teams capability is supported currently
796
+ */
797
+ function isSupported(): boolean;
794
798
  }
795
799
 
796
800
  /**
@@ -2116,6 +2120,10 @@ export interface DialogSize {
2116
2120
  export interface UrlDialogInfo {
2117
2121
  /**
2118
2122
  * The url to be rendered in the webview/iframe.
2123
+ *
2124
+ * @remarks
2125
+ * The domain of the url must match at least one of the
2126
+ * valid domains specified in the validDomains block of the manifest
2119
2127
  */
2120
2128
  url: string;
2121
2129
  size: DialogSize;
@@ -2142,6 +2150,10 @@ export interface BotUrlDialogInfo extends UrlDialogInfo {
2142
2150
  export interface DialogInfo {
2143
2151
  /**
2144
2152
  * The url to be rendered in the webview/iframe.
2153
+ *
2154
+ * @remarks
2155
+ * The domain of the url must match at least one of the
2156
+ * valid domains specified in the validDomains block of the manifest
2145
2157
  */
2146
2158
  url?: string;
2147
2159
  /**
@@ -1121,7 +1121,7 @@ __webpack_require__.d(__webpack_exports__, {
1121
1121
  });
1122
1122
 
1123
1123
  ;// CONCATENATED MODULE: ./src/internal/constants.ts
1124
- var version = "2.0.0-beta.5-dev.1";
1124
+ var version = "2.0.0-beta.5-dev.4";
1125
1125
  /**
1126
1126
  * @hidden
1127
1127
  * The client version when all SDK APIs started to check platform compatibility for the APIs was 1.6.0.
@@ -7023,6 +7023,13 @@ var legacy;
7023
7023
  }
7024
7024
  fullTrust.isSupported = isSupported;
7025
7025
  })(fullTrust = legacy.fullTrust || (legacy.fullTrust = {}));
7026
+ /**
7027
+ * Checks if teams capability is supported currently
7028
+ */
7029
+ function isSupported() {
7030
+ return runtime.supports.teams ? true : false;
7031
+ }
7032
+ legacy.isSupported = isSupported;
7026
7033
  })(legacy || (legacy = {}));
7027
7034
 
7028
7035
  ;// CONCATENATED MODULE: ./src/private/meetingRoom.ts