@nautical-commerce/graphql-schema 1.80.0-24-g71f536158 → 1.80.0-26-g2fe2be2d2
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 +35 -201
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -450,36 +450,6 @@ type Query {
|
|
450
450
|
"""Return the last n elements from the list."""
|
451
451
|
last: Int
|
452
452
|
): SellerEventTypeCountableConnection
|
453
|
-
allowedOwners(
|
454
|
-
query: String
|
455
|
-
|
456
|
-
"""Return the elements in the list that come before the specified cursor."""
|
457
|
-
before: String
|
458
|
-
|
459
|
-
"""Return the elements in the list that come after the specified cursor."""
|
460
|
-
after: String
|
461
|
-
|
462
|
-
"""Return the first n elements from the list."""
|
463
|
-
first: Int
|
464
|
-
|
465
|
-
"""Return the last n elements from the list."""
|
466
|
-
last: Int
|
467
|
-
): UserCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
468
|
-
availablePlans(
|
469
|
-
query: String
|
470
|
-
|
471
|
-
"""Return the elements in the list that come before the specified cursor."""
|
472
|
-
before: String
|
473
|
-
|
474
|
-
"""Return the elements in the list that come after the specified cursor."""
|
475
|
-
after: String
|
476
|
-
|
477
|
-
"""Return the first n elements from the list."""
|
478
|
-
first: Int
|
479
|
-
|
480
|
-
"""Return the last n elements from the list."""
|
481
|
-
last: Int
|
482
|
-
): AgreementCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
483
453
|
|
484
454
|
"""Look up an refund by ID."""
|
485
455
|
refund(
|
@@ -1183,43 +1153,6 @@ type Query {
|
|
1183
1153
|
last: Int
|
1184
1154
|
): PageCountableConnection
|
1185
1155
|
|
1186
|
-
"""
|
1187
|
-
List of activity events to display on homepage (at the moment it only contains order-events).
|
1188
|
-
"""
|
1189
|
-
homepageEvents(
|
1190
|
-
"""Global ID of a seller to filter to"""
|
1191
|
-
identifier: ID
|
1192
|
-
|
1193
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1194
|
-
before: String
|
1195
|
-
|
1196
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1197
|
-
after: String
|
1198
|
-
|
1199
|
-
"""Return the first n elements from the list."""
|
1200
|
-
first: Int
|
1201
|
-
|
1202
|
-
"""Return the last n elements from the list."""
|
1203
|
-
last: Int
|
1204
|
-
): OrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
1205
|
-
|
1206
|
-
"""
|
1207
|
-
List of activity events to display on homepage (at the moment it only contains nautical-order-events).
|
1208
|
-
"""
|
1209
|
-
marketplaceHomepageEvents(
|
1210
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1211
|
-
before: String
|
1212
|
-
|
1213
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1214
|
-
after: String
|
1215
|
-
|
1216
|
-
"""Return the first n elements from the list."""
|
1217
|
-
first: Int
|
1218
|
-
|
1219
|
-
"""Return the last n elements from the list."""
|
1220
|
-
last: Int
|
1221
|
-
): NauticalOrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
1222
|
-
|
1223
1156
|
"""Look up an order by ID."""
|
1224
1157
|
order(
|
1225
1158
|
"""ID of an order."""
|
@@ -9415,40 +9348,6 @@ enum SellerSortField {
|
|
9415
9348
|
CREATED
|
9416
9349
|
}
|
9417
9350
|
|
9418
|
-
type UserCountableConnection {
|
9419
|
-
"""Pagination data for this connection."""
|
9420
|
-
pageInfo: PageInfo!
|
9421
|
-
edges: [UserCountableEdge!]!
|
9422
|
-
|
9423
|
-
"""A total count of items in the collection."""
|
9424
|
-
totalCount: Int
|
9425
|
-
}
|
9426
|
-
|
9427
|
-
type UserCountableEdge {
|
9428
|
-
"""The item at the end of the edge."""
|
9429
|
-
node: User!
|
9430
|
-
|
9431
|
-
"""A cursor for use in pagination."""
|
9432
|
-
cursor: String!
|
9433
|
-
}
|
9434
|
-
|
9435
|
-
type AgreementCountableConnection {
|
9436
|
-
"""Pagination data for this connection."""
|
9437
|
-
pageInfo: PageInfo!
|
9438
|
-
edges: [AgreementCountableEdge!]!
|
9439
|
-
|
9440
|
-
"""A total count of items in the collection."""
|
9441
|
-
totalCount: Int
|
9442
|
-
}
|
9443
|
-
|
9444
|
-
type AgreementCountableEdge {
|
9445
|
-
"""The item at the end of the edge."""
|
9446
|
-
node: Agreement!
|
9447
|
-
|
9448
|
-
"""A cursor for use in pagination."""
|
9449
|
-
cursor: String!
|
9450
|
-
}
|
9451
|
-
|
9452
9351
|
type RefundCountableConnection {
|
9453
9352
|
"""Pagination data for this connection."""
|
9454
9353
|
pageInfo: PageInfo!
|
@@ -10155,6 +10054,23 @@ enum PriceBookProductTypeHistorySortField {
|
|
10155
10054
|
CREATION_DATE
|
10156
10055
|
}
|
10157
10056
|
|
10057
|
+
type UserCountableConnection {
|
10058
|
+
"""Pagination data for this connection."""
|
10059
|
+
pageInfo: PageInfo!
|
10060
|
+
edges: [UserCountableEdge!]!
|
10061
|
+
|
10062
|
+
"""A total count of items in the collection."""
|
10063
|
+
totalCount: Int
|
10064
|
+
}
|
10065
|
+
|
10066
|
+
type UserCountableEdge {
|
10067
|
+
"""The item at the end of the edge."""
|
10068
|
+
node: User!
|
10069
|
+
|
10070
|
+
"""A cursor for use in pagination."""
|
10071
|
+
cursor: String!
|
10072
|
+
}
|
10073
|
+
|
10158
10074
|
input UserSortingInput {
|
10159
10075
|
"""Specifies the direction in which to sort products."""
|
10160
10076
|
direction: OrderDirection!
|
@@ -10927,40 +10843,6 @@ input PageFilterInput {
|
|
10927
10843
|
search: String
|
10928
10844
|
}
|
10929
10845
|
|
10930
|
-
type OrderEventCountableConnection {
|
10931
|
-
"""Pagination data for this connection."""
|
10932
|
-
pageInfo: PageInfo!
|
10933
|
-
edges: [OrderEventCountableEdge!]!
|
10934
|
-
|
10935
|
-
"""A total count of items in the collection."""
|
10936
|
-
totalCount: Int
|
10937
|
-
}
|
10938
|
-
|
10939
|
-
type OrderEventCountableEdge {
|
10940
|
-
"""The item at the end of the edge."""
|
10941
|
-
node: OrderEvent!
|
10942
|
-
|
10943
|
-
"""A cursor for use in pagination."""
|
10944
|
-
cursor: String!
|
10945
|
-
}
|
10946
|
-
|
10947
|
-
type NauticalOrderEventCountableConnection {
|
10948
|
-
"""Pagination data for this connection."""
|
10949
|
-
pageInfo: PageInfo!
|
10950
|
-
edges: [NauticalOrderEventCountableEdge!]!
|
10951
|
-
|
10952
|
-
"""A total count of items in the collection."""
|
10953
|
-
totalCount: Int
|
10954
|
-
}
|
10955
|
-
|
10956
|
-
type NauticalOrderEventCountableEdge {
|
10957
|
-
"""The item at the end of the edge."""
|
10958
|
-
node: NauticalOrderEvent!
|
10959
|
-
|
10960
|
-
"""A cursor for use in pagination."""
|
10961
|
-
cursor: String!
|
10962
|
-
}
|
10963
|
-
|
10964
10846
|
input OrderFilterInput {
|
10965
10847
|
paymentStatus: [PaymentChargeStatusEnum!]
|
10966
10848
|
status: [OrderStatusFilter!]
|
@@ -12332,6 +12214,23 @@ enum AppSortField {
|
|
12332
12214
|
CREATION_DATE
|
12333
12215
|
}
|
12334
12216
|
|
12217
|
+
type AgreementCountableConnection {
|
12218
|
+
"""Pagination data for this connection."""
|
12219
|
+
pageInfo: PageInfo!
|
12220
|
+
edges: [AgreementCountableEdge!]!
|
12221
|
+
|
12222
|
+
"""A total count of items in the collection."""
|
12223
|
+
totalCount: Int
|
12224
|
+
}
|
12225
|
+
|
12226
|
+
type AgreementCountableEdge {
|
12227
|
+
"""The item at the end of the edge."""
|
12228
|
+
node: Agreement!
|
12229
|
+
|
12230
|
+
"""A cursor for use in pagination."""
|
12231
|
+
cursor: String!
|
12232
|
+
}
|
12233
|
+
|
12335
12234
|
input AgreementOrder {
|
12336
12235
|
"""Specifies the direction in which to sort products."""
|
12337
12236
|
direction: OrderDirection!
|
@@ -12457,7 +12356,7 @@ type Mutation {
|
|
12457
12356
|
description: String
|
12458
12357
|
|
12459
12358
|
"""
|
12460
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12359
|
+
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.slideshow, application/x-tif, text/rtf, image/x-tiff, application/acad, text/csv, text/comma-separated-values, text/plain, application/x-dwg, image/x-bmp, application/vnd.ms-excel, text/svg-xml, application/tif, application/jpg, application/x-tar, application/vnd.oasis.opendocument.text, application/zip, image/x-ms-bmp, application/svg+xml, application/x-autocad, image/x-dxf, application/x-dxf, application/excel, text/x-csv, application/vnd.ms-powerpoint, application/x-rtf, application/x-jpg, image/bmp, image/heif, application/vnd.ms-word, text/x-pdf, image/png, image/eps, image/jpg, drawing/x-dwg, application/vnd.oasis.opendocument.presentation, application/x-eps, application/x-rar-compressed, image/x-eps, application/dwg, pplication/vnd.rar, text/x-comma-separated-values, application/eps, application/pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/jpeg, application/acrobat, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-csv, application/tiff, application/x-acad, image/heic-sequence, application/csv, text/pdf, image/x-tif, image/heic, application/x-gzip, application/msword, application/x-pdf, image/dxf, application/x-rar, image/tiff, image/gif, image/svg, drawing/dwg, image/vnd.dwg, image/x-dwg, application/gzip, image/webp, text/svg, image/heif-sequence, drawing/x-dwf, application/x-tiff, application/vnd.oasis.opendocument.spreadsheet, application/gzip-compressed, application/gzipped, application/vnd.pdf, image/svg+xml, image/tif, application/postscript, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/rtf, application/dxf.
|
12461
12360
|
"""
|
12462
12361
|
file: Upload!
|
12463
12362
|
|
@@ -14168,15 +14067,6 @@ type Mutation {
|
|
14168
14067
|
input: NoteInput!
|
14169
14068
|
): NauticalOrderLineAddNote
|
14170
14069
|
|
14171
|
-
"""Adds return notification note to the order."""
|
14172
|
-
orderReturnNotification(
|
14173
|
-
"""ID of the order to add a note for."""
|
14174
|
-
order: ID!
|
14175
|
-
|
14176
|
-
"""Fields required to create a return notification for the order."""
|
14177
|
-
input: OrderReturnNotificationInput!
|
14178
|
-
): OrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14179
|
-
|
14180
14070
|
"""
|
14181
14071
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
14182
14072
|
"""
|
@@ -14200,24 +14090,6 @@ type Mutation {
|
|
14200
14090
|
id: ID
|
14201
14091
|
): NauticalOrderUpdateDeleteDiscount
|
14202
14092
|
|
14203
|
-
"""Adds return notification note to the order."""
|
14204
|
-
nauticalOrderReturnNotification(
|
14205
|
-
"""ID of the order to add a note for."""
|
14206
|
-
order: ID!
|
14207
|
-
|
14208
|
-
"""Fields required to create a return notification for the order."""
|
14209
|
-
input: OrderReturnNotificationInput!
|
14210
|
-
): NauticalOrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14211
|
-
|
14212
|
-
"""Adds return notification note to the order."""
|
14213
|
-
nauticalOrderReturnFromStorefrontNotification(
|
14214
|
-
"""ID of the order to add a note for."""
|
14215
|
-
order: ID!
|
14216
|
-
|
14217
|
-
"""Fields required to create a return notification for the order."""
|
14218
|
-
input: OrderReturnNotificationInput!
|
14219
|
-
): NauticalOrderReturnFromStorefrontNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14220
|
-
|
14221
14093
|
"""Cancel an order."""
|
14222
14094
|
orderCancel(
|
14223
14095
|
"""ID of the order to cancel."""
|
@@ -20085,24 +19957,6 @@ type NauticalOrderLineAddNote {
|
|
20085
19957
|
nauticalOrderLine: NauticalOrderLine
|
20086
19958
|
}
|
20087
19959
|
|
20088
|
-
"""Adds return notification note to the order."""
|
20089
|
-
type OrderReturnNotification {
|
20090
|
-
"""Order with return notification note added."""
|
20091
|
-
order: Order
|
20092
|
-
|
20093
|
-
"""Order return notification created."""
|
20094
|
-
event: OrderEvent
|
20095
|
-
orderErrors: [OrderError!]!
|
20096
|
-
}
|
20097
|
-
|
20098
|
-
input OrderReturnNotificationInput {
|
20099
|
-
"""Status of the return."""
|
20100
|
-
returnStatus: String!
|
20101
|
-
|
20102
|
-
"""Status of the return."""
|
20103
|
-
productNames: String
|
20104
|
-
}
|
20105
|
-
|
20106
19960
|
"""
|
20107
19961
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
20108
19962
|
"""
|
@@ -20126,26 +19980,6 @@ type NauticalOrderUpdateDeleteDiscount {
|
|
20126
19980
|
orderErrors: [OrderError!]!
|
20127
19981
|
}
|
20128
19982
|
|
20129
|
-
"""Adds return notification note to the order."""
|
20130
|
-
type NauticalOrderReturnNotification {
|
20131
|
-
"""Order with return notification note added."""
|
20132
|
-
order: NauticalOrder
|
20133
|
-
|
20134
|
-
"""Order return notification created."""
|
20135
|
-
event: NauticalOrderEvent
|
20136
|
-
orderErrors: [OrderError!]!
|
20137
|
-
}
|
20138
|
-
|
20139
|
-
"""Adds return notification note to the order."""
|
20140
|
-
type NauticalOrderReturnFromStorefrontNotification {
|
20141
|
-
"""Order with return notification note added."""
|
20142
|
-
order: NauticalOrder
|
20143
|
-
|
20144
|
-
"""Order return notification created."""
|
20145
|
-
event: NauticalOrderEvent
|
20146
|
-
orderErrors: [OrderError!]!
|
20147
|
-
}
|
20148
|
-
|
20149
19983
|
"""Cancel an order."""
|
20150
19984
|
type OrderCancel {
|
20151
19985
|
"""Canceled order."""
|