@nautical-commerce/graphql-schema 1.85.1 → 1.86.0-10-g6ce6ad43b
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 +154 -1308
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -693,216 +693,6 @@ type Query {
|
|
693
693
|
last: Int
|
694
694
|
): ProductVariantCountableConnection
|
695
695
|
|
696
|
-
"""Look up a price book by ID."""
|
697
|
-
priceBook(
|
698
|
-
"""ID of a price book."""
|
699
|
-
id: ID!
|
700
|
-
): PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
701
|
-
|
702
|
-
"""List of price books."""
|
703
|
-
priceBooks(
|
704
|
-
"""Filtering options for price books."""
|
705
|
-
filter: PriceBookFilterInput
|
706
|
-
|
707
|
-
"""Sort price books."""
|
708
|
-
sortBy: PriceBookSortingInput
|
709
|
-
|
710
|
-
"""Return the elements in the list that come before the specified cursor."""
|
711
|
-
before: String
|
712
|
-
|
713
|
-
"""Return the elements in the list that come after the specified cursor."""
|
714
|
-
after: String
|
715
|
-
|
716
|
-
"""Return the first n elements from the list."""
|
717
|
-
first: Int
|
718
|
-
|
719
|
-
"""Return the last n elements from the list."""
|
720
|
-
last: Int
|
721
|
-
): PriceBookCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
722
|
-
|
723
|
-
"""List of price book variants in."""
|
724
|
-
priceBookVariants(
|
725
|
-
"""Price book ID to filter variants."""
|
726
|
-
priceBookId: ID!
|
727
|
-
|
728
|
-
"""Variant ID to filter variants."""
|
729
|
-
variantId: ID
|
730
|
-
|
731
|
-
"""Filtering options for price book variants ."""
|
732
|
-
filter: PriceBookVariantFilterInput
|
733
|
-
|
734
|
-
"""Sort price book variants in."""
|
735
|
-
sortBy: PriceBookVariantSortingInput
|
736
|
-
|
737
|
-
"""Return the elements in the list that come before the specified cursor."""
|
738
|
-
before: String
|
739
|
-
|
740
|
-
"""Return the elements in the list that come after the specified cursor."""
|
741
|
-
after: String
|
742
|
-
|
743
|
-
"""Return the first n elements from the list."""
|
744
|
-
first: Int
|
745
|
-
|
746
|
-
"""Return the last n elements from the list."""
|
747
|
-
last: Int
|
748
|
-
): PriceBookVariantCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
749
|
-
|
750
|
-
"""List of price book products."""
|
751
|
-
priceBookProducts(
|
752
|
-
"""Price book ID to filter products."""
|
753
|
-
priceBookId: ID!
|
754
|
-
|
755
|
-
"""Product ID to filter products from."""
|
756
|
-
productId: ID
|
757
|
-
|
758
|
-
"""Filtering options for price book products."""
|
759
|
-
filter: PriceBookProductFilterInput
|
760
|
-
|
761
|
-
"""Sort price book products."""
|
762
|
-
sortBy: PriceBookProductSortingInput
|
763
|
-
|
764
|
-
"""Return the elements in the list that come before the specified cursor."""
|
765
|
-
before: String
|
766
|
-
|
767
|
-
"""Return the elements in the list that come after the specified cursor."""
|
768
|
-
after: String
|
769
|
-
|
770
|
-
"""Return the first n elements from the list."""
|
771
|
-
first: Int
|
772
|
-
|
773
|
-
"""Return the last n elements from the list."""
|
774
|
-
last: Int
|
775
|
-
): PriceBookProductCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
776
|
-
|
777
|
-
"""List of price book product types."""
|
778
|
-
priceBookProductTypes(
|
779
|
-
"""Price book ID to filter products."""
|
780
|
-
priceBookId: ID!
|
781
|
-
|
782
|
-
"""Product type ID to filter product types."""
|
783
|
-
productTypeId: ID
|
784
|
-
|
785
|
-
"""Filtering options for price book product types."""
|
786
|
-
filter: PriceBookProductTypeFilterInput
|
787
|
-
|
788
|
-
"""Sort price book product types."""
|
789
|
-
sortBy: PriceBookProductTypeSortingInput
|
790
|
-
|
791
|
-
"""Return the elements in the list that come before the specified cursor."""
|
792
|
-
before: String
|
793
|
-
|
794
|
-
"""Return the elements in the list that come after the specified cursor."""
|
795
|
-
after: String
|
796
|
-
|
797
|
-
"""Return the first n elements from the list."""
|
798
|
-
first: Int
|
799
|
-
|
800
|
-
"""Return the last n elements from the list."""
|
801
|
-
last: Int
|
802
|
-
): PriceBookProductTypeCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
803
|
-
|
804
|
-
"""List of price book variants in history table."""
|
805
|
-
priceBookVariantsHistory(
|
806
|
-
"""Price book ID to filter variants from history table."""
|
807
|
-
priceBookId: ID!
|
808
|
-
|
809
|
-
"""Variant ID to filter variants from history table."""
|
810
|
-
variantId: ID!
|
811
|
-
|
812
|
-
"""Filtering options for price book variants from history table."""
|
813
|
-
filter: PriceBookVariantHistoryFilterInput
|
814
|
-
|
815
|
-
"""Sort price book variants in history table."""
|
816
|
-
sortBy: PriceBookVariantHistorySortingInput
|
817
|
-
|
818
|
-
"""Return the elements in the list that come before the specified cursor."""
|
819
|
-
before: String
|
820
|
-
|
821
|
-
"""Return the elements in the list that come after the specified cursor."""
|
822
|
-
after: String
|
823
|
-
|
824
|
-
"""Return the first n elements from the list."""
|
825
|
-
first: Int
|
826
|
-
|
827
|
-
"""Return the last n elements from the list."""
|
828
|
-
last: Int
|
829
|
-
): PriceBookVariantHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
830
|
-
|
831
|
-
"""List of price book products in history table."""
|
832
|
-
priceBookProductsHistory(
|
833
|
-
"""Price book ID to filter products in history table."""
|
834
|
-
priceBookId: ID!
|
835
|
-
|
836
|
-
"""Product ID to filter products from history table."""
|
837
|
-
productId: ID!
|
838
|
-
|
839
|
-
"""Filtering options for price book products in history table."""
|
840
|
-
filter: PriceBookProductHistoryFilterInput
|
841
|
-
|
842
|
-
"""Sort price book products in history table."""
|
843
|
-
sortBy: PriceBookProductHistorySortingInput
|
844
|
-
|
845
|
-
"""Return the elements in the list that come before the specified cursor."""
|
846
|
-
before: String
|
847
|
-
|
848
|
-
"""Return the elements in the list that come after the specified cursor."""
|
849
|
-
after: String
|
850
|
-
|
851
|
-
"""Return the first n elements from the list."""
|
852
|
-
first: Int
|
853
|
-
|
854
|
-
"""Return the last n elements from the list."""
|
855
|
-
last: Int
|
856
|
-
): PriceBookProductHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
857
|
-
|
858
|
-
"""List of price book product types in history tables."""
|
859
|
-
priceBookProductTypesHistory(
|
860
|
-
"""Price book ID to filter products in history tables."""
|
861
|
-
priceBookId: ID!
|
862
|
-
|
863
|
-
"""Product type ID to filter product types from history table."""
|
864
|
-
productTypeId: ID!
|
865
|
-
|
866
|
-
"""Filtering options for price book product types in history tables."""
|
867
|
-
filter: PriceBookProductTypeHistoryFilterInput
|
868
|
-
|
869
|
-
"""Sort price book product types in history tables."""
|
870
|
-
sortBy: PriceBookProductTypeHistorySortingInput
|
871
|
-
|
872
|
-
"""Return the elements in the list that come before the specified cursor."""
|
873
|
-
before: String
|
874
|
-
|
875
|
-
"""Return the elements in the list that come after the specified cursor."""
|
876
|
-
after: String
|
877
|
-
|
878
|
-
"""Return the first n elements from the list."""
|
879
|
-
first: Int
|
880
|
-
|
881
|
-
"""Return the last n elements from the list."""
|
882
|
-
last: Int
|
883
|
-
): PriceBookProductTypeHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
884
|
-
|
885
|
-
"""Look up users attached to a price book by ID."""
|
886
|
-
priceBookUsers(
|
887
|
-
"""Sort price book users."""
|
888
|
-
sortBy: UserSortingInput
|
889
|
-
|
890
|
-
"""ID of a price book."""
|
891
|
-
priceBookId: ID!
|
892
|
-
|
893
|
-
"""Return the elements in the list that come before the specified cursor."""
|
894
|
-
before: String
|
895
|
-
|
896
|
-
"""Return the elements in the list that come after the specified cursor."""
|
897
|
-
after: String
|
898
|
-
|
899
|
-
"""Return the first n elements from the list."""
|
900
|
-
first: Int
|
901
|
-
|
902
|
-
"""Return the last n elements from the list."""
|
903
|
-
last: Int
|
904
|
-
): UserCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
905
|
-
|
906
696
|
"""Look up a plugin by ID."""
|
907
697
|
plugin(
|
908
698
|
"""ID of the plugin."""
|
@@ -2367,9 +2157,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2367
2157
|
"""List of documents associated with the user."""
|
2368
2158
|
documents: [Document!]!
|
2369
2159
|
|
2370
|
-
"""Returns values of price book the user is added to"""
|
2371
|
-
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
2372
|
-
|
2373
2160
|
"""
|
2374
2161
|
If null, then the environment isn't set and they don't have dashboard reporting enabled
|
2375
2162
|
"""
|
@@ -2987,6 +2774,9 @@ type Product implements Node & ObjectWithMetadata {
|
|
2987
2774
|
List of warnings for this product that needs to be resolved for publishing.
|
2988
2775
|
"""
|
2989
2776
|
warnings: [WarningMessageItem!]!
|
2777
|
+
|
2778
|
+
"""Displays whether the product has warnings or not."""
|
2779
|
+
hasWarnings: Boolean
|
2990
2780
|
}
|
2991
2781
|
|
2992
2782
|
"""
|
@@ -5263,7 +5053,6 @@ enum PermissionEnum {
|
|
5263
5053
|
MANAGE_DOCUMENTS
|
5264
5054
|
MANAGE_EMAILS
|
5265
5055
|
MANAGE_PLUGINS
|
5266
|
-
MANAGE_PRICEBOOKS
|
5267
5056
|
MANAGE_STOREFRONTS
|
5268
5057
|
MANAGE_MENUS
|
5269
5058
|
MANAGE_ORDERS
|
@@ -5412,8 +5201,6 @@ enum WebhookEventTypeEnum {
|
|
5412
5201
|
PAYOUT_CREATED
|
5413
5202
|
PAYOUT_UPDATED
|
5414
5203
|
PAYOUT_DELETED
|
5415
|
-
PRICE_BOOK_CREATED
|
5416
|
-
PRICE_BOOK_UPDATED
|
5417
5204
|
PRODUCT_CREATED
|
5418
5205
|
PRODUCT_DELETED
|
5419
5206
|
PRODUCT_UPDATED
|
@@ -6250,9 +6037,6 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
6250
6037
|
"""List of allocations across warehouses."""
|
6251
6038
|
allocations: [Allocation!]
|
6252
6039
|
|
6253
|
-
"""The pricebook, if any, that changed the price of this line."""
|
6254
|
-
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
6255
|
-
|
6256
6040
|
"""The number of items ordered on this order line."""
|
6257
6041
|
quantityOrdered: Int!
|
6258
6042
|
|
@@ -6349,9 +6133,6 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
6349
6133
|
"""Variant name in the customer's language"""
|
6350
6134
|
translatedVariantName: String!
|
6351
6135
|
|
6352
|
-
"""The pricebook, if any, that changed the price of this line"""
|
6353
|
-
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
6354
|
-
|
6355
6136
|
"""The related orderline attached to the connected seller order"""
|
6356
6137
|
sellerOrderline: OrderLine
|
6357
6138
|
|
@@ -6376,139 +6157,6 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
6376
6157
|
discountedUnitPrice: TaxedMoney
|
6377
6158
|
}
|
6378
6159
|
|
6379
|
-
"""
|
6380
|
-
Variants, Product and types can be attached to the PriceBook and based on thecorresponding value, cost can be increased or decreased.
|
6381
|
-
"""
|
6382
|
-
type PriceBook implements Node & ObjectWithMetadata {
|
6383
|
-
description: String!
|
6384
|
-
descriptionHtml: String!
|
6385
|
-
|
6386
|
-
"""The ID of the object"""
|
6387
|
-
id: ID!
|
6388
|
-
|
6389
|
-
"""
|
6390
|
-
List of private metadata items.Requires proper staff permissions to access.
|
6391
|
-
"""
|
6392
|
-
privateMetadata: [MetadataItem!]!
|
6393
|
-
|
6394
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
6395
|
-
metadata: [MetadataItem!]!
|
6396
|
-
|
6397
|
-
"""Name of PriceBook"""
|
6398
|
-
name: String!
|
6399
|
-
|
6400
|
-
"""Determines if the PriceBook is active"""
|
6401
|
-
deleted: Boolean!
|
6402
|
-
|
6403
|
-
"""List of variants for the price book."""
|
6404
|
-
priceBookVariants: [PriceBookVariant!]
|
6405
|
-
|
6406
|
-
"""List of products for the price book."""
|
6407
|
-
priceBookProducts: [PriceBookProduct!]
|
6408
|
-
|
6409
|
-
"""List of product types for the price book."""
|
6410
|
-
priceBookProductTypes: [PriceBookProductType!]
|
6411
|
-
|
6412
|
-
"""Number of variants mapped to this price book"""
|
6413
|
-
numberOfProducts: Int!
|
6414
|
-
|
6415
|
-
"""Number of variants mapped to this price book"""
|
6416
|
-
numberOfProductTypes: Int!
|
6417
|
-
|
6418
|
-
"""Number of variants mapped to this price book"""
|
6419
|
-
numberOfVariants: Int!
|
6420
|
-
}
|
6421
|
-
|
6422
|
-
"""Variants added to the PriceBook"""
|
6423
|
-
type PriceBookVariant implements Node {
|
6424
|
-
"""The ID of the object"""
|
6425
|
-
id: ID!
|
6426
|
-
priceBook: PriceBook!
|
6427
|
-
variant: ProductVariant!
|
6428
|
-
valueType: PriceBookVariantValueType!
|
6429
|
-
currency: String!
|
6430
|
-
|
6431
|
-
"""
|
6432
|
-
Amount to decrease or increase for the variant if type selected is override orpercentage.
|
6433
|
-
"""
|
6434
|
-
price: Money!
|
6435
|
-
|
6436
|
-
"""
|
6437
|
-
Percentage to decrease or increase for the variant's price if type selected is fixed
|
6438
|
-
"""
|
6439
|
-
percentage: Float!
|
6440
|
-
}
|
6441
|
-
|
6442
|
-
"""An enumeration."""
|
6443
|
-
enum PriceBookVariantValueType {
|
6444
|
-
"""Override"""
|
6445
|
-
OVERRIDE
|
6446
|
-
|
6447
|
-
"""Adjust Percentage"""
|
6448
|
-
ADJUST_PERCENTAGE
|
6449
|
-
|
6450
|
-
"""Adjust Fixed"""
|
6451
|
-
ADJUST_FIXED
|
6452
|
-
}
|
6453
|
-
|
6454
|
-
"""Products added to the PriceBook"""
|
6455
|
-
type PriceBookProduct implements Node {
|
6456
|
-
"""The ID of the object"""
|
6457
|
-
id: ID!
|
6458
|
-
priceBook: PriceBook!
|
6459
|
-
product: Product!
|
6460
|
-
valueType: PriceBookProductValueType!
|
6461
|
-
currency: String!
|
6462
|
-
|
6463
|
-
"""
|
6464
|
-
Amount to decrease or increase for the variants of the product if type selected isoverride or percentage.
|
6465
|
-
"""
|
6466
|
-
price: Money!
|
6467
|
-
|
6468
|
-
"""
|
6469
|
-
Percentage to decrease or increase for the product's variants price if type selectedis fixed.
|
6470
|
-
"""
|
6471
|
-
percentage: Float!
|
6472
|
-
}
|
6473
|
-
|
6474
|
-
"""An enumeration."""
|
6475
|
-
enum PriceBookProductValueType {
|
6476
|
-
"""adjust_percentage"""
|
6477
|
-
ADJUST_PERCENTAGE
|
6478
|
-
|
6479
|
-
"""adjust_fixed"""
|
6480
|
-
ADJUST_FIXED
|
6481
|
-
}
|
6482
|
-
|
6483
|
-
"""Product types added to the PriceBook"""
|
6484
|
-
type PriceBookProductType implements Node {
|
6485
|
-
"""The ID of the object"""
|
6486
|
-
id: ID!
|
6487
|
-
priceBook: PriceBook!
|
6488
|
-
productType: ProductType!
|
6489
|
-
valueType: PriceBookProductTypeValueType!
|
6490
|
-
currency: String!
|
6491
|
-
|
6492
|
-
"""
|
6493
|
-
Amount to decrease or increase for the variants of the product type if type selectedis override or percentage.
|
6494
|
-
"""
|
6495
|
-
price: Money!
|
6496
|
-
|
6497
|
-
"""
|
6498
|
-
Percentage to decrease or increase for the product type's variants price if typeselected is fixed.
|
6499
|
-
"""
|
6500
|
-
percentage: Float!
|
6501
|
-
}
|
6502
|
-
|
6503
|
-
"""An enumeration."""
|
6504
|
-
enum PriceBookProductTypeValueType {
|
6505
|
-
"""adjust_percentage"""
|
6506
|
-
ADJUST_PERCENTAGE
|
6507
|
-
|
6508
|
-
"""adjust_fixed"""
|
6509
|
-
ADJUST_FIXED
|
6510
|
-
}
|
6511
|
-
|
6512
6160
|
"""Represents allocation."""
|
6513
6161
|
type Allocation implements Node {
|
6514
6162
|
"""The ID of the object"""
|
@@ -8582,9 +8230,6 @@ type WebhookJob implements Node & Job {
|
|
8582
8230
|
|
8583
8231
|
"""An enumeration."""
|
8584
8232
|
enum GenericWebhookTransactionType {
|
8585
|
-
"""A payload for order create was received"""
|
8586
|
-
ORDER_CREATE
|
8587
|
-
|
8588
8233
|
"""A payload for order update was received"""
|
8589
8234
|
ORDER_UPDATE
|
8590
8235
|
|
@@ -8644,9 +8289,10 @@ input WebhookJobFilterInput {
|
|
8644
8289
|
status: [WebhookJobStatus!]
|
8645
8290
|
search: String
|
8646
8291
|
source: [WebhookJobSource!]
|
8647
|
-
type: [WebhookJobType!]
|
8292
|
+
type: [WebhookJobType!] @deprecated(reason: "This will be removed on September 3, 2025. Use webhook_event_type instead")
|
8648
8293
|
createdAt: DateTime
|
8649
8294
|
created: DateRangeInput
|
8295
|
+
webhookEventType: [GenericWebhookEventsEnum!]
|
8650
8296
|
}
|
8651
8297
|
|
8652
8298
|
enum WebhookJobStatus {
|
@@ -8666,37 +8312,93 @@ enum WebhookJobType {
|
|
8666
8312
|
ORDER_UPDATE
|
8667
8313
|
}
|
8668
8314
|
|
8669
|
-
|
8670
|
-
"""
|
8671
|
-
|
8315
|
+
enum GenericWebhookEventsEnum {
|
8316
|
+
"""A payload for order update was received"""
|
8317
|
+
ORDER_UPDATE
|
8672
8318
|
|
8673
|
-
"""
|
8674
|
-
|
8675
|
-
}
|
8319
|
+
"""A payload for order cancel was received"""
|
8320
|
+
ORDER_CANCEL
|
8676
8321
|
|
8677
|
-
|
8678
|
-
|
8679
|
-
SOURCE
|
8322
|
+
"""A payload for product create was received."""
|
8323
|
+
PRODUCT_CREATE
|
8680
8324
|
|
8681
|
-
"""
|
8682
|
-
|
8325
|
+
"""A payload for product update was received."""
|
8326
|
+
PRODUCT_UPDATE
|
8683
8327
|
|
8684
|
-
"""
|
8685
|
-
|
8328
|
+
"""A payload for product delete was received."""
|
8329
|
+
PRODUCT_DELETE
|
8686
8330
|
|
8687
|
-
"""
|
8688
|
-
|
8689
|
-
}
|
8331
|
+
"""A payload for product inventory tracking update was received."""
|
8332
|
+
INVENTORY_TRACKING_UPDATE
|
8690
8333
|
|
8691
|
-
|
8692
|
-
|
8693
|
-
search: String
|
8694
|
-
ids: [ID]
|
8695
|
-
}
|
8334
|
+
"""A payload for stock create was received."""
|
8335
|
+
STOCK_CREATE
|
8696
8336
|
|
8697
|
-
|
8698
|
-
|
8699
|
-
|
8337
|
+
"""A payload for stock update was received."""
|
8338
|
+
STOCK_UPDATE
|
8339
|
+
|
8340
|
+
"""A payload for stock delete was received."""
|
8341
|
+
STOCK_DELETE
|
8342
|
+
|
8343
|
+
"""A payload for warehouse create was received."""
|
8344
|
+
WAREHOUSE_CREATE
|
8345
|
+
|
8346
|
+
"""A payload for warehouse update was received."""
|
8347
|
+
WAREHOUSE_UPDATE
|
8348
|
+
|
8349
|
+
"""A payload for warehouse delete was received."""
|
8350
|
+
WAREHOUSE_DELETE
|
8351
|
+
|
8352
|
+
"""A payload for fulfillment create was received."""
|
8353
|
+
FULFILLMENT_CREATE
|
8354
|
+
|
8355
|
+
"""A payload for fulfillment update was received."""
|
8356
|
+
FULFILLMENT_UPDATE
|
8357
|
+
|
8358
|
+
"""A paylod for customer create was received"""
|
8359
|
+
CUSTOMER_CREATE
|
8360
|
+
|
8361
|
+
"""A payload for seller create was received"""
|
8362
|
+
SELLER_CREATE
|
8363
|
+
|
8364
|
+
"""A payload for vehicles was received"""
|
8365
|
+
VEHICLE_PAYLOAD
|
8366
|
+
|
8367
|
+
"""A payload for item shipment that was received"""
|
8368
|
+
ITEM_SHIP_NOTIFY
|
8369
|
+
}
|
8370
|
+
|
8371
|
+
input WebhookJobSortingInput {
|
8372
|
+
"""Specifies the direction in which to sort products."""
|
8373
|
+
direction: OrderDirection!
|
8374
|
+
|
8375
|
+
"""Sort webhook_jobs by the selected field."""
|
8376
|
+
field: WebhookJobSortField!
|
8377
|
+
}
|
8378
|
+
|
8379
|
+
enum WebhookJobSortField {
|
8380
|
+
"""Sort webhook jobs by source."""
|
8381
|
+
SOURCE
|
8382
|
+
|
8383
|
+
"""Sort webhook jobs by type."""
|
8384
|
+
TYPE
|
8385
|
+
|
8386
|
+
"""Sort webhook jobs by status."""
|
8387
|
+
STATUS
|
8388
|
+
|
8389
|
+
"""Sort webhook jobs by created at."""
|
8390
|
+
CREATED_AT
|
8391
|
+
}
|
8392
|
+
|
8393
|
+
input WarehouseFilterInput {
|
8394
|
+
seller: ID
|
8395
|
+
search: String
|
8396
|
+
ids: [ID]
|
8397
|
+
}
|
8398
|
+
|
8399
|
+
input WarehouseSortingInput {
|
8400
|
+
"""Specifies the direction in which to sort products."""
|
8401
|
+
direction: OrderDirection!
|
8700
8402
|
|
8701
8403
|
"""Sort warehouses by the selected field."""
|
8702
8404
|
field: WarehouseSortField!
|
@@ -9218,12 +8920,6 @@ type SellerOnboardingSettings implements Node {
|
|
9218
8920
|
"""Welcome message set by MP for sellers."""
|
9219
8921
|
welcomeMessage: String
|
9220
8922
|
|
9221
|
-
"""The fulfillment model used by the MP."""
|
9222
|
-
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025")
|
9223
|
-
|
9224
|
-
"""A summary of required documents from sellers."""
|
9225
|
-
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025")
|
9226
|
-
|
9227
8923
|
"""Text displayed when the MP is not accepting new sellers."""
|
9228
8924
|
notAcceptingSellersMessage: String
|
9229
8925
|
|
@@ -9634,472 +9330,6 @@ enum ProductTypeSortField {
|
|
9634
9330
|
EXTERNAL_SOURCE
|
9635
9331
|
}
|
9636
9332
|
|
9637
|
-
type PriceBookCountableConnection {
|
9638
|
-
"""Pagination data for this connection."""
|
9639
|
-
pageInfo: PageInfo!
|
9640
|
-
edges: [PriceBookCountableEdge!]!
|
9641
|
-
|
9642
|
-
"""A total count of items in the collection."""
|
9643
|
-
totalCount: Int
|
9644
|
-
}
|
9645
|
-
|
9646
|
-
type PriceBookCountableEdge {
|
9647
|
-
"""The item at the end of the edge."""
|
9648
|
-
node: PriceBook!
|
9649
|
-
|
9650
|
-
"""A cursor for use in pagination."""
|
9651
|
-
cursor: String!
|
9652
|
-
}
|
9653
|
-
|
9654
|
-
input PriceBookFilterInput {
|
9655
|
-
search: String
|
9656
|
-
deleted: Boolean
|
9657
|
-
metadata: MetadataFilterInput
|
9658
|
-
privateMetadata: MetadataFilterInput
|
9659
|
-
}
|
9660
|
-
|
9661
|
-
input PriceBookSortingInput {
|
9662
|
-
"""Specifies the direction in which to sort products."""
|
9663
|
-
direction: OrderDirection!
|
9664
|
-
|
9665
|
-
"""Sort pricebooks by the selected field."""
|
9666
|
-
field: PriceBookSortField!
|
9667
|
-
}
|
9668
|
-
|
9669
|
-
enum PriceBookSortField {
|
9670
|
-
"""Sort pricebook by name."""
|
9671
|
-
NAME
|
9672
|
-
}
|
9673
|
-
|
9674
|
-
type PriceBookVariantCountableConnection {
|
9675
|
-
"""Pagination data for this connection."""
|
9676
|
-
pageInfo: PageInfo!
|
9677
|
-
edges: [PriceBookVariantCountableEdge!]!
|
9678
|
-
|
9679
|
-
"""A total count of items in the collection."""
|
9680
|
-
totalCount: Int
|
9681
|
-
}
|
9682
|
-
|
9683
|
-
type PriceBookVariantCountableEdge {
|
9684
|
-
"""The item at the end of the edge."""
|
9685
|
-
node: PriceBookVariant!
|
9686
|
-
|
9687
|
-
"""A cursor for use in pagination."""
|
9688
|
-
cursor: String!
|
9689
|
-
}
|
9690
|
-
|
9691
|
-
input PriceBookVariantFilterInput {
|
9692
|
-
search: String
|
9693
|
-
}
|
9694
|
-
|
9695
|
-
input PriceBookVariantSortingInput {
|
9696
|
-
"""Specifies the direction in which to sort products."""
|
9697
|
-
direction: OrderDirection!
|
9698
|
-
|
9699
|
-
"""Sort pricebook variants by the selected field."""
|
9700
|
-
field: PriceBookVariantSortField!
|
9701
|
-
}
|
9702
|
-
|
9703
|
-
enum PriceBookVariantSortField {
|
9704
|
-
"""Sort pricebook variant history by number."""
|
9705
|
-
NUMBER
|
9706
|
-
|
9707
|
-
"""Sort pricebook variant history by type."""
|
9708
|
-
TYPE
|
9709
|
-
|
9710
|
-
"""Sort pricebook variant history by price."""
|
9711
|
-
PRICE
|
9712
|
-
|
9713
|
-
"""Sort pricebook variant history by percentage."""
|
9714
|
-
PERCENTAGE
|
9715
|
-
}
|
9716
|
-
|
9717
|
-
type PriceBookProductCountableConnection {
|
9718
|
-
"""Pagination data for this connection."""
|
9719
|
-
pageInfo: PageInfo!
|
9720
|
-
edges: [PriceBookProductCountableEdge!]!
|
9721
|
-
|
9722
|
-
"""A total count of items in the collection."""
|
9723
|
-
totalCount: Int
|
9724
|
-
}
|
9725
|
-
|
9726
|
-
type PriceBookProductCountableEdge {
|
9727
|
-
"""The item at the end of the edge."""
|
9728
|
-
node: PriceBookProduct!
|
9729
|
-
|
9730
|
-
"""A cursor for use in pagination."""
|
9731
|
-
cursor: String!
|
9732
|
-
}
|
9733
|
-
|
9734
|
-
input PriceBookProductFilterInput {
|
9735
|
-
search: String
|
9736
|
-
}
|
9737
|
-
|
9738
|
-
input PriceBookProductSortingInput {
|
9739
|
-
"""Specifies the direction in which to sort products."""
|
9740
|
-
direction: OrderDirection!
|
9741
|
-
|
9742
|
-
"""Sort pricebooks products by the selected field."""
|
9743
|
-
field: PriceBookProductSortField!
|
9744
|
-
}
|
9745
|
-
|
9746
|
-
enum PriceBookProductSortField {
|
9747
|
-
"""Sort pricebook product history by number."""
|
9748
|
-
NUMBER
|
9749
|
-
|
9750
|
-
"""Sort pricebook product history by type."""
|
9751
|
-
TYPE
|
9752
|
-
|
9753
|
-
"""Sort pricebook product history by price."""
|
9754
|
-
PRICE
|
9755
|
-
|
9756
|
-
"""Sort pricebook product history by percentage."""
|
9757
|
-
PERCENTAGE
|
9758
|
-
}
|
9759
|
-
|
9760
|
-
type PriceBookProductTypeCountableConnection {
|
9761
|
-
"""Pagination data for this connection."""
|
9762
|
-
pageInfo: PageInfo!
|
9763
|
-
edges: [PriceBookProductTypeCountableEdge!]!
|
9764
|
-
|
9765
|
-
"""A total count of items in the collection."""
|
9766
|
-
totalCount: Int
|
9767
|
-
}
|
9768
|
-
|
9769
|
-
type PriceBookProductTypeCountableEdge {
|
9770
|
-
"""The item at the end of the edge."""
|
9771
|
-
node: PriceBookProductType!
|
9772
|
-
|
9773
|
-
"""A cursor for use in pagination."""
|
9774
|
-
cursor: String!
|
9775
|
-
}
|
9776
|
-
|
9777
|
-
input PriceBookProductTypeFilterInput {
|
9778
|
-
search: String
|
9779
|
-
}
|
9780
|
-
|
9781
|
-
input PriceBookProductTypeSortingInput {
|
9782
|
-
"""Specifies the direction in which to sort products."""
|
9783
|
-
direction: OrderDirection!
|
9784
|
-
|
9785
|
-
"""Sort pricebooks products types by the selected field."""
|
9786
|
-
field: PriceBookProductTypeSortField!
|
9787
|
-
}
|
9788
|
-
|
9789
|
-
enum PriceBookProductTypeSortField {
|
9790
|
-
"""Sort pricebook product type history by number."""
|
9791
|
-
NUMBER
|
9792
|
-
|
9793
|
-
"""Sort pricebook product type history by type."""
|
9794
|
-
TYPE
|
9795
|
-
|
9796
|
-
"""Sort pricebook product type history by price."""
|
9797
|
-
PRICE
|
9798
|
-
|
9799
|
-
"""Sort pricebook product type history by percentage."""
|
9800
|
-
PERCENTAGE
|
9801
|
-
}
|
9802
|
-
|
9803
|
-
type PriceBookVariantHistoryCountableConnection {
|
9804
|
-
"""Pagination data for this connection."""
|
9805
|
-
pageInfo: PageInfo!
|
9806
|
-
edges: [PriceBookVariantHistoryCountableEdge!]!
|
9807
|
-
|
9808
|
-
"""A total count of items in the collection."""
|
9809
|
-
totalCount: Int
|
9810
|
-
}
|
9811
|
-
|
9812
|
-
type PriceBookVariantHistoryCountableEdge {
|
9813
|
-
"""The item at the end of the edge."""
|
9814
|
-
node: PriceBookVariantHistory!
|
9815
|
-
|
9816
|
-
"""A cursor for use in pagination."""
|
9817
|
-
cursor: String!
|
9818
|
-
}
|
9819
|
-
|
9820
|
-
"""Variants added to the PriceBook"""
|
9821
|
-
type PriceBookVariantHistory implements Node {
|
9822
|
-
"""The ID of the object"""
|
9823
|
-
id: ID!
|
9824
|
-
priceBook: PriceBook
|
9825
|
-
variantId: Int!
|
9826
|
-
valueType: PriceBookVariantHistoryValueType!
|
9827
|
-
currency: String!
|
9828
|
-
createdAt: Date!
|
9829
|
-
|
9830
|
-
"""
|
9831
|
-
Amount to decrease or increase for the variant if type selected is override orpercentage.
|
9832
|
-
"""
|
9833
|
-
price: Money!
|
9834
|
-
|
9835
|
-
"""
|
9836
|
-
Percentage to decrease or increase for the variant's price if type selected is fixed.
|
9837
|
-
"""
|
9838
|
-
percentage: Float!
|
9839
|
-
|
9840
|
-
"""
|
9841
|
-
Determines if the variant attached to the pricebook is removed or deleted.
|
9842
|
-
"""
|
9843
|
-
deleted: Boolean!
|
9844
|
-
}
|
9845
|
-
|
9846
|
-
"""An enumeration."""
|
9847
|
-
enum PriceBookVariantHistoryValueType {
|
9848
|
-
"""Override"""
|
9849
|
-
OVERRIDE
|
9850
|
-
|
9851
|
-
"""Adjust Percentage"""
|
9852
|
-
ADJUST_PERCENTAGE
|
9853
|
-
|
9854
|
-
"""Adjust Fixed"""
|
9855
|
-
ADJUST_FIXED
|
9856
|
-
}
|
9857
|
-
|
9858
|
-
input PriceBookVariantHistoryFilterInput {
|
9859
|
-
search: String
|
9860
|
-
}
|
9861
|
-
|
9862
|
-
input PriceBookVariantHistorySortingInput {
|
9863
|
-
"""Specifies the direction in which to sort products."""
|
9864
|
-
direction: OrderDirection!
|
9865
|
-
|
9866
|
-
"""Sort pricebook variants history by the selected field."""
|
9867
|
-
field: PriceBookVariantHistorySortField!
|
9868
|
-
}
|
9869
|
-
|
9870
|
-
enum PriceBookVariantHistorySortField {
|
9871
|
-
"""Sort pricebook variant history by number."""
|
9872
|
-
NUMBER
|
9873
|
-
|
9874
|
-
"""Sort pricebook variant history by type."""
|
9875
|
-
TYPE
|
9876
|
-
|
9877
|
-
"""Sort pricebook variant history by price."""
|
9878
|
-
PRICE
|
9879
|
-
|
9880
|
-
"""Sort pricebook variant history by percentage."""
|
9881
|
-
PERCENTAGE
|
9882
|
-
|
9883
|
-
"""Sort pricebook variant history by creation date."""
|
9884
|
-
CREATION_DATE
|
9885
|
-
}
|
9886
|
-
|
9887
|
-
type PriceBookProductHistoryCountableConnection {
|
9888
|
-
"""Pagination data for this connection."""
|
9889
|
-
pageInfo: PageInfo!
|
9890
|
-
edges: [PriceBookProductHistoryCountableEdge!]!
|
9891
|
-
|
9892
|
-
"""A total count of items in the collection."""
|
9893
|
-
totalCount: Int
|
9894
|
-
}
|
9895
|
-
|
9896
|
-
type PriceBookProductHistoryCountableEdge {
|
9897
|
-
"""The item at the end of the edge."""
|
9898
|
-
node: PriceBookProductHistory!
|
9899
|
-
|
9900
|
-
"""A cursor for use in pagination."""
|
9901
|
-
cursor: String!
|
9902
|
-
}
|
9903
|
-
|
9904
|
-
"""Products added to the PriceBook"""
|
9905
|
-
type PriceBookProductHistory implements Node {
|
9906
|
-
"""The ID of the object"""
|
9907
|
-
id: ID!
|
9908
|
-
priceBook: PriceBook
|
9909
|
-
productId: Int!
|
9910
|
-
valueType: PriceBookProductHistoryValueType!
|
9911
|
-
currency: String!
|
9912
|
-
createdAt: Date!
|
9913
|
-
|
9914
|
-
"""
|
9915
|
-
Amount to decrease or increase for the variants of the product if type selected isoverride or percentage.
|
9916
|
-
"""
|
9917
|
-
price: Money!
|
9918
|
-
|
9919
|
-
"""
|
9920
|
-
Percentage to decrease or increase for the product's variants price if type selectedis fixed.
|
9921
|
-
"""
|
9922
|
-
percentage: Float!
|
9923
|
-
|
9924
|
-
"""
|
9925
|
-
Determines if the product's variant attached to the pricebook is removed or deleted.
|
9926
|
-
"""
|
9927
|
-
deleted: Boolean!
|
9928
|
-
}
|
9929
|
-
|
9930
|
-
"""An enumeration."""
|
9931
|
-
enum PriceBookProductHistoryValueType {
|
9932
|
-
"""adjust_percentage"""
|
9933
|
-
ADJUST_PERCENTAGE
|
9934
|
-
|
9935
|
-
"""adjust_fixed"""
|
9936
|
-
ADJUST_FIXED
|
9937
|
-
}
|
9938
|
-
|
9939
|
-
input PriceBookProductHistoryFilterInput {
|
9940
|
-
search: String
|
9941
|
-
}
|
9942
|
-
|
9943
|
-
input PriceBookProductHistorySortingInput {
|
9944
|
-
"""Specifies the direction in which to sort products."""
|
9945
|
-
direction: OrderDirection!
|
9946
|
-
|
9947
|
-
"""Sort pricebooks products history by the selected field."""
|
9948
|
-
field: PriceBookProductHistorySortField!
|
9949
|
-
}
|
9950
|
-
|
9951
|
-
enum PriceBookProductHistorySortField {
|
9952
|
-
"""Sort pricebook product history by number."""
|
9953
|
-
NUMBER
|
9954
|
-
|
9955
|
-
"""Sort pricebook product history by type."""
|
9956
|
-
TYPE
|
9957
|
-
|
9958
|
-
"""Sort pricebook product history by price."""
|
9959
|
-
PRICE
|
9960
|
-
|
9961
|
-
"""Sort pricebook product history by percentage."""
|
9962
|
-
PERCENTAGE
|
9963
|
-
|
9964
|
-
"""Sort pricebook product history by creation date."""
|
9965
|
-
CREATION_DATE
|
9966
|
-
}
|
9967
|
-
|
9968
|
-
type PriceBookProductTypeHistoryCountableConnection {
|
9969
|
-
"""Pagination data for this connection."""
|
9970
|
-
pageInfo: PageInfo!
|
9971
|
-
edges: [PriceBookProductTypeHistoryCountableEdge!]!
|
9972
|
-
|
9973
|
-
"""A total count of items in the collection."""
|
9974
|
-
totalCount: Int
|
9975
|
-
}
|
9976
|
-
|
9977
|
-
type PriceBookProductTypeHistoryCountableEdge {
|
9978
|
-
"""The item at the end of the edge."""
|
9979
|
-
node: PriceBookProductTypeHistory!
|
9980
|
-
|
9981
|
-
"""A cursor for use in pagination."""
|
9982
|
-
cursor: String!
|
9983
|
-
}
|
9984
|
-
|
9985
|
-
"""Product types added to the PriceBook"""
|
9986
|
-
type PriceBookProductTypeHistory implements Node {
|
9987
|
-
"""The ID of the object"""
|
9988
|
-
id: ID!
|
9989
|
-
priceBook: PriceBook
|
9990
|
-
productTypeId: Int!
|
9991
|
-
valueType: PriceBookProductTypeHistoryValueType!
|
9992
|
-
currency: String!
|
9993
|
-
createdAt: Date!
|
9994
|
-
|
9995
|
-
"""
|
9996
|
-
Amount to decrease or increase for the variants of the product type if type selectedis override or percentage.
|
9997
|
-
"""
|
9998
|
-
price: Money!
|
9999
|
-
|
10000
|
-
"""
|
10001
|
-
Percentage to decrease or increase for the product type's variants price if typeselected is fixed.
|
10002
|
-
"""
|
10003
|
-
percentage: Float!
|
10004
|
-
|
10005
|
-
"""
|
10006
|
-
Determines if the product type's variant attached to the pricebook is removed ordeleted.
|
10007
|
-
"""
|
10008
|
-
deleted: Boolean!
|
10009
|
-
}
|
10010
|
-
|
10011
|
-
"""An enumeration."""
|
10012
|
-
enum PriceBookProductTypeHistoryValueType {
|
10013
|
-
"""adjust_percentage"""
|
10014
|
-
ADJUST_PERCENTAGE
|
10015
|
-
|
10016
|
-
"""adjust_fixed"""
|
10017
|
-
ADJUST_FIXED
|
10018
|
-
}
|
10019
|
-
|
10020
|
-
input PriceBookProductTypeHistoryFilterInput {
|
10021
|
-
search: String
|
10022
|
-
}
|
10023
|
-
|
10024
|
-
input PriceBookProductTypeHistorySortingInput {
|
10025
|
-
"""Specifies the direction in which to sort products."""
|
10026
|
-
direction: OrderDirection!
|
10027
|
-
|
10028
|
-
"""Sort pricebooks products history by the selected field."""
|
10029
|
-
field: PriceBookProductTypeHistorySortField!
|
10030
|
-
}
|
10031
|
-
|
10032
|
-
enum PriceBookProductTypeHistorySortField {
|
10033
|
-
"""Sort pricebook product type history by number."""
|
10034
|
-
NUMBER
|
10035
|
-
|
10036
|
-
"""Sort pricebook product type history by type."""
|
10037
|
-
TYPE
|
10038
|
-
|
10039
|
-
"""Sort pricebook product type history by price."""
|
10040
|
-
PRICE
|
10041
|
-
|
10042
|
-
"""Sort pricebook product type history by percentage."""
|
10043
|
-
PERCENTAGE
|
10044
|
-
|
10045
|
-
"""Sort pricebook product type history by creation date."""
|
10046
|
-
CREATION_DATE
|
10047
|
-
}
|
10048
|
-
|
10049
|
-
type UserCountableConnection {
|
10050
|
-
"""Pagination data for this connection."""
|
10051
|
-
pageInfo: PageInfo!
|
10052
|
-
edges: [UserCountableEdge!]!
|
10053
|
-
|
10054
|
-
"""A total count of items in the collection."""
|
10055
|
-
totalCount: Int
|
10056
|
-
}
|
10057
|
-
|
10058
|
-
type UserCountableEdge {
|
10059
|
-
"""The item at the end of the edge."""
|
10060
|
-
node: User!
|
10061
|
-
|
10062
|
-
"""A cursor for use in pagination."""
|
10063
|
-
cursor: String!
|
10064
|
-
}
|
10065
|
-
|
10066
|
-
input UserSortingInput {
|
10067
|
-
"""Specifies the direction in which to sort products."""
|
10068
|
-
direction: OrderDirection!
|
10069
|
-
|
10070
|
-
"""Sort users by the selected field."""
|
10071
|
-
field: UserSortField!
|
10072
|
-
}
|
10073
|
-
|
10074
|
-
enum UserSortField {
|
10075
|
-
"""Sort users by first name."""
|
10076
|
-
FIRST_NAME
|
10077
|
-
|
10078
|
-
"""Sort users by last name."""
|
10079
|
-
LAST_NAME
|
10080
|
-
|
10081
|
-
"""Sort users by email."""
|
10082
|
-
EMAIL
|
10083
|
-
|
10084
|
-
"""Sort users by order count."""
|
10085
|
-
ORDER_COUNT
|
10086
|
-
|
10087
|
-
"""Sort users by vendor."""
|
10088
|
-
VENDOR
|
10089
|
-
|
10090
|
-
"""Sort users by company name."""
|
10091
|
-
COMPANY_NAME
|
10092
|
-
|
10093
|
-
"""Sort users by is active."""
|
10094
|
-
IS_ACTIVE
|
10095
|
-
|
10096
|
-
"""Sort users by external id."""
|
10097
|
-
EXTERNAL_ID
|
10098
|
-
|
10099
|
-
"""Sort users by external source."""
|
10100
|
-
EXTERNAL_SOURCE
|
10101
|
-
}
|
10102
|
-
|
10103
9333
|
type PluginCountableConnection {
|
10104
9334
|
"""Pagination data for this connection."""
|
10105
9335
|
pageInfo: PageInfo!
|
@@ -12073,12 +11303,29 @@ enum AgreementSortField {
|
|
12073
11303
|
"""Sort agreements by creation date."""
|
12074
11304
|
CREATION_DATE
|
12075
11305
|
|
12076
|
-
"""Sort agreements by publication date."""
|
12077
|
-
PUBLICATION_DATE
|
11306
|
+
"""Sort agreements by publication date."""
|
11307
|
+
PUBLICATION_DATE
|
11308
|
+
}
|
11309
|
+
|
11310
|
+
input AgreementFilterInput {
|
11311
|
+
search: String
|
11312
|
+
}
|
11313
|
+
|
11314
|
+
type UserCountableConnection {
|
11315
|
+
"""Pagination data for this connection."""
|
11316
|
+
pageInfo: PageInfo!
|
11317
|
+
edges: [UserCountableEdge!]!
|
11318
|
+
|
11319
|
+
"""A total count of items in the collection."""
|
11320
|
+
totalCount: Int
|
12078
11321
|
}
|
12079
11322
|
|
12080
|
-
|
12081
|
-
|
11323
|
+
type UserCountableEdge {
|
11324
|
+
"""The item at the end of the edge."""
|
11325
|
+
node: User!
|
11326
|
+
|
11327
|
+
"""A cursor for use in pagination."""
|
11328
|
+
cursor: String!
|
12082
11329
|
}
|
12083
11330
|
|
12084
11331
|
input CustomerFilterInput {
|
@@ -12091,6 +11338,43 @@ input CustomerFilterInput {
|
|
12091
11338
|
customFields: [AttributeInput!]
|
12092
11339
|
}
|
12093
11340
|
|
11341
|
+
input UserSortingInput {
|
11342
|
+
"""Specifies the direction in which to sort products."""
|
11343
|
+
direction: OrderDirection!
|
11344
|
+
|
11345
|
+
"""Sort users by the selected field."""
|
11346
|
+
field: UserSortField!
|
11347
|
+
}
|
11348
|
+
|
11349
|
+
enum UserSortField {
|
11350
|
+
"""Sort users by first name."""
|
11351
|
+
FIRST_NAME
|
11352
|
+
|
11353
|
+
"""Sort users by last name."""
|
11354
|
+
LAST_NAME
|
11355
|
+
|
11356
|
+
"""Sort users by email."""
|
11357
|
+
EMAIL
|
11358
|
+
|
11359
|
+
"""Sort users by order count."""
|
11360
|
+
ORDER_COUNT
|
11361
|
+
|
11362
|
+
"""Sort users by vendor."""
|
11363
|
+
VENDOR
|
11364
|
+
|
11365
|
+
"""Sort users by company name."""
|
11366
|
+
COMPANY_NAME
|
11367
|
+
|
11368
|
+
"""Sort users by is active."""
|
11369
|
+
IS_ACTIVE
|
11370
|
+
|
11371
|
+
"""Sort users by external id."""
|
11372
|
+
EXTERNAL_ID
|
11373
|
+
|
11374
|
+
"""Sort users by external source."""
|
11375
|
+
EXTERNAL_SOURCE
|
11376
|
+
}
|
11377
|
+
|
12094
11378
|
type GroupCountableConnection {
|
12095
11379
|
"""Pagination data for this connection."""
|
12096
11380
|
pageInfo: PageInfo!
|
@@ -12200,7 +11484,7 @@ type Mutation {
|
|
12200
11484
|
description: String
|
12201
11485
|
|
12202
11486
|
"""
|
12203
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/x-comma-separated-values,
|
11487
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/dxf, application/tiff, text/x-comma-separated-values, pplication/vnd.rar, text/pdf, image/bmp, application/x-rar, text/plain, application/msword, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/rtf, application/acrobat, application/vnd.oasis.opendocument.spreadsheet, application/zip, application/gzip-compressed, application/tif, image/vnd.dwg, application/x-jpg, application/dxf, image/x-dxf, text/x-pdf, application/pdf, image/jpeg, image/png, image/x-eps, image/heif, application/gzip, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/tiff, application/vnd.ms-word, image/gif, image/x-dwg, application/x-pdf, application/jpg, application/x-autocad, application/vnd.ms-excel, drawing/dwg, application/eps, application/x-dwg, image/eps, image/svg, application/x-rar-compressed, application/x-eps, application/acad, text/svg-xml, text/svg, text/comma-separated-values, application/csv, image/heic-sequence, application/vnd.oasis.opendocument.presentation, text/x-csv, image/svg+xml, drawing/x-dwf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-gzip, application/x-dxf, image/webp, application/vnd.ms-powerpoint, image/x-bmp, image/heif-sequence, application/gzipped, application/vnd.oasis.opendocument.text, image/x-tiff, text/rtf, application/x-rtf, application/postscript, application/vnd.pdf, image/tif, drawing/x-dwg, application/excel, application/x-tif, application/x-tiff, application/x-tar, image/jpg, application/svg+xml, text/csv, application/dwg, application/x-csv, application/x-acad, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/heic, image/x-tif, image/x-ms-bmp.
|
12204
11488
|
"""
|
12205
11489
|
file: Upload!
|
12206
11490
|
|
@@ -13046,126 +12330,6 @@ type Mutation {
|
|
13046
12330
|
input: PolicyInput!
|
13047
12331
|
): PolicyUpdate
|
13048
12332
|
|
13049
|
-
"""Creates a new price book."""
|
13050
|
-
priceBookCreate(
|
13051
|
-
"""Fields required to create a price book."""
|
13052
|
-
input: PriceBookCreateInput!
|
13053
|
-
): PriceBookCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13054
|
-
|
13055
|
-
"""Updates an existing price book."""
|
13056
|
-
priceBookUpdate(
|
13057
|
-
"""ID of a price book to update."""
|
13058
|
-
id: ID!
|
13059
|
-
|
13060
|
-
"""Fields required to update a price book."""
|
13061
|
-
input: PriceBookUpdateInput!
|
13062
|
-
): PriceBookUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13063
|
-
|
13064
|
-
"""Deletes a price book."""
|
13065
|
-
priceBookDelete(
|
13066
|
-
"""ID of a price book to delete."""
|
13067
|
-
id: ID!
|
13068
|
-
): PriceBookDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13069
|
-
|
13070
|
-
"""Deletes price books."""
|
13071
|
-
priceBookBulkDelete(
|
13072
|
-
"""List of price book IDs to delete."""
|
13073
|
-
ids: [ID!]!
|
13074
|
-
): PriceBookBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13075
|
-
|
13076
|
-
"""Add a variant to price book."""
|
13077
|
-
priceBookVariantCreate(
|
13078
|
-
"""Fields required to add a price book variant."""
|
13079
|
-
input: PriceBookVariantCreateInput!
|
13080
|
-
): PriceBookVariantCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13081
|
-
|
13082
|
-
"""Updates an existing price book variant."""
|
13083
|
-
priceBookVariantUpdate(
|
13084
|
-
"""ID of a price book variant to update."""
|
13085
|
-
id: ID!
|
13086
|
-
|
13087
|
-
"""Fields required to update a price book variant."""
|
13088
|
-
input: PriceBookVariantUpdateInput!
|
13089
|
-
): PriceBookVariantUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13090
|
-
|
13091
|
-
"""Deletes a price book variant."""
|
13092
|
-
priceBookVariantDelete(
|
13093
|
-
"""ID of a price book variant to delete."""
|
13094
|
-
id: ID!
|
13095
|
-
): PriceBookVariantDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13096
|
-
|
13097
|
-
"""Deletes price book's variants."""
|
13098
|
-
priceBookVariantBulkDelete(
|
13099
|
-
"""List of price book variant IDs to delete."""
|
13100
|
-
ids: [ID!]!
|
13101
|
-
): PriceBookVariantBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13102
|
-
|
13103
|
-
"""Add a product to price book."""
|
13104
|
-
priceBookProductCreate(
|
13105
|
-
"""Fields required to add a price book product."""
|
13106
|
-
input: PriceBookProductCreateInput!
|
13107
|
-
): PriceBookProductCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13108
|
-
|
13109
|
-
"""Updates an existing price book product."""
|
13110
|
-
priceBookProductUpdate(
|
13111
|
-
"""ID of a price book product to update."""
|
13112
|
-
id: ID!
|
13113
|
-
|
13114
|
-
"""Fields required to update a price book product."""
|
13115
|
-
input: PriceBookProductUpdateInput!
|
13116
|
-
): PriceBookProductUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13117
|
-
|
13118
|
-
"""Deletes a price book product."""
|
13119
|
-
priceBookProductDelete(
|
13120
|
-
"""ID of a price book product to delete."""
|
13121
|
-
id: ID!
|
13122
|
-
): PriceBookProductDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13123
|
-
|
13124
|
-
"""Deletes price book's products."""
|
13125
|
-
priceBookProductBulkDelete(
|
13126
|
-
"""List of price book product IDs to delete."""
|
13127
|
-
ids: [ID!]!
|
13128
|
-
): PriceBookProductBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13129
|
-
|
13130
|
-
"""Add a product type to price book."""
|
13131
|
-
priceBookProductTypeCreate(
|
13132
|
-
"""Fields required to add a price book product type."""
|
13133
|
-
input: PriceBookProductTypeCreateInput!
|
13134
|
-
): PriceBookProductTypeCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13135
|
-
|
13136
|
-
"""Updates an existing price book product type."""
|
13137
|
-
priceBookProductTypeUpdate(
|
13138
|
-
"""ID of a price book product type to update."""
|
13139
|
-
id: ID!
|
13140
|
-
|
13141
|
-
"""Fields required to update a price book product type."""
|
13142
|
-
input: PriceBookProductTypeUpdateInput!
|
13143
|
-
): PriceBookProductTypeUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13144
|
-
|
13145
|
-
"""Deletes a price book product type."""
|
13146
|
-
priceBookProductTypeDelete(
|
13147
|
-
"""ID of a price book product type to delete."""
|
13148
|
-
id: ID!
|
13149
|
-
): PriceBookProductTypeDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13150
|
-
|
13151
|
-
"""Deletes price book's product types."""
|
13152
|
-
priceBookProductTypeBulkDelete(
|
13153
|
-
"""List of price book product type IDs to delete."""
|
13154
|
-
ids: [ID!]!
|
13155
|
-
): PriceBookProductTypeBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13156
|
-
|
13157
|
-
"""Add a user to price book."""
|
13158
|
-
userAddToPriceBook(
|
13159
|
-
"""Fields required to add a user to price book."""
|
13160
|
-
input: UserAddToPriceBookInput!
|
13161
|
-
): UserAddToPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13162
|
-
|
13163
|
-
"""Removes a user from price book."""
|
13164
|
-
userRemoveFromPriceBook(
|
13165
|
-
"""ID of user to be removed from price book."""
|
13166
|
-
id: ID!
|
13167
|
-
): UserRemoveFromPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13168
|
-
|
13169
12333
|
"""Creates a new category."""
|
13170
12334
|
categoryCreate(
|
13171
12335
|
"""Fields required to create a category."""
|
@@ -16991,12 +16155,6 @@ input SellerOnboardingSettingsCreateInput {
|
|
16991
16155
|
"""Welcome message set by MP for sellers."""
|
16992
16156
|
welcomeMessage: String
|
16993
16157
|
|
16994
|
-
"""The fulfillment model used by the MP."""
|
16995
|
-
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
16996
|
-
|
16997
|
-
"""A summary of required documents from sellers."""
|
16998
|
-
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
16999
|
-
|
17000
16158
|
"""Text displayed when the MP is not accepting new sellers."""
|
17001
16159
|
notAcceptingSellersMessage: String
|
17002
16160
|
}
|
@@ -17018,12 +16176,6 @@ input SellerOnboardingSettingsUpdateInput {
|
|
17018
16176
|
"""Welcome message set by MP for sellers."""
|
17019
16177
|
welcomeMessage: String
|
17020
16178
|
|
17021
|
-
"""The fulfillment model used by the MP."""
|
17022
|
-
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
17023
|
-
|
17024
|
-
"""A summary of required documents from sellers."""
|
17025
|
-
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
17026
|
-
|
17027
16179
|
"""Text displayed when the MP is not accepting new sellers."""
|
17028
16180
|
notAcceptingSellersMessage: String
|
17029
16181
|
}
|
@@ -17457,313 +16609,6 @@ type PolicyUpdate {
|
|
17457
16609
|
policy: Policy
|
17458
16610
|
}
|
17459
16611
|
|
17460
|
-
"""Creates a new price book."""
|
17461
|
-
type PriceBookCreate {
|
17462
|
-
priceBookErrors: [PriceBookError!]!
|
17463
|
-
priceBook: PriceBook
|
17464
|
-
}
|
17465
|
-
|
17466
|
-
type PriceBookError {
|
17467
|
-
"""
|
17468
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
17469
|
-
"""
|
17470
|
-
field: String
|
17471
|
-
|
17472
|
-
"""The error message."""
|
17473
|
-
message: String!
|
17474
|
-
|
17475
|
-
"""The error code."""
|
17476
|
-
code: PriceBookErrorCode!
|
17477
|
-
}
|
17478
|
-
|
17479
|
-
"""An enumeration."""
|
17480
|
-
enum PriceBookErrorCode {
|
17481
|
-
NOT_FOUND
|
17482
|
-
REQUIRED
|
17483
|
-
GRAPHQL_ERROR
|
17484
|
-
INVALID
|
17485
|
-
ALREADY_EXISTS
|
17486
|
-
NOT_ALLOWED
|
17487
|
-
}
|
17488
|
-
|
17489
|
-
input PriceBookCreateInput {
|
17490
|
-
"""Name of the price book"""
|
17491
|
-
name: String
|
17492
|
-
|
17493
|
-
"""Price book description (plaintext, read-only)."""
|
17494
|
-
description: String
|
17495
|
-
|
17496
|
-
"""Price book description (html)."""
|
17497
|
-
descriptionHtml: String
|
17498
|
-
}
|
17499
|
-
|
17500
|
-
"""Updates an existing price book."""
|
17501
|
-
type PriceBookUpdate {
|
17502
|
-
priceBookErrors: [PriceBookError!]!
|
17503
|
-
priceBook: PriceBook
|
17504
|
-
}
|
17505
|
-
|
17506
|
-
input PriceBookUpdateInput {
|
17507
|
-
"""Name of the price book"""
|
17508
|
-
name: String
|
17509
|
-
|
17510
|
-
"""Price book description (plaintext, read-only)."""
|
17511
|
-
description: String
|
17512
|
-
|
17513
|
-
"""Price book description (html)."""
|
17514
|
-
descriptionHtml: String
|
17515
|
-
|
17516
|
-
"""Used to re-activate the price book."""
|
17517
|
-
activate: Boolean
|
17518
|
-
}
|
17519
|
-
|
17520
|
-
"""Deletes a price book."""
|
17521
|
-
type PriceBookDelete {
|
17522
|
-
priceBookErrors: [PriceBookError!]!
|
17523
|
-
priceBook: PriceBook
|
17524
|
-
}
|
17525
|
-
|
17526
|
-
"""Deletes price books."""
|
17527
|
-
type PriceBookBulkDelete {
|
17528
|
-
"""Returns how many objects were affected."""
|
17529
|
-
count: Int!
|
17530
|
-
priceBookErrors: [PriceBookError!]!
|
17531
|
-
}
|
17532
|
-
|
17533
|
-
"""Add a variant to price book."""
|
17534
|
-
type PriceBookVariantCreate {
|
17535
|
-
priceBookErrors: [PriceBookError!]!
|
17536
|
-
priceBookVariant: PriceBookVariant
|
17537
|
-
}
|
17538
|
-
|
17539
|
-
input PriceBookVariantCreateInput {
|
17540
|
-
"""
|
17541
|
-
Price of the particular variant to be adjusted if the type selected is OVERRIDEor FIXED.
|
17542
|
-
"""
|
17543
|
-
priceAmount: Decimal
|
17544
|
-
|
17545
|
-
"""Currency of the price that is adjusted for the variant"""
|
17546
|
-
currency: String
|
17547
|
-
|
17548
|
-
"""
|
17549
|
-
Percentage of the particular variant to be adjusted if the type selected is PERCENTAGE
|
17550
|
-
"""
|
17551
|
-
percentage: Decimal
|
17552
|
-
|
17553
|
-
"""ID of variant that is added to the price book."""
|
17554
|
-
variant: ID!
|
17555
|
-
|
17556
|
-
"""ID of price book that variant needs to be added to."""
|
17557
|
-
priceBook: ID!
|
17558
|
-
|
17559
|
-
"""Type of the price book variant"""
|
17560
|
-
valueType: PriceBookValueTypeEnum!
|
17561
|
-
}
|
17562
|
-
|
17563
|
-
enum PriceBookValueTypeEnum {
|
17564
|
-
"""Override"""
|
17565
|
-
OVERRIDE
|
17566
|
-
|
17567
|
-
"""Adjust Percentage"""
|
17568
|
-
ADJUST_PERCENTAGE
|
17569
|
-
|
17570
|
-
"""Adjust Fixed"""
|
17571
|
-
ADJUST_FIXED
|
17572
|
-
}
|
17573
|
-
|
17574
|
-
"""Updates an existing price book variant."""
|
17575
|
-
type PriceBookVariantUpdate {
|
17576
|
-
priceBookErrors: [PriceBookError!]!
|
17577
|
-
priceBookVariant: PriceBookVariant
|
17578
|
-
}
|
17579
|
-
|
17580
|
-
input PriceBookVariantUpdateInput {
|
17581
|
-
"""
|
17582
|
-
Price of the particular variant to be adjusted if the type selected is OVERRIDEor FIXED.
|
17583
|
-
"""
|
17584
|
-
priceAmount: Decimal
|
17585
|
-
|
17586
|
-
"""Currency of the price that is adjusted for the variant"""
|
17587
|
-
currency: String
|
17588
|
-
|
17589
|
-
"""
|
17590
|
-
Percentage of the particular variant to be adjusted if the type selected is PERCENTAGE
|
17591
|
-
"""
|
17592
|
-
percentage: Decimal
|
17593
|
-
|
17594
|
-
"""Type of the price book variant"""
|
17595
|
-
valueType: PriceBookValueTypeEnum
|
17596
|
-
}
|
17597
|
-
|
17598
|
-
"""Deletes a price book variant."""
|
17599
|
-
type PriceBookVariantDelete {
|
17600
|
-
priceBookErrors: [PriceBookError!]!
|
17601
|
-
priceBookVariant: PriceBookVariant
|
17602
|
-
}
|
17603
|
-
|
17604
|
-
"""Deletes price book's variants."""
|
17605
|
-
type PriceBookVariantBulkDelete {
|
17606
|
-
"""Returns how many objects were affected."""
|
17607
|
-
count: Int!
|
17608
|
-
priceBookErrors: [PriceBookError!]!
|
17609
|
-
}
|
17610
|
-
|
17611
|
-
"""Add a product to price book."""
|
17612
|
-
type PriceBookProductCreate {
|
17613
|
-
priceBookErrors: [PriceBookError!]!
|
17614
|
-
priceBookProduct: PriceBookProduct
|
17615
|
-
}
|
17616
|
-
|
17617
|
-
input PriceBookProductCreateInput {
|
17618
|
-
"""
|
17619
|
-
Price of the particular product to be adjusted if the type selected is OVERRIDEor FIXED.
|
17620
|
-
"""
|
17621
|
-
priceAmount: Decimal
|
17622
|
-
|
17623
|
-
"""Currency of the price that is adjusted for the product"""
|
17624
|
-
currency: String
|
17625
|
-
|
17626
|
-
"""
|
17627
|
-
Percentage of the particular product to be adjusted if the type selected is PERCENTAGE
|
17628
|
-
"""
|
17629
|
-
percentage: Decimal
|
17630
|
-
|
17631
|
-
"""ID of product that is added to the price book."""
|
17632
|
-
product: ID!
|
17633
|
-
|
17634
|
-
"""ID of price book that product needs to be added to."""
|
17635
|
-
priceBook: ID!
|
17636
|
-
|
17637
|
-
"""Type of the price book product"""
|
17638
|
-
valueType: PriceBookValueTypeEnum!
|
17639
|
-
}
|
17640
|
-
|
17641
|
-
"""Updates an existing price book product."""
|
17642
|
-
type PriceBookProductUpdate {
|
17643
|
-
priceBookErrors: [PriceBookError!]!
|
17644
|
-
priceBookProduct: PriceBookProduct
|
17645
|
-
}
|
17646
|
-
|
17647
|
-
input PriceBookProductUpdateInput {
|
17648
|
-
"""
|
17649
|
-
Price of the particular product to be adjusted if the type selected is OVERRIDEor FIXED.
|
17650
|
-
"""
|
17651
|
-
priceAmount: Decimal
|
17652
|
-
|
17653
|
-
"""Currency of the price that is adjusted for the product"""
|
17654
|
-
currency: String
|
17655
|
-
|
17656
|
-
"""
|
17657
|
-
Percentage of the particular product to be adjusted if the type selected is PERCENTAGE
|
17658
|
-
"""
|
17659
|
-
percentage: Decimal
|
17660
|
-
|
17661
|
-
"""Type of the price book product"""
|
17662
|
-
valueType: PriceBookValueTypeEnum
|
17663
|
-
}
|
17664
|
-
|
17665
|
-
"""Deletes a price book product."""
|
17666
|
-
type PriceBookProductDelete {
|
17667
|
-
priceBookErrors: [PriceBookError!]!
|
17668
|
-
priceBookProduct: PriceBookProduct
|
17669
|
-
}
|
17670
|
-
|
17671
|
-
"""Deletes price book's products."""
|
17672
|
-
type PriceBookProductBulkDelete {
|
17673
|
-
"""Returns how many objects were affected."""
|
17674
|
-
count: Int!
|
17675
|
-
priceBookErrors: [PriceBookError!]!
|
17676
|
-
}
|
17677
|
-
|
17678
|
-
"""Add a product type to price book."""
|
17679
|
-
type PriceBookProductTypeCreate {
|
17680
|
-
priceBookErrors: [PriceBookError!]!
|
17681
|
-
priceBookProductType: PriceBookProductType
|
17682
|
-
}
|
17683
|
-
|
17684
|
-
input PriceBookProductTypeCreateInput {
|
17685
|
-
"""
|
17686
|
-
Price of the particular product type to be adjusted if the value type selected isOVERRIDE or FIXED.
|
17687
|
-
"""
|
17688
|
-
priceAmount: Decimal
|
17689
|
-
|
17690
|
-
"""Currency of the price that is adjusted for the product type"""
|
17691
|
-
currency: String
|
17692
|
-
|
17693
|
-
"""
|
17694
|
-
Percentage of the particular product type to be adjusted if the type selected is PERCENTAGE
|
17695
|
-
"""
|
17696
|
-
percentage: Decimal
|
17697
|
-
|
17698
|
-
"""ID of product type that is added to the price book."""
|
17699
|
-
productType: ID!
|
17700
|
-
|
17701
|
-
"""ID of price book that product type needs to be added to."""
|
17702
|
-
priceBook: ID!
|
17703
|
-
|
17704
|
-
"""Value type of the price book product type"""
|
17705
|
-
valueType: PriceBookValueTypeEnum!
|
17706
|
-
}
|
17707
|
-
|
17708
|
-
"""Updates an existing price book product type."""
|
17709
|
-
type PriceBookProductTypeUpdate {
|
17710
|
-
priceBookErrors: [PriceBookError!]!
|
17711
|
-
priceBookProductType: PriceBookProductType
|
17712
|
-
}
|
17713
|
-
|
17714
|
-
input PriceBookProductTypeUpdateInput {
|
17715
|
-
"""
|
17716
|
-
Price of the particular product type to be adjusted if the value type selected isOVERRIDE or FIXED.
|
17717
|
-
"""
|
17718
|
-
priceAmount: Decimal
|
17719
|
-
|
17720
|
-
"""Currency of the price that is adjusted for the product type"""
|
17721
|
-
currency: String
|
17722
|
-
|
17723
|
-
"""
|
17724
|
-
Percentage of the particular product type to be adjusted if the type selected is PERCENTAGE
|
17725
|
-
"""
|
17726
|
-
percentage: Decimal
|
17727
|
-
|
17728
|
-
"""Value type of the price book product type"""
|
17729
|
-
valueType: PriceBookValueTypeEnum
|
17730
|
-
}
|
17731
|
-
|
17732
|
-
"""Deletes a price book product type."""
|
17733
|
-
type PriceBookProductTypeDelete {
|
17734
|
-
priceBookErrors: [PriceBookError!]!
|
17735
|
-
priceBookProductType: PriceBookProductType
|
17736
|
-
}
|
17737
|
-
|
17738
|
-
"""Deletes price book's product types."""
|
17739
|
-
type PriceBookProductTypeBulkDelete {
|
17740
|
-
"""Returns how many objects were affected."""
|
17741
|
-
count: Int!
|
17742
|
-
priceBookErrors: [PriceBookError!]!
|
17743
|
-
}
|
17744
|
-
|
17745
|
-
"""Add a user to price book."""
|
17746
|
-
type UserAddToPriceBook {
|
17747
|
-
"""An updated user instance."""
|
17748
|
-
user: User
|
17749
|
-
priceBookErrors: [PriceBookError!]!
|
17750
|
-
}
|
17751
|
-
|
17752
|
-
input UserAddToPriceBookInput {
|
17753
|
-
"""ID of user that is to be mapped to the price book."""
|
17754
|
-
user: ID!
|
17755
|
-
|
17756
|
-
"""ID of price book that user needs to be added to."""
|
17757
|
-
priceBook: ID!
|
17758
|
-
}
|
17759
|
-
|
17760
|
-
"""Removes a user from price book."""
|
17761
|
-
type UserRemoveFromPriceBook {
|
17762
|
-
"""An updated user instance."""
|
17763
|
-
user: User
|
17764
|
-
priceBookErrors: [PriceBookError!]!
|
17765
|
-
}
|
17766
|
-
|
17767
16612
|
"""Creates a new category."""
|
17768
16613
|
type CategoryCreate {
|
17769
16614
|
productErrors: [ProductError!]!
|
@@ -17792,6 +16637,7 @@ enum ProductErrorCode {
|
|
17792
16637
|
ATTRIBUTE_ALREADY_ASSIGNED
|
17793
16638
|
ATTRIBUTE_CANNOT_BE_ASSIGNED
|
17794
16639
|
ATTRIBUTE_VARIANTS_DISABLED
|
16640
|
+
ATTRIBUTE_VALUE_CANNOT_BE_CREATED
|
17795
16641
|
DUPLICATED_INPUT_ITEM
|
17796
16642
|
GRAPHQL_ERROR
|
17797
16643
|
INVALID
|
@@ -21479,33 +20325,33 @@ input AttributeValueCreateInput {
|
|
21479
20325
|
value: String
|
21480
20326
|
|
21481
20327
|
"""Date and time representation of attribute value."""
|
21482
|
-
dateTime: DateTime
|
20328
|
+
dateTime: DateTime @deprecated(reason: "This will be removed on September 4, 2025.")
|
21483
20329
|
|
21484
20330
|
"""Supports attribute values with long text (plain text)."""
|
21485
|
-
plainText: String
|
20331
|
+
plainText: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21486
20332
|
|
21487
20333
|
"""Supports attribute values with long text (html)."""
|
21488
|
-
richText: String
|
20334
|
+
richText: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21489
20335
|
|
21490
20336
|
"""Numeric value to support money or numeric attribute values."""
|
21491
|
-
amount: Decimal
|
20337
|
+
amount: Decimal @deprecated(reason: "This will be removed on September 4, 2025.")
|
21492
20338
|
|
21493
20339
|
"""Currency to support money attribute values."""
|
21494
|
-
currency: String
|
20340
|
+
currency: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21495
20341
|
|
21496
20342
|
"""
|
21497
20343
|
Supports attribute values to reference any other nautical object (should be base64 ID)
|
21498
20344
|
"""
|
21499
|
-
reference: String
|
20345
|
+
reference: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21500
20346
|
|
21501
20347
|
"""Supports boolean attribute values."""
|
21502
|
-
boolean: Boolean
|
20348
|
+
boolean: Boolean @deprecated(reason: "This will be removed on September 4, 2025.")
|
21503
20349
|
|
21504
20350
|
"""Supports file type attribute values."""
|
21505
|
-
file: Upload
|
20351
|
+
file: Upload @deprecated(reason: "This will be removed on September 4, 2025.")
|
21506
20352
|
|
21507
20353
|
"""URL type to support external links as attribute values."""
|
21508
|
-
fileUrl: String
|
20354
|
+
fileUrl: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21509
20355
|
}
|
21510
20356
|
|
21511
20357
|
"""Deletes an attribute."""
|