spitfirepm 23.8940.5 → 23.8940.7
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/globals.d.ts +12 -0
- package/dist/sfRESTClient.js +1 -1
- package/package.json +1 -1
package/dist/globals.d.ts
CHANGED
|
@@ -142,6 +142,16 @@ declare global {
|
|
|
142
142
|
expire: number;
|
|
143
143
|
id: string;
|
|
144
144
|
}
|
|
145
|
+
export interface iWebixConfirm {
|
|
146
|
+
title: string;
|
|
147
|
+
text: string;
|
|
148
|
+
type: "confirm-warning" | "confirm-error";
|
|
149
|
+
expire: number;
|
|
150
|
+
id: string;
|
|
151
|
+
ok: string;
|
|
152
|
+
cancel: string;
|
|
153
|
+
css: string;
|
|
154
|
+
}
|
|
145
155
|
export interface iWebixApp {
|
|
146
156
|
attachEvent: {
|
|
147
157
|
(eventName: string, handler: Function): void;
|
|
@@ -168,6 +178,8 @@ declare global {
|
|
|
168
178
|
}
|
|
169
179
|
export interface iRouteHelperService {
|
|
170
180
|
_appContext: iWebixApp;
|
|
181
|
+
openDocument(dmk: GUID): Promise<Window>;
|
|
182
|
+
CloseInSeconds(msg: string, seconds: number): void;
|
|
171
183
|
helpers: {
|
|
172
184
|
OpenEmail: {
|
|
173
185
|
(to: string, subject: string, cc?: string, body?: string): void;
|
package/dist/sfRESTClient.js
CHANGED
|
@@ -8,7 +8,7 @@ const BrowserExtensionChecker_1 = require("./BrowserExtensionChecker");
|
|
|
8
8
|
const RESTClientBase = require("./APIClientBase"); // avoid conflict with same in SwaggerClient when loaded by classic UI
|
|
9
9
|
const string_extensions_1 = require("./string.extensions");
|
|
10
10
|
//import {dialog} from "jquery-ui";
|
|
11
|
-
const ClientPackageVersion = "23.8940.
|
|
11
|
+
const ClientPackageVersion = "23.8940.7";
|
|
12
12
|
// originally modified for typescript and linter requirements by Uladzislau Kumakou of XB Software
|
|
13
13
|
var LoggingLevels;
|
|
14
14
|
(function (LoggingLevels) {
|