@nsshunt/stsutils 1.14.7 → 1.14.9
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 +29 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +30 -3
- package/types/index.d.ts +2 -1
- package/types/index.d.ts.map +1 -1
- package/types/z1.d.ts +0 -8
- package/types/z1.d.ts.map +0 -1
- package/types/z2.d.ts +0 -2
- package/types/z2.d.ts.map +0 -1
- package/types/z3.d.ts +0 -2
- package/types/z3.d.ts.map +0 -1
package/dist/index.js
CHANGED
|
@@ -21,15 +21,39 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
21
21
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
22
22
|
};
|
|
23
23
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
|
-
exports.$stsgd = void 0;
|
|
24
|
+
exports.$stsgdf = exports.$stsgd = void 0;
|
|
25
25
|
__exportStar(require("./errorhandling"), exports);
|
|
26
26
|
__exportStar(require("./stsoptionsbase"), exports);
|
|
27
27
|
__exportStar(require("./sleep"), exports);
|
|
28
28
|
__exportStar(require("./validate"), exports);
|
|
29
29
|
__exportStar(require("./oauth2terms"), exports);
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
//export type myfunc = () => Record<string, any>;
|
|
31
|
+
exports.$stsgd = {};
|
|
32
|
+
function $stsgdf() {
|
|
33
|
+
return exports.$stsgd;
|
|
33
34
|
}
|
|
34
|
-
exports.$
|
|
35
|
+
exports.$stsgdf = $stsgdf;
|
|
36
|
+
/*
|
|
37
|
+
declare global {
|
|
38
|
+
var $stsgd: Record<string, any>;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function InitGlobalData(): void {
|
|
42
|
+
//global.$stsgd = _stsgd;
|
|
43
|
+
global.$stsgd = { };
|
|
44
|
+
}
|
|
45
|
+
*/
|
|
46
|
+
/*
|
|
47
|
+
declare global {
|
|
48
|
+
var $stsgd: Record<string, any>;
|
|
49
|
+
var $stsgfex: myfunc;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function InitGlobalData(): void {
|
|
53
|
+
global.$stsgd = _stsgd;
|
|
54
|
+
global.$stsgfex = (): Record<string, any> => {
|
|
55
|
+
return _stsgd;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
*/
|
|
35
59
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;EAME;;;;;;;;;;;;;;;;;AAMF,kDAA+B;AAC/B,mDAAgC;AAChC,0CAAuB;AACvB,6CAA0B;AAC1B,gDAA6B;AAE7B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;EAME;;;;;;;;;;;;;;;;;AAMF,kDAA+B;AAC/B,mDAAgC;AAChC,0CAAuB;AACvB,6CAA0B;AAC1B,gDAA6B;AAE7B,iDAAiD;AAEpC,QAAA,MAAM,GAAwB,EAAG,CAAC;AAE/C,SAAgB,OAAO;IACtB,OAAO,cAA2B,CAAC;AACpC,CAAC;AAFD,0BAEC;AAED;;;;;;;;;EASE;AAEF;;;;;;;;;;;;EAYE"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -16,8 +16,35 @@ export * from './sleep'
|
|
|
16
16
|
export * from './validate'
|
|
17
17
|
export * from './oauth2terms'
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
//export type myfunc = () => Record<string, any>;
|
|
20
20
|
|
|
21
|
-
export
|
|
22
|
-
|
|
21
|
+
export const $stsgd: Record<string, any> = { };
|
|
22
|
+
|
|
23
|
+
export function $stsgdf<T>(): Record<string, T> {
|
|
24
|
+
return $stsgd as Record<string, T>;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/*
|
|
28
|
+
declare global {
|
|
29
|
+
var $stsgd: Record<string, any>;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export function InitGlobalData(): void {
|
|
33
|
+
//global.$stsgd = _stsgd;
|
|
34
|
+
global.$stsgd = { };
|
|
35
|
+
}
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
/*
|
|
39
|
+
declare global {
|
|
40
|
+
var $stsgd: Record<string, any>;
|
|
41
|
+
var $stsgfex: myfunc;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export function InitGlobalData(): void {
|
|
45
|
+
global.$stsgd = _stsgd;
|
|
46
|
+
global.$stsgfex = (): Record<string, any> => {
|
|
47
|
+
return _stsgd;
|
|
48
|
+
}
|
|
23
49
|
}
|
|
50
|
+
*/
|
package/types/index.d.ts
CHANGED
|
@@ -6,5 +6,6 @@ export * from './stsoptionsbase';
|
|
|
6
6
|
export * from './sleep';
|
|
7
7
|
export * from './validate';
|
|
8
8
|
export * from './oauth2terms';
|
|
9
|
-
export declare
|
|
9
|
+
export declare const $stsgd: Record<string, any>;
|
|
10
|
+
export declare function $stsgdf<T>(): Record<string, T>;
|
|
10
11
|
//# sourceMappingURL=index.d.ts.map
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,UAAU;IACvB,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,GAAG,UAAU,GAAG,SAAS,CAAA;CAC5C;AAED,cAAc,iBAAiB,CAAA;AAC/B,cAAc,kBAAkB,CAAA;AAChC,cAAc,SAAS,CAAA;AACvB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAI7B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,UAAU;IACvB,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,GAAG,UAAU,GAAG,SAAS,CAAA;CAC5C;AAED,cAAc,iBAAiB,CAAA;AAC/B,cAAc,kBAAkB,CAAA;AAChC,cAAc,SAAS,CAAA;AACvB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAI7B,eAAO,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAO,CAAC;AAE/C,wBAAgB,OAAO,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAE9C"}
|
package/types/z1.d.ts
DELETED
package/types/z1.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"z1.d.ts","sourceRoot":"","sources":["../src/z1.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,GAAG;IAChB,EAAE,EAAE,MAAM,CAAA;IACV,GAAG,EAAE,MAAM,CAAA;CACd;AAED,wBAAgB,MAAM,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAE7C;AAED,wBAAgB,MAAM,IAAI,GAAG,CAE5B;AAED,wBAAgB,SAAS,IAAI,IAAI,CAKhC"}
|
package/types/z2.d.ts
DELETED
package/types/z2.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"z2.d.ts","sourceRoot":"","sources":["../src/z2.ts"],"names":[],"mappings":"AAEA,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,QAGrC"}
|
package/types/z3.d.ts
DELETED
package/types/z3.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"z3.d.ts","sourceRoot":"","sources":["../src/z3.ts"],"names":[],"mappings":""}
|