jsegd-fluig-types 1.0.53 → 1.0.54
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/package.json +5 -3
- package/types/index.d.ts +10 -8
- package/types/java/com.fasterxml.d.ts +90 -0
- package/types/java/java.d.ts +577 -103
- package/types/java/java.lang.d.ts +0 -9
- package/types/java/javax.d.ts +17 -0
- package/types/fluig/ECMWorkflowEngineService.java +0 -1441
- package/types/fluig/ECMWorkflowEngineService.wsdl +0 -1764
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsegd-fluig-types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.54",
|
|
4
4
|
"description": "Definições de tipos TypeScript para desenvolvimento na plataforma Fluig - Inclui APIs, SDK, datasets, workflows e webservices",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fluig",
|
|
@@ -37,7 +37,9 @@
|
|
|
37
37
|
"./dataset": "./types/fluig/fluig.dataset.d.ts",
|
|
38
38
|
"./api": "./types/fluig/fluig.api.d.ts",
|
|
39
39
|
"./java": "./types/java/java.d.ts",
|
|
40
|
-
"./java
|
|
40
|
+
"./java.lang": "./types/java/java.lang.d.ts",
|
|
41
|
+
"./com.fasterxml": "./types/java/com.fasterxml.d.ts",
|
|
42
|
+
"./javax": "./types/java/javax.d.ts"
|
|
41
43
|
},
|
|
42
44
|
"typesVersions": {
|
|
43
45
|
">=3.0": {
|
|
@@ -47,7 +49,7 @@
|
|
|
47
49
|
}
|
|
48
50
|
},
|
|
49
51
|
"engines": {
|
|
50
|
-
"node": ">=
|
|
52
|
+
"node": ">=12.0.0"
|
|
51
53
|
},
|
|
52
54
|
"scripts": {
|
|
53
55
|
"test": "echo \"No tests needed for type definitions\" && exit 0",
|
package/types/index.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
|
|
1
|
+
export * from './fluig/fluig.api'
|
|
2
|
+
export * from './fluig/fluig.backend'
|
|
3
|
+
export * from './fluig/fluig.dataset'
|
|
4
|
+
export * from './fluig/fluig.frontend'
|
|
5
|
+
export * from './fluig/fluig.sdk'
|
|
6
|
+
export * from './fluig/fluig.webservice'
|
|
7
|
+
export * from './java/com.fasterxml'
|
|
8
|
+
export * from './java/java'
|
|
9
|
+
export * from './java/java.lang'
|
|
10
|
+
export * from './java/javax'
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
namespace com {
|
|
3
|
+
namespace fasterxml.jackson.databind {
|
|
4
|
+
class ObjectMapper extends java.lang.Object {
|
|
5
|
+
constructor()
|
|
6
|
+
writeValueAsString(value: unknown): java.lang.String
|
|
7
|
+
readValue<T>(content: java.lang.String, valueType: new () => T): T
|
|
8
|
+
readTree(content: java.lang.String): com.fasterxml.jackson.databind.JsonNode
|
|
9
|
+
createObjectNode(): com.fasterxml.jackson.databind.ObjectNode
|
|
10
|
+
createArrayNode(): com.fasterxml.jackson.databind.ArrayNode
|
|
11
|
+
configure(feature: com.fasterxml.jackson.databind.SerializationFeature, state: boolean): com.fasterxml.jackson.databind.ObjectMapper
|
|
12
|
+
enable(feature: com.fasterxml.jackson.databind.DeserializationFeature): com.fasterxml.jackson.databind.ObjectMapper
|
|
13
|
+
disable(feature: com.fasterxml.jackson.databind.DeserializationFeature): com.fasterxml.jackson.databind.ObjectMapper
|
|
14
|
+
writerWithDefaultPrettyPrinter(): com.fasterxml.jackson.databind.ObjectWriter
|
|
15
|
+
readerFor(valueType: new () => unknown): com.fasterxml.jackson.databind.ObjectReader
|
|
16
|
+
registerModule(module: com.fasterxml.jackson.databind.Module): com.fasterxml.jackson.databind.ObjectMapper
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
class ObjectWriter extends java.lang.Object {
|
|
20
|
+
writeValueAsString(value: unknown): java.lang.String
|
|
21
|
+
withDefaultPrettyPrinter(): com.fasterxml.jackson.databind.ObjectWriter
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
class ObjectReader extends java.lang.Object {
|
|
25
|
+
readValue<T>(content: java.lang.String): T
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
class JsonNode extends java.lang.Object {
|
|
29
|
+
get(fieldName: java.lang.String): JsonNode
|
|
30
|
+
get(index: number): JsonNode
|
|
31
|
+
path(fieldName: java.lang.String): JsonNode
|
|
32
|
+
asText(): java.lang.String
|
|
33
|
+
asInt(): number
|
|
34
|
+
asBoolean(): boolean
|
|
35
|
+
isNull(): boolean
|
|
36
|
+
size(): number
|
|
37
|
+
isObject(): boolean
|
|
38
|
+
isArray(): boolean
|
|
39
|
+
fieldNames(): java.util.Iterator<java.lang.String>
|
|
40
|
+
elements(): java.util.Iterator<JsonNode>
|
|
41
|
+
toString(): java.lang.String
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
class ObjectNode extends JsonNode {
|
|
45
|
+
set(field: java.lang.String, value: JsonNode): JsonNode
|
|
46
|
+
put(field: java.lang.String, value: java.lang.String): void
|
|
47
|
+
put(field: java.lang.String, value: number): void
|
|
48
|
+
remove(field: java.lang.String): JsonNode
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
class ArrayNode extends JsonNode {
|
|
52
|
+
add(node: JsonNode): void
|
|
53
|
+
add(value: java.lang.String): void
|
|
54
|
+
remove(index: number): JsonNode
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
class JsonProcessingException extends java.lang.Throwable {
|
|
58
|
+
constructor(message: java.lang.String)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
interface Module {
|
|
62
|
+
getModuleName(): java.lang.String
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
enum SerializationFeature {
|
|
66
|
+
INDENT_OUTPUT,
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
enum DeserializationFeature {
|
|
70
|
+
ACCEPT_SINGLE_VALUE_AS_ARRAY,
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
namespace fasterxml.jackson.core {
|
|
75
|
+
enum JsonToken {
|
|
76
|
+
START_OBJECT,
|
|
77
|
+
END_OBJECT,
|
|
78
|
+
START_ARRAY,
|
|
79
|
+
END_ARRAY,
|
|
80
|
+
FIELD_NAME,
|
|
81
|
+
VALUE_STRING,
|
|
82
|
+
VALUE_NUMBER_INT,
|
|
83
|
+
VALUE_NUMBER_FLOAT,
|
|
84
|
+
VALUE_TRUE,
|
|
85
|
+
VALUE_FALSE,
|
|
86
|
+
VALUE_NULL,
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|