@secrecy/lib 1.1.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.
@@ -889,6 +889,10 @@ export type ValueTypes = {
889
889
  origin?: boolean | `@${string}`;
890
890
  createdAt?: boolean | `@${string}`;
891
891
  updatedAt?: boolean | `@${string}`;
892
+ owner?: ValueTypes["Developer"];
893
+ ownerId?: boolean | `@${string}`;
894
+ developers?: ValueTypes["DevelopersOnApplications"];
895
+ users?: ValueTypes["ApplicationsOnUsers"];
892
896
  __typename?: boolean | `@${string}`;
893
897
  }>;
894
898
  ["ApplicationsOnUsers"]: AliasType<{
@@ -951,6 +955,7 @@ export type ValueTypes = {
951
955
  }>;
952
956
  ["Developer"]: AliasType<{
953
957
  id?: boolean | `@${string}`;
958
+ user?: ValueTypes["User"];
954
959
  applications?: ValueTypes["Application"];
955
960
  developersOnApplications?: ValueTypes["DevelopersOnApplications"];
956
961
  __typename?: boolean | `@${string}`;
@@ -3374,6 +3379,10 @@ export type ResolverInputTypes = {
3374
3379
  origin?: boolean | `@${string}`;
3375
3380
  createdAt?: boolean | `@${string}`;
3376
3381
  updatedAt?: boolean | `@${string}`;
3382
+ owner?: ResolverInputTypes["Developer"];
3383
+ ownerId?: boolean | `@${string}`;
3384
+ developers?: ResolverInputTypes["DevelopersOnApplications"];
3385
+ users?: ResolverInputTypes["ApplicationsOnUsers"];
3377
3386
  __typename?: boolean | `@${string}`;
3378
3387
  }>;
3379
3388
  ["ApplicationsOnUsers"]: AliasType<{
@@ -3436,6 +3445,7 @@ export type ResolverInputTypes = {
3436
3445
  }>;
3437
3446
  ["Developer"]: AliasType<{
3438
3447
  id?: boolean | `@${string}`;
3448
+ user?: ResolverInputTypes["User"];
3439
3449
  applications?: ResolverInputTypes["Application"];
3440
3450
  developersOnApplications?: ResolverInputTypes["DevelopersOnApplications"];
3441
3451
  __typename?: boolean | `@${string}`;
@@ -5321,6 +5331,10 @@ export type ModelTypes = {
5321
5331
  origin: Array<string>;
5322
5332
  createdAt: ModelTypes["DateTime"];
5323
5333
  updatedAt: ModelTypes["DateTime"];
5334
+ owner: ModelTypes["Developer"];
5335
+ ownerId: string;
5336
+ developers: Array<ModelTypes["DevelopersOnApplications"]>;
5337
+ users: Array<ModelTypes["ApplicationsOnUsers"]>;
5324
5338
  };
5325
5339
  ["ApplicationsOnUsers"]: {
5326
5340
  fakeUserId: string;
@@ -5376,6 +5390,7 @@ export type ModelTypes = {
5376
5390
  };
5377
5391
  ["Developer"]: {
5378
5392
  id: string;
5393
+ user?: ModelTypes["User"] | undefined;
5379
5394
  applications: Array<ModelTypes["Application"]>;
5380
5395
  developersOnApplications: Array<ModelTypes["DevelopersOnApplications"]>;
5381
5396
  };
@@ -5749,7 +5764,7 @@ export type ModelTypes = {
5749
5764
  changeUserPlan?: ModelTypes["User"] | undefined;
5750
5765
  };
5751
5766
  ["CreateApplicationResponse"]: {
5752
- createApplication?: string | undefined;
5767
+ createApplication: string;
5753
5768
  };
5754
5769
  ["CreateCryptoWalletResponse"]: {
5755
5770
  createCryptoWallet: ModelTypes["CryptoWallet"];
@@ -7052,6 +7067,10 @@ export type GraphQLTypes = {
7052
7067
  origin: Array<string>;
7053
7068
  createdAt: GraphQLTypes["DateTime"];
7054
7069
  updatedAt: GraphQLTypes["DateTime"];
7070
+ owner: GraphQLTypes["Developer"];
7071
+ ownerId: string;
7072
+ developers: Array<GraphQLTypes["DevelopersOnApplications"]>;
7073
+ users: Array<GraphQLTypes["ApplicationsOnUsers"]>;
7055
7074
  };
7056
7075
  ["ApplicationsOnUsers"]: {
7057
7076
  __typename: "ApplicationsOnUsers";
@@ -7114,6 +7133,7 @@ export type GraphQLTypes = {
7114
7133
  ["Developer"]: {
7115
7134
  __typename: "Developer";
7116
7135
  id: string;
7136
+ user?: GraphQLTypes["User"] | undefined;
7117
7137
  applications: Array<GraphQLTypes["Application"]>;
7118
7138
  developersOnApplications: Array<GraphQLTypes["DevelopersOnApplications"]>;
7119
7139
  };
@@ -7571,7 +7591,7 @@ export type GraphQLTypes = {
7571
7591
  };
7572
7592
  ["CreateApplicationResponse"]: {
7573
7593
  __typename: "CreateApplicationResponse";
7574
- createApplication?: string | undefined;
7594
+ createApplication: string;
7575
7595
  };
7576
7596
  ["CreateCryptoWalletResponse"]: {
7577
7597
  __typename: "CreateCryptoWalletResponse";