@types/nginstack__devops 71.0.0 → 71.0.2
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.
- nginstack__devops/LICENSE +0 -0
- nginstack__devops/README.md +1 -2
- nginstack__devops/index.d.ts +0 -7
- nginstack__devops/keys/UpdateScriptStatus.d.ts +0 -0
- nginstack__devops/lib/security/copyChildrenViewPermissions.d.ts +0 -0
- nginstack__devops/lib/update/UpdateScript.d.ts +3 -3
- nginstack__devops/package.json +9 -9
nginstack__devops/LICENSE
CHANGED
|
File without changes
|
nginstack__devops/README.md
CHANGED
|
@@ -8,9 +8,8 @@ This package contains type definitions for @nginstack/devops (https://dev.azure.
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nginstack__devops.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 18 Oct 2023 05:47:08 GMT
|
|
12
12
|
* Dependencies: [@types/nginstack__engine](https://npmjs.com/package/@types/nginstack__engine)
|
|
13
|
-
* Global values: none
|
|
14
13
|
|
|
15
14
|
# Credits
|
|
16
15
|
These definitions were written by [Renato Ribeiro](https://github.com/Henato), [Paulo Moreno](https://github.com/paulocmoreno), and [Ricardo Cavalcante](https://github.com/oficial).
|
nginstack__devops/index.d.ts
CHANGED
|
@@ -1,8 +1 @@
|
|
|
1
|
-
// Type definitions for @nginstack/devops 71.0
|
|
2
|
-
// Project: https://dev.azure.com/nginstack/nginstack
|
|
3
|
-
// Definitions by: Renato Ribeiro <https://github.com/Henato>
|
|
4
|
-
// Paulo Moreno <https://github.com/paulocmoreno>
|
|
5
|
-
// Ricardo Cavalcante <https://github.com/oficial>
|
|
6
|
-
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
7
|
-
// Minimum TypeScript Version: 4.3
|
|
8
1
|
/// <reference path="lib/update/UpdateScript.d.ts" />
|
|
File without changes
|
|
File without changes
|
|
@@ -22,10 +22,10 @@ declare class UpdateScript {
|
|
|
22
22
|
copyChildrenViewPermissions(directoryKey: number): number;
|
|
23
23
|
}
|
|
24
24
|
declare namespace UpdateScript {
|
|
25
|
-
export {
|
|
25
|
+
export { EndPointConfig, execute, ExecutionParams, ExecutionResult };
|
|
26
26
|
}
|
|
27
|
-
import Connection = require(
|
|
28
|
-
import Database = require(
|
|
27
|
+
import Connection = require("@nginstack/engine/lib/connection/Connection.js");
|
|
28
|
+
import Database = require("@nginstack/engine/lib/database/Database.js");
|
|
29
29
|
declare function execute(params: ExecutionParams): ExecutionResult;
|
|
30
30
|
interface EndPointConfig {
|
|
31
31
|
host: string;
|
nginstack__devops/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/nginstack__devops",
|
|
3
|
-
"version": "71.0.
|
|
3
|
+
"version": "71.0.2",
|
|
4
4
|
"description": "TypeScript definitions for @nginstack/devops",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nginstack__devops",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"contributors": [
|
|
8
8
|
{
|
|
9
9
|
"name": "Renato Ribeiro",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
10
|
+
"githubUsername": "Henato",
|
|
11
|
+
"url": "https://github.com/Henato"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"name": "Paulo Moreno",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
15
|
+
"githubUsername": "paulocmoreno",
|
|
16
|
+
"url": "https://github.com/paulocmoreno"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
"name": "Ricardo Cavalcante",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
20
|
+
"githubUsername": "oficial",
|
|
21
|
+
"url": "https://github.com/oficial"
|
|
22
22
|
}
|
|
23
23
|
],
|
|
24
24
|
"main": "",
|
|
@@ -32,6 +32,6 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@types/nginstack__engine": "*"
|
|
34
34
|
},
|
|
35
|
-
"typesPublisherContentHash": "
|
|
36
|
-
"typeScriptVersion": "4.
|
|
35
|
+
"typesPublisherContentHash": "5cb85949bdc182951a4f04ec19ff3818b976021d44edfc8ecc6aeafd41a138b2",
|
|
36
|
+
"typeScriptVersion": "4.5"
|
|
37
37
|
}
|