@nautical-commerce/graphql-schema 1.79.1-2-g8c88052c5 → 1.79.1-21-g2f8e264f1

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!
@@ -9346,6 +9290,7 @@ enum ConfigurationTypeFieldEnum {
9346
9290
  PASSWORD
9347
9291
  SINGLE_SELECT
9348
9292
  OUTPUT
9293
+ OUTPUT_BOOLEAN
9349
9294
  }
9350
9295
 
9351
9296
  """Represents a checkout page's options."""
@@ -10606,105 +10551,6 @@ type TaxExemptCode {
10606
10551
  validCountries: [String!]
10607
10552
  }
10608
10553
 
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
10554
  input StripeClientPaymentData {
10709
10555
  amount: PositiveDecimal
10710
10556
  currency: String
@@ -12712,7 +12558,7 @@ type Mutation {
12712
12558
  description: String
12713
12559
 
12714
12560
  """
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.
12561
+ 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-zip-compressed, image/heif, image/heic, image/tiff, application/tif, text/pdf, text/plain, image/x-tif, text/x-comma-separated-values, image/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/eps, application/x-tar, application/zip, application/jpg, drawing/x-dwg, application/x-acad, application/vnd.ms-powerpoint, application/x-autocad, application/acad, application/pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, pplication/vnd.rar, application/x-dxf, application/x-dwg, drawing/dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg-xml, application/gzipped, application/msword, application/vnd.oasis.opendocument.text, image/gif, application/x-jpg, image/x-bmp, image/dxf, image/bmp, application/dxf, application/x-rar, text/svg, application/excel, image/png, application/gzip-compressed, image/jpeg, application/acrobat, application/vnd.ms-excel, application/vnd.oasis.opendocument.spreadsheet, text/rtf, image/x-tiff, application/vnd.pdf, application/csv, application/vnd.oasis.opendocument.presentation, image/x-ms-bmp, image/vnd.dwg, image/x-dxf, application/rtf, application/x-csv, text/x-csv, image/webp, application/x-pdf, image/heic-sequence, application/x-gzip, application/vnd.ms-word, image/svg+xml, text/comma-separated-values, image/x-dwg, application/x-eps, image/eps, image/svg, image/heif-sequence, application/x-rar-compressed, application/svg+xml, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tiff, text/x-pdf, application/dwg, image/x-eps, application/x-rtf, image/tif, application/tiff, text/csv, drawing/x-dwf, application/gzip, application/x-tif.
12716
12562
  """
12717
12563
  file: Upload!
12718
12564
 
@@ -14960,21 +14806,6 @@ type Mutation {
14960
14806
  sellerId: ID
14961
14807
  ): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
14962
14808
 
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
14809
  """
14979
14810
  Retrieves an onboarding link for the given vendor from the given gateway if available.
14980
14811
  """
@@ -18723,11 +18554,6 @@ input ProductCreateInput {
18723
18554
  """
18724
18555
  sku: String
18725
18556
 
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
18557
  """
18732
18558
  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
18559
  """
@@ -18815,16 +18641,6 @@ input ProductCreateInput {
18815
18641
  image: Upload
18816
18642
  }
18817
18643
 
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
18644
  input ProductDimensionsInput {
18829
18645
  length: PositiveDecimal
18830
18646
  width: PositiveDecimal
@@ -18939,11 +18755,6 @@ input ProductInput {
18939
18755
  """
18940
18756
  sku: String
18941
18757
 
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
18758
  """
18948
18759
  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
18760
  """
@@ -19184,6 +18995,9 @@ input ProductTypeInput {
19184
18995
  """Determines if products are digital."""
19185
18996
  isDigital: Boolean
19186
18997
 
18998
+ """Determines if attributes could be added to the products and variants."""
18999
+ isLocked: Boolean
19000
+
19187
19001
  """Weight of the ProductType items."""
19188
19002
  weight: WeightScalar
19189
19003
 
@@ -19347,18 +19161,12 @@ input ProductVariantCreateInput {
19347
19161
  """Weight of the Product Variant."""
19348
19162
  weight: WeightScalar
19349
19163
 
19350
- """Size of the Product Variant."""
19351
- size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
19352
-
19353
19164
  """Name for the variant."""
19354
19165
  name: String
19355
19166
 
19356
19167
  """True if variant requires quote pricing."""
19357
19168
  requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19358
19169
 
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
19170
  """
19363
19171
  Informs whether a collection is published. All variants are published by default
19364
19172
  """
@@ -19488,18 +19296,12 @@ input ProductVariantBulkCreateInput {
19488
19296
  """Weight of the Product Variant."""
19489
19297
  weight: WeightScalar
19490
19298
 
19491
- """Size of the Product Variant."""
19492
- size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
19493
-
19494
19299
  """Name for the variant."""
19495
19300
  name: String
19496
19301
 
19497
19302
  """True if variant requires quote pricing."""
19498
19303
  requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19499
19304
 
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
19305
  """
19504
19306
  Informs whether a collection is published. All variants are published by default
19505
19307
  """
@@ -19664,18 +19466,12 @@ input ProductVariantInput {
19664
19466
  """Weight of the Product Variant."""
19665
19467
  weight: WeightScalar
19666
19468
 
19667
- """Size of the Product Variant."""
19668
- size: VariantSizeInput @deprecated(reason: "This field will be removed on April 17th, 2025.")
19669
-
19670
19469
  """Name for the variant."""
19671
19470
  name: String
19672
19471
 
19673
19472
  """True if variant requires quote pricing."""
19674
19473
  requiresQuote: Boolean @deprecated(reason: "This field will be removed on April 25th, 2025.")
19675
19474
 
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
19475
  """
19680
19476
  Informs whether a collection is published. All variants are published by default
19681
19477
  """
@@ -21469,31 +21265,6 @@ type CustomersExport {
21469
21265
  pluginsErrors: [PluginError!]!
21470
21266
  }
21471
21267
 
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
21268
  """
21498
21269
  Retrieves an onboarding link for the given vendor from the given gateway if available.
21499
21270
  """
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-21-g2f8e264f1",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {