Skip to content

Commit

Permalink
Update edgeql-js
Browse files Browse the repository at this point in the history
  • Loading branch information
diksipav committed Aug 1, 2024
1 parent 7b6f486 commit e23fcd1
Show file tree
Hide file tree
Showing 6 changed files with 6,326 additions and 1,469 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

# dbschema/edgeql-js

dbschema/edgeql-js
# dbschema/edgeql-js
2 changes: 1 addition & 1 deletion dbschema/edgeql-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import _fts from "./modules/fts";
import _schema from "./modules/schema";
import _sys from "./modules/sys";
import _default from "./modules/default";
import __default_10 from "./modules/__default";
import __default_10 from "./modules/__default_10";
import _discord from "./modules/discord";
import _math from "./modules/math";

Expand Down
44 changes: 44 additions & 0 deletions dbschema/edgeql-js/modules/__default_10.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// GENERATED by @edgedb/generate v0.5.3

import * as $ from "../reflection";
import * as _ from "../imports";
import type * as _default from "./default";
export type $current_moderatorλShape = $.typeutil.flatten<
Omit<_default.$ModeratorλShape, "account"> & {
account: $.LinkDesc<
_default.$User,
$.Cardinality.One,
{},
false,
false,
false,
false
>;
}
>;
type $current_moderator = $.ObjectType<
"__default::current_moderator",
$current_moderatorλShape,
null,
[..._default.$Moderator["__exclusives__"]]
>;
const $current_moderator = $.makeType<$current_moderator>(
_.spec,
"7531d991-28b5-11ef-83af-f92cc3345b7c",
_.syntax.literal
);

const current_moderator: $.$expr_PathNode<
$.TypeSet<$current_moderator, $.Cardinality.Many>,
null
> = _.syntax.$PathNode($.$toSet($current_moderator, $.Cardinality.Many), null);

export { $current_moderator, current_moderator };

type __defaultExports = {
current_moderator: typeof current_moderator;
};
const __defaultExports: __defaultExports = {
current_moderator: current_moderator,
};
export default __defaultExports;
2 changes: 1 addition & 1 deletion dbschema/edgeql-js/modules/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as _ from "../imports";
import type * as _std from "./std";
import type * as _extauth from "./ext/auth";
import type * as _discord from "./discord";
import type * as ___default from "./__default";
import type * as ___default from "./__default_10";
export type $ModeratorλShape = $.typeutil.flatten<
_std.$Object_8ce8c71ee4fa5f73840c22d7eaa58588λShape & {
account: $.LinkDesc<
Expand Down
Loading

0 comments on commit e23fcd1

Please sign in to comment.