Skip to content

Commit

Permalink
use genrated client
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Nov 19, 2023
1 parent eafcdb8 commit 9a3dc9d
Show file tree
Hide file tree
Showing 6 changed files with 6,363 additions and 3 deletions.
27 changes: 26 additions & 1 deletion deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { assertEquals } from "https://deno.land/std@0.191.0/testing/asserts.ts";
import Client from "https://sdk.fluentci.io/v0.3.0/mod.ts";
import { Client } from "./sdk/client.gen.ts";
export default Client;

export { connect, uploadContext } from "https://sdk.fluentci.io/v0.3.0/mod.ts";
Expand All @@ -12,6 +12,7 @@ export {
arg,
queryType,
stringArg,
booleanArg,
intArg,
nonNull,
makeSchema,
Expand All @@ -24,6 +25,30 @@ export {
export { parse } from "https://deno.land/std@0.205.0/flags/mod.ts";
export { snakeCase, camelCase } from "https://cdn.skypack.dev/lodash";

export {
ClientError,
GraphQLClient,
} from "https://esm.sh/v128/graphql-request@6.1.0";
export {
DaggerSDKError,
UnknownDaggerError,
DockerImageRefValidationError,
EngineSessionConnectParamsParseError,
ExecError,
GraphQLRequestError,
InitEngineSessionBinaryError,
TooManyNestedObjectsError,
EngineSessionError,
EngineSessionConnectionTimeoutError,
NotAwaitedRequestError,
ERROR_CODES,
} from "https://esm.sh/@dagger.io/dagger@0.9.3";

export type {
CallbackFct,
ConnectOpts,
} from "https://sdk.fluentci.io/v0.3.0/mod.ts";

export * as FluentGitlabCI from "https://deno.land/x/fluent_gitlab_ci@v0.4.2/mod.ts";
export * as FluentGithubActions from "https://deno.land/x/fluent_github_actions@v0.2.1/mod.ts";
export * as FluentCircleCI from "https://deno.land/x/fluent_circleci@v0.2.5/mod.ts";
Expand Down
Loading

0 comments on commit 9a3dc9d

Please sign in to comment.