Fixed import on upload utility.

This commit is contained in:
Patrick Fic
2020-11-17 10:04:40 -08:00
parent 21180c6a65
commit dd702ec438
5 changed files with 4242 additions and 3943 deletions

View File

@@ -2654,6 +2654,11 @@
"resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz",
"integrity": "sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ=="
},
"@types/prop-types": {
"version": "15.7.3",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz",
"integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw=="
},
"@types/q": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz",
@@ -5818,6 +5823,11 @@
"is-obj": "^2.0.0"
}
},
"dotenv": {
"version": "8.2.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
"integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw=="
},
"dotenv-expand": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz",
@@ -12829,6 +12839,16 @@
"sisteransi": "^1.0.5"
}
},
"prop-types": {
"version": "15.7.2",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz",
"integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==",
"requires": {
"loose-envify": "^1.4.0",
"object-assign": "^4.1.1",
"react-is": "^16.8.1"
}
},
"protobufjs": {
"version": "6.10.1",
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.10.1.tgz",

6344
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,9 +1,10 @@
import { notification } from "antd";
import axios from "axios";
import i18n from "i18next";
import client, { axiosAuthInterceptorId } from "../../utils/CleanAxios";
import { axiosAuthInterceptorId } from "../../utils/CleanAxios";
import { logImEXEvent } from "../../firebase/firebase.utils";
import { INSERT_NEW_DOCUMENT } from "../../graphql/documents.queries";
import client from "../../utils/GraphQLClient";
//Context: currentUserEmail, bodyshop, jobid, invoiceid
//Required to prevent headers from getting set and rejected from Cloudinary.

View File

@@ -4066,50 +4066,50 @@ tables:
- active:
_eq: true
columns:
- due_date
- favorite
- discount
- prompt_discount
- bodyshopid
- city
- cost_center
- country
- created_at
- discount
- display_name
- due_date
- email
- favorite
- id
- name
- prompt_discount
- state
- street1
- street2
- taxid
- terms
- zip
- created_at
- updated_at
- bodyshopid
- id
- zip
select_permissions:
- role: user
permission:
columns:
- due_date
- favorite
- discount
- prompt_discount
- bodyshopid
- city
- cost_center
- country
- created_at
- discount
- display_name
- due_date
- email
- favorite
- id
- name
- prompt_discount
- state
- street1
- street2
- taxid
- terms
- zip
- created_at
- updated_at
- bodyshopid
- id
- zip
filter:
bodyshop:
associations:
@@ -4123,26 +4123,26 @@ tables:
- role: user
permission:
columns:
- due_date
- favorite
- discount
- prompt_discount
- bodyshopid
- city
- cost_center
- country
- created_at
- discount
- display_name
- due_date
- email
- favorite
- id
- name
- prompt_discount
- state
- street1
- street2
- taxid
- terms
- zip
- created_at
- updated_at
- bodyshopid
- id
- zip
filter:
bodyshop:
associations:

1770
package-lock.json generated

File diff suppressed because it is too large Load Diff