Skip to content

Commit 4b2fccc

Browse files
committed
Implement tx_ack_notification_url field for HTTP integration.
1 parent 1a8283b commit 4b2fccc

File tree

10 files changed

+430
-332
lines changed

10 files changed

+430
-332
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- ./:/chirpstack-api
1717
chirpstack-api-js:
1818
environment:
19-
- VERSION=3.0.13
19+
- VERSION=3.0.14
2020
build:
2121
context: .
2222
dockerfile: Dockerfile-js
@@ -25,7 +25,7 @@ services:
2525
- ./:/chirpstack-api
2626
chirpstack-api-rust:
2727
environment:
28-
- VERSION=3.0.13
28+
- VERSION=3.0.14
2929
build:
3030
context: .
3131
dockerfile: Dockerfile-rust

go/as/external/api/application.pb.go

Lines changed: 128 additions & 118 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/as/external/api/application_pb.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,9 @@ export class HTTPIntegration extends jspb.Message {
328328
getLocationNotificationUrl(): string;
329329
setLocationNotificationUrl(value: string): void;
330330

331+
getTxAckNotificationUrl(): string;
332+
setTxAckNotificationUrl(value: string): void;
333+
331334
serializeBinary(): Uint8Array;
332335
toObject(includeInstance?: boolean): HTTPIntegration.AsObject;
333336
static toObject(includeInstance: boolean, msg: HTTPIntegration): HTTPIntegration.AsObject;
@@ -348,6 +351,7 @@ export namespace HTTPIntegration {
348351
errorNotificationUrl: string,
349352
statusNotificationUrl: string,
350353
locationNotificationUrl: string,
354+
txAckNotificationUrl: string,
351355
}
352356
}
353357

js/as/external/api/application_pb.js

Lines changed: 28 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chirpstack/chirpstack-api",
3-
"version": "3.0.13",
3+
"version": "3.0.14",
44
"description": "Chirpstack JS and TS API",
55
"license": "MIT",
66
"devDependencies": {

protobuf/as/external/api/application.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,9 @@ message HTTPIntegration {
324324

325325
// The URL to call for location notifications.
326326
string location_notification_url = 8 [json_name = "locationNotificationURL"];
327+
328+
// The URL to call for tx ack notifications (downlink acknowledged by gateway for transmission).
329+
string tx_ack_notification_url = 9 [json_name = "txAckNotificationURL"];
327330
}
328331

329332
message CreateHTTPIntegrationRequest {

rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "chirpstack_api"
33
description = "ChirpStack Protobuf / gRPC API definitions."
4-
version = "3.0.13"
4+
version = "3.0.14"
55
authors = ["Orne Brocaar <[email protected]>"]
66
license = "MIT"
77
homepage = "https://www.chirpstack.io"

rust/src/gen/as_pb/external/api/application.rs

Lines changed: 258 additions & 208 deletions
Large diffs are not rendered by default.

swagger/as/external/api/application.swagger.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,10 @@
894894
"locationNotificationURL": {
895895
"type": "string",
896896
"description": "The URL to call for location notifications."
897+
},
898+
"txAckNotificationURL": {
899+
"type": "string",
900+
"description": "The URL to call for tx ack notifications (downlink acknowledged by gateway for transmission)."
897901
}
898902
}
899903
},

0 commit comments

Comments
 (0)