@longvansoftware/storefront-js-client 3.0.5 โ†’ 3.0.7

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.
Files changed (41) hide show
  1. package/README.md +221 -221
  2. package/dist/src/graphql/auth/mutations.d.ts +1 -0
  3. package/dist/src/graphql/auth/mutations.js +192 -205
  4. package/dist/src/graphql/auth/queries.d.ts +0 -1
  5. package/dist/src/graphql/auth/queries.js +60 -65
  6. package/dist/src/graphql/campaign/mutations.js +26 -26
  7. package/dist/src/graphql/campaign/queries.js +375 -375
  8. package/dist/src/graphql/cashbook/queries.js +93 -93
  9. package/dist/src/graphql/cloud/mutations.js +103 -103
  10. package/dist/src/graphql/cloud/queries.js +112 -112
  11. package/dist/src/graphql/computing/mutations.js +96 -96
  12. package/dist/src/graphql/computing/queries.js +41 -41
  13. package/dist/src/graphql/crm/mutations.js +813 -813
  14. package/dist/src/graphql/crm/queries.js +661 -661
  15. package/dist/src/graphql/fragments/product.d.ts +38 -0
  16. package/dist/src/graphql/fragments/product.js +196 -0
  17. package/dist/src/graphql/payment/mutations.js +146 -146
  18. package/dist/src/graphql/payment/queries.js +116 -116
  19. package/dist/src/graphql/paymentV2/mutations.js +47 -47
  20. package/dist/src/graphql/paymentV2/queries.js +176 -176
  21. package/dist/src/graphql/product/mutations.js +94 -94
  22. package/dist/src/graphql/product/queries.js +472 -472
  23. package/dist/src/graphql/service/mutations.js +304 -304
  24. package/dist/src/graphql/service/queries.js +131 -131
  25. package/dist/src/graphql/store/mutations.js +24 -24
  26. package/dist/src/graphql/store/queries.js +24 -24
  27. package/dist/src/graphql/user/mutations.js +142 -142
  28. package/dist/src/graphql/user/queries.js +298 -298
  29. package/dist/src/lib/auth/index.d.ts +7 -36
  30. package/dist/src/lib/auth/index.js +6 -69
  31. package/dist/src/lib/order/index.d.ts +2 -0
  32. package/dist/src/lib/order/index.js +37 -0
  33. package/dist/src/lib/serviceSDK.js +12 -12
  34. package/dist/src/lib/shareZalo/index.d.ts +5 -0
  35. package/dist/src/lib/shareZalo/index.js +32 -0
  36. package/dist/src/types/auth.d.ts +0 -123
  37. package/dist/src/types/common.d.ts +264 -0
  38. package/dist/src/types/common.js +35 -0
  39. package/dist/src/utils/errorHandler.d.ts +64 -0
  40. package/dist/src/utils/errorHandler.js +197 -0
  41. package/package.json +43 -44
