Skip to content

Commit f525aa5

Browse files
committed
Merge branch 'main' into feat/edge_drift
2 parents 96fe117 + 7b97d8e commit f525aa5

File tree

1,163 files changed

+16584
-9312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,163 files changed

+16584
-9312
lines changed

.github/workflows/integration-tests-python.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ permissions:
1414
contents: read
1515

1616
jobs:
17-
integration_tests_python:
17+
integration_tests:
1818
runs-on: ubuntu-latest
19-
2019
steps:
2120
- name: Checkout repository
2221
uses: actions/checkout@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ testem.log
3636
/typings
3737
# Byte-compiled / optimized / DLL files
3838
__pycache__/
39+
.pytest_cache/
3940
*.py[cod]
4041

4142
# System Files
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.9.0
1+
7.13.0

clients/dart/credential_issuance_client/lib/src/serializers.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ Serializers serializers = (_$serializers.toBuilder()
173173
..add(const OneOfSerializer())
174174
..add(const AnyOfSerializer())
175175
..add(const DateSerializer())
176-
..add(Iso8601DateTimeSerializer()))
177-
.build();
176+
..add(Iso8601DateTimeSerializer())
177+
).build();
178178

179179
Serializers standardSerializers =
180180
(serializers.toBuilder()..addPlugin(StandardJsonPlugin())).build();

clients/dart/credential_issuance_client/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ description: Affinidi TDK dart client for Affinidi CREDENTIAL ISSUANCE
44
homepage: https://github.com/affinidi/affinidi-tdk
55

66
environment:
7-
sdk: '>=2.15.0 <4.0.0'
7+
sdk: '>=2.18.0 <4.0.0'
88

99
dependencies:
10-
dio: '^5.2.0'
10+
dio: '^5.7.0'
1111
one_of: '>=1.5.0 <2.0.0'
1212
one_of_serializer: '>=1.5.0 <2.0.0'
1313
built_value: '>=8.4.0 <9.0.0'
@@ -16,4 +16,4 @@ dependencies:
1616
dev_dependencies:
1717
built_value_generator: '>=8.4.0 <9.0.0'
1818
build_runner: any
19-
test: ^1.16.0
19+
test: '^1.16.0'

clients/dart/credential_verification_client/.openapi-generator/FILES

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ doc/VerifyCredentialInput.md
3535
doc/VerifyCredentialOutput.md
3636
doc/VerifyPresentationInput.md
3737
doc/VerifyPresentationOutput.md
38-
doc/VerifyPresentationOutputErrors.md
3938
doc/W3cCredentialStatus.md
4039
doc/W3cProof.md
4140
lib/affinidi_tdk_credential_verification_client.dart
@@ -80,7 +79,6 @@ lib/src/model/verify_credential_input.dart
8079
lib/src/model/verify_credential_output.dart
8180
lib/src/model/verify_presentation_input.dart
8281
lib/src/model/verify_presentation_output.dart
83-
lib/src/model/verify_presentation_output_errors.dart
8482
lib/src/model/w3c_credential_status.dart
8583
lib/src/model/w3c_proof.dart
8684
lib/src/serializers.dart
@@ -117,7 +115,6 @@ test/validate_jwt_output_test.dart
117115
test/verify_credential_input_test.dart
118116
test/verify_credential_output_test.dart
119117
test/verify_presentation_input_test.dart
120-
test/verify_presentation_output_errors_test.dart
121118
test/verify_presentation_output_test.dart
122119
test/w3c_credential_status_test.dart
123120
test/w3c_proof_test.dart
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.9.0
1+
7.13.0

clients/dart/credential_verification_client/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ All URIs are relative to *https://apse1.api.affinidi.io/ver*
109109
- [VerifyCredentialOutput](doc/VerifyCredentialOutput.md)
110110
- [VerifyPresentationInput](doc/VerifyPresentationInput.md)
111111
- [VerifyPresentationOutput](doc/VerifyPresentationOutput.md)
112-
- [VerifyPresentationOutputErrors](doc/VerifyPresentationOutputErrors.md)
113112
- [W3cCredentialStatus](doc/W3cCredentialStatus.md)
114113
- [W3cProof](doc/W3cProof.md)
115114

clients/dart/credential_verification_client/doc/VerifyPresentationOutput.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import 'package:affinidi_tdk_credential_verification_client/api.dart';
88

99
## Properties
1010

11-
| Name | Type | Description | Notes |
12-
| ----------- | ----------------------------------------------------------------------- | ------------------- | ----- |
13-
| **errors** | [**VerifyPresentationOutputErrors**](VerifyPresentationOutputErrors.md) | |
14-
| **isValid** | **bool** | Verification result |
11+
| Name | Type | Description | Notes |
12+
| ----------- | --------------------------- | ------------------------- | ----- |
13+
| **errors** | **BuiltList&lt;String&gt;** | Error of the verification |
14+
| **isValid** | **bool** | Verification result |
1515

1616
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

clients/dart/credential_verification_client/doc/VerifyPresentationOutputErrors.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)