@secrecy/lib 1.0.0-dev.83 → 1.0.0-dev.84
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 +4 -5
- package/dist/zeus/index.d.ts +10 -13
- package/dist/zeus/index.js +1 -1
- package/package.json +1 -1
package/dist/zeus/index.d.ts
CHANGED
|
@@ -381,7 +381,6 @@ export declare type ValueTypes = {
|
|
|
381
381
|
["GetCardIdentificationResult"]: AliasType<{
|
|
382
382
|
["...on CardIdentificationResponse"]: ValueTypes["CardIdentificationResponse"];
|
|
383
383
|
["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
|
|
384
|
-
["...on ErrorStripe"]: ValueTypes["ErrorStripe"];
|
|
385
384
|
__typename?: boolean | `@${string}`;
|
|
386
385
|
}>;
|
|
387
386
|
["GetStripeBalanceResult"]: AliasType<{
|
|
@@ -1642,11 +1641,11 @@ export declare type ValueTypes = {
|
|
|
1642
1641
|
__typename?: boolean | `@${string}`;
|
|
1643
1642
|
}>;
|
|
1644
1643
|
["CardIdentificationResponse"]: AliasType<{
|
|
1645
|
-
|
|
1644
|
+
paymentMethods?: ValueTypes["CardIdentificationData"];
|
|
1646
1645
|
__typename?: boolean | `@${string}`;
|
|
1647
1646
|
}>;
|
|
1648
1647
|
["CardIdentificationData"]: AliasType<{
|
|
1649
|
-
|
|
1648
|
+
type?: boolean | `@${string}`;
|
|
1650
1649
|
identification?: boolean | `@${string}`;
|
|
1651
1650
|
tokenId?: boolean | `@${string}`;
|
|
1652
1651
|
__typename?: boolean | `@${string}`;
|
|
@@ -2683,7 +2682,6 @@ export declare type ResolverInputTypes = {
|
|
|
2683
2682
|
["GetCardIdentificationResult"]: AliasType<{
|
|
2684
2683
|
CardIdentificationResponse?: ResolverInputTypes["CardIdentificationResponse"];
|
|
2685
2684
|
ErrorAccessDenied?: ResolverInputTypes["ErrorAccessDenied"];
|
|
2686
|
-
ErrorStripe?: ResolverInputTypes["ErrorStripe"];
|
|
2687
2685
|
__typename?: boolean | `@${string}`;
|
|
2688
2686
|
}>;
|
|
2689
2687
|
["GetStripeBalanceResult"]: AliasType<{
|
|
@@ -3944,11 +3942,11 @@ export declare type ResolverInputTypes = {
|
|
|
3944
3942
|
__typename?: boolean | `@${string}`;
|
|
3945
3943
|
}>;
|
|
3946
3944
|
["CardIdentificationResponse"]: AliasType<{
|
|
3947
|
-
|
|
3945
|
+
paymentMethods?: ResolverInputTypes["CardIdentificationData"];
|
|
3948
3946
|
__typename?: boolean | `@${string}`;
|
|
3949
3947
|
}>;
|
|
3950
3948
|
["CardIdentificationData"]: AliasType<{
|
|
3951
|
-
|
|
3949
|
+
type?: boolean | `@${string}`;
|
|
3952
3950
|
identification?: boolean | `@${string}`;
|
|
3953
3951
|
tokenId?: boolean | `@${string}`;
|
|
3954
3952
|
__typename?: boolean | `@${string}`;
|
|
@@ -4850,7 +4848,7 @@ export declare type ModelTypes = {
|
|
|
4850
4848
|
["UnreadReceivedMailsCountResult"]: ModelTypes["UnreadReceivedMailsCountResponse"] | ModelTypes["ErrorAccessDenied"];
|
|
4851
4849
|
["UserResult"]: ModelTypes["UserResponse"] | ModelTypes["ErrorNotFound"];
|
|
4852
4850
|
["UserListResult"]: ModelTypes["UserListResponse"] | ModelTypes["ErrorAccessDenied"];
|
|
4853
|
-
["GetCardIdentificationResult"]: ModelTypes["CardIdentificationResponse"] | ModelTypes["ErrorAccessDenied"]
|
|
4851
|
+
["GetCardIdentificationResult"]: ModelTypes["CardIdentificationResponse"] | ModelTypes["ErrorAccessDenied"];
|
|
4854
4852
|
["GetStripeBalanceResult"]: ModelTypes["GetStripeBalanceResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorStripe"];
|
|
4855
4853
|
["GetStripeBalanceTransactionResult"]: ModelTypes["GetStripeBalanceTransactionResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorStripe"];
|
|
4856
4854
|
["GetStripeTransactionResult"]: ModelTypes["GetStripeTransactionResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorStripe"];
|
|
@@ -5587,10 +5585,10 @@ export declare type ModelTypes = {
|
|
|
5587
5585
|
pending: Array<ModelTypes["BalanceStripeResponse"]>;
|
|
5588
5586
|
};
|
|
5589
5587
|
["CardIdentificationResponse"]: {
|
|
5590
|
-
|
|
5588
|
+
paymentMethods?: Array<ModelTypes["CardIdentificationData"] | undefined> | undefined;
|
|
5591
5589
|
};
|
|
5592
5590
|
["CardIdentificationData"]: {
|
|
5593
|
-
|
|
5591
|
+
type?: Array<ModelTypes["PaymentMethod"]> | undefined;
|
|
5594
5592
|
identification: string;
|
|
5595
5593
|
tokenId: string;
|
|
5596
5594
|
};
|
|
@@ -6112,10 +6110,9 @@ export declare type GraphQLTypes = {
|
|
|
6112
6110
|
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6113
6111
|
};
|
|
6114
6112
|
["GetCardIdentificationResult"]: {
|
|
6115
|
-
__typename: "CardIdentificationResponse" | "ErrorAccessDenied"
|
|
6113
|
+
__typename: "CardIdentificationResponse" | "ErrorAccessDenied";
|
|
6116
6114
|
["...on CardIdentificationResponse"]: "__union" & GraphQLTypes["CardIdentificationResponse"];
|
|
6117
6115
|
["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
|
|
6118
|
-
["...on ErrorStripe"]: "__union" & GraphQLTypes["ErrorStripe"];
|
|
6119
6116
|
};
|
|
6120
6117
|
["GetStripeBalanceResult"]: {
|
|
6121
6118
|
__typename: "GetStripeBalanceResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorStripe";
|
|
@@ -7376,11 +7373,11 @@ export declare type GraphQLTypes = {
|
|
|
7376
7373
|
};
|
|
7377
7374
|
["CardIdentificationResponse"]: {
|
|
7378
7375
|
__typename: "CardIdentificationResponse";
|
|
7379
|
-
|
|
7376
|
+
paymentMethods?: Array<GraphQLTypes["CardIdentificationData"] | undefined> | undefined;
|
|
7380
7377
|
};
|
|
7381
7378
|
["CardIdentificationData"]: {
|
|
7382
7379
|
__typename: "CardIdentificationData";
|
|
7383
|
-
|
|
7380
|
+
type?: Array<GraphQLTypes["PaymentMethod"]> | undefined;
|
|
7384
7381
|
identification: string;
|
|
7385
7382
|
tokenId: string;
|
|
7386
7383
|
};
|