Skip to content

Commit c660a96

Browse files
committed
Generate v4.7.0 code.
1 parent 0e69103 commit c660a96

File tree

6 files changed

+398
-346
lines changed

6 files changed

+398
-346
lines changed

api/device.pb.go

+361-343
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chirpstack

Submodule chirpstack updated 269 files

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/chirpstack/chirpstack-rest-api
33
go 1.18
44

55
require (
6-
github.com/chirpstack/chirpstack/api/go/v4 v4.6.0
6+
github.com/chirpstack/chirpstack/api/go/v4 v4.7.0
77
github.com/goreleaser/goreleaser v1.10.2
88
github.com/goreleaser/nfpm/v2 v2.16.0
99
github.com/gorilla/handlers v1.5.1

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ github.com/chirpstack/chirpstack/api/go/v4 v4.6.0-test.4 h1:m8deHrKeSgBI3HRB4UVH
235235
github.com/chirpstack/chirpstack/api/go/v4 v4.6.0-test.4/go.mod h1:6+68s1PGHq2QWZ216RTwXhp7h1vCiMc6kX3f4s74ZzQ=
236236
github.com/chirpstack/chirpstack/api/go/v4 v4.6.0 h1:l+nr/QhFab1y9E8LVOJq/lDG+o0+mShcZOCNBvFYXUA=
237237
github.com/chirpstack/chirpstack/api/go/v4 v4.6.0/go.mod h1:6+68s1PGHq2QWZ216RTwXhp7h1vCiMc6kX3f4s74ZzQ=
238+
github.com/chirpstack/chirpstack/api/go/v4 v4.7.0 h1:LgtwvUm/pDvmBYgVc62khybuFdXnx0Hyj9MfKGkXufI=
239+
github.com/chirpstack/chirpstack/api/go/v4 v4.7.0/go.mod h1:6+68s1PGHq2QWZ216RTwXhp7h1vCiMc6kX3f4s74ZzQ=
238240
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
239241
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
240242
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=

openapiv2/api/device.swagger.json

+32
Original file line numberDiff line numberDiff line change
@@ -1227,6 +1227,10 @@
12271227
"deviceActivation": {
12281228
"$ref": "#/definitions/apiDeviceActivation",
12291229
"description": "Device activation object."
1230+
},
1231+
"joinServerContext": {
1232+
"$ref": "#/definitions/commonJoinServerContext",
1233+
"description": "Join-Server context.\nA non-empty value indicatest that ChirpStack does not have access to\nthe AppSKey and that the encryption / decryption of the payloads is\nthe responsibility of the end-application."
12301234
}
12311235
}
12321236
},
@@ -1400,6 +1404,34 @@
14001404
"default": "CLASS_A",
14011405
"description": " - CLASS_A: Class-A.\n - CLASS_B: Class-B.\n - CLASS_C: Class-C."
14021406
},
1407+
"commonJoinServerContext": {
1408+
"type": "object",
1409+
"properties": {
1410+
"sessionKeyId": {
1411+
"type": "string",
1412+
"description": "Session-key ID."
1413+
},
1414+
"appSKey": {
1415+
"$ref": "#/definitions/commonKeyEnvelope",
1416+
"description": "AppSKey envelope."
1417+
}
1418+
},
1419+
"description": "Join-Server context."
1420+
},
1421+
"commonKeyEnvelope": {
1422+
"type": "object",
1423+
"properties": {
1424+
"kekLabel": {
1425+
"type": "string",
1426+
"description": "KEK label."
1427+
},
1428+
"aesKey": {
1429+
"type": "string",
1430+
"format": "byte",
1431+
"description": "AES key (when the kek_label is set, this value must first be decrypted)."
1432+
}
1433+
}
1434+
},
14031435
"commonMetric": {
14041436
"type": "object",
14051437
"properties": {

ui/api.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)