Skip to content

Commit

Permalink
feat: update client all (#353)
Browse files Browse the repository at this point in the history
Co-authored-by: Marat Shakirov <marat.s@affinidi.com>
  • Loading branch information
github-actions[bot] and maratsh authored Dec 6, 2024
1 parent d147fb3 commit 8a9dc65
Show file tree
Hide file tree
Showing 1,014 changed files with 245,149 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,3 @@ lib/model/vc_claimed_error.dart
lib/model/well_known_open_id_credential_issuer_response.dart
lib/model/well_known_open_id_credential_issuer_response_credentials_supported_inner.dart
pubspec.yaml
test/change_credential_status_input_test.dart
test/default_api_test.dart
test/flow_data_status_lists_details_inner_test.dart
test/flow_data_test.dart
test/get_status_list_result_dto_test.dart
test/list_issuance_record_response_test.dart
test/start_issuance_input_data_inner_status_list_details_inner_test.dart
2 changes: 1 addition & 1 deletion clients/dart/credential_issuance_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If this Dart package is published to Github, add the following dependency to you
```
dependencies:
affinidi_tdk_credential_issuance_client:
git: https://github.com/affinidi.com/affinidi-tdk.git
git: https://github.com/affinidi/affinidi-tdk.git
```

### Local
Expand Down
2 changes: 1 addition & 1 deletion clients/dart/credential_verification_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If this Dart package is published to Github, add the following dependency to you
```
dependencies:
affinidi_tdk_credential_verification_client:
git: https://github.com/affinidi.com/affinidi-tdk.git
git: https://github.com/affinidi/affinidi-tdk.git
```

### Local
Expand Down
2 changes: 1 addition & 1 deletion clients/dart/iam_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If this Dart package is published to Github, add the following dependency to you
```
dependencies:
affinidi_tdk_iam_client:
git: https://github.com/affinidi.com/affinidi-tdk.git
git: https://github.com/affinidi/affinidi-tdk.git
```

### Local
Expand Down
2 changes: 1 addition & 1 deletion clients/dart/iota_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If this Dart package is published to Github, add the following dependency to you
```
dependencies:
affinidi_tdk_iota_client:
git: https://github.com/affinidi.com/affinidi-tdk.git
git: https://github.com/affinidi/affinidi-tdk.git
```

### Local
Expand Down
2 changes: 1 addition & 1 deletion clients/dart/login_configuration_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If this Dart package is published to Github, add the following dependency to you
```
dependencies:
affinidi_tdk_login_configuration_client:
git: https://github.com/affinidi.com/affinidi-tdk.git
git: https://github.com/affinidi/affinidi-tdk.git
```

### Local
Expand Down
2 changes: 1 addition & 1 deletion clients/dart/wallets_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If this Dart package is published to Github, add the following dependency to you
```
dependencies:
affinidi_tdk_wallets_client:
git: https://github.com/affinidi.com/affinidi-tdk.git
git: https://github.com/affinidi/affinidi-tdk.git
```

### Local
Expand Down
15 changes: 15 additions & 0 deletions clients/php/credential-issuance-client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ref: https://github.com/github/gitignore/blob/master/Composer.gitignore

composer.phar
/vendor/

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock

# php-cs-fixer cache
.php_cs.cache
.php-cs-fixer.cache

# PHPUnit cache
.phpunit.result.cache
36 changes: 36 additions & 0 deletions clients/php/credential-issuance-client/.openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# IMPORTANT: this file is generated with the option `openapiGeneratorIgnoreList` enabled
# (--openapi-generator-ignore-list in CLI for example) so the entries below are pre-populated based
# on the input provided by the users and this file will be overwritten every time when the option is
# enabled (which is the exact opposite of the default behaviour to not overwrite
# .openapi-generator-ignore if the file exists).

# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md

# The following entries are pre-populated based on the input obtained via
# the option `openapiGeneratorIgnoreList` (--openapi-generator-ignore-list in CLI for example).
github
travis.yaml
git_push.sh
.gitlab-ci.yml
209 changes: 209 additions & 0 deletions clients/php/credential-issuance-client/.openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -0,0 +1,209 @@
.gitignore
.php-cs-fixer.dist.php
.travis.yml
README.md
composer.json
docs/Api/ConfigurationApi.md
docs/Api/CredentialsApi.md
docs/Api/DefaultApi.md
docs/Api/IssuanceApi.md
docs/Api/OfferApi.md
docs/Api/WellKnownApi.md
docs/Model/ActionForbiddenError.md
docs/Model/ActionForbiddenErrorDetailsInner.md
docs/Model/ChangeCredentialStatusInput.md
docs/Model/CorsGenerateCredentialsOK.md
docs/Model/CorsGetCredentialOfferOK.md
docs/Model/CorsGetWellKnownOpenIdCredentialIssuerOK.md
docs/Model/CreateCredentialInput.md
docs/Model/CreateIssuanceConfig400Response.md
docs/Model/CreateIssuanceConfigInput.md
docs/Model/CredentialIssuanceIdExistError.md
docs/Model/CredentialOfferClaimedError.md
docs/Model/CredentialOfferExpiredError.md
docs/Model/CredentialOfferResponse.md
docs/Model/CredentialOfferResponseGrants.md
docs/Model/CredentialOfferResponseGrantsUrnIetfParamsOauthGrantTypePreAuthorizedCode.md
docs/Model/CredentialOfferResponseGrantsUrnIetfParamsOauthGrantTypePreAuthorizedCodeTxCode.md
docs/Model/CredentialProof.md
docs/Model/CredentialResponse.md
docs/Model/CredentialResponseDeferred.md
docs/Model/CredentialResponseImmediate.md
docs/Model/CredentialResponseImmediateCNonceExpiresIn.md
docs/Model/CredentialResponseImmediateCredential.md
docs/Model/CredentialSubjectNotValidError.md
docs/Model/CredentialSupportedObject.md
docs/Model/DeferredCredentialInput.md
docs/Model/FlowData.md
docs/Model/FlowDataStatusListsDetailsInner.md
docs/Model/GenerateCredentials400Response.md
docs/Model/GetCredentialOffer400Response.md
docs/Model/GetStatusListResultDto.md
docs/Model/InvalidCredentialRequestError.md
docs/Model/InvalidCredentialTypeError.md
docs/Model/InvalidIssuerWalletError.md
docs/Model/InvalidJwtTokenError.md
docs/Model/InvalidParameterError.md
docs/Model/InvalidProofError.md
docs/Model/IssuanceConfigDto.md
docs/Model/IssuanceConfigListResponse.md
docs/Model/IssuanceConfigMiniDto.md
docs/Model/IssuanceStateResponse.md
docs/Model/ListIssuanceRecordResponse.md
docs/Model/ListIssuanceResponse.md
docs/Model/ListIssuanceResponseIssuancesInner.md
docs/Model/MissingHolderDidError.md
docs/Model/NotFoundError.md
docs/Model/ProjectCredentialConfigExistError.md
docs/Model/ProjectCredentialConfigNotExistError.md
docs/Model/StartIssuance400Response.md
docs/Model/StartIssuanceInput.md
docs/Model/StartIssuanceInputDataInner.md
docs/Model/StartIssuanceInputDataInnerMetaData.md
docs/Model/StartIssuanceInputDataInnerStatusListDetailsInner.md
docs/Model/StartIssuanceResponse.md
docs/Model/SupportedCredentialMetadata.md
docs/Model/SupportedCredentialMetadataDisplayInner.md
docs/Model/SupportedCredentialMetadataDisplayInnerLogo.md
docs/Model/UpdateIssuanceConfigInput.md
docs/Model/VcClaimedError.md
docs/Model/WellKnownOpenIdCredentialIssuerResponse.md
docs/Model/WellKnownOpenIdCredentialIssuerResponseCredentialsSupportedInner.md
lib/Api/ConfigurationApi.php
lib/Api/CredentialsApi.php
lib/Api/DefaultApi.php
lib/Api/IssuanceApi.php
lib/Api/OfferApi.php
lib/Api/WellKnownApi.php
lib/ApiException.php
lib/Configuration.php
lib/HeaderSelector.php
lib/Model/ActionForbiddenError.php
lib/Model/ActionForbiddenErrorDetailsInner.php
lib/Model/ChangeCredentialStatusInput.php
lib/Model/CorsGenerateCredentialsOK.php
lib/Model/CorsGetCredentialOfferOK.php
lib/Model/CorsGetWellKnownOpenIdCredentialIssuerOK.php
lib/Model/CreateCredentialInput.php
lib/Model/CreateIssuanceConfig400Response.php
lib/Model/CreateIssuanceConfigInput.php
lib/Model/CredentialIssuanceIdExistError.php
lib/Model/CredentialOfferClaimedError.php
lib/Model/CredentialOfferExpiredError.php
lib/Model/CredentialOfferResponse.php
lib/Model/CredentialOfferResponseGrants.php
lib/Model/CredentialOfferResponseGrantsUrnIetfParamsOauthGrantTypePreAuthorizedCode.php
lib/Model/CredentialOfferResponseGrantsUrnIetfParamsOauthGrantTypePreAuthorizedCodeTxCode.php
lib/Model/CredentialProof.php
lib/Model/CredentialResponse.php
lib/Model/CredentialResponseDeferred.php
lib/Model/CredentialResponseImmediate.php
lib/Model/CredentialResponseImmediateCNonceExpiresIn.php
lib/Model/CredentialResponseImmediateCredential.php
lib/Model/CredentialSubjectNotValidError.php
lib/Model/CredentialSupportedObject.php
lib/Model/DeferredCredentialInput.php
lib/Model/FlowData.php
lib/Model/FlowDataStatusListsDetailsInner.php
lib/Model/GenerateCredentials400Response.php
lib/Model/GetCredentialOffer400Response.php
lib/Model/GetStatusListResultDto.php
lib/Model/InvalidCredentialRequestError.php
lib/Model/InvalidCredentialTypeError.php
lib/Model/InvalidIssuerWalletError.php
lib/Model/InvalidJwtTokenError.php
lib/Model/InvalidParameterError.php
lib/Model/InvalidProofError.php
lib/Model/IssuanceConfigDto.php
lib/Model/IssuanceConfigListResponse.php
lib/Model/IssuanceConfigMiniDto.php
lib/Model/IssuanceStateResponse.php
lib/Model/ListIssuanceRecordResponse.php
lib/Model/ListIssuanceResponse.php
lib/Model/ListIssuanceResponseIssuancesInner.php
lib/Model/MissingHolderDidError.php
lib/Model/ModelInterface.php
lib/Model/NotFoundError.php
lib/Model/ProjectCredentialConfigExistError.php
lib/Model/ProjectCredentialConfigNotExistError.php
lib/Model/StartIssuance400Response.php
lib/Model/StartIssuanceInput.php
lib/Model/StartIssuanceInputDataInner.php
lib/Model/StartIssuanceInputDataInnerMetaData.php
lib/Model/StartIssuanceInputDataInnerStatusListDetailsInner.php
lib/Model/StartIssuanceResponse.php
lib/Model/SupportedCredentialMetadata.php
lib/Model/SupportedCredentialMetadataDisplayInner.php
lib/Model/SupportedCredentialMetadataDisplayInnerLogo.php
lib/Model/UpdateIssuanceConfigInput.php
lib/Model/VcClaimedError.php
lib/Model/WellKnownOpenIdCredentialIssuerResponse.php
lib/Model/WellKnownOpenIdCredentialIssuerResponseCredentialsSupportedInner.php
lib/ObjectSerializer.php
phpunit.xml.dist
test/Api/ConfigurationApiTest.php
test/Api/CredentialsApiTest.php
test/Api/DefaultApiTest.php
test/Api/IssuanceApiTest.php
test/Api/OfferApiTest.php
test/Api/WellKnownApiTest.php
test/Model/ActionForbiddenErrorDetailsInnerTest.php
test/Model/ActionForbiddenErrorTest.php
test/Model/ChangeCredentialStatusInputTest.php
test/Model/CorsGenerateCredentialsOKTest.php
test/Model/CorsGetCredentialOfferOKTest.php
test/Model/CorsGetWellKnownOpenIdCredentialIssuerOKTest.php
test/Model/CreateCredentialInputTest.php
test/Model/CreateIssuanceConfig400ResponseTest.php
test/Model/CreateIssuanceConfigInputTest.php
test/Model/CredentialIssuanceIdExistErrorTest.php
test/Model/CredentialOfferClaimedErrorTest.php
test/Model/CredentialOfferExpiredErrorTest.php
test/Model/CredentialOfferResponseGrantsTest.php
test/Model/CredentialOfferResponseGrantsUrnIetfParamsOauthGrantTypePreAuthorizedCodeTest.php
test/Model/CredentialOfferResponseGrantsUrnIetfParamsOauthGrantTypePreAuthorizedCodeTxCodeTest.php
test/Model/CredentialOfferResponseTest.php
test/Model/CredentialProofTest.php
test/Model/CredentialResponseDeferredTest.php
test/Model/CredentialResponseImmediateCNonceExpiresInTest.php
test/Model/CredentialResponseImmediateCredentialTest.php
test/Model/CredentialResponseImmediateTest.php
test/Model/CredentialResponseTest.php
test/Model/CredentialSubjectNotValidErrorTest.php
test/Model/CredentialSupportedObjectTest.php
test/Model/DeferredCredentialInputTest.php
test/Model/FlowDataStatusListsDetailsInnerTest.php
test/Model/FlowDataTest.php
test/Model/GenerateCredentials400ResponseTest.php
test/Model/GetCredentialOffer400ResponseTest.php
test/Model/GetStatusListResultDtoTest.php
test/Model/InvalidCredentialRequestErrorTest.php
test/Model/InvalidCredentialTypeErrorTest.php
test/Model/InvalidIssuerWalletErrorTest.php
test/Model/InvalidJwtTokenErrorTest.php
test/Model/InvalidParameterErrorTest.php
test/Model/InvalidProofErrorTest.php
test/Model/IssuanceConfigDtoTest.php
test/Model/IssuanceConfigListResponseTest.php
test/Model/IssuanceConfigMiniDtoTest.php
test/Model/IssuanceStateResponseTest.php
test/Model/ListIssuanceRecordResponseTest.php
test/Model/ListIssuanceResponseIssuancesInnerTest.php
test/Model/ListIssuanceResponseTest.php
test/Model/MissingHolderDidErrorTest.php
test/Model/NotFoundErrorTest.php
test/Model/ProjectCredentialConfigExistErrorTest.php
test/Model/ProjectCredentialConfigNotExistErrorTest.php
test/Model/StartIssuance400ResponseTest.php
test/Model/StartIssuanceInputDataInnerMetaDataTest.php
test/Model/StartIssuanceInputDataInnerStatusListDetailsInnerTest.php
test/Model/StartIssuanceInputDataInnerTest.php
test/Model/StartIssuanceInputTest.php
test/Model/StartIssuanceResponseTest.php
test/Model/SupportedCredentialMetadataDisplayInnerLogoTest.php
test/Model/SupportedCredentialMetadataDisplayInnerTest.php
test/Model/SupportedCredentialMetadataTest.php
test/Model/UpdateIssuanceConfigInputTest.php
test/Model/VcClaimedErrorTest.php
test/Model/WellKnownOpenIdCredentialIssuerResponseCredentialsSupportedInnerTest.php
test/Model/WellKnownOpenIdCredentialIssuerResponseTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7.9.0
29 changes: 29 additions & 0 deletions clients/php/credential-issuance-client/.php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

/**
* @generated
* @link https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/HEAD/doc/config.rst
*/
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('vendor')
->exclude('test')
->exclude('tests')
;

$config = new PhpCsFixer\Config();
return $config->setRules([
'@PSR12' => true,
'phpdoc_order' => true,
'array_syntax' => [ 'syntax' => 'short' ],
'strict_comparison' => true,
'strict_param' => true,
'no_trailing_whitespace' => false,
'no_trailing_whitespace_in_comment' => false,
'braces' => false,
'single_blank_line_at_eof' => false,
'blank_line_after_namespace' => false,
'no_leading_import_slash' => false,
])
->setFinder($finder)
;
8 changes: 8 additions & 0 deletions clients/php/credential-issuance-client/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: php
# Bionic environment has preinstalled PHP from 7.1 to 7.4
# https://docs.travis-ci.com/user/reference/bionic/#php-support
dist: bionic
php:
- 7.4
before_install: 'composer install'
script: 'vendor/bin/phpunit'
Loading

0 comments on commit 8a9dc65

Please sign in to comment.