@giteeteam/apps-manifest 0.8.6 → 0.8.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/lib/schema/messageQueues.json +5 -8
- package/lib/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3,9 +3,7 @@
|
|
|
3
3
|
"type": "array",
|
|
4
4
|
"minItems": 1,
|
|
5
5
|
"uniqueItems": true,
|
|
6
|
-
"uniqueItemProperties": [
|
|
7
|
-
"key"
|
|
8
|
-
],
|
|
6
|
+
"uniqueItemProperties": ["key"],
|
|
9
7
|
"items": {
|
|
10
8
|
"type": "object",
|
|
11
9
|
"properties": {
|
|
@@ -17,13 +15,12 @@
|
|
|
17
15
|
},
|
|
18
16
|
"endpoint": {
|
|
19
17
|
"type": "string"
|
|
18
|
+
},
|
|
19
|
+
"namespace": {
|
|
20
|
+
"type": "string"
|
|
20
21
|
}
|
|
21
22
|
},
|
|
22
|
-
"required": [
|
|
23
|
-
"key",
|
|
24
|
-
"type",
|
|
25
|
-
"endpoint"
|
|
26
|
-
]
|
|
23
|
+
"required": ["key", "type", "endpoint"]
|
|
27
24
|
},
|
|
28
25
|
"errorMessage": {
|
|
29
26
|
"uniqueItemProperties": "key must be unique"
|
package/lib/types.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export interface IConsumer {
|
|
|
82
82
|
}
|
|
83
83
|
export interface IMessageQueueConsumer extends IConsumer {
|
|
84
84
|
messageQueue: string;
|
|
85
|
+
tag?: string;
|
|
85
86
|
}
|
|
86
87
|
export interface IScheduledTrigger {
|
|
87
88
|
key: string;
|
|
@@ -125,6 +126,7 @@ export interface IMessageQueue {
|
|
|
125
126
|
key: string;
|
|
126
127
|
type: string;
|
|
127
128
|
endpoint: string;
|
|
129
|
+
namespace?: string;
|
|
128
130
|
}
|
|
129
131
|
export interface IManifest {
|
|
130
132
|
app: IManifestApp;
|