diff --git a/bruno/GeBox/Instance/Add.bru b/bruno/GeBox/Instance/Add.bru new file mode 100644 index 0000000..34a0f81 --- /dev/null +++ b/bruno/GeBox/Instance/Add.bru @@ -0,0 +1,28 @@ +meta { + name: Add + type: http + seq: 1 +} + +post { + url: http://localhost:11000/api/gebox/instance/:alder + body: json + auth: inherit +} + +params:path { + alder: add +} + +body:json { + { + "instance":"DAP Personal Website", + "domain":"ditaajipratama.net", + "product":1, + "status":"pending" + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Instance/Detail.bru b/bruno/GeBox/Instance/Detail.bru new file mode 100644 index 0000000..fd90f4b --- /dev/null +++ b/bruno/GeBox/Instance/Detail.bru @@ -0,0 +1,23 @@ +meta { + name: Detail + type: http + seq: 3 +} + +post { + url: http://localhost:11000/api/gebox/instance/:alder + body: json + auth: inherit +} + +params:path { + alder: detail +} + +body:json { + {"key":1} +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Instance/Edit.bru b/bruno/GeBox/Instance/Edit.bru new file mode 100644 index 0000000..369ef6f --- /dev/null +++ b/bruno/GeBox/Instance/Edit.bru @@ -0,0 +1,29 @@ +meta { + name: Edit + type: http + seq: 4 +} + +post { + url: http://localhost:11000/api/gebox/instance/:alder + body: json + auth: inherit +} + +params:path { + alder: edit +} + +body:json { + { + "key":1, + "instance":"DAP Personal Website", + "domain":"ditaajipratama.net", + "product":1, + "status":"pending" + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Instance/List.bru b/bruno/GeBox/Instance/List.bru new file mode 100644 index 0000000..a0c5b65 --- /dev/null +++ b/bruno/GeBox/Instance/List.bru @@ -0,0 +1,23 @@ +meta { + name: List + type: http + seq: 2 +} + +post { + url: http://localhost:11000/api/gebox/instance/:alder + body: json + auth: inherit +} + +params:path { + alder: list +} + +body:json { + {} +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Instance/Remove.bru b/bruno/GeBox/Instance/Remove.bru new file mode 100644 index 0000000..effcb51 --- /dev/null +++ b/bruno/GeBox/Instance/Remove.bru @@ -0,0 +1,25 @@ +meta { + name: Remove + type: http + seq: 5 +} + +post { + url: http://localhost:11000/api/gebox/instance/:alder + body: json + auth: inherit +} + +params:path { + alder: remove +} + +body:json { + { + "key":1 + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Instance/folder.bru b/bruno/GeBox/Instance/folder.bru new file mode 100644 index 0000000..ce0c43e --- /dev/null +++ b/bruno/GeBox/Instance/folder.bru @@ -0,0 +1,8 @@ +meta { + name: Instance + seq: 2 +} + +auth { + mode: inherit +} diff --git a/bruno/GeBox/Package/Add.bru b/bruno/GeBox/Package/Add.bru new file mode 100644 index 0000000..2cc5187 --- /dev/null +++ b/bruno/GeBox/Package/Add.bru @@ -0,0 +1,26 @@ +meta { + name: Add + type: http + seq: 2 +} + +post { + url: http://localhost:11000/api/gebox/package/:alder + body: json + auth: inherit +} + +params:path { + alder: add +} + +body:json { + { + "name":"My Package", + "desc":null + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Detail.bru b/bruno/GeBox/Package/Detail.bru new file mode 100644 index 0000000..1c6fbe7 --- /dev/null +++ b/bruno/GeBox/Package/Detail.bru @@ -0,0 +1,23 @@ +meta { + name: Detail + type: http + seq: 4 +} + +post { + url: http://localhost:11000/api/gebox/package/:alder + body: json + auth: inherit +} + +params:path { + alder: detail +} + +body:json { + {"key":1} +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Edit.bru b/bruno/GeBox/Package/Edit.bru new file mode 100644 index 0000000..c60299e --- /dev/null +++ b/bruno/GeBox/Package/Edit.bru @@ -0,0 +1,27 @@ +meta { + name: Edit + type: http + seq: 5 +} + +post { + url: http://localhost:11000/api/gebox/package/:alder + body: json + auth: inherit +} + +params:path { + alder: edit +} + +body:json { + { + "key":1, + "name":"My Package", + "desc":null + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/List.bru b/bruno/GeBox/Package/List.bru new file mode 100644 index 0000000..a26b13f --- /dev/null +++ b/bruno/GeBox/Package/List.bru @@ -0,0 +1,23 @@ +meta { + name: List + type: http + seq: 3 +} + +post { + url: http://localhost:11000/api/gebox/package/:alder + body: json + auth: inherit +} + +params:path { + alder: list +} + +body:json { + {} +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Remove.bru b/bruno/GeBox/Package/Remove.bru new file mode 100644 index 0000000..0c19d87 --- /dev/null +++ b/bruno/GeBox/Package/Remove.bru @@ -0,0 +1,25 @@ +meta { + name: Remove + type: http + seq: 6 +} + +post { + url: http://localhost:11000/api/gebox/package/:alder + body: json + auth: inherit +} + +params:path { + alder: remove +} + +body:json { + { + "key":1 + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Version/Add.bru b/bruno/GeBox/Package/Version/Add.bru new file mode 100644 index 0000000..808c54b --- /dev/null +++ b/bruno/GeBox/Package/Version/Add.bru @@ -0,0 +1,27 @@ +meta { + name: Add + type: http + seq: 1 +} + +post { + url: http://localhost:11000/api/gebox/package/version/:alder + body: json + auth: inherit +} + +params:path { + alder: add +} + +body:json { + { + "package":1, + "version":"v0.1", + "release":"2020-01-01 00:00:00" + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Version/Detail.bru b/bruno/GeBox/Package/Version/Detail.bru new file mode 100644 index 0000000..82eff98 --- /dev/null +++ b/bruno/GeBox/Package/Version/Detail.bru @@ -0,0 +1,23 @@ +meta { + name: Detail + type: http + seq: 3 +} + +post { + url: http://localhost:11000/api/gebox/package/version/:alder + body: json + auth: inherit +} + +params:path { + alder: detail +} + +body:json { + {"key":1} +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Version/Edit.bru b/bruno/GeBox/Package/Version/Edit.bru new file mode 100644 index 0000000..d6eade6 --- /dev/null +++ b/bruno/GeBox/Package/Version/Edit.bru @@ -0,0 +1,28 @@ +meta { + name: Edit + type: http + seq: 4 +} + +post { + url: http://localhost:11000/api/gebox/package/version/:alder + body: json + auth: inherit +} + +params:path { + alder: edit +} + +body:json { + { + "key":1, + "package":1, + "version":"v0.1", + "release":"2020-01-01 00:00:00" + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Version/List.bru b/bruno/GeBox/Package/Version/List.bru new file mode 100644 index 0000000..030a9a0 --- /dev/null +++ b/bruno/GeBox/Package/Version/List.bru @@ -0,0 +1,23 @@ +meta { + name: List + type: http + seq: 2 +} + +post { + url: http://localhost:11000/api/gebox/package/version/:alder + body: json + auth: inherit +} + +params:path { + alder: list +} + +body:json { + {} +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Version/Remove.bru b/bruno/GeBox/Package/Version/Remove.bru new file mode 100644 index 0000000..03640d2 --- /dev/null +++ b/bruno/GeBox/Package/Version/Remove.bru @@ -0,0 +1,25 @@ +meta { + name: Remove + type: http + seq: 5 +} + +post { + url: http://localhost:11000/api/gebox/package/version/:alder + body: json + auth: inherit +} + +params:path { + alder: remove +} + +body:json { + { + "key":1 + } +} + +settings { + encodeUrl: true +} diff --git a/bruno/GeBox/Package/Version/folder.bru b/bruno/GeBox/Package/Version/folder.bru new file mode 100644 index 0000000..67a5188 --- /dev/null +++ b/bruno/GeBox/Package/Version/folder.bru @@ -0,0 +1,8 @@ +meta { + name: Version + seq: 1 +} + +auth { + mode: inherit +} diff --git a/bruno/GeBox/Package/folder.bru b/bruno/GeBox/Package/folder.bru new file mode 100644 index 0000000..17bcb9d --- /dev/null +++ b/bruno/GeBox/Package/folder.bru @@ -0,0 +1,8 @@ +meta { + name: Package + seq: 1 +} + +auth { + mode: inherit +} diff --git a/bruno/GeBox/folder.bru b/bruno/GeBox/folder.bru new file mode 100644 index 0000000..97fd72a --- /dev/null +++ b/bruno/GeBox/folder.bru @@ -0,0 +1,8 @@ +meta { + name: GeBox + seq: 1 +} + +auth { + mode: inherit +}