@secrecy/lib 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/zeus/const.js +5 -4
- package/dist/zeus/index.d.ts +12 -8
- package/dist/zeus/index.js +1 -1
- package/package.json +1 -1
package/dist/zeus/index.d.ts
CHANGED
|
@@ -887,12 +887,12 @@ export type ValueTypes = {
|
|
|
887
887
|
logo?: boolean | `@${string}`;
|
|
888
888
|
color?: boolean | `@${string}`;
|
|
889
889
|
origin?: boolean | `@${string}`;
|
|
890
|
+
createdAt?: boolean | `@${string}`;
|
|
891
|
+
updatedAt?: boolean | `@${string}`;
|
|
890
892
|
owner?: ValueTypes["Developer"];
|
|
891
893
|
ownerId?: boolean | `@${string}`;
|
|
892
894
|
developers?: ValueTypes["DevelopersOnApplications"];
|
|
893
895
|
users?: ValueTypes["ApplicationsOnUsers"];
|
|
894
|
-
createdAt?: boolean | `@${string}`;
|
|
895
|
-
updatedAt?: boolean | `@${string}`;
|
|
896
896
|
__typename?: boolean | `@${string}`;
|
|
897
897
|
}>;
|
|
898
898
|
["ApplicationsOnUsers"]: AliasType<{
|
|
@@ -955,6 +955,7 @@ export type ValueTypes = {
|
|
|
955
955
|
}>;
|
|
956
956
|
["Developer"]: AliasType<{
|
|
957
957
|
id?: boolean | `@${string}`;
|
|
958
|
+
user?: ValueTypes["User"];
|
|
958
959
|
applications?: ValueTypes["Application"];
|
|
959
960
|
developersOnApplications?: ValueTypes["DevelopersOnApplications"];
|
|
960
961
|
__typename?: boolean | `@${string}`;
|
|
@@ -3376,12 +3377,12 @@ export type ResolverInputTypes = {
|
|
|
3376
3377
|
logo?: boolean | `@${string}`;
|
|
3377
3378
|
color?: boolean | `@${string}`;
|
|
3378
3379
|
origin?: boolean | `@${string}`;
|
|
3380
|
+
createdAt?: boolean | `@${string}`;
|
|
3381
|
+
updatedAt?: boolean | `@${string}`;
|
|
3379
3382
|
owner?: ResolverInputTypes["Developer"];
|
|
3380
3383
|
ownerId?: boolean | `@${string}`;
|
|
3381
3384
|
developers?: ResolverInputTypes["DevelopersOnApplications"];
|
|
3382
3385
|
users?: ResolverInputTypes["ApplicationsOnUsers"];
|
|
3383
|
-
createdAt?: boolean | `@${string}`;
|
|
3384
|
-
updatedAt?: boolean | `@${string}`;
|
|
3385
3386
|
__typename?: boolean | `@${string}`;
|
|
3386
3387
|
}>;
|
|
3387
3388
|
["ApplicationsOnUsers"]: AliasType<{
|
|
@@ -3444,6 +3445,7 @@ export type ResolverInputTypes = {
|
|
|
3444
3445
|
}>;
|
|
3445
3446
|
["Developer"]: AliasType<{
|
|
3446
3447
|
id?: boolean | `@${string}`;
|
|
3448
|
+
user?: ResolverInputTypes["User"];
|
|
3447
3449
|
applications?: ResolverInputTypes["Application"];
|
|
3448
3450
|
developersOnApplications?: ResolverInputTypes["DevelopersOnApplications"];
|
|
3449
3451
|
__typename?: boolean | `@${string}`;
|
|
@@ -5327,12 +5329,12 @@ export type ModelTypes = {
|
|
|
5327
5329
|
logo?: string | undefined;
|
|
5328
5330
|
color?: string | undefined;
|
|
5329
5331
|
origin: Array<string>;
|
|
5332
|
+
createdAt: ModelTypes["DateTime"];
|
|
5333
|
+
updatedAt: ModelTypes["DateTime"];
|
|
5330
5334
|
owner: ModelTypes["Developer"];
|
|
5331
5335
|
ownerId: string;
|
|
5332
5336
|
developers: Array<ModelTypes["DevelopersOnApplications"]>;
|
|
5333
5337
|
users: Array<ModelTypes["ApplicationsOnUsers"]>;
|
|
5334
|
-
createdAt: ModelTypes["DateTime"];
|
|
5335
|
-
updatedAt: ModelTypes["DateTime"];
|
|
5336
5338
|
};
|
|
5337
5339
|
["ApplicationsOnUsers"]: {
|
|
5338
5340
|
fakeUserId: string;
|
|
@@ -5388,6 +5390,7 @@ export type ModelTypes = {
|
|
|
5388
5390
|
};
|
|
5389
5391
|
["Developer"]: {
|
|
5390
5392
|
id: string;
|
|
5393
|
+
user?: ModelTypes["User"] | undefined;
|
|
5391
5394
|
applications: Array<ModelTypes["Application"]>;
|
|
5392
5395
|
developersOnApplications: Array<ModelTypes["DevelopersOnApplications"]>;
|
|
5393
5396
|
};
|
|
@@ -7062,12 +7065,12 @@ export type GraphQLTypes = {
|
|
|
7062
7065
|
logo?: string | undefined;
|
|
7063
7066
|
color?: string | undefined;
|
|
7064
7067
|
origin: Array<string>;
|
|
7068
|
+
createdAt: GraphQLTypes["DateTime"];
|
|
7069
|
+
updatedAt: GraphQLTypes["DateTime"];
|
|
7065
7070
|
owner: GraphQLTypes["Developer"];
|
|
7066
7071
|
ownerId: string;
|
|
7067
7072
|
developers: Array<GraphQLTypes["DevelopersOnApplications"]>;
|
|
7068
7073
|
users: Array<GraphQLTypes["ApplicationsOnUsers"]>;
|
|
7069
|
-
createdAt: GraphQLTypes["DateTime"];
|
|
7070
|
-
updatedAt: GraphQLTypes["DateTime"];
|
|
7071
7074
|
};
|
|
7072
7075
|
["ApplicationsOnUsers"]: {
|
|
7073
7076
|
__typename: "ApplicationsOnUsers";
|
|
@@ -7130,6 +7133,7 @@ export type GraphQLTypes = {
|
|
|
7130
7133
|
["Developer"]: {
|
|
7131
7134
|
__typename: "Developer";
|
|
7132
7135
|
id: string;
|
|
7136
|
+
user?: GraphQLTypes["User"] | undefined;
|
|
7133
7137
|
applications: Array<GraphQLTypes["Application"]>;
|
|
7134
7138
|
developersOnApplications: Array<GraphQLTypes["DevelopersOnApplications"]>;
|
|
7135
7139
|
};
|