@secrecy/lib 1.0.0-dev.81 → 1.0.0-dev.83
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/BaseClient.d.ts +8 -1
- package/dist/BaseClient.js +77 -1
- package/dist/zeus/const.js +2 -2
- package/dist/zeus/index.d.ts +4 -4
- package/dist/zeus/index.js +1 -1
- package/package.json +1 -1
package/dist/zeus/index.d.ts
CHANGED
|
@@ -2058,6 +2058,7 @@ export declare type ValueTypes = {
|
|
|
2058
2058
|
},
|
|
2059
2059
|
ValueTypes["UserListResult"]
|
|
2060
2060
|
];
|
|
2061
|
+
getCardIdentification?: ValueTypes["GetCardIdentificationResult"];
|
|
2061
2062
|
getStripeBalance?: ValueTypes["GetStripeBalanceResult"];
|
|
2062
2063
|
getStripeBalanceTransaction?: ValueTypes["GetStripeBalanceTransactionResult"];
|
|
2063
2064
|
getStripeTransaction?: [
|
|
@@ -2126,7 +2127,6 @@ export declare type ValueTypes = {
|
|
|
2126
2127
|
__typename?: boolean | `@${string}`;
|
|
2127
2128
|
}>;
|
|
2128
2129
|
["Mutation"]: AliasType<{
|
|
2129
|
-
getCardIdentification?: ValueTypes["GetCardIdentificationResult"];
|
|
2130
2130
|
addFileToHistory?: [
|
|
2131
2131
|
{
|
|
2132
2132
|
nodeId: string | Variable<any, string>;
|
|
@@ -4354,6 +4354,7 @@ export declare type ResolverInputTypes = {
|
|
|
4354
4354
|
},
|
|
4355
4355
|
ResolverInputTypes["UserListResult"]
|
|
4356
4356
|
];
|
|
4357
|
+
getCardIdentification?: ResolverInputTypes["GetCardIdentificationResult"];
|
|
4357
4358
|
getStripeBalance?: ResolverInputTypes["GetStripeBalanceResult"];
|
|
4358
4359
|
getStripeBalanceTransaction?: ResolverInputTypes["GetStripeBalanceTransactionResult"];
|
|
4359
4360
|
getStripeTransaction?: [
|
|
@@ -4422,7 +4423,6 @@ export declare type ResolverInputTypes = {
|
|
|
4422
4423
|
__typename?: boolean | `@${string}`;
|
|
4423
4424
|
}>;
|
|
4424
4425
|
["Mutation"]: AliasType<{
|
|
4425
|
-
getCardIdentification?: ResolverInputTypes["GetCardIdentificationResult"];
|
|
4426
4426
|
addFileToHistory?: [
|
|
4427
4427
|
{
|
|
4428
4428
|
nodeId: string;
|
|
@@ -5880,6 +5880,7 @@ export declare type ModelTypes = {
|
|
|
5880
5880
|
unreadReceivedMailsCount?: ModelTypes["UnreadReceivedMailsCountResult"] | undefined;
|
|
5881
5881
|
user?: ModelTypes["UserResult"] | undefined;
|
|
5882
5882
|
userList?: ModelTypes["UserListResult"] | undefined;
|
|
5883
|
+
getCardIdentification?: ModelTypes["GetCardIdentificationResult"] | undefined;
|
|
5883
5884
|
getStripeBalance?: ModelTypes["GetStripeBalanceResult"] | undefined;
|
|
5884
5885
|
getStripeBalanceTransaction?: ModelTypes["GetStripeBalanceTransactionResult"] | undefined;
|
|
5885
5886
|
getStripeTransaction?: ModelTypes["GetStripeTransactionResult"] | undefined;
|
|
@@ -5896,7 +5897,6 @@ export declare type ModelTypes = {
|
|
|
5896
5897
|
isValidPaymentIntent?: ModelTypes["IsValidPaymentIntentResult"] | undefined;
|
|
5897
5898
|
};
|
|
5898
5899
|
["Mutation"]: {
|
|
5899
|
-
getCardIdentification?: ModelTypes["GetCardIdentificationResult"] | undefined;
|
|
5900
5900
|
addFileToHistory?: ModelTypes["AddFileToHistoryResult"] | undefined;
|
|
5901
5901
|
cancelPayment?: ModelTypes["CancelPaymentResult"] | undefined;
|
|
5902
5902
|
createApplication?: ModelTypes["CreateApplicationResult"] | undefined;
|
|
@@ -7704,6 +7704,7 @@ export declare type GraphQLTypes = {
|
|
|
7704
7704
|
unreadReceivedMailsCount?: GraphQLTypes["UnreadReceivedMailsCountResult"] | undefined;
|
|
7705
7705
|
user?: GraphQLTypes["UserResult"] | undefined;
|
|
7706
7706
|
userList?: GraphQLTypes["UserListResult"] | undefined;
|
|
7707
|
+
getCardIdentification?: GraphQLTypes["GetCardIdentificationResult"] | undefined;
|
|
7707
7708
|
getStripeBalance?: GraphQLTypes["GetStripeBalanceResult"] | undefined;
|
|
7708
7709
|
getStripeBalanceTransaction?: GraphQLTypes["GetStripeBalanceTransactionResult"] | undefined;
|
|
7709
7710
|
getStripeTransaction?: GraphQLTypes["GetStripeTransactionResult"] | undefined;
|
|
@@ -7721,7 +7722,6 @@ export declare type GraphQLTypes = {
|
|
|
7721
7722
|
};
|
|
7722
7723
|
["Mutation"]: {
|
|
7723
7724
|
__typename: "Mutation";
|
|
7724
|
-
getCardIdentification?: GraphQLTypes["GetCardIdentificationResult"] | undefined;
|
|
7725
7725
|
addFileToHistory?: GraphQLTypes["AddFileToHistoryResult"] | undefined;
|
|
7726
7726
|
cancelPayment?: GraphQLTypes["CancelPaymentResult"] | undefined;
|
|
7727
7727
|
createApplication?: GraphQLTypes["CreateApplicationResult"] | undefined;
|