@nautical-commerce/graphql-schema 1.59.0-9-g2e863ec6b → 1.59.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -123,6 +123,10 @@ type Query {
123
123
  """Return the last n elements from the list."""
124
124
  last: Int
125
125
  ): WebhookJobCountableConnection
126
+ periodicTask(
127
+ """Name of the periodic task to retrieve"""
128
+ name: String!
129
+ ): WebhookPeriodicTask @deprecated(reason: "This will be removed on November 9, 2024")
126
130
 
127
131
  """Look up a warehouse by ID."""
128
132
  warehouse(
@@ -8567,6 +8571,76 @@ enum WebhookJobSortField {
8567
8571
  CREATED_AT
8568
8572
  }
8569
8573
 
8574
+ """Represents a periodic task run by django celery beat"""
8575
+ type WebhookPeriodicTask implements Node {
8576
+ """The ID of the object"""
8577
+ id: ID!
8578
+
8579
+ """Short Description For This Task"""
8580
+ name: String!
8581
+
8582
+ """
8583
+ The Name of the Celery Task that Should be Run. (Example: "proj.tasks.import_contacts")
8584
+ """
8585
+ task: String!
8586
+
8587
+ """JSON encoded positional arguments (Example: ["arg1", "arg2"])"""
8588
+ args: String!
8589
+
8590
+ """JSON encoded keyword arguments (Example: {"argument": "value"})"""
8591
+ kwargs: String!
8592
+
8593
+ """Queue defined in CELERY_TASK_QUEUES. Leave None for default queuing."""
8594
+ queue: String
8595
+
8596
+ """Override Exchange for low-level AMQP routing"""
8597
+ exchange: String
8598
+
8599
+ """Override Routing Key for low-level AMQP routing"""
8600
+ routingKey: String
8601
+
8602
+ """JSON encoded message headers for the AMQP message."""
8603
+ headers: String!
8604
+
8605
+ """
8606
+ Priority Number between 0 and 255. Supported by: RabbitMQ, Redis (priority reversed, 0 is highest).
8607
+ """
8608
+ priority: Int
8609
+
8610
+ """
8611
+ Datetime after which the schedule will no longer trigger the task to run
8612
+ """
8613
+ expires: DateTime
8614
+
8615
+ """
8616
+ Timedelta with seconds which the schedule will no longer trigger the task to run
8617
+ """
8618
+ expireSeconds: Int
8619
+
8620
+ """If True, the schedule will only run the task a single time"""
8621
+ oneOff: Boolean!
8622
+
8623
+ """Datetime when the schedule should begin triggering the task to run"""
8624
+ startTime: DateTime
8625
+
8626
+ """Set to False to disable the schedule"""
8627
+ enabled: Boolean!
8628
+
8629
+ """
8630
+ Datetime that the schedule last triggered the task to run. Reset to None if enabled is set to False.
8631
+ """
8632
+ lastRunAt: DateTime
8633
+
8634
+ """Running count of how many times the schedule has triggered the task"""
8635
+ totalRunCount: Int!
8636
+
8637
+ """Datetime that this PeriodicTask was last modified"""
8638
+ dateChanged: DateTime!
8639
+
8640
+ """Detailed description about the details of this Periodic Task"""
8641
+ description: String!
8642
+ }
8643
+
8570
8644
  input WarehouseFilterInput {
8571
8645
  seller: ID
8572
8646
  search: String
@@ -13400,7 +13474,7 @@ type Mutation {
13400
13474
  description: String
13401
13475
 
13402
13476
  """
13403
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/msword, application/vnd.oasis.opendocument.text, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/eps, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/plain, application/gzip, image/svg, application/pdf, image/png, image/heif, application/x-dxf, image/jpg, text/pdf, image/heif-sequence, text/svg, application/x-csv, image/x-tif, text/x-csv, application/postscript, application/x-autocad, image/tif, application/x-dwg, application/vnd.oasis.opendocument.spreadsheet, application/acrobat, application/vnd.oasis.opendocument.presentation, application/x-gzip, application/tiff, application/csv, application/tif, application/vnd.pdf, drawing/x-dwf, application/x-tif, image/heic-sequence, image/vnd.dwg, image/x-eps, image/svg+xml, image/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/x-pdf, image/x-ms-bmp, application/eps, drawing/dwg, image/tiff, image/bmp, image/dxf, application/gzip-compressed, application/x-rar-compressed, application/dwg, drawing/x-dwg, application/acad, application/x-acad, application/dxf, application/rtf, application/vnd.ms-word, application/x-rtf, text/rtf, text/comma-separated-values, application/x-jpg, image/x-dwg, application/x-tiff, application/x-eps, application/zip, application/x-zip-compressed, text/csv, application/x-rar, application/excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, pplication/vnd.rar, application/vnd.ms-excel, application/x-pdf, image/x-bmp, image/heic, application/gzipped, image/jpeg, image/gif, application/jpg, text/svg-xml, image/webp, image/x-tiff, application/svg+xml, application/x-tar.
13477
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/eps, drawing/x-dwf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.pdf, application/x-tiff, application/jpg, application/x-rtf, image/gif, application/tiff, image/svg+xml, image/heic-sequence, image/x-eps, application/x-tar, drawing/x-dwg, application/x-eps, application/acrobat, application/postscript, text/x-pdf, text/svg, application/x-dxf, application/msword, text/pdf, application/gzipped, application/vnd.ms-word, image/x-tiff, application/x-tif, image/bmp, text/plain, application/x-dwg, image/heif-sequence, image/vnd.dwg, application/vnd.ms-powerpoint, pplication/vnd.rar, text/rtf, application/x-pdf, application/x-autocad, application/x-rar, application/vnd.oasis.opendocument.presentation, text/x-csv, application/x-gzip, image/svg, application/pdf, text/svg-xml, application/zip, application/tif, application/vnd.oasis.opendocument.spreadsheet, application/excel, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/jpeg, application/acad, application/gzip-compressed, image/dxf, application/dwg, image/jpg, application/svg+xml, application/x-zip-compressed, application/x-rar-compressed, image/x-tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-ms-bmp, image/eps, text/x-comma-separated-values, application/csv, application/rtf, image/tif, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/tiff, image/x-dwg, image/webp, image/x-dxf, drawing/dwg, text/csv, text/comma-separated-values, image/x-bmp, image/heic, image/heif, application/x-csv, application/gzip, application/dxf, application/x-acad, application/vnd.ms-excel, application/x-jpg, image/png.
13404
13478
  """
13405
13479
  file: Upload!
13406
13480
 
@@ -13471,6 +13545,11 @@ type Mutation {
13471
13545
  """Updates nautical configuration."""
13472
13546
  nauticalConfigurationUpdate(input: [NauticalConfigurationInputItem!]): NauticalConfigurationUpdate
13473
13547
 
13548
+ """
13549
+ Update whether process_pending_webhook_transactions periodic django celery beat task is enabled
13550
+ """
13551
+ updatePeriodicTaskEnabled(enabled: Boolean): PeriodicTaskEnabledUpdate @deprecated(reason: "This will be removed on November 9, 2024")
13552
+
13474
13553
  """Updates marketplace configuration."""
13475
13554
  marketplaceConfigurationUpdate(
13476
13555
  """Fields required to update marketplace configuration."""
@@ -16908,6 +16987,14 @@ input NauticalConfigurationInputItem {
16908
16987
  configurationValueString: String
16909
16988
  }
16910
16989
 
16990
+ """
16991
+ Update whether process_pending_webhook_transactions periodic django celery beat task is enabled
16992
+ """
16993
+ type PeriodicTaskEnabledUpdate {
16994
+ """An updated periodic task instance"""
16995
+ task: WebhookPeriodicTask
16996
+ }
16997
+
16911
16998
  """Updates marketplace configuration."""
16912
16999
  type MarketplaceConfigurationUpdate {
16913
17000
  """Updated marketplace configuration."""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.59.0-9-g2e863ec6b",
3
+ "version": "v1.59.1",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {