@staffbase/widget-sdk 3.11.0-beta.1 → 3.11.0-beta.3
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.
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/dist/widget-api-types.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -29,6 +29,8 @@ module.exports = __toCommonJS(lib_exports);
|
|
|
29
29
|
var IntegrationNames = /* @__PURE__ */ ((IntegrationNames2) => {
|
|
30
30
|
IntegrationNames2["MS365"] = "ms365";
|
|
31
31
|
IntegrationNames2["GoogleWorkspace"] = "googleWorkspace";
|
|
32
|
+
IntegrationNames2["ServiceNow"] = "serviceNow";
|
|
33
|
+
IntegrationNames2["Atlassian"] = "atlassian";
|
|
32
34
|
return IntegrationNames2;
|
|
33
35
|
})(IntegrationNames || {});
|
|
34
36
|
var IntegrationStates = {
|
package/dist/index.mjs
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
var IntegrationNames = /* @__PURE__ */ ((IntegrationNames2) => {
|
|
3
3
|
IntegrationNames2["MS365"] = "ms365";
|
|
4
4
|
IntegrationNames2["GoogleWorkspace"] = "googleWorkspace";
|
|
5
|
+
IntegrationNames2["ServiceNow"] = "serviceNow";
|
|
6
|
+
IntegrationNames2["Atlassian"] = "atlassian";
|
|
5
7
|
return IntegrationNames2;
|
|
6
8
|
})(IntegrationNames || {});
|
|
7
9
|
var IntegrationStates = {
|
|
@@ -180,10 +180,12 @@ export interface UserListResponse {
|
|
|
180
180
|
limit: number;
|
|
181
181
|
total: number;
|
|
182
182
|
}
|
|
183
|
-
export type IntegrationType = IntegrationNames
|
|
183
|
+
export type IntegrationType = `${IntegrationNames}`;
|
|
184
184
|
export declare enum IntegrationNames {
|
|
185
185
|
MS365 = "ms365",
|
|
186
|
-
GoogleWorkspace = "googleWorkspace"
|
|
186
|
+
GoogleWorkspace = "googleWorkspace",
|
|
187
|
+
ServiceNow = "serviceNow",
|
|
188
|
+
Atlassian = "atlassian"
|
|
187
189
|
}
|
|
188
190
|
/**
|
|
189
191
|
* Integration Token including the expiration time
|