├── .DS_Store ├── .commitlintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── dependabot.yml ├── pull_request_template.md ├── release.yml └── workflows │ ├── publish-npm.yml │ ├── publish-test-connector-image.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .lintstagedrc.json ├── .npmignore ├── .prettierrc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── conf ├── consumer-connector.config │ ├── addresses.json │ └── configuration.properties └── provider-connector.config │ ├── addresses.json │ └── configuration.properties ├── connector ├── Dockerfile ├── build.gradle.kts ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── java │ └── io │ │ └── thinkit │ │ └── client │ │ └── extension │ │ ├── DemoTargetNodeDirectory.java │ │ ├── ParticipantsResolverExtension.java │ │ └── SeedVaultExtension.java │ └── resources │ └── META-INF │ └── services │ └── org.eclipse.edc.spi.system.ServiceExtension ├── docker-compose.yml ├── jest.config.ts ├── package.json ├── pretest └── edc-openapi.js ├── src ├── client.ts ├── context.ts ├── controllers │ ├── federated-catalog-controller.ts │ ├── identity-controllers │ │ ├── dids-controller.ts │ │ ├── keypairs-controller.ts │ │ ├── participant-controllers │ │ │ ├── participant-controller.ts │ │ │ ├── participant-dids-controller.ts │ │ │ ├── participant-keypairs-controller.ts │ │ │ └── participant-verifiable-credentials-controller.ts │ │ ├── participants-controller.ts │ │ └── verifiable-credentials-controller.ts │ ├── index.ts │ ├── management-controllers │ │ ├── asset-controller.ts │ │ ├── catalog-controller.ts │ │ ├── contract-agreement-controller.ts │ │ ├── contract-defintion-controller.ts │ │ ├── contract-negotiation-controller.ts │ │ ├── dataplane-controller.ts │ │ ├── edr-controller.ts │ │ ├── index.ts │ │ ├── policy-defintion-controller.ts │ │ ├── secret-controller.ts │ │ └── transfer-process-controller.ts │ ├── observability-controller.ts │ ├── presentation-controller.ts │ └── public-controller.ts ├── edc-controller.ts ├── entities │ ├── DID.ts │ ├── addresses.ts │ ├── asset.ts │ ├── catalog.ts │ ├── context.ts │ ├── contract-agreement.ts │ ├── contract-definition.ts │ ├── contract-negotiation.ts │ ├── criterion.ts │ ├── data-address.ts │ ├── dataplane.ts │ ├── edr.ts │ ├── health.ts │ ├── id-response.ts │ ├── index.ts │ ├── jsonld.ts │ ├── keypairs.ts │ ├── participant.ts │ ├── policy-definition.ts │ ├── policy │ │ ├── action.ts │ │ ├── constraint.ts │ │ ├── duty.ts │ │ ├── index.ts │ │ ├── permission.ts │ │ ├── policy.ts │ │ └── prohibition.ts │ ├── presentation.ts │ ├── secret.ts │ ├── transfer-process.ts │ └── verifiable-credentials.ts ├── error.ts ├── facades │ ├── identity.ts │ └── management.ts ├── index.ts └── inner.ts ├── tests ├── controllers │ ├── federated-catalog.test.ts │ ├── identity-tests │ │ ├── dids.test.ts │ │ ├── keypairs.test.ts │ │ ├── participant.test.ts │ │ ├── participants.test.ts │ │ └── verifiableCredential.test.ts │ ├── management-tests │ │ ├── assets.test.ts │ │ ├── catalog.test.ts │ │ ├── contract-agreements.test.ts │ │ ├── contract-definitions.test.ts │ │ ├── contract-negotiations.test.ts │ │ ├── dataplanes.test.ts │ │ ├── edrs.test.ts │ │ ├── policy-definitions.test.ts │ │ ├── secrets.test.ts │ │ └── transfer-processes.test.ts │ ├── observability.test.ts │ ├── presentation-tests │ │ └── presentation.test.ts │ └── public.test.ts ├── edc-client.test.ts ├── inner.test.ts └── test-utils.ts ├── tsconfig.json └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.DS_Store -------------------------------------------------------------------------------- /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/workflows/publish-npm.yml -------------------------------------------------------------------------------- /.github/workflows/publish-test-connector-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/workflows/publish-test-connector-image.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/README.md -------------------------------------------------------------------------------- /conf/consumer-connector.config/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/conf/consumer-connector.config/addresses.json -------------------------------------------------------------------------------- /conf/consumer-connector.config/configuration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/conf/consumer-connector.config/configuration.properties -------------------------------------------------------------------------------- /conf/provider-connector.config/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/conf/provider-connector.config/addresses.json -------------------------------------------------------------------------------- /conf/provider-connector.config/configuration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/conf/provider-connector.config/configuration.properties -------------------------------------------------------------------------------- /connector/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/Dockerfile -------------------------------------------------------------------------------- /connector/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/build.gradle.kts -------------------------------------------------------------------------------- /connector/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/gradle/libs.versions.toml -------------------------------------------------------------------------------- /connector/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /connector/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /connector/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/gradlew -------------------------------------------------------------------------------- /connector/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/gradlew.bat -------------------------------------------------------------------------------- /connector/src/main/java/io/thinkit/client/extension/DemoTargetNodeDirectory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/src/main/java/io/thinkit/client/extension/DemoTargetNodeDirectory.java -------------------------------------------------------------------------------- /connector/src/main/java/io/thinkit/client/extension/ParticipantsResolverExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/src/main/java/io/thinkit/client/extension/ParticipantsResolverExtension.java -------------------------------------------------------------------------------- /connector/src/main/java/io/thinkit/client/extension/SeedVaultExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/src/main/java/io/thinkit/client/extension/SeedVaultExtension.java -------------------------------------------------------------------------------- /connector/src/main/resources/META-INF/services/org.eclipse.edc.spi.system.ServiceExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/connector/src/main/resources/META-INF/services/org.eclipse.edc.spi.system.ServiceExtension -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/package.json -------------------------------------------------------------------------------- /pretest/edc-openapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/pretest/edc-openapi.js -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/controllers/federated-catalog-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/federated-catalog-controller.ts -------------------------------------------------------------------------------- /src/controllers/identity-controllers/dids-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/identity-controllers/dids-controller.ts -------------------------------------------------------------------------------- /src/controllers/identity-controllers/keypairs-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/identity-controllers/keypairs-controller.ts -------------------------------------------------------------------------------- /src/controllers/identity-controllers/participant-controllers/participant-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/identity-controllers/participant-controllers/participant-controller.ts -------------------------------------------------------------------------------- /src/controllers/identity-controllers/participant-controllers/participant-dids-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/identity-controllers/participant-controllers/participant-dids-controller.ts -------------------------------------------------------------------------------- /src/controllers/identity-controllers/participant-controllers/participant-keypairs-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/identity-controllers/participant-controllers/participant-keypairs-controller.ts -------------------------------------------------------------------------------- /src/controllers/identity-controllers/participant-controllers/participant-verifiable-credentials-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/identity-controllers/participant-controllers/participant-verifiable-credentials-controller.ts -------------------------------------------------------------------------------- /src/controllers/identity-controllers/participants-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/identity-controllers/participants-controller.ts -------------------------------------------------------------------------------- /src/controllers/identity-controllers/verifiable-credentials-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/identity-controllers/verifiable-credentials-controller.ts -------------------------------------------------------------------------------- /src/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/index.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/asset-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/asset-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/catalog-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/catalog-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/contract-agreement-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/contract-agreement-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/contract-defintion-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/contract-defintion-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/contract-negotiation-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/contract-negotiation-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/dataplane-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/dataplane-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/edr-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/edr-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/index.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/policy-defintion-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/policy-defintion-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/secret-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/secret-controller.ts -------------------------------------------------------------------------------- /src/controllers/management-controllers/transfer-process-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/management-controllers/transfer-process-controller.ts -------------------------------------------------------------------------------- /src/controllers/observability-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/observability-controller.ts -------------------------------------------------------------------------------- /src/controllers/presentation-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/presentation-controller.ts -------------------------------------------------------------------------------- /src/controllers/public-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/controllers/public-controller.ts -------------------------------------------------------------------------------- /src/edc-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/edc-controller.ts -------------------------------------------------------------------------------- /src/entities/DID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/DID.ts -------------------------------------------------------------------------------- /src/entities/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/addresses.ts -------------------------------------------------------------------------------- /src/entities/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/asset.ts -------------------------------------------------------------------------------- /src/entities/catalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/catalog.ts -------------------------------------------------------------------------------- /src/entities/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/context.ts -------------------------------------------------------------------------------- /src/entities/contract-agreement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/contract-agreement.ts -------------------------------------------------------------------------------- /src/entities/contract-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/contract-definition.ts -------------------------------------------------------------------------------- /src/entities/contract-negotiation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/contract-negotiation.ts -------------------------------------------------------------------------------- /src/entities/criterion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/criterion.ts -------------------------------------------------------------------------------- /src/entities/data-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/data-address.ts -------------------------------------------------------------------------------- /src/entities/dataplane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/dataplane.ts -------------------------------------------------------------------------------- /src/entities/edr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/edr.ts -------------------------------------------------------------------------------- /src/entities/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/health.ts -------------------------------------------------------------------------------- /src/entities/id-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/id-response.ts -------------------------------------------------------------------------------- /src/entities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/index.ts -------------------------------------------------------------------------------- /src/entities/jsonld.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/jsonld.ts -------------------------------------------------------------------------------- /src/entities/keypairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/keypairs.ts -------------------------------------------------------------------------------- /src/entities/participant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/participant.ts -------------------------------------------------------------------------------- /src/entities/policy-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/policy-definition.ts -------------------------------------------------------------------------------- /src/entities/policy/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/policy/action.ts -------------------------------------------------------------------------------- /src/entities/policy/constraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/policy/constraint.ts -------------------------------------------------------------------------------- /src/entities/policy/duty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/policy/duty.ts -------------------------------------------------------------------------------- /src/entities/policy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/policy/index.ts -------------------------------------------------------------------------------- /src/entities/policy/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/policy/permission.ts -------------------------------------------------------------------------------- /src/entities/policy/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/policy/policy.ts -------------------------------------------------------------------------------- /src/entities/policy/prohibition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/policy/prohibition.ts -------------------------------------------------------------------------------- /src/entities/presentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/presentation.ts -------------------------------------------------------------------------------- /src/entities/secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/secret.ts -------------------------------------------------------------------------------- /src/entities/transfer-process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/transfer-process.ts -------------------------------------------------------------------------------- /src/entities/verifiable-credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/entities/verifiable-credentials.ts -------------------------------------------------------------------------------- /src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/error.ts -------------------------------------------------------------------------------- /src/facades/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/facades/identity.ts -------------------------------------------------------------------------------- /src/facades/management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/facades/management.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/src/inner.ts -------------------------------------------------------------------------------- /tests/controllers/federated-catalog.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/federated-catalog.test.ts -------------------------------------------------------------------------------- /tests/controllers/identity-tests/dids.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/identity-tests/dids.test.ts -------------------------------------------------------------------------------- /tests/controllers/identity-tests/keypairs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/identity-tests/keypairs.test.ts -------------------------------------------------------------------------------- /tests/controllers/identity-tests/participant.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/identity-tests/participant.test.ts -------------------------------------------------------------------------------- /tests/controllers/identity-tests/participants.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/identity-tests/participants.test.ts -------------------------------------------------------------------------------- /tests/controllers/identity-tests/verifiableCredential.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/identity-tests/verifiableCredential.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/assets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/assets.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/catalog.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/catalog.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/contract-agreements.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/contract-agreements.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/contract-definitions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/contract-definitions.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/contract-negotiations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/contract-negotiations.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/dataplanes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/dataplanes.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/edrs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/edrs.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/policy-definitions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/policy-definitions.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/secrets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/secrets.test.ts -------------------------------------------------------------------------------- /tests/controllers/management-tests/transfer-processes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/management-tests/transfer-processes.test.ts -------------------------------------------------------------------------------- /tests/controllers/observability.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/observability.test.ts -------------------------------------------------------------------------------- /tests/controllers/presentation-tests/presentation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/presentation-tests/presentation.test.ts -------------------------------------------------------------------------------- /tests/controllers/public.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/controllers/public.test.ts -------------------------------------------------------------------------------- /tests/edc-client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/edc-client.test.ts -------------------------------------------------------------------------------- /tests/inner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/inner.test.ts -------------------------------------------------------------------------------- /tests/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tests/test-utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Think-iT-Labs/edc-connector-client/HEAD/yarn.lock --------------------------------------------------------------------------------