@nautical-commerce/graphql-schema 1.74.2-7-ge8f8c81ba → 1.74.2-9-g789a382c6
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/nautical/schema.graphql +1 -103
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1958,9 +1958,6 @@ type Query {
|
|
1958
1958
|
contentType: CustomFieldTemplateEnum
|
1959
1959
|
): CustomFieldTemplate
|
1960
1960
|
|
1961
|
-
"""List of all apps installations"""
|
1962
|
-
appsInstallations: [AppInstallation!]! @deprecated(reason: "This will be removed on March 2nd, 2025")
|
1963
|
-
|
1964
1961
|
"""List of the apps."""
|
1965
1962
|
apps(
|
1966
1963
|
"""Filtering options for apps."""
|
@@ -12985,27 +12982,6 @@ enum CustomFieldTemplateEnum {
|
|
12985
12982
|
FULFILLMENT
|
12986
12983
|
}
|
12987
12984
|
|
12988
|
-
"""Represents ongoing installation of app."""
|
12989
|
-
type AppInstallation implements Node & Job {
|
12990
|
-
appName: String!
|
12991
|
-
manifestUrl: String!
|
12992
|
-
|
12993
|
-
"""The ID of the object"""
|
12994
|
-
id: ID!
|
12995
|
-
|
12996
|
-
"""Job status."""
|
12997
|
-
status: JobStatusEnum!
|
12998
|
-
|
12999
|
-
"""Created date time of job in ISO 8601 format."""
|
13000
|
-
createdAt: DateTime!
|
13001
|
-
|
13002
|
-
"""Date time of job last update in ISO 8601 format."""
|
13003
|
-
updatedAt: DateTime!
|
13004
|
-
|
13005
|
-
"""Job message."""
|
13006
|
-
message: String
|
13007
|
-
}
|
13008
|
-
|
13009
12985
|
type AppCountableConnection {
|
13010
12986
|
"""Pagination data for this connection."""
|
13011
12987
|
pageInfo: PageInfo!
|
@@ -13195,7 +13171,7 @@ type Mutation {
|
|
13195
13171
|
description: String
|
13196
13172
|
|
13197
13173
|
"""
|
13198
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13174
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.openxmlformats-officedocument.presentationml.presentation, image/png, application/postscript, text/pdf, pplication/vnd.rar, image/x-ms-bmp, application/x-dxf, text/plain, text/x-csv, application/x-tar, application/jpg, application/x-pdf, application/vnd.oasis.opendocument.spreadsheet, application/excel, drawing/x-dwg, application/vnd.pdf, application/eps, image/x-dxf, application/dwg, application/acrobat, application/x-jpg, image/jpeg, application/tiff, application/x-zip-compressed, application/vnd.ms-excel, image/x-bmp, image/svg, text/svg-xml, image/tiff, image/svg+xml, application/pdf, application/x-tiff, application/msword, image/x-tiff, image/bmp, text/rtf, application/x-eps, text/csv, image/dxf, application/zip, image/heic, text/x-comma-separated-values, application/x-rar, image/heif, application/dxf, image/heic-sequence, application/gzipped, application/x-dwg, application/x-acad, image/jpg, application/x-autocad, text/svg, application/x-rar-compressed, application/x-csv, drawing/dwg, image/x-dwg, application/tif, image/eps, image/gif, application/vnd.ms-powerpoint, image/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/vnd.dwg, image/heif-sequence, application/vnd.oasis.opendocument.presentation, image/x-tif, application/rtf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/csv, image/webp, application/x-rtf, image/tif, drawing/x-dwf, application/gzip-compressed, text/comma-separated-values, application/acad, application/gzip, application/vnd.ms-word, text/x-pdf, application/svg+xml, application/vnd.oasis.opendocument.text, application/x-tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-gzip.
|
13199
13175
|
"""
|
13200
13176
|
file: Upload!
|
13201
13177
|
|
@@ -16007,30 +15983,6 @@ type Mutation {
|
|
16007
15983
|
id: ID!
|
16008
15984
|
): AppStorefrontIntegrationDelete
|
16009
15985
|
|
16010
|
-
"""Install new app by using app manifest."""
|
16011
|
-
appInstall(
|
16012
|
-
"""Fields required to install a new app."""
|
16013
|
-
input: AppInstallInput!
|
16014
|
-
): AppInstall @deprecated(reason: "This will be removed on March 2nd, 2025")
|
16015
|
-
|
16016
|
-
"""Retry failed installation of new app."""
|
16017
|
-
appRetryInstall(
|
16018
|
-
"""Determine if app will be set active or not."""
|
16019
|
-
activateAfterInstallation: Boolean = true
|
16020
|
-
|
16021
|
-
"""ID of failed installation."""
|
16022
|
-
id: ID!
|
16023
|
-
): AppRetryInstall @deprecated(reason: "This will be removed on March 2nd, 2025")
|
16024
|
-
|
16025
|
-
"""Delete failed installation."""
|
16026
|
-
appDeleteFailedInstallation(
|
16027
|
-
"""ID of failed installation to delete."""
|
16028
|
-
id: ID!
|
16029
|
-
): AppDeleteFailedInstallation @deprecated(reason: "This will be removed on March 2nd, 2025")
|
16030
|
-
|
16031
|
-
"""Fetch and validate manifest."""
|
16032
|
-
appFetchManifest(manifestUrl: String!): AppFetchManifest @deprecated(reason: "This will be removed on March 2nd, 2025")
|
16033
|
-
|
16034
15986
|
"""Activate the app."""
|
16035
15987
|
appActivate(
|
16036
15988
|
"""ID of app to activate."""
|
@@ -23129,60 +23081,6 @@ type AppStorefrontIntegrationDelete {
|
|
23129
23081
|
appStorefrontIntegration: AppStorefrontIntegration
|
23130
23082
|
}
|
23131
23083
|
|
23132
|
-
"""Install new app by using app manifest."""
|
23133
|
-
type AppInstall {
|
23134
|
-
appErrors: [AppError!]!
|
23135
|
-
appInstallation: AppInstallation
|
23136
|
-
}
|
23137
|
-
|
23138
|
-
input AppInstallInput {
|
23139
|
-
"""Name of the app to install."""
|
23140
|
-
appName: String
|
23141
|
-
|
23142
|
-
"""Url to app's manifest in JSON format."""
|
23143
|
-
manifestUrl: String
|
23144
|
-
|
23145
|
-
"""Determine if app will be set active or not."""
|
23146
|
-
activateAfterInstallation: Boolean = true
|
23147
|
-
|
23148
|
-
"""List of permission code names to assign to this app."""
|
23149
|
-
permissions: [PermissionEnum!]
|
23150
|
-
}
|
23151
|
-
|
23152
|
-
"""Retry failed installation of new app."""
|
23153
|
-
type AppRetryInstall {
|
23154
|
-
appErrors: [AppError!]!
|
23155
|
-
appInstallation: AppInstallation
|
23156
|
-
}
|
23157
|
-
|
23158
|
-
"""Delete failed installation."""
|
23159
|
-
type AppDeleteFailedInstallation {
|
23160
|
-
appErrors: [AppError!]!
|
23161
|
-
appInstallation: AppInstallation
|
23162
|
-
}
|
23163
|
-
|
23164
|
-
"""Fetch and validate manifest."""
|
23165
|
-
type AppFetchManifest {
|
23166
|
-
manifest: Manifest
|
23167
|
-
appErrors: [AppError!]!
|
23168
|
-
}
|
23169
|
-
|
23170
|
-
"""The manifest definition."""
|
23171
|
-
type Manifest {
|
23172
|
-
identifier: String!
|
23173
|
-
version: String!
|
23174
|
-
name: String!
|
23175
|
-
about: String
|
23176
|
-
permissions: [Permission!]
|
23177
|
-
appUrl: String
|
23178
|
-
configurationUrl: String
|
23179
|
-
tokenTargetUrl: String
|
23180
|
-
dataPrivacy: String
|
23181
|
-
dataPrivacyUrl: String
|
23182
|
-
homepageUrl: String
|
23183
|
-
supportUrl: String
|
23184
|
-
}
|
23185
|
-
|
23186
23084
|
"""Activate the app."""
|
23187
23085
|
type AppActivate {
|
23188
23086
|
appErrors: [AppError!]!
|