@secrecy/lib 1.1.0 → 1.2.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/README.md +2 -0
- package/dist/zeus/const.js +5 -1
- package/dist/zeus/index.d.ts +18 -2
- package/dist/zeus/index.js +1 -1
- package/package.json +3 -3
package/dist/zeus/index.d.ts
CHANGED
|
@@ -887,6 +887,10 @@ export type ValueTypes = {
|
|
|
887
887
|
logo?: boolean | `@${string}`;
|
|
888
888
|
color?: boolean | `@${string}`;
|
|
889
889
|
origin?: boolean | `@${string}`;
|
|
890
|
+
owner?: ValueTypes["Developer"];
|
|
891
|
+
ownerId?: boolean | `@${string}`;
|
|
892
|
+
developers?: ValueTypes["DevelopersOnApplications"];
|
|
893
|
+
users?: ValueTypes["ApplicationsOnUsers"];
|
|
890
894
|
createdAt?: boolean | `@${string}`;
|
|
891
895
|
updatedAt?: boolean | `@${string}`;
|
|
892
896
|
__typename?: boolean | `@${string}`;
|
|
@@ -3372,6 +3376,10 @@ export type ResolverInputTypes = {
|
|
|
3372
3376
|
logo?: boolean | `@${string}`;
|
|
3373
3377
|
color?: boolean | `@${string}`;
|
|
3374
3378
|
origin?: boolean | `@${string}`;
|
|
3379
|
+
owner?: ResolverInputTypes["Developer"];
|
|
3380
|
+
ownerId?: boolean | `@${string}`;
|
|
3381
|
+
developers?: ResolverInputTypes["DevelopersOnApplications"];
|
|
3382
|
+
users?: ResolverInputTypes["ApplicationsOnUsers"];
|
|
3375
3383
|
createdAt?: boolean | `@${string}`;
|
|
3376
3384
|
updatedAt?: boolean | `@${string}`;
|
|
3377
3385
|
__typename?: boolean | `@${string}`;
|
|
@@ -5319,6 +5327,10 @@ export type ModelTypes = {
|
|
|
5319
5327
|
logo?: string | undefined;
|
|
5320
5328
|
color?: string | undefined;
|
|
5321
5329
|
origin: Array<string>;
|
|
5330
|
+
owner: ModelTypes["Developer"];
|
|
5331
|
+
ownerId: string;
|
|
5332
|
+
developers: Array<ModelTypes["DevelopersOnApplications"]>;
|
|
5333
|
+
users: Array<ModelTypes["ApplicationsOnUsers"]>;
|
|
5322
5334
|
createdAt: ModelTypes["DateTime"];
|
|
5323
5335
|
updatedAt: ModelTypes["DateTime"];
|
|
5324
5336
|
};
|
|
@@ -5749,7 +5761,7 @@ export type ModelTypes = {
|
|
|
5749
5761
|
changeUserPlan?: ModelTypes["User"] | undefined;
|
|
5750
5762
|
};
|
|
5751
5763
|
["CreateApplicationResponse"]: {
|
|
5752
|
-
createApplication
|
|
5764
|
+
createApplication: string;
|
|
5753
5765
|
};
|
|
5754
5766
|
["CreateCryptoWalletResponse"]: {
|
|
5755
5767
|
createCryptoWallet: ModelTypes["CryptoWallet"];
|
|
@@ -7050,6 +7062,10 @@ export type GraphQLTypes = {
|
|
|
7050
7062
|
logo?: string | undefined;
|
|
7051
7063
|
color?: string | undefined;
|
|
7052
7064
|
origin: Array<string>;
|
|
7065
|
+
owner: GraphQLTypes["Developer"];
|
|
7066
|
+
ownerId: string;
|
|
7067
|
+
developers: Array<GraphQLTypes["DevelopersOnApplications"]>;
|
|
7068
|
+
users: Array<GraphQLTypes["ApplicationsOnUsers"]>;
|
|
7053
7069
|
createdAt: GraphQLTypes["DateTime"];
|
|
7054
7070
|
updatedAt: GraphQLTypes["DateTime"];
|
|
7055
7071
|
};
|
|
@@ -7571,7 +7587,7 @@ export type GraphQLTypes = {
|
|
|
7571
7587
|
};
|
|
7572
7588
|
["CreateApplicationResponse"]: {
|
|
7573
7589
|
__typename: "CreateApplicationResponse";
|
|
7574
|
-
createApplication
|
|
7590
|
+
createApplication: string;
|
|
7575
7591
|
};
|
|
7576
7592
|
["CreateCryptoWalletResponse"]: {
|
|
7577
7593
|
__typename: "CreateCryptoWalletResponse";
|