@nautical-commerce/graphql-schema 1.79.1-2-g8c88052c5 → 1.79.1-20-g6d1b6a0b4

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.
@@ -1040,30 +1040,6 @@ type Query {
1040
1040
  """
1041
1041
  taxExemptCodes: [TaxExemptCode!]
1042
1042
 
1043
- """All forms available on Typeform"""
1044
- typeformForms(
1045
- """Page number of requested page of typeform forms"""
1046
- page: Int
1047
-
1048
- """Search term to use when retrieving typeform forms"""
1049
- search: String
1050
- ): TypeformForms @deprecated(reason: "Typeform support will be removed on April 17, 2025")
1051
-
1052
- """Form details for specified form_id"""
1053
- typeformForm(
1054
- """ID of the form to get details for."""
1055
- id: ID
1056
- ): TypeformForm @deprecated(reason: "Typeform support will be removed on April 17, 2025")
1057
-
1058
- """Get the flows associated with a particular plugin and seller"""
1059
- pluginFlows(
1060
- """ID of the plugin."""
1061
- id: ID!
1062
-
1063
- """ID of the seller."""
1064
- seller: ID
1065
- ): [Flow!] @deprecated(reason: "Typeform support will be removed on April 17, 2025")
1066
-
1067
1043
  """Get client secret if necessary for frontend configuration."""
1068
1044
  getClientSecret(
1069
1045
  """ID of the gateway"""
@@ -2890,9 +2866,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
2890
2866
  """
2891
2867
  pricing: VariantPricingInfo
2892
2868
 
2893
- """Product variant size info."""
2894
- size: VariantSize @deprecated(reason: "This will be removed on April 17, 2025.")
2895
-
2896
2869
  """List of attributes assigned to this variant."""
2897
2870
  attributes: [SelectedAttribute!]!
2898
2871
 
@@ -5071,6 +5044,9 @@ enum ProductOrderField {
5071
5044
 
5072
5045
  """Sort products by external source."""
5073
5046
  EXTERNAL_SOURCE
5047
+
5048
+ """Sort products by inventory."""
5049
+ INVENTORY
5074
5050
  }
5075
5051
 
5076
5052
  """Represents a selected attribute and values."""
@@ -5177,6 +5153,7 @@ type ProductType implements Node & ObjectWithMetadata {
5177
5153
  name: String!
5178
5154
  slug: String!
5179
5155
  isShippingRequired: Boolean!
5156
+ isLocked: Boolean!
5180
5157
  isDigital: Boolean!
5181
5158
  weight: Weight
5182
5159
 
@@ -6023,6 +6000,9 @@ enum VariantSortField {
6023
6000
 
6024
6001
  """Sort variants by external source."""
6025
6002
  EXTERNAL_SOURCE
6003
+
6004
+ """Sort variants by inventory."""
6005
+ INVENTORY
6026
6006
  }
6027
6007
 
6028
6008
  enum CollectionTypeEnum {
@@ -8050,42 +8030,6 @@ type VariantPricingInfo {
8050
8030
  priceUndiscountedLocalCurrency: TaxedMoney!
8051
8031
  }
8052
8032
 
8053
- """Represents a size info."""
8054
- type VariantSize {
8055
- length: Decimal
8056
- width: Decimal
8057
- height: Decimal
8058
-
8059
- """Size units for length, width and height."""
8060
- sizeUnits: DistanceUnitsEnum
8061
- }
8062
-
8063
- enum DistanceUnitsEnum {
8064
- """Inch"""
8065
- INCH
8066
-
8067
- """Foot"""
8068
- FT
8069
-
8070
- """Yard"""
8071
- YD
8072
-
8073
- """Mile"""
8074
- ML
8075
-
8076
- """Millimeter"""
8077
- MM
8078
-
8079
- """Centimeter"""
8080
- CM
8081
-
8082
- """Meter"""
8083
- M
8084
-
8085
- """Kilometer"""
8086
- KM
8087
- }
8088
-
8089
8033
  """Represents stock."""
8090
8034
  type Stock implements Node {
8091
8035
  warehouse: Warehouse!
@@ -10606,105 +10550,6 @@ type TaxExemptCode {
10606
10550
  validCountries: [String!]
10607
10551
  }
10608
10552
 
10609
- """Information about all forms from Typeform."""
10610
- type TypeformForms {
10611
- """Total number of items."""
10612
- totalItems: Int
10613
-
10614
- """Number of pages"""
10615
- pageCount: Int
10616
-
10617
- """Type of the field."""
10618
- items: [TypeformFormsItem!]
10619
- }
10620
-
10621
- type TypeformFormsItem {
10622
- Links: TypeformFormsItemLink
10623
- id: String
10624
- lastUpdatedAt: String
10625
- self: TypeformFormsItemSelf
10626
- theme: TypeformFormsItemSelf
10627
- title: String
10628
- }
10629
-
10630
- type TypeformFormsItemLink {
10631
- display: String
10632
- }
10633
-
10634
- type TypeformFormsItemSelf {
10635
- href: String
10636
- }
10637
-
10638
- type TypeformForm {
10639
- id: String
10640
- title: String
10641
- language: String
10642
- fields: [TypeformFormFields!]
10643
- hidden: [String!]
10644
- }
10645
-
10646
- type TypeformFormFields {
10647
- attachment: TypeformFormAttachment
10648
- fieldType: String
10649
- id: String
10650
- layout: TypeformFormLayout
10651
- name: String
10652
- options: [TypeformFormOption!]
10653
- ref: String
10654
- required: Boolean
10655
- title: String
10656
- properties: TypeformFormProperties
10657
- type: String
10658
- }
10659
-
10660
- type TypeformFormAttachment {
10661
- type: String
10662
- href: String
10663
- properties: TypeformFormProperties
10664
- }
10665
-
10666
- type TypeformFormProperties {
10667
- description: String
10668
- fields: [TypeformGroupProperties!]
10669
- }
10670
-
10671
- type TypeformGroupProperties {
10672
- id: String
10673
- title: String
10674
- ref: String
10675
- type: String
10676
- }
10677
-
10678
- type TypeformFormLayout {
10679
- type: String
10680
- placement: String
10681
- attachment: TypeformFormAttachment
10682
- }
10683
-
10684
- type TypeformFormOption {
10685
- label: String
10686
- }
10687
-
10688
- """Flow mapping for a plugin"""
10689
- type Flow {
10690
- id: ID!
10691
- tenant: Tenant!
10692
- identifier: String!
10693
- seller: Seller
10694
- process: FlowProcess!
10695
- mapping: JSONString!
10696
- formId: String!
10697
- }
10698
-
10699
- """An enumeration."""
10700
- enum FlowProcess {
10701
- """customer_creation"""
10702
- CUSTOMER_CREATION
10703
-
10704
- """seller_creation"""
10705
- SELLER_CREATION
10706
- }
10707
-
10708
10553
  input StripeClientPaymentData {
10709
10554
  amount: PositiveDecimal
10710
10555
  currency: String
@@ -12712,7 +12557,7 @@ type Mutation {
12712
12557
  description: String
12713
12558
 
12714
12559
  """
12715
- 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-pdf, application/x-eps, application/x-zip-compressed, application/vnd.ms-powerpoint, application/x-tar, application/gzip-compressed, image/jpg, drawing/x-dwf, application/vnd.oasis.opendocument.text, text/pdf, text/x-comma-separated-values, image/jpeg, application/vnd.ms-word, image/gif, application/x-tiff, image/x-dxf, application/dwg, application/jpg, drawing/x-dwg, application/vnd.oasis.opendocument.spreadsheet, image/tiff, application/x-csv, text/rtf, image/x-tif, image/webp, image/bmp, image/x-ms-bmp, text/x-pdf, application/x-autocad, application/vnd.ms-excel, application/tiff, application/msword, image/heif-sequence, image/png, application/x-tif, application/zip, application/x-acad, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.pdf, image/svg, application/gzip, application/x-jpg, application/acrobat, application/csv, application/dxf, application/x-gzip, drawing/dwg, text/csv, image/tif, text/plain, application/x-rtf, image/heic, application/x-dxf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/postscript, text/comma-separated-values, application/excel, application/tif, text/svg, image/x-bmp, application/acad, image/heic-sequence, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-dwg, image/eps, image/x-eps, application/vnd.oasis.opendocument.presentation, application/gzipped, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/rtf, image/dxf, application/svg+xml, pplication/vnd.rar, application/x-rar-compressed, text/svg-xml, image/svg+xml, image/vnd.dwg, application/x-rar, application/x-dwg, text/x-csv, image/x-tiff, image/heif, application/eps, application/pdf.
12560
+ 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-acad, application/jpg, image/png, drawing/dwg, application/x-csv, image/x-ms-bmp, application/x-dxf, application/pdf, text/x-comma-separated-values, application/x-tif, drawing/x-dwg, application/vnd.pdf, pplication/vnd.rar, application/x-pdf, application/x-rtf, image/heif, application/excel, application/msword, application/x-tar, application/gzip-compressed, application/x-gzip, image/heic, image/dxf, application/acrobat, image/tiff, application/x-eps, image/gif, application/x-tiff, text/x-pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/gzip, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/jpg, image/svg, image/x-eps, image/heif-sequence, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/rtf, image/webp, application/tif, application/vnd.ms-powerpoint, image/jpeg, text/x-csv, image/x-tiff, image/bmp, text/svg, application/x-dwg, application/svg+xml, application/x-rar-compressed, text/comma-separated-values, application/x-rar, application/vnd.oasis.opendocument.text, image/x-dxf, image/x-bmp, application/eps, application/dwg, application/postscript, drawing/x-dwf, application/x-autocad, application/vnd.ms-excel, application/rtf, text/csv, image/tif, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/heic-sequence, application/dxf, application/x-zip-compressed, application/csv, application/tiff, application/zip, image/svg+xml, image/vnd.dwg, application/vnd.oasis.opendocument.spreadsheet, application/vnd.ms-word, image/x-dwg, text/plain, image/x-tif, text/svg-xml, image/eps, application/acad, text/pdf, application/gzipped.
12716
12561
  """
12717
12562
  file: Upload!
12718
12563
 
@@ -14960,21 +14805,6 @@ type Mutation {
14960
14805
  sellerId: ID
14961
14806
  ): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
14962
14807
 
14963
- """Update plugin flow."""
14964
- pluginFlowUpdate(
14965
- """ID of plugin to update mapping for."""
14966
- id: ID!
14967
-
14968
- """Fields required to update a plugins sync settings."""
14969
- input: PluginFlowInput
14970
- ): PluginFlowUpdate @deprecated(reason: "Typeform support will be removed on April 17, 2025")
14971
-
14972
- """Delete plugin flow."""
14973
- pluginFlowDelete(
14974
- """ID of flow to delete."""
14975
- id: ID!
14976
- ): PluginFlowDelete @deprecated(reason: "Typeform support will be removed on April 17, 2025")
14977
-
14978
14808
  """
14979
14809
  Retrieves an onboarding link for the given vendor from the given gateway if available.
14980
14810
  """
@@ -18723,11 +18553,6 @@ input ProductCreateInput {
18723
18553
  """
18724
18554
  sku: String
18725
18555
 
18726
- """
18727
- Size of the variant. Note: this field is only used if product doesn't use variants. DEPRECATED: All products are now configurable instead of simple. This field will be removed after 2024-07-01.
18728
- """
18729
- variantSize: VariantSizeInput = null
18730
-
18731
18556
  """
18732
18557
  Determines whether to track changes to this variant's inventory. If set to 'false', the product's stock quantity won't reduce when a customer purchases this item. However, even when 'false', you must assign a stock quantity to a warehouse to allow checkouts. Usually, this involves allocating a placeholder stock amount that matches the maximum quantity purchased at once. Note: this field is applicable only for simple products.DEPRECATED: All products are now configurable instead of simple. This field will be removed after 2024-07-01.
18733
18558
  """
@@ -18815,16 +18640,6 @@ input ProductCreateInput {
18815
18640
  image: Upload
18816
18641
  }
18817
18642
 
18818
- """Represents size of a specific variant."""
18819
- input VariantSizeInput {
18820
- length: Decimal
18821
- width: Decimal
18822
- height: Decimal
18823
-
18824
- """Size units for length, width and height."""
18825
- sizeUnits: DistanceUnitsEnum
18826
- }
18827
-
18828
18643
  input ProductDimensionsInput {
18829
18644
  length: PositiveDecimal
18830
18645
  width: PositiveDecimal
@@ -18939,11 +18754,6 @@ input ProductInput {
18939
18754
  """
18940
18755
  sku: String
18941
18756
 
18942
- """
18943
- Size of the variant. Note: this field is only used if product doesn't use variants. DEPRECATED: All products are now configurable instead of simple. This field will be removed after 2024-07-01.
18944
- """
18945
- variantSize: VariantSizeInput = null
18946
-
18947
18757
  """
18948
18758
  Determines whether to track changes to this variant's inventory. If set to 'false', the product's stock quantity won't reduce when a customer purchases this item. However, even when 'false', you must assign a stock quantity to a warehouse to allow checkouts. Usually, this involves allocating a placeholder stock amount that matches the maximum quantity purchased at once. Note: this field is applicable only for simple products.DEPRECATED: All products are now configurable instead of simple. This field will be removed after 2024-07-01.
18949
18759
  """
@@ -19184,6 +18994,9 @@ input ProductTypeInput {
19184
18994
  """Determines if products are digital."""
19185
18995
  isDigital: Boolean
19186
18996
 
18997
+ """Determines if attributes could be added to the products and variants."""
18998
+ isLocked: Boolean
18999
+
19187
19000
  """Weight of the ProductType items."""
19188
19001
  weight: WeightScalar
19189
19002
 
@@ -19347,18 +19160,12 @@ input ProductVariantCreateInput {
19347
19160
  """Weight of the Product Variant."""
19348
19161
  weight: WeightScalar
19349
19162
 
19350
- """Size of the Product Variant."""
19351
- size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
19352
-
19353
19163
  """Name for the variant."""
19354
19164
  name: String
19355
19165
 
19356
19166
  """True if variant requires quote pricing."""
19357
19167
  requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19358
19168
 
19359
- """Substatus the variant is to be changed to."""
19360
- subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
19361
-
19362
19169
  """
19363
19170
  Informs whether a collection is published. All variants are published by default
19364
19171
  """
@@ -19488,18 +19295,12 @@ input ProductVariantBulkCreateInput {
19488
19295
  """Weight of the Product Variant."""
19489
19296
  weight: WeightScalar
19490
19297
 
19491
- """Size of the Product Variant."""
19492
- size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
19493
-
19494
19298
  """Name for the variant."""
19495
19299
  name: String
19496
19300
 
19497
19301
  """True if variant requires quote pricing."""
19498
19302
  requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19499
19303
 
19500
- """Substatus the variant is to be changed to."""
19501
- subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
19502
-
19503
19304
  """
19504
19305
  Informs whether a collection is published. All variants are published by default
19505
19306
  """
@@ -19664,18 +19465,12 @@ input ProductVariantInput {
19664
19465
  """Weight of the Product Variant."""
19665
19466
  weight: WeightScalar
19666
19467
 
19667
- """Size of the Product Variant."""
19668
- size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
19669
-
19670
19468
  """Name for the variant."""
19671
19469
  name: String
19672
19470
 
19673
19471
  """True if variant requires quote pricing."""
19674
19472
  requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19675
19473
 
19676
- """Substatus the variant is to be changed to."""
19677
- subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
19678
-
19679
19474
  """
19680
19475
  Informs whether a collection is published. All variants are published by default
19681
19476
  """
@@ -21469,31 +21264,6 @@ type CustomersExport {
21469
21264
  pluginsErrors: [PluginError!]!
21470
21265
  }
21471
21266
 
21472
- """Update plugin flow."""
21473
- type PluginFlowUpdate {
21474
- flow: Flow
21475
- pluginsErrors: [PluginError!]!
21476
- }
21477
-
21478
- input PluginFlowInput {
21479
- """Indicates the seller that is making the update, null if marketplace."""
21480
- seller: ID
21481
-
21482
- """Indicates the process in the UPPERCASE_FORMAT that this flow maps for."""
21483
- process: String!
21484
-
21485
- """Indicates the mapping for the given process and plugin."""
21486
- mapping: JSONString!
21487
-
21488
- """Form ID from typeform"""
21489
- formId: String!
21490
- }
21491
-
21492
- """Delete plugin flow."""
21493
- type PluginFlowDelete {
21494
- pluginsErrors: [PluginError!]!
21495
- }
21496
-
21497
21267
  """
21498
21268
  Retrieves an onboarding link for the given vendor from the given gateway if available.
21499
21269
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.79.1-2-g8c88052c5",
3
+ "version": "v1.79.1-20-g6d1b6a0b4",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {