Skip to content

Commit 53c404c

Browse files
committed
Describe review_aip_deletion endpoint
1 parent eea4571 commit 53c404c

16 files changed

+1569
-509
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Tests
1+
name: Tests/
22
on:
33
pull_request:
44
push:
@@ -46,5 +46,5 @@ jobs:
4646
uses: actions/setup-go@v5
4747
- name: Check
4848
run: |
49-
go mod tidy
50-
git diff --name-only --exit-code || (echo "Please run 'go mod tidy'."; exit 1)
49+
go mod tidy -diff
50+
cd example && go mod tidy -diff

example/adapter/adapter.go

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

example/go.mod

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ module go.artefactual.dev/ssclient/example
33
go 1.25.1
44

55
require (
6-
github.com/microsoft/kiota-abstractions-go v1.7.0
6+
github.com/microsoft/kiota-abstractions-go v1.9.3
77
go.artefactual.dev/ssclient v0.0.0-00010101000000-000000000000
88
go.uber.org/mock v0.6.0
99
)
1010

1111
require (
12-
github.com/cjlapao/common-go v0.0.39 // indirect
1312
github.com/davecgh/go-spew v1.1.1 // indirect
14-
github.com/go-logr/logr v1.4.1 // indirect
13+
github.com/go-logr/logr v1.4.2 // indirect
1514
github.com/go-logr/stdr v1.2.2 // indirect
1615
github.com/google/uuid v1.6.0 // indirect
1716
github.com/microsoft/kiota-http-go v1.4.5 // indirect
@@ -20,11 +19,12 @@ require (
2019
github.com/microsoft/kiota-serialization-multipart-go v1.0.0 // indirect
2120
github.com/microsoft/kiota-serialization-text-go v1.0.0 // indirect
2221
github.com/pmezard/go-difflib v1.0.0 // indirect
23-
github.com/std-uritemplate/std-uritemplate/go v0.0.57 // indirect
24-
github.com/stretchr/testify v1.9.0 // indirect
25-
go.opentelemetry.io/otel v1.24.0 // indirect
26-
go.opentelemetry.io/otel/metric v1.24.0 // indirect
27-
go.opentelemetry.io/otel/trace v1.24.0 // indirect
22+
github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.3 // indirect
23+
github.com/stretchr/testify v1.10.0 // indirect
24+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
25+
go.opentelemetry.io/otel v1.35.0 // indirect
26+
go.opentelemetry.io/otel/metric v1.35.0 // indirect
27+
go.opentelemetry.io/otel/trace v1.35.0 // indirect
2828
gopkg.in/yaml.v3 v3.0.1 // indirect
2929
)
3030

0 commit comments

Comments
 (0)