@poolzfinance/api4 1.11.1 → 1.11.3
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/endpoints/autoSignUp.d.ts +3 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/graphql/gql.d.ts +7 -0
- package/dist/types/graphql/graphql.d.ts +15 -0
- package/package.json +1 -1
|
@@ -14,6 +14,9 @@ declare const documents: {
|
|
|
14
14
|
"\n query AdminAutoSignUp($note: String) {\n adminAutoSignUp(note: $note) {\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.AdminAutoSignUpQuery, types.Exact<{
|
|
15
15
|
note?: types.InputMaybe<string> | undefined;
|
|
16
16
|
}>>;
|
|
17
|
+
"\n query AdminAutoSignUpAll{\n adminAutoSignUp{\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.AdminAutoSignUpAllQuery, types.Exact<{
|
|
18
|
+
[key: string]: never;
|
|
19
|
+
}>>;
|
|
17
20
|
"\n mutation addAutoSignUp($address: String!, $poolzAmount: Float!, $note: String!) {\n addAutoSignUp(address: $address, poolzAmount: $poolzAmount, note: $note) {\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.AddAutoSignUpMutation, types.Exact<{
|
|
18
21
|
address: string;
|
|
19
22
|
poolzAmount: number;
|
|
@@ -105,6 +108,10 @@ export declare function gql(source: string): unknown;
|
|
|
105
108
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
106
109
|
*/
|
|
107
110
|
export declare function gql(source: "\n query AdminAutoSignUp($note: String) {\n adminAutoSignUp(note: $note) {\n Address\n PoolzAmount\n Note\n }\n }"): (typeof documents)["\n query AdminAutoSignUp($note: String) {\n adminAutoSignUp(note: $note) {\n Address\n PoolzAmount\n Note\n }\n }"];
|
|
111
|
+
/**
|
|
112
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
113
|
+
*/
|
|
114
|
+
export declare function gql(source: "\n query AdminAutoSignUpAll{\n adminAutoSignUp{\n Address\n PoolzAmount\n Note\n }\n }"): (typeof documents)["\n query AdminAutoSignUpAll{\n adminAutoSignUp{\n Address\n PoolzAmount\n Note\n }\n }"];
|
|
108
115
|
/**
|
|
109
116
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
110
117
|
*/
|
|
@@ -559,6 +559,18 @@ export type AdminAutoSignUpQuery = {
|
|
|
559
559
|
Note: string;
|
|
560
560
|
}>;
|
|
561
561
|
};
|
|
562
|
+
export type AdminAutoSignUpAllQueryVariables = Exact<{
|
|
563
|
+
[key: string]: never;
|
|
564
|
+
}>;
|
|
565
|
+
export type AdminAutoSignUpAllQuery = {
|
|
566
|
+
__typename?: 'Query';
|
|
567
|
+
adminAutoSignUp: Array<{
|
|
568
|
+
__typename?: 'AdminAutoSignUp';
|
|
569
|
+
Address: string;
|
|
570
|
+
PoolzAmount: number;
|
|
571
|
+
Note: string;
|
|
572
|
+
}>;
|
|
573
|
+
};
|
|
562
574
|
export type AddAutoSignUpMutationVariables = Exact<{
|
|
563
575
|
address: Scalars['String']['input'];
|
|
564
576
|
poolzAmount: Scalars['Float']['input'];
|
|
@@ -845,6 +857,9 @@ export type MySignupQuery = {
|
|
|
845
857
|
export declare const AdminAutoSignUpDocument: DocumentNode<AdminAutoSignUpQuery, Exact<{
|
|
846
858
|
note?: InputMaybe<string> | undefined;
|
|
847
859
|
}>>;
|
|
860
|
+
export declare const AdminAutoSignUpAllDocument: DocumentNode<AdminAutoSignUpAllQuery, Exact<{
|
|
861
|
+
[key: string]: never;
|
|
862
|
+
}>>;
|
|
848
863
|
export declare const AddAutoSignUpDocument: DocumentNode<AddAutoSignUpMutation, Exact<{
|
|
849
864
|
address: Scalars['String']['input'];
|
|
850
865
|
poolzAmount: Scalars['Float']['input'];
|