@secrecy/lib 1.0.0-dev.58 → 1.0.0-dev.59
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/client/SecrecyCloudClient.d.ts +1 -1
- package/dist/client/SecrecyCloudClient.js +3 -3
- package/dist/client/SecrecyMailClient.js +4 -4
- package/dist/client/SecrecyPayClient.d.ts +7 -0
- package/dist/client/SecrecyPayClient.js +37 -0
- package/dist/client/SecrecyWalletClient.d.ts +30 -0
- package/dist/client/SecrecyWalletClient.js +76 -0
- package/dist/client/helpers.d.ts +5 -0
- package/dist/client/helpers.js +21 -9
- package/dist/client/index.d.ts +4 -0
- package/dist/client/index.js +5 -1
- package/dist/zeus/const.js +4 -2
- package/dist/zeus/index.d.ts +8 -0
- package/dist/zeus/index.js +1 -1
- package/package.json +11 -10
package/dist/zeus/index.d.ts
CHANGED
|
@@ -665,6 +665,8 @@ export declare type ValueTypes = {
|
|
|
665
665
|
["Application"]: AliasType<{
|
|
666
666
|
id?: boolean | `@${string}`;
|
|
667
667
|
name?: boolean | `@${string}`;
|
|
668
|
+
logo?: boolean | `@${string}`;
|
|
669
|
+
origin?: boolean | `@${string}`;
|
|
668
670
|
__typename?: boolean | `@${string}`;
|
|
669
671
|
}>;
|
|
670
672
|
["ApplicationsOnUsers"]: AliasType<{
|
|
@@ -2436,6 +2438,8 @@ export declare type ResolverInputTypes = {
|
|
|
2436
2438
|
["Application"]: AliasType<{
|
|
2437
2439
|
id?: boolean | `@${string}`;
|
|
2438
2440
|
name?: boolean | `@${string}`;
|
|
2441
|
+
logo?: boolean | `@${string}`;
|
|
2442
|
+
origin?: boolean | `@${string}`;
|
|
2439
2443
|
__typename?: boolean | `@${string}`;
|
|
2440
2444
|
}>;
|
|
2441
2445
|
["ApplicationsOnUsers"]: AliasType<{
|
|
@@ -3850,6 +3854,8 @@ export declare type ModelTypes = {
|
|
|
3850
3854
|
["Application"]: {
|
|
3851
3855
|
id: string;
|
|
3852
3856
|
name: string;
|
|
3857
|
+
logo?: string | undefined;
|
|
3858
|
+
origin: string;
|
|
3853
3859
|
};
|
|
3854
3860
|
["ApplicationsOnUsers"]: {
|
|
3855
3861
|
fakeUserId: string;
|
|
@@ -5083,6 +5089,8 @@ export declare type GraphQLTypes = {
|
|
|
5083
5089
|
__typename: "Application";
|
|
5084
5090
|
id: string;
|
|
5085
5091
|
name: string;
|
|
5092
|
+
logo?: string | undefined;
|
|
5093
|
+
origin: string;
|
|
5086
5094
|
};
|
|
5087
5095
|
["ApplicationsOnUsers"]: {
|
|
5088
5096
|
__typename: "ApplicationsOnUsers";
|