@paris-ias/trees 2.0.27 → 2.0.28
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/form/files.d.ts +2 -2
- package/dist/graphql/client/files/mutation.multipart.finalize.gql +9 -0
- package/dist/graphql/client/files/mutation.multipart.init.gql +6 -0
- package/dist/graphql/client/files/mutation.multipart.presigned.urls.gql +10 -0
- package/dist/graphql/schemas/apex-resolvers-list.json +3 -0
- package/dist/graphql/schemas/schema.apex.graphql +39 -0
- package/dist/list/files.d.ts +2 -2
- package/package.json +1 -1
package/dist/form/files.d.ts
CHANGED
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
"mutations/deleteItem",
|
|
8
8
|
"mutations/forgotPassword",
|
|
9
9
|
"mutations/inviteUser",
|
|
10
|
+
"mutations/multipartFinalize",
|
|
11
|
+
"mutations/multipartInit",
|
|
12
|
+
"mutations/multipartPreSignedUrls",
|
|
10
13
|
"mutations/updateUser",
|
|
11
14
|
"mutations/upsertApp",
|
|
12
15
|
"mutations/upsertEvent",
|
|
@@ -21,6 +21,28 @@ input FileInput {
|
|
|
21
21
|
category: FileCategory
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
input MultipartInitInput {
|
|
25
|
+
fileName: String!
|
|
26
|
+
appId: ID
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
input MultipartPreSignedUrlsInput {
|
|
30
|
+
fileKey: String!
|
|
31
|
+
fileId: String!
|
|
32
|
+
parts: Int!
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
input MultipartPartInput {
|
|
36
|
+
ETag: String!
|
|
37
|
+
PartNumber: Int!
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
input MultipartFinalizeInput {
|
|
41
|
+
fileKey: String!
|
|
42
|
+
fileId: String!
|
|
43
|
+
parts: [MultipartPartInput!]!
|
|
44
|
+
}
|
|
45
|
+
|
|
24
46
|
input VideoInput {
|
|
25
47
|
url: AWSURL
|
|
26
48
|
alt: String
|
|
@@ -36,6 +58,20 @@ type FilesList {
|
|
|
36
58
|
items: [File]
|
|
37
59
|
}
|
|
38
60
|
|
|
61
|
+
type MultipartInitResult {
|
|
62
|
+
fileId: String!
|
|
63
|
+
fileKey: String!
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
type MultipartPreSignedUrl {
|
|
67
|
+
signedUrl: String!
|
|
68
|
+
PartNumber: Int!
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
type MultipartFinalizeResult {
|
|
72
|
+
fileKey: String!
|
|
73
|
+
}
|
|
74
|
+
|
|
39
75
|
type Mailing {
|
|
40
76
|
appId: String
|
|
41
77
|
name: String
|
|
@@ -90,6 +126,9 @@ type Mutation {
|
|
|
90
126
|
deleteItem(appId: ID, itemId: ID!, type: String!): Boolean
|
|
91
127
|
bookEvent(itemId: ID!, slot: SlotInput!): Boolean
|
|
92
128
|
createNomenclature(options: NomenclatureInput!): Nomenclature
|
|
129
|
+
multipartInit(fileName: String!, appId: ID): MultipartInitResult!
|
|
130
|
+
multipartPreSignedUrls(fileKey: String!, fileId: String!, parts: Int!): [MultipartPreSignedUrl!]!
|
|
131
|
+
multipartFinalize(fileKey: String!, fileId: String!, parts: [MultipartPartInput!]!): MultipartFinalizeResult!
|
|
93
132
|
}
|
|
94
133
|
|
|
95
134
|
type Query {
|
package/dist/list/files.d.ts
CHANGED