package/README.md CHANGED
@@ -1,222 +1,222 @@
1
- # Longvan Storefront JavaScript Client SDK
2
-
3
- [![npm version](https://badge.fury.io/js/%40longvansoftware%2Fstorefront-js-client.svg)](https://badge.fury.io/js/%40longvansoftware%2Fstorefront-js-client)
4
- [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
5
- [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)
6
-
7
- A comprehensive TypeScript/JavaScript SDK for integrating with the Longvan e-commerce platform. This SDK provides easy-to-use interfaces for managing products, orders, users, payments, and other e-commerce functionalities.
8
-
9
- ## ๐Ÿš€ Quick Start
10
-
11
- ```bash
12
- npm install @longvansoftware/storefront-js-client
13
- ```
14
-
15
- ```typescript
16
- import { SDK } from '@longvansoftware/storefront-js-client';
17
-
18
- const sdk = new SDK('your-org-id', 'your-store-id', 'dev');
19
- sdk.setToken('your-access-token');
20
-
21
- // Ready to use!
22
- const products = await sdk.product.getSimpleProducts({ currentPage: 1, maxResult: 10 });
23
- ```
24
-
25
- ## ๐Ÿ“š Documentation
26
-
27
- ### ๐ŸŽฏ Getting Started
28
- - **[Installation & Setup](./docs/getting-started/installation.md)** - Complete installation guide
29
- - **[Quick Start Guide](./docs/getting-started/quick-start.md)** - Get running in 5 minutes
30
- - **[Configuration](./docs/getting-started/configuration.md)** - Environment and SDK configuration
31
- - **[Authentication](./docs/getting-started/authentication.md)** - Authentication setup and patterns
32
-
33
- ### ๐Ÿ”ง Core Services
34
- - **[Authentication Service](./docs/services/auth.md)** - User authentication and authorization
35
- - **[Product Service](./docs/services/product.md)** - Product catalog management
36
- - **[Order Service](./docs/services/order.md)** - Order lifecycle management
37
- - **[User Service](./docs/services/user.md)** - Customer and user management
38
- - **[Payment Service](./docs/services/payment.md)** - Payment processing and invoicing
39
- - **[CRM Service](./docs/services/crm.md)** - Customer relationship management
40
-
41
- ### ๐Ÿ› ๏ธ Extended Services
42
- - **[Warehouse Service](./docs/services/warehouse.md)** - Inventory management
43
- - **[Computing Service](./docs/services/computing.md)** - Cloud computing services
44
- - **[Campaign Service](./docs/services/campaign.md)** - Marketing campaigns
45
- - **[Image Service](./docs/services/image.md)** - Image and media management
46
- - **[Upload Service](./docs/services/upload.md)** - File upload handling
47
-
48
- ### ๐Ÿ“– Advanced Topics
49
- - **[Error Handling](./docs/advanced/error-handling.md)** - Robust error handling patterns
50
- - **[TypeScript Support](./docs/advanced/typescript.md)** - Full TypeScript integration
51
- - **[Testing](./docs/advanced/testing.md)** - Testing your integration
52
- - **[Performance](./docs/advanced/performance.md)** - Optimization and best practices
53
-
54
- ### ๐Ÿ’ก Examples & Patterns
55
- - **[E-commerce Flow](./docs/examples/ecommerce-flow.md)** - Complete workflow examples
56
- - **[Authentication Patterns](./docs/examples/auth-patterns.md)** - Auth implementation patterns
57
- - **[Product Management](./docs/examples/product-management.md)** - Product handling examples
58
- - **[Order Processing](./docs/examples/order-processing.md)** - Order workflow examples
59
-
60
- ### ๐Ÿ” API Reference
61
- - **[Complete API Reference](./docs/api/README.md)** - Full API documentation
62
- - **[Type Definitions](./docs/api/types.md)** - TypeScript type definitions
63
- - **[Interfaces](./docs/api/interfaces.md)** - Interface specifications
64
-
65
- ## ๐Ÿ—๏ธ Architecture Overview
66
-
67
- ```
68
- Longvan SDK
69
- โ”œโ”€โ”€ ๐Ÿ” Authentication Layer
70
- โ”œโ”€โ”€ ๐Ÿ›๏ธ Core E-commerce Services
71
- โ”‚ โ”œโ”€โ”€ Product Management
72
- โ”‚ โ”œโ”€โ”€ Order Processing
73
- โ”‚ โ”œโ”€โ”€ User Management
74
- โ”‚ โ””โ”€โ”€ Payment Processing
75
- โ”œโ”€โ”€ ๐Ÿ”ง Extended Services
76
- โ”‚ โ”œโ”€โ”€ Warehouse & Inventory
77
- โ”‚ โ”œโ”€โ”€ CRM & Customer Support
78
- โ”‚ โ”œโ”€โ”€ Marketing & Campaigns
79
- โ”‚ โ””โ”€โ”€ Media & File Management
80
- โ””โ”€โ”€ ๐Ÿš€ Infrastructure
81
- โ”œโ”€โ”€ GraphQL Client
82
- โ”œโ”€โ”€ REST API Client
83
- โ”œโ”€โ”€ Error Handling
84
- โ””โ”€โ”€ TypeScript Support
85
- ```
86
-
87
- ## โœจ Key Features
88
-
89
- - **๐ŸŽฏ Type-Safe**: Full TypeScript support with comprehensive type definitions
90
- - **๐Ÿ”Œ Multi-Protocol**: Supports both GraphQL and REST APIs
91
- - **๐Ÿ” Secure**: Built-in authentication and token management
92
- - **โšก Performance**: Optimized for speed with caching and batching
93
- - **๐Ÿ› ๏ธ Developer-Friendly**: Intuitive API design with excellent IntelliSense
94
- - **๐Ÿ“ฑ Cross-Platform**: Works in Node.js, browsers, and React Native
95
- - **๐Ÿงช Well-Tested**: Comprehensive test suite with high coverage
96
- - **๐Ÿ“– Well-Documented**: Extensive documentation with real-world examples
97
-
98
- ## ๐Ÿš€ Installation
99
-
100
- ### Using npm
101
- ```bash
102
- npm install @longvansoftware/storefront-js-client
103
- ```
104
-
105
- ### Using yarn
106
- ```bash
107
- yarn add @longvansoftware/storefront-js-client
108
- ```
109
-
110
- ### Using pnpm
111
- ```bash
112
- pnpm add @longvansoftware/storefront-js-client
113
- ```
114
-
115
- ## โšก Quick Example
116
-
117
- ```typescript
118
- import { SDK } from '@longvansoftware/storefront-js-client';
119
-
120
- // Initialize SDK
121
- const sdk = new SDK('your-org-id', 'your-store-id', 'dev');
122
-
123
- // Authenticate user
124
- const loginResponse = await sdk.auth.login({
125
- username: 'user@example.com',
126
- password: 'password123'
127
- });
128
- sdk.setToken(loginResponse.accessToken);
129
-
130
- // Browse products
131
- const products = await sdk.product.getSimpleProducts({
132
- keyword: 'laptop',
133
- currentPage: 1,
134
- maxResult: 20
135
- });
136
-
137
- // Create order
138
- const order = await sdk.order.createOrder({
139
- customer_id: loginResponse.partyId,
140
- line_items: [{
141
- product_id: products[0].id,
142
- quantity: 1,
143
- input_price: products[0].price
144
- }]
145
- }, 'web', false, loginResponse.partyId);
146
-
147
- console.log('Order created:', order.id);
148
-
149
- // Manage stores
150
- const newStore = await sdk.store.createStore('FOX', 'My New Store');
151
- const channels = await sdk.store.getStoreChannelByEmpId('emp-123');
152
- ```
153
-
154
- ## ๐Ÿ“ฆ TypeScript Support
155
-
156
- Import types for full TypeScript support:
157
-
158
- ```typescript
159
- // Import specific types
160
- import type {
161
- Product,
162
- ProductFilterOptions,
163
- } from '@longvansoftware/storefront-js-client/dist/src/types/product';
164
-
165
- import type {
166
- StoreDTO,
167
- CreateStoreRequest,
168
- StoreConfiguration,
169
- } from '@longvansoftware/storefront-js-client/dist/src/types/store';
170
-
171
- import type {
172
- LoginRequest,
173
- LoginResponse,
174
- } from '@longvansoftware/storefront-js-client/dist/src/types/auth';
175
-
176
- // Use with full type safety
177
- const products: Product[] = await sdk.product.getSimpleProducts({
178
- keyword: 'laptop',
179
- currentPage: 1,
180
- maxResult: 10
181
- });
182
-
183
- const stores: StoreDTO[] = await sdk.store.getStoreChannelByEmpId('emp-123');
184
- ```
185
-
186
- ## ๐ŸŒŸ What's New in v2.9.0
187
-
188
- - โœจ Enhanced TypeScript support with stricter types
189
- - ๐Ÿš€ Improved error handling and debugging capabilities
190
- - ๐Ÿ”ง New utility services for better platform integration
191
- - โšก Performance optimizations and caching improvements
192
- - ๐Ÿ”’ Updated dependencies and security enhancements
193
- - ๐Ÿ“– Comprehensive documentation with real-world examples
194
-
195
- ## ๐Ÿค Community & Support
196
-
197
- - **๐Ÿ“– Documentation**: [Complete Documentation](./docs/README.md)
198
- - **๐Ÿ› Issues**: [GitLab Issues](https://gitlab.longvan.vn/long-van-platform-2.0/website/storefront-js-client/-/issues)
199
- - **๐Ÿ’ฌ Discussions**: [GitLab Discussions](https://gitlab.longvan.vn/long-van-platform-2.0/website/storefront-js-client/-/issues)
200
- - **๐Ÿ“ง Support**: Contact the Longvan development team
201
-
202
- ## ๐Ÿš€ Contributing
203
-
204
- We welcome contributions! Please see our [Contributing Guide](./docs/contributing/README.md) for details on:
205
-
206
- - ๐Ÿ”ง Setting up the development environment
207
- - ๐Ÿ“ Code style and conventions
208
- - ๐Ÿงช Running tests and quality checks
209
- - ๐Ÿ“ค Submitting pull requests
210
-
211
- ## ๐Ÿ“„ License
212
-
213
- This project is licensed under the ISC License - see the [LICENSE](./LICENSE) file for details.
214
-
215
- ---
216
-
217
- **Ready to get started?**
218
- - ๐Ÿš€ [Quick Start Guide](./docs/getting-started/quick-start.md)
219
- - ๐Ÿ“– [Complete Documentation](./docs/README.md)
220
- - ๐Ÿ” [API Reference](./docs/api/README.md)
221
-
1
+ # Longvan Storefront JavaScript Client SDK
2
+
3
+ [![npm version](https://badge.fury.io/js/%40longvansoftware%2Fstorefront-js-client.svg)](https://badge.fury.io/js/%40longvansoftware%2Fstorefront-js-client)
4
+ [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
5
+ [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)
6
+
7
+ A comprehensive TypeScript/JavaScript SDK for integrating with the Longvan e-commerce platform. This SDK provides easy-to-use interfaces for managing products, orders, users, payments, and other e-commerce functionalities.
8
+
9
+ ## ๐Ÿš€ Quick Start
10
+
11
+ ```bash
12
+ npm install @longvansoftware/storefront-js-client
13
+ ```
14
+
15
+ ```typescript
16
+ import { SDK } from '@longvansoftware/storefront-js-client';
17
+
18
+ const sdk = new SDK('your-org-id', 'your-store-id', 'dev');
19
+ sdk.setToken('your-access-token');
20
+
21
+ // Ready to use!
22
+ const products = await sdk.product.getSimpleProducts({ currentPage: 1, maxResult: 10 });
23
+ ```
24
+
25
+ ## ๐Ÿ“š Documentation
26
+
27
+ ### ๐ŸŽฏ Getting Started
28
+ - **[Installation & Setup](./docs/getting-started/installation.md)** - Complete installation guide
29
+ - **[Quick Start Guide](./docs/getting-started/quick-start.md)** - Get running in 5 minutes
30
+ - **[Configuration](./docs/getting-started/configuration.md)** - Environment and SDK configuration
31
+ - **[Authentication](./docs/getting-started/authentication.md)** - Authentication setup and patterns
32
+
33
+ ### ๐Ÿ”ง Core Services
34
+ - **[Authentication Service](./docs/services/auth.md)** - User authentication and authorization
35
+ - **[Product Service](./docs/services/product.md)** - Product catalog management
36
+ - **[Order Service](./docs/services/order.md)** - Order lifecycle management
37
+ - **[User Service](./docs/services/user.md)** - Customer and user management
38
+ - **[Payment Service](./docs/services/payment.md)** - Payment processing and invoicing
39
+ - **[CRM Service](./docs/services/crm.md)** - Customer relationship management
40
+
41
+ ### ๐Ÿ› ๏ธ Extended Services
42
+ - **[Warehouse Service](./docs/services/warehouse.md)** - Inventory management
43
+ - **[Computing Service](./docs/services/computing.md)** - Cloud computing services
44
+ - **[Campaign Service](./docs/services/campaign.md)** - Marketing campaigns
45
+ - **[Image Service](./docs/services/image.md)** - Image and media management
46
+ - **[Upload Service](./docs/services/upload.md)** - File upload handling
47
+
48
+ ### ๐Ÿ“– Advanced Topics
49
+ - **[Error Handling](./docs/advanced/error-handling.md)** - Robust error handling patterns
50
+ - **[TypeScript Support](./docs/advanced/typescript.md)** - Full TypeScript integration
51
+ - **[Testing](./docs/advanced/testing.md)** - Testing your integration
52
+ - **[Performance](./docs/advanced/performance.md)** - Optimization and best practices
53
+
54
+ ### ๐Ÿ’ก Examples & Patterns
55
+ - **[E-commerce Flow](./docs/examples/ecommerce-flow.md)** - Complete workflow examples
56
+ - **[Authentication Patterns](./docs/examples/auth-patterns.md)** - Auth implementation patterns
57
+ - **[Product Management](./docs/examples/product-management.md)** - Product handling examples
58
+ - **[Order Processing](./docs/examples/order-processing.md)** - Order workflow examples
59
+
60
+ ### ๐Ÿ” API Reference
61
+ - **[Complete API Reference](./docs/api/README.md)** - Full API documentation
62
+ - **[Type Definitions](./docs/api/types.md)** - TypeScript type definitions
63
+ - **[Interfaces](./docs/api/interfaces.md)** - Interface specifications
64
+
65
+ ## ๐Ÿ—๏ธ Architecture Overview
66
+
67
+ ```
68
+ Longvan SDK
69
+ โ”œโ”€โ”€ ๐Ÿ” Authentication Layer
70
+ โ”œโ”€โ”€ ๐Ÿ›๏ธ Core E-commerce Services
71
+ โ”‚ โ”œโ”€โ”€ Product Management
72
+ โ”‚ โ”œโ”€โ”€ Order Processing
73
+ โ”‚ โ”œโ”€โ”€ User Management
74
+ โ”‚ โ””โ”€โ”€ Payment Processing
75
+ โ”œโ”€โ”€ ๐Ÿ”ง Extended Services
76
+ โ”‚ โ”œโ”€โ”€ Warehouse & Inventory
77
+ โ”‚ โ”œโ”€โ”€ CRM & Customer Support
78
+ โ”‚ โ”œโ”€โ”€ Marketing & Campaigns
79
+ โ”‚ โ””โ”€โ”€ Media & File Management
80
+ โ””โ”€โ”€ ๐Ÿš€ Infrastructure
81
+ โ”œโ”€โ”€ GraphQL Client
82
+ โ”œโ”€โ”€ REST API Client
83
+ โ”œโ”€โ”€ Error Handling
84
+ โ””โ”€โ”€ TypeScript Support
85
+ ```
86
+
87
+ ## โœจ Key Features
88
+
89
+ - **๐ŸŽฏ Type-Safe**: Full TypeScript support with comprehensive type definitions
90
+ - **๐Ÿ”Œ Multi-Protocol**: Supports both GraphQL and REST APIs
91
+ - **๐Ÿ” Secure**: Built-in authentication and token management
92
+ - **โšก Performance**: Optimized for speed with caching and batching
93
+ - **๐Ÿ› ๏ธ Developer-Friendly**: Intuitive API design with excellent IntelliSense
94
+ - **๐Ÿ“ฑ Cross-Platform**: Works in Node.js, browsers, and React Native
95
+ - **๐Ÿงช Well-Tested**: Comprehensive test suite with high coverage
96
+ - **๐Ÿ“– Well-Documented**: Extensive documentation with real-world examples
97
+
98
+ ## ๐Ÿš€ Installation
99
+
100
+ ### Using npm
101
+ ```bash
102
+ npm install @longvansoftware/storefront-js-client
103
+ ```
104
+
105
+ ### Using yarn
106
+ ```bash
107
+ yarn add @longvansoftware/storefront-js-client
108
+ ```
109
+
110
+ ### Using pnpm
111
+ ```bash
112
+ pnpm add @longvansoftware/storefront-js-client
113
+ ```
114
+
115
+ ## โšก Quick Example
116
+
117
+ ```typescript
118
+ import { SDK } from '@longvansoftware/storefront-js-client';
119
+
120
+ // Initialize SDK
121
+ const sdk = new SDK('your-org-id', 'your-store-id', 'dev');
122
+
123
+ // Authenticate user
124
+ const loginResponse = await sdk.auth.login({
125
+ username: 'user@example.com',
126
+ password: 'password123'
127
+ });
128
+ sdk.setToken(loginResponse.accessToken);
129
+
130
+ // Browse products
131
+ const products = await sdk.product.getSimpleProducts({
132
+ keyword: 'laptop',
133
+ currentPage: 1,
134
+ maxResult: 20
135
+ });
136
+
137
+ // Create order
138
+ const order = await sdk.order.createOrder({
139
+ customer_id: loginResponse.partyId,
140
+ line_items: [{
141
+ product_id: products[0].id,
142
+ quantity: 1,
143
+ input_price: products[0].price
144
+ }]
145
+ }, 'web', false, loginResponse.partyId);
146
+
147
+ console.log('Order created:', order.id);
148
+
149
+ // Manage stores
150
+ const newStore = await sdk.store.createStore('FOX', 'My New Store');
151
+ const channels = await sdk.store.getStoreChannelByEmpId('emp-123');
152
+ ```
153
+
154
+ ## ๐Ÿ“ฆ TypeScript Support
155
+
156
+ Import types for full TypeScript support:
157
+
158
+ ```typescript
159
+ // Import specific types
160
+ import type {
161
+ Product,
162
+ ProductFilterOptions,
163
+ } from '@longvansoftware/storefront-js-client/dist/src/types/product';
164
+
165
+ import type {
166
+ StoreDTO,
167
+ CreateStoreRequest,
168
+ StoreConfiguration,
169
+ } from '@longvansoftware/storefront-js-client/dist/src/types/store';
170
+
171
+ import type {
172
+ LoginRequest,
173
+ LoginResponse,
174
+ } from '@longvansoftware/storefront-js-client/dist/src/types/auth';
175
+
176
+ // Use with full type safety
177
+ const products: Product[] = await sdk.product.getSimpleProducts({
178
+ keyword: 'laptop',
179
+ currentPage: 1,
180
+ maxResult: 10
181
+ });
182
+
183
+ const stores: StoreDTO[] = await sdk.store.getStoreChannelByEmpId('emp-123');
184
+ ```
185
+
186
+ ## ๐ŸŒŸ What's New in v2.9.0
187
+
188
+ - โœจ Enhanced TypeScript support with stricter types
189
+ - ๐Ÿš€ Improved error handling and debugging capabilities
190
+ - ๐Ÿ”ง New utility services for better platform integration
191
+ - โšก Performance optimizations and caching improvements
192
+ - ๐Ÿ”’ Updated dependencies and security enhancements
193
+ - ๐Ÿ“– Comprehensive documentation with real-world examples
194
+
195
+ ## ๐Ÿค Community & Support
196
+
197
+ - **๐Ÿ“– Documentation**: [Complete Documentation](./docs/README.md)
198
+ - **๐Ÿ› Issues**: [GitLab Issues](https://gitlab.longvan.vn/long-van-platform-2.0/website/storefront-js-client/-/issues)
199
+ - **๐Ÿ’ฌ Discussions**: [GitLab Discussions](https://gitlab.longvan.vn/long-van-platform-2.0/website/storefront-js-client/-/issues)
200
+ - **๐Ÿ“ง Support**: Contact the Longvan development team
201
+
202
+ ## ๐Ÿš€ Contributing
203
+
204
+ We welcome contributions! Please see our [Contributing Guide](./docs/contributing/README.md) for details on:
205
+
206
+ - ๐Ÿ”ง Setting up the development environment
207
+ - ๐Ÿ“ Code style and conventions
208
+ - ๐Ÿงช Running tests and quality checks
209
+ - ๐Ÿ“ค Submitting pull requests
210
+
211
+ ## ๐Ÿ“„ License
212
+
213
+ This project is licensed under the ISC License - see the [LICENSE](./LICENSE) file for details.
214
+
215
+ ---
216
+
217
+ **Ready to get started?**
218
+ - ๐Ÿš€ [Quick Start Guide](./docs/getting-started/quick-start.md)
219
+ - ๐Ÿ“– [Complete Documentation](./docs/README.md)
220
+ - ๐Ÿ” [API Reference](./docs/api/README.md)
221
+
222
222
  **Need help?** Open an issue on [GitLab](https://gitlab.longvan.vn/long-van-platform-2.0/website/storefront-js-client/-/issues) or check our [documentation](./docs/README.md).
@@ -13,3 +13,4 @@ export declare const ADD_ROLE_USER_MUTATION: import("graphql").DocumentNode;
13
13
  export declare const CREATE_USER_LOGIN_MUTATION: import("graphql").DocumentNode;
14
14
  export declare const SEND_OTP_MUTATION: import("graphql").DocumentNode;
15
15
  export declare const VALIDATE_OTP_MUTATION: import("graphql").DocumentNode;
16
+ export declare const GET_ACCESS_TOKEN_BY_OTP_MUTATION: import("graphql").DocumentNode;