@connect-plus-online/ogabai-integrations 0.1.2 → 0.1.4
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/index.d.ts +4 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -323,8 +323,8 @@ var authSchema = {
|
|
|
323
323
|
}
|
|
324
324
|
`,
|
|
325
325
|
signUp: (query) => `
|
|
326
|
-
mutation signUp($phone: String!, $pin: String!, $storeName: String!, $email: String, $userType: UserTypeInputEnum) {
|
|
327
|
-
signUp(phone: $phone, pin: $pin, storeName: $storeName, email: $email, userType: $userType) {
|
|
326
|
+
mutation signUp($firstName: String!, $lastName: String!, $phone: String!, $pin: String!, $storeName: String!, $storeLocation: String, $email: String, $userType: UserTypeInputEnum) {
|
|
327
|
+
signUp( firstName: $firstName, lastName: $lastName, phone: $phone, pin: $pin, storeName: $storeName, storeLocation: $storeLocation, email: $email, userType: $userType) {
|
|
328
328
|
${query}
|
|
329
329
|
}
|
|
330
330
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -265,8 +265,8 @@ var authSchema = {
|
|
|
265
265
|
}
|
|
266
266
|
`,
|
|
267
267
|
signUp: (query) => `
|
|
268
|
-
mutation signUp($phone: String!, $pin: String!, $storeName: String!, $email: String, $userType: UserTypeInputEnum) {
|
|
269
|
-
signUp(phone: $phone, pin: $pin, storeName: $storeName, email: $email, userType: $userType) {
|
|
268
|
+
mutation signUp($firstName: String!, $lastName: String!, $phone: String!, $pin: String!, $storeName: String!, $storeLocation: String, $email: String, $userType: UserTypeInputEnum) {
|
|
269
|
+
signUp( firstName: $firstName, lastName: $lastName, phone: $phone, pin: $pin, storeName: $storeName, storeLocation: $storeLocation, email: $email, userType: $userType) {
|
|
270
270
|
${query}
|
|
271
271
|
}
|
|
272
272
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connect-plus-online/ogabai-integrations",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Ogabai integrations for Connect Plus Online",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphql",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"main": "dist/index.cjs.js",
|
|
18
18
|
"module": "dist/index.esm.js",
|
|
19
|
+
"react-native": "dist/index.js",
|
|
19
20
|
"types": "dist/index.d.ts",
|
|
20
21
|
"files": [
|
|
21
22
|
"dist"
|