@nautical-commerce/graphql-schema 1.80.0-26-g2fe2be2d2 → 1.80.0-27-g185c1a05e
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 +9 -302
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -960,51 +960,6 @@ type Query {
|
|
960
960
|
id: ID!
|
961
961
|
): [TaxCertificate!]
|
962
962
|
|
963
|
-
"""List of third party products"""
|
964
|
-
thirdPartyProducts(
|
965
|
-
"""Third-party source name"""
|
966
|
-
source: String!
|
967
|
-
): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
968
|
-
|
969
|
-
"""Get third party product in form we can use for import"""
|
970
|
-
importThirdPartyProduct(
|
971
|
-
"""Third-party source name"""
|
972
|
-
source: String!
|
973
|
-
|
974
|
-
"""ID of the third party product to import"""
|
975
|
-
id: ID!
|
976
|
-
): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
977
|
-
|
978
|
-
"""List of plugins that are available as product import sources"""
|
979
|
-
availableImportSources: [Plugin!] @deprecated(reason: "This will be removed on April 29, 2025")
|
980
|
-
|
981
|
-
"""Look up a catalog import process by ID."""
|
982
|
-
catalogImportProcess(
|
983
|
-
"""ID of the catalog import process."""
|
984
|
-
id: ID!
|
985
|
-
): CatalogImportProcess @deprecated(reason: "This will be removed on April 29, 2025")
|
986
|
-
|
987
|
-
"""List of catalog import processes."""
|
988
|
-
catalogImportProcesses(
|
989
|
-
"""Filtering options for catalog import processes."""
|
990
|
-
filter: CatalogImportProcessFilterInput
|
991
|
-
|
992
|
-
"""Sort catalog import processes."""
|
993
|
-
sortBy: CatalogImportProcessSortInput
|
994
|
-
|
995
|
-
"""Return the elements in the list that come before the specified cursor."""
|
996
|
-
before: String
|
997
|
-
|
998
|
-
"""Return the elements in the list that come after the specified cursor."""
|
999
|
-
after: String
|
1000
|
-
|
1001
|
-
"""Return the first n elements from the list."""
|
1002
|
-
first: Int
|
1003
|
-
|
1004
|
-
"""Return the last n elements from the list."""
|
1005
|
-
last: Int
|
1006
|
-
): CatalogImportProcessCountableConnection @deprecated(reason: "This will be removed on April 29, 2025")
|
1007
|
-
|
1008
963
|
"""
|
1009
964
|
List of tax exempt code supported by Avalara. Required permission: MANAGE_MARKETPLACE. Note: doesn't support app auth.
|
1010
965
|
"""
|
@@ -10169,225 +10124,6 @@ type TaxCertificate {
|
|
10169
10124
|
exposureZoneName: String
|
10170
10125
|
}
|
10171
10126
|
|
10172
|
-
"""
|
10173
|
-
The `GenericScalar` scalar type represents a generic
|
10174
|
-
GraphQL scalar value that could be:
|
10175
|
-
String, Boolean, Int, Float, List or Object.
|
10176
|
-
"""
|
10177
|
-
scalar GenericScalar
|
10178
|
-
|
10179
|
-
"""
|
10180
|
-
Represents products import process from 3rd party service or integration.
|
10181
|
-
"""
|
10182
|
-
type CatalogImportProcess implements Node {
|
10183
|
-
status: CatalogImportProcessStatus!
|
10184
|
-
message: String
|
10185
|
-
createdAt: DateTime!
|
10186
|
-
updatedAt: DateTime!
|
10187
|
-
|
10188
|
-
"""
|
10189
|
-
Main Celery task ID, that performs action. Can be equal to null, if the process is not started yet. Can be used to revoke running task.
|
10190
|
-
"""
|
10191
|
-
taskId: String
|
10192
|
-
externalSource: String!
|
10193
|
-
finishedAt: DateTime
|
10194
|
-
|
10195
|
-
"""The user who triggered this import process."""
|
10196
|
-
createdBy: User
|
10197
|
-
|
10198
|
-
"""The seller for whom triggered this import process."""
|
10199
|
-
seller: Seller
|
10200
|
-
|
10201
|
-
"""Error message for failed imports."""
|
10202
|
-
internalNotes: String
|
10203
|
-
|
10204
|
-
"""The ID of the object"""
|
10205
|
-
id: ID!
|
10206
|
-
|
10207
|
-
"""List of products in this collection."""
|
10208
|
-
records(
|
10209
|
-
"""Filtering options for products."""
|
10210
|
-
filter: CatalogImportProcessLogRecordFilterInput
|
10211
|
-
|
10212
|
-
"""Sort products."""
|
10213
|
-
sortBy: CatalogImportProcessLogRecordSortInput
|
10214
|
-
|
10215
|
-
"""Return the elements in the list that come before the specified cursor."""
|
10216
|
-
before: String
|
10217
|
-
|
10218
|
-
"""Return the elements in the list that come after the specified cursor."""
|
10219
|
-
after: String
|
10220
|
-
|
10221
|
-
"""Return the first n elements from the list."""
|
10222
|
-
first: Int
|
10223
|
-
|
10224
|
-
"""Return the last n elements from the list."""
|
10225
|
-
last: Int
|
10226
|
-
): CatalogImportProcessLogRecordCountableConnection
|
10227
|
-
}
|
10228
|
-
|
10229
|
-
"""An enumeration."""
|
10230
|
-
enum CatalogImportProcessStatus {
|
10231
|
-
"""Pending"""
|
10232
|
-
PENDING
|
10233
|
-
|
10234
|
-
"""Processing"""
|
10235
|
-
PROCESSING
|
10236
|
-
|
10237
|
-
"""Success"""
|
10238
|
-
SUCCESS
|
10239
|
-
|
10240
|
-
"""Failed"""
|
10241
|
-
FAILED
|
10242
|
-
|
10243
|
-
"""Deleted"""
|
10244
|
-
DELETED
|
10245
|
-
}
|
10246
|
-
|
10247
|
-
type CatalogImportProcessLogRecordCountableConnection {
|
10248
|
-
"""Pagination data for this connection."""
|
10249
|
-
pageInfo: PageInfo!
|
10250
|
-
edges: [CatalogImportProcessLogRecordCountableEdge!]!
|
10251
|
-
|
10252
|
-
"""A total count of items in the collection."""
|
10253
|
-
totalCount: Int
|
10254
|
-
}
|
10255
|
-
|
10256
|
-
type CatalogImportProcessLogRecordCountableEdge {
|
10257
|
-
"""The item at the end of the edge."""
|
10258
|
-
node: CatalogImportProcessLogRecord!
|
10259
|
-
|
10260
|
-
"""A cursor for use in pagination."""
|
10261
|
-
cursor: String!
|
10262
|
-
}
|
10263
|
-
|
10264
|
-
"""History log of each record processed with catalog import process."""
|
10265
|
-
type CatalogImportProcessLogRecord implements Node {
|
10266
|
-
"""The ID of the object"""
|
10267
|
-
id: ID!
|
10268
|
-
createdAt: DateTime!
|
10269
|
-
|
10270
|
-
"""Celery task ID, that created this log"""
|
10271
|
-
taskId: String
|
10272
|
-
objectId: String
|
10273
|
-
operation: CatalogImportProcessLogRecordOperation!
|
10274
|
-
|
10275
|
-
"""The name of a models which was processed with catalog import process."""
|
10276
|
-
relatedObjectName: String
|
10277
|
-
}
|
10278
|
-
|
10279
|
-
"""An enumeration."""
|
10280
|
-
enum CatalogImportProcessLogRecordOperation {
|
10281
|
-
"""Attribute Created"""
|
10282
|
-
ATTRIBUTE_CREATED
|
10283
|
-
|
10284
|
-
"""Attribute Updated"""
|
10285
|
-
ATTRIBUTE_UPDATED
|
10286
|
-
|
10287
|
-
"""Category Created"""
|
10288
|
-
CATEGORY_CREATED
|
10289
|
-
|
10290
|
-
"""Category Updated"""
|
10291
|
-
CATEGORY_UPDATED
|
10292
|
-
|
10293
|
-
"""Product Created"""
|
10294
|
-
PRODUCT_CREATED
|
10295
|
-
|
10296
|
-
"""Product Updated"""
|
10297
|
-
PRODUCT_UPDATED
|
10298
|
-
|
10299
|
-
"""Product Updated or Created"""
|
10300
|
-
PRODUCT_UPDATED_OR_CREATED
|
10301
|
-
|
10302
|
-
"""Product Archived"""
|
10303
|
-
PRODUCT_ARCHIVED
|
10304
|
-
|
10305
|
-
"""Product Type Created"""
|
10306
|
-
PRODUCT_TYPE_CREATED
|
10307
|
-
|
10308
|
-
"""Product Type Updated"""
|
10309
|
-
PRODUCT_TYPE_UPDATED
|
10310
|
-
|
10311
|
-
"""Warehouse Created"""
|
10312
|
-
WAREHOUSE_CREATED
|
10313
|
-
|
10314
|
-
"""Warehouse Updated"""
|
10315
|
-
WAREHOUSE_UPDATED
|
10316
|
-
}
|
10317
|
-
|
10318
|
-
input CatalogImportProcessLogRecordFilterInput {
|
10319
|
-
taskId: String
|
10320
|
-
objectId: String
|
10321
|
-
operation: CatalogImportOperation
|
10322
|
-
}
|
10323
|
-
|
10324
|
-
"""An enumeration."""
|
10325
|
-
enum CatalogImportOperation {
|
10326
|
-
ATTRIBUTE_CREATED
|
10327
|
-
ATTRIBUTE_UPDATED
|
10328
|
-
CATEGORY_CREATED
|
10329
|
-
CATEGORY_UPDATED
|
10330
|
-
PRODUCT_CREATED
|
10331
|
-
PRODUCT_UPDATED
|
10332
|
-
PRODUCT_UPDATED_OR_CREATED
|
10333
|
-
PRODUCT_ARCHIVED
|
10334
|
-
PRODUCT_TYPE_CREATED
|
10335
|
-
PRODUCT_TYPE_UPDATED
|
10336
|
-
WAREHOUSE_CREATED
|
10337
|
-
WAREHOUSE_UPDATED
|
10338
|
-
}
|
10339
|
-
|
10340
|
-
input CatalogImportProcessLogRecordSortInput {
|
10341
|
-
"""Specifies the direction in which to sort products."""
|
10342
|
-
direction: OrderDirection!
|
10343
|
-
|
10344
|
-
"""Sort catalog_import_processes_log_record by the selected field."""
|
10345
|
-
field: CatalogImportProcessLogRecordSortField!
|
10346
|
-
}
|
10347
|
-
|
10348
|
-
enum CatalogImportProcessLogRecordSortField {
|
10349
|
-
"""Sort users by created at."""
|
10350
|
-
CREATED_AT
|
10351
|
-
}
|
10352
|
-
|
10353
|
-
type CatalogImportProcessCountableConnection {
|
10354
|
-
"""Pagination data for this connection."""
|
10355
|
-
pageInfo: PageInfo!
|
10356
|
-
edges: [CatalogImportProcessCountableEdge!]!
|
10357
|
-
|
10358
|
-
"""A total count of items in the collection."""
|
10359
|
-
totalCount: Int
|
10360
|
-
}
|
10361
|
-
|
10362
|
-
type CatalogImportProcessCountableEdge {
|
10363
|
-
"""The item at the end of the edge."""
|
10364
|
-
node: CatalogImportProcess!
|
10365
|
-
|
10366
|
-
"""A cursor for use in pagination."""
|
10367
|
-
cursor: String!
|
10368
|
-
}
|
10369
|
-
|
10370
|
-
input CatalogImportProcessFilterInput {
|
10371
|
-
createdBy: String
|
10372
|
-
seller: String
|
10373
|
-
}
|
10374
|
-
|
10375
|
-
input CatalogImportProcessSortInput {
|
10376
|
-
"""Specifies the direction in which to sort products."""
|
10377
|
-
direction: OrderDirection!
|
10378
|
-
|
10379
|
-
"""Sort catalog_import_processes by the selected field."""
|
10380
|
-
field: CatalogImportProcessSortField!
|
10381
|
-
}
|
10382
|
-
|
10383
|
-
enum CatalogImportProcessSortField {
|
10384
|
-
"""Sort users by created at."""
|
10385
|
-
CREATED_AT
|
10386
|
-
|
10387
|
-
"""Sort users by finished at."""
|
10388
|
-
FINISHED_AT
|
10389
|
-
}
|
10390
|
-
|
10391
10127
|
"""Avalara support tax exemption."""
|
10392
10128
|
type TaxExemptCode {
|
10393
10129
|
"""Tax exempt code."""
|
@@ -10403,6 +10139,13 @@ type TaxExemptCode {
|
|
10403
10139
|
validCountries: [String!]
|
10404
10140
|
}
|
10405
10141
|
|
10142
|
+
"""
|
10143
|
+
The `GenericScalar` scalar type represents a generic
|
10144
|
+
GraphQL scalar value that could be:
|
10145
|
+
String, Boolean, Int, Float, List or Object.
|
10146
|
+
"""
|
10147
|
+
scalar GenericScalar
|
10148
|
+
|
10406
10149
|
input StripeClientPaymentData {
|
10407
10150
|
amount: PositiveDecimal
|
10408
10151
|
currency: String
|
@@ -12316,7 +12059,7 @@ enum StaffMemberStatus {
|
|
12316
12059
|
DEACTIVATED
|
12317
12060
|
}
|
12318
12061
|
|
12319
|
-
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12062
|
+
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | ProductImage | ProductStatusLog | Group
|
12320
12063
|
|
12321
12064
|
scalar _Any
|
12322
12065
|
|
@@ -12356,7 +12099,7 @@ type Mutation {
|
|
12356
12099
|
description: String
|
12357
12100
|
|
12358
12101
|
"""
|
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/
|
12102
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-csv, application/zip, application/pdf, image/png, image/x-eps, image/svg, image/heif, text/svg-xml, application/x-rtf, image/bmp, image/x-dwg, application/x-acad, application/x-rar-compressed, application/eps, application/x-tif, application/acrobat, application/x-tiff, application/x-dxf, image/heic, application/msword, application/vnd.ms-excel, image/vnd.dwg, image/svg+xml, application/gzip-compressed, drawing/dwg, application/excel, drawing/x-dwf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/svg, image/heic-sequence, application/x-rar, application/rtf, image/tif, application/vnd.ms-powerpoint, application/x-gzip, text/rtf, image/x-ms-bmp, text/comma-separated-values, image/x-bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/svg+xml, image/x-tiff, image/dxf, application/dxf, application/x-dwg, text/plain, application/x-pdf, image/gif, application/jpg, text/x-pdf, application/x-jpg, image/tiff, application/x-tar, application/acad, image/jpeg, application/tiff, pplication/vnd.rar, application/vnd.oasis.opendocument.text, application/postscript, application/dwg, text/csv, image/heif-sequence, application/gzip, text/x-csv, application/vnd.pdf, application/x-autocad, drawing/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.presentation, application/x-zip-compressed, image/x-tif, image/eps, image/webp, text/x-comma-separated-values, application/vnd.oasis.opendocument.spreadsheet, application/csv, application/vnd.ms-word, text/pdf, application/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/tif, application/gzipped, image/x-dxf, image/jpg.
|
12360
12103
|
"""
|
12361
12104
|
file: Upload!
|
12362
12105
|
|
@@ -14541,15 +14284,6 @@ type Mutation {
|
|
14541
14284
|
input: PluginUpdateInput!
|
14542
14285
|
): PluginUpdate
|
14543
14286
|
|
14544
|
-
"""Import foreign catalog."""
|
14545
|
-
catalogImport(
|
14546
|
-
"""Plugin ID"""
|
14547
|
-
id: ID
|
14548
|
-
|
14549
|
-
"""Seller ID"""
|
14550
|
-
sellerId: ID
|
14551
|
-
): CatalogImport @deprecated(reason: "This will be removed on April 29, 2025")
|
14552
|
-
|
14553
14287
|
"""Export catalog."""
|
14554
14288
|
catalogExport(
|
14555
14289
|
"""Plugin ID"""
|
@@ -14559,15 +14293,6 @@ type Mutation {
|
|
14559
14293
|
sellerId: ID
|
14560
14294
|
): CatalogExport
|
14561
14295
|
|
14562
|
-
"""Export customer list."""
|
14563
|
-
customersExport(
|
14564
|
-
"""Plugin ID"""
|
14565
|
-
id: ID
|
14566
|
-
|
14567
|
-
"""Seller ID"""
|
14568
|
-
sellerId: ID
|
14569
|
-
): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
|
14570
|
-
|
14571
14296
|
"""
|
14572
14297
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
14573
14298
|
"""
|
@@ -20932,15 +20657,6 @@ input ConfigurationItemInput {
|
|
20932
20657
|
value: GenericScalar
|
20933
20658
|
}
|
20934
20659
|
|
20935
|
-
"""Import foreign catalog."""
|
20936
|
-
type CatalogImport {
|
20937
|
-
ok: Boolean
|
20938
|
-
|
20939
|
-
"""Plugin ID"""
|
20940
|
-
plugin: ID
|
20941
|
-
pluginsErrors: [PluginError!]!
|
20942
|
-
}
|
20943
|
-
|
20944
20660
|
"""Export catalog."""
|
20945
20661
|
type CatalogExport {
|
20946
20662
|
ok: Boolean
|
@@ -20950,15 +20666,6 @@ type CatalogExport {
|
|
20950
20666
|
pluginsErrors: [PluginError!]!
|
20951
20667
|
}
|
20952
20668
|
|
20953
|
-
"""Export customer list."""
|
20954
|
-
type CustomersExport {
|
20955
|
-
ok: Boolean
|
20956
|
-
|
20957
|
-
"""Plugin ID"""
|
20958
|
-
plugin: ID
|
20959
|
-
pluginsErrors: [PluginError!]!
|
20960
|
-
}
|
20961
|
-
|
20962
20669
|
"""
|
20963
20670
|
Retrieves an onboarding link for the given vendor from the given gateway if available.
|
20964
20671
|
"""
|