Skip to content

Commit f4aac73

Browse files
committed
fix: update tests to use orchestrator namespace instead of appframework
1 parent ffc4e87 commit f4aac73

35 files changed

+191
-1292
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$ref": "#/definitions/AppResult",
4+
"definitions": {
5+
"AppResult": {
6+
"type": "object",
7+
"properties": {
8+
"id": {
9+
"type": "string"
10+
},
11+
"name": {
12+
"type": "string"
13+
},
14+
"label": {
15+
"type": "string"
16+
},
17+
"description": {
18+
"type": ["string", "null"]
19+
},
20+
"templateId": {
21+
"type": "string"
22+
},
23+
"status": {
24+
"type": "string"
25+
},
26+
"created": {
27+
"type": "string"
28+
},
29+
"modified": {
30+
"type": "string"
31+
}
32+
},
33+
"additionalProperties": true
34+
}
35+
}
36+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$ref": "#/definitions/TemplateResult",
4+
"definitions": {
5+
"TemplateResult": {
6+
"type": "object",
7+
"properties": {
8+
"id": {
9+
"type": "string"
10+
},
11+
"name": {
12+
"type": "string"
13+
},
14+
"label": {
15+
"type": "string"
16+
},
17+
"templateId": {
18+
"type": "string"
19+
},
20+
"templateType": {
21+
"type": "string"
22+
},
23+
"templateSubtype": {
24+
"type": ["string", "null"]
25+
},
26+
"applicationSourceId": {
27+
"type": ["string", "null"]
28+
}
29+
},
30+
"additionalProperties": true
31+
}
32+
}
33+
}

schemas-backup/schema.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"commands": {
3+
"orchestrator:list:template": {
4+
"description": "List templates in the org",
5+
"type": "object",
6+
"properties": {
7+
"templates": {
8+
"type": "array",
9+
"items": {
10+
"type": "object",
11+
"properties": {
12+
"id": {
13+
"type": "string"
14+
},
15+
"name": {
16+
"type": "string"
17+
},
18+
"label": {
19+
"type": "string"
20+
},
21+
"templateType": {
22+
"type": "string"
23+
},
24+
"templateSubtype": {
25+
"type": "string"
26+
}
27+
}
28+
}
29+
}
30+
}
31+
}
32+
},
33+
"hooks": {}
34+
}

stderr23efefeb393b2a18.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
› Error: command appframework:template:display not found

stderr7b1ce2fcfd13f3b2.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
› Error: Command appframework:template:display not found.

stderrb567a4295cb02469.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
› Error: Command appframework:template:list not found.

stderrc13823d531375c25.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
› Error: command appframework:template:display not found

stderre6a5d361c3ed5507.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
› Error: Command appframework:template:display not found.

stderreaa497230ee0f7bd.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
› Error: Command appframework:template:list not found.

stdout35f339eeddcba677.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)