@things-factory/operato-board 9.2.5 → 10.0.0-beta.10

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/schema.graphql CHANGED
@@ -459,6 +459,7 @@ enum AttributeSetItemType {
459
459
  datetime
460
460
  file
461
461
  number
462
+ secret
462
463
  select
463
464
  text
464
465
  }
@@ -986,9 +987,7 @@ input CommonCodePatch {
986
987
 
987
988
  """Represents a configured connection to an external system or service."""
988
989
  type Connection {
989
- """
990
- Indicates whether the connection is currently active and should be maintained.
991
- """
990
+ """Whether to automatically connect when the application starts"""
992
991
  active: Boolean
993
992
 
994
993
  """The timestamp when the connection was created."""
@@ -1015,6 +1014,11 @@ type Connection {
1015
1014
  """The name of the connection."""
1016
1015
  name: String!
1017
1016
 
1017
+ """
1018
+ When true, connection is created on-demand when needed and cleaned up after use.
1019
+ """
1020
+ onDemand: Boolean
1021
+
1018
1022
  """A key-value map of parameters for the connection."""
1019
1023
  params: Object
1020
1024
 
@@ -1042,7 +1046,7 @@ type ConnectionList {
1042
1046
 
1043
1047
  """Input for updating (patching) an existing connection."""
1044
1048
  input ConnectionPatch {
1045
- """The new active status for the connection."""
1049
+ """Whether to automatically connect when the application starts"""
1046
1050
  active: Boolean
1047
1051
 
1048
1052
  """
@@ -1065,6 +1069,11 @@ input ConnectionPatch {
1065
1069
  """The new name for the connection."""
1066
1070
  name: String
1067
1071
 
1072
+ """
1073
+ When true, connection is created on-demand when needed and cleaned up after use.
1074
+ """
1075
+ onDemand: Boolean
1076
+
1068
1077
  """The new parameters for the connection."""
1069
1078
  params: Object
1070
1079
 
@@ -1089,6 +1098,11 @@ type ConnectionState {
1089
1098
  """The name of the connection."""
1090
1099
  name: String
1091
1100
 
1101
+ """
1102
+ When true, connection is created on-demand when needed and cleaned up after use.
1103
+ """
1104
+ onDemand: Boolean
1105
+
1092
1106
  """The current status of the connection."""
1093
1107
  state: String
1094
1108
 
@@ -1284,6 +1298,9 @@ type Domain {
1284
1298
  """A description of the domain."""
1285
1299
  description: String
1286
1300
 
1301
+ """The environment variables associated with the domain."""
1302
+ envVars: [EnvVar!]
1303
+
1287
1304
  """The external type of the domain, if applicable."""
1288
1305
  extType: String
1289
1306
 
@@ -1729,6 +1746,68 @@ type EntityRelationMetadata {
1729
1746
  relationType: Boolean
1730
1747
  }
1731
1748
 
1749
+ """Environment variable entity for storing key-value pairs."""
1750
+ type EnvVar {
1751
+ """Indicates whether this environment variable is currently active."""
1752
+ active: Boolean!
1753
+
1754
+ """The timestamp when the environment variable was created."""
1755
+ createdAt: DateTimeISO
1756
+
1757
+ """A detailed description of the environment variable."""
1758
+ description: String
1759
+
1760
+ """The domain to which this environment variable belongs."""
1761
+ domain: Domain
1762
+
1763
+ """The domain ID to which this environment variable belongs."""
1764
+ domainId: String!
1765
+
1766
+ """Unique identifier for the environment variable."""
1767
+ id: ID!
1768
+
1769
+ """The name of the environment variable."""
1770
+ name: String!
1771
+
1772
+ """The timestamp when the environment variable was last updated."""
1773
+ updatedAt: DateTimeISO
1774
+
1775
+ """The value of the environment variable (encrypted)."""
1776
+ value: String
1777
+ }
1778
+
1779
+ """List of environment variables."""
1780
+ type EnvVarList {
1781
+ """The list of environment variable items."""
1782
+ items: [EnvVar!]!
1783
+
1784
+ """The total number of environment variables."""
1785
+ total: Int!
1786
+ }
1787
+
1788
+ """Input type for updating an existing environment variable."""
1789
+ input EnvVarPatch {
1790
+ """The new active status for the environment variable."""
1791
+ active: Boolean
1792
+
1793
+ """
1794
+ A flag indicating whether the environment variable is being created, updated, or deleted.
1795
+ """
1796
+ cuFlag: String
1797
+
1798
+ """The new description for the environment variable."""
1799
+ description: String
1800
+
1801
+ """The unique identifier of the environment variable to update."""
1802
+ id: ID
1803
+
1804
+ """The new name for the environment variable."""
1805
+ name: String
1806
+
1807
+ """The new value for the environment variable."""
1808
+ value: String
1809
+ }
1810
+
1732
1811
  """Entity for Favorite"""
1733
1812
  type Favorite {
1734
1813
  createdAt: DateTimeISO
@@ -2415,6 +2494,9 @@ type Mutation {
2415
2494
  """To create new EntityColumn"""
2416
2495
  createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
2417
2496
 
2497
+ """To create new EnvVar"""
2498
+ createEnvVar(envVar: NewEnvVar!): EnvVar!
2499
+
2418
2500
  """To create new Favorite"""
2419
2501
  createFavorite(favorite: NewFavorite!): Favorite!
2420
2502
 
@@ -2627,6 +2709,12 @@ type Mutation {
2627
2709
  """To delete multiple EntityColumns"""
2628
2710
  deleteEntityColumns(ids: [String!]!): Boolean!
2629
2711
 
2712
+ """To delete EnvVar"""
2713
+ deleteEnvVar(id: String!): Boolean!
2714
+
2715
+ """To delete multiple EnvVars"""
2716
+ deleteEnvVars(ids: [String!]!): Boolean!
2717
+
2630
2718
  """To delete Favorite"""
2631
2719
  deleteFavorite(routing: String!): Boolean!
2632
2720
 
@@ -2954,6 +3042,8 @@ type Mutation {
2954
3042
  """Employee Id"""
2955
3043
  employeeId: String!
2956
3044
  ): Boolean!
3045
+
3046
+ """Register a new schedule with the scheduler service."""
2957
3047
  registerSchedule(schedule: NewSchedule!): ID!
2958
3048
 
2959
3049
  """Releases a board, making it public and creating a version history."""
@@ -2982,7 +3072,7 @@ type Mutation {
2982
3072
  singleUpload(file: Upload!): Attachment!
2983
3073
 
2984
3074
  """Starts a new scenario instance, which will run in the background."""
2985
- startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
3075
+ startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceStartResult!
2986
3076
 
2987
3077
  """Starts the schedule for a specific scenario, if one is defined."""
2988
3078
  startScenarioSchedule(scenarioId: String!): Scenario!
@@ -3015,6 +3105,8 @@ type Mutation {
3015
3105
  """The username or email of the user to transfer ownership to."""
3016
3106
  username: String!
3017
3107
  ): Boolean!
3108
+
3109
+ """Unregister and remove a schedule from the scheduler service."""
3018
3110
  unregisterSchedule(handle: ID!): Boolean!
3019
3111
  updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
3020
3112
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
@@ -3080,6 +3172,9 @@ type Mutation {
3080
3172
  """To modify EntityColumn information"""
3081
3173
  updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn!
3082
3174
 
3175
+ """To modify EnvVar information"""
3176
+ updateEnvVar(envVar: EnvVarPatch!, id: String!): EnvVar!
3177
+
3083
3178
  """To modify Font information"""
3084
3179
  updateFont(id: String!, patch: FontPatch!): Font!
3085
3180
 
@@ -3145,6 +3240,9 @@ type Mutation {
3145
3240
  """To modify multiple Entitys' information"""
3146
3241
  updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
3147
3242
 
3243
+ """To modify multiple EnvVars' information"""
3244
+ updateMultipleEnvVars(patches: [EnvVarPatch!]!): [EnvVar!]!
3245
+
3148
3246
  """To modify multiple Menus' information"""
3149
3247
  updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
3150
3248
 
@@ -3251,6 +3349,8 @@ type Mutation {
3251
3349
 
3252
3350
  """Updates an existing scenario."""
3253
3351
  updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
3352
+
3353
+ """Update an existing schedule configuration."""
3254
3354
  updateSchedule(schedule: SchedulePatch!): ID!
3255
3355
 
3256
3356
  """To update secure IP list for domain"""
@@ -3463,6 +3563,9 @@ input NewCommonCodeDetail {
3463
3563
 
3464
3564
  """Input for creating a new connection."""
3465
3565
  input NewConnection {
3566
+ """Whether to automatically connect when the application starts"""
3567
+ active: Boolean
3568
+
3466
3569
  """A detailed description for the new connection."""
3467
3570
  description: String
3468
3571
 
@@ -3475,6 +3578,11 @@ input NewConnection {
3475
3578
  """The name for the new connection."""
3476
3579
  name: String!
3477
3580
 
3581
+ """
3582
+ When true, connection is created on-demand when needed and cleaned up after use.
3583
+ """
3584
+ onDemand: Boolean
3585
+
3478
3586
  """A key-value map of parameters for the new connection."""
3479
3587
  params: Object
3480
3588
 
@@ -3598,6 +3706,21 @@ input NewEntityColumn {
3598
3706
  virtualField: Boolean
3599
3707
  }
3600
3708
 
3709
+ """Input type for creating a new environment variable."""
3710
+ input NewEnvVar {
3711
+ """Indicates whether this environment variable is active."""
3712
+ active: Boolean
3713
+
3714
+ """A detailed description for the new environment variable."""
3715
+ description: String
3716
+
3717
+ """The name for the new environment variable."""
3718
+ name: String!
3719
+
3720
+ """The value for the new environment variable."""
3721
+ value: String
3722
+ }
3723
+
3601
3724
  input NewFavorite {
3602
3725
  routing: String!
3603
3726
  }
@@ -3870,18 +3993,10 @@ input NewPrinterDevice {
3870
3993
  type: String
3871
3994
  }
3872
3995
 
3873
- """Input for creating a new privilege."""
3874
3996
  input NewPrivilege {
3875
- """The category of the new privilege."""
3876
3997
  category: String!
3877
-
3878
- """A description for the new privilege."""
3879
3998
  description: String
3880
-
3881
- """The name of the new privilege."""
3882
3999
  name: String!
3883
-
3884
- """Roles to which the new privilege will be assigned."""
3885
4000
  roles: [ObjectRef!]
3886
4001
  }
3887
4002
 
@@ -3908,6 +4023,9 @@ input NewScenario {
3908
4023
  """A detailed description for the new scenario."""
3909
4024
  description: String
3910
4025
 
4026
+ """Iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN."""
4027
+ iteration: String
4028
+
3911
4029
  """The name of the new scenario."""
3912
4030
  name: String!
3913
4031
 
@@ -3927,12 +4045,24 @@ input NewScenario {
3927
4045
  type: String
3928
4046
  }
3929
4047
 
4048
+ """Input type for creating a new schedule with complete configuration."""
3930
4049
  input NewSchedule {
4050
+ """Client configuration for this schedule."""
3931
4051
  client: ScheduleClientInput!
4052
+
4053
+ """Name of the schedule for identification."""
3932
4054
  name: String!
4055
+
4056
+ """Schedule expression (cron expression, date string, or delay value)."""
3933
4057
  schedule: String
4058
+
4059
+ """Task configuration and execution details for this schedule."""
3934
4060
  task: ScheduleTaskInput!
4061
+
4062
+ """Timezone for the schedule execution (e.g., UTC, Asia/Seoul)."""
3935
4063
  timezone: String
4064
+
4065
+ """Type of schedule timing (now, delay, date, cron, delay-recur)."""
3936
4066
  type: String!
3937
4067
  }
3938
4068
 
@@ -3945,13 +4075,20 @@ input NewSetting {
3945
4075
 
3946
4076
  """Input for creating a new state register."""
3947
4077
  input NewStateRegister {
4078
+ """
4079
+ Whether to automatically publish state changes. If true, state changes will be published using the name as the tag.
4080
+ """
4081
+ autoPublish: Boolean
4082
+
3948
4083
  """Description of the state register"""
3949
4084
  description: String
3950
4085
 
3951
4086
  """Group name for the state register"""
3952
4087
  group: String
3953
4088
 
3954
- """Name of the state register"""
4089
+ """
4090
+ Name of the state register. If autoPublish is enabled, this name is used as the publish tag.
4091
+ """
3955
4092
  name: String!
3956
4093
 
3957
4094
  """Number of decimal places if the state is a number type"""
@@ -4738,12 +4875,8 @@ type Privilege {
4738
4875
  updater: User
4739
4876
  }
4740
4877
 
4741
- """A paginated list of privileges."""
4742
4878
  type PrivilegeList {
4743
- """The list of privilege items."""
4744
4879
  items: [Privilege!]
4745
-
4746
- """The total number of privileges."""
4747
4880
  total: Int
4748
4881
  }
4749
4882
 
@@ -4762,21 +4895,11 @@ type PrivilegeObject {
4762
4895
  super: Boolean
4763
4896
  }
4764
4897
 
4765
- """Input for updating (patching) an existing privilege."""
4766
4898
  input PrivilegePatch {
4767
- """The new category for the privilege."""
4768
4899
  category: String
4769
-
4770
- """The new description for the privilege."""
4771
4900
  description: String
4772
-
4773
- """The unique identifier of the privilege to update."""
4774
4901
  id: String
4775
-
4776
- """The new name for the privilege."""
4777
4902
  name: String
4778
-
4779
- """A new list of roles to be assigned to the privilege."""
4780
4903
  roles: [ObjectRef!]
4781
4904
  }
4782
4905
 
@@ -4818,8 +4941,15 @@ type PropertySpec {
4818
4941
  """CSS styles to be applied to the input field."""
4819
4942
  styles: Object
4820
4943
 
4821
- """The data type of the property (e.g., text, number, boolean, select)."""
4944
+ """
4945
+ The data type of the property (e.g., text, number, boolean, select, password).
4946
+ """
4822
4947
  type: String!
4948
+
4949
+ """
4950
+ Whether this property should use Domain attributes for secure storage instead of direct params.
4951
+ """
4952
+ useDomainAttribute: Boolean
4823
4953
  }
4824
4954
 
4825
4955
  type Query {
@@ -5351,6 +5481,20 @@ type Query {
5351
5481
 
5352
5482
  """To fetch a EntityMetadata"""
5353
5483
  entityMetadata(name: String!): EntityMetadata!
5484
+ envVar(id: String!): EnvVar
5485
+ envVars(
5486
+ """An array of filter conditions to apply to the list query."""
5487
+ filters: [Filter!]
5488
+
5489
+ """Inherited value type for the list query."""
5490
+ inherited: InheritedValueType
5491
+
5492
+ """Pagination options for the list query."""
5493
+ pagination: Pagination
5494
+
5495
+ """Sorting options for the list query."""
5496
+ sortings: [Sorting!]
5497
+ ): EnvVarList!
5354
5498
 
5355
5499
  """To fetch a Favorite"""
5356
5500
  favorite(id: String!): Favorite!
@@ -5889,9 +6033,13 @@ type Query {
5889
6033
  """Sorting options for the list query."""
5890
6034
  sortings: [Sorting!]
5891
6035
  ): ScenarioList!
6036
+
6037
+ """Retrieve a single schedule by its unique identifier."""
5892
6038
  schedule(id: ID!): Schedule
5893
6039
 
5894
- """To fetch multiple Schedules"""
6040
+ """
6041
+ Retrieve a paginated list of schedules with filtering capabilities by name, application, group, type, key, and operation.
6042
+ """
5895
6043
  schedules(
5896
6044
  """An array of filter conditions to apply to the list query."""
5897
6045
  filters: [Filter!]
@@ -6162,7 +6310,7 @@ type RolePrivilege {
6162
6310
  """Represents a sequence of steps designed to automate a task or process."""
6163
6311
  type Scenario {
6164
6312
  """
6165
- Indicates if the scenario should be automatically started when the server starts. [will be deprecated]
6313
+ Indicates if the scenario should be automatically started when the server starts.
6166
6314
  """
6167
6315
  active: Boolean
6168
6316
  connectionNames: [Connection!]!
@@ -6183,6 +6331,9 @@ type Scenario {
6183
6331
  id: ID!
6184
6332
  instances: [ScenarioInstance!]
6185
6333
 
6334
+ """Iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN."""
6335
+ iteration: String
6336
+
6186
6337
  """The name of the scenario."""
6187
6338
  name: String!
6188
6339
 
@@ -6312,6 +6463,18 @@ type ScenarioInstanceRunResult {
6312
6463
  variables: Object
6313
6464
  }
6314
6465
 
6466
+ """Contains the final result of a completed scenario instance start."""
6467
+ type ScenarioInstanceStartResult {
6468
+ """A final message from the run (e.g., success or failure reason)."""
6469
+ message: String
6470
+
6471
+ """The final state of the instance after the run."""
6472
+ state: String
6473
+
6474
+ """The timestamp when the instance started."""
6475
+ timestamp: DateTimeISO
6476
+ }
6477
+
6315
6478
  """
6316
6479
  Represents the complete state of a scenario instance at a point in time.
6317
6480
  """
@@ -6364,7 +6527,9 @@ type ScenarioList {
6364
6527
 
6365
6528
  """Input for updating (patching) an existing scenario."""
6366
6529
  input ScenarioPatch {
6367
- """The new active status for the scenario."""
6530
+ """
6531
+ Indicates if the scenario should be automatically started when the server starts.
6532
+ """
6368
6533
  active: Boolean
6369
6534
 
6370
6535
  """
@@ -6378,6 +6543,11 @@ input ScenarioPatch {
6378
6543
  """The unique identifier of the scenario to update."""
6379
6544
  id: ID
6380
6545
 
6546
+ """
6547
+ The new iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN.
6548
+ """
6549
+ iteration: String
6550
+
6381
6551
  """The new name for the scenario."""
6382
6552
  name: String
6383
6553
 
@@ -6409,78 +6579,198 @@ type ScenarioQueueState {
6409
6579
  queue: [PendingObject!]!
6410
6580
  }
6411
6581
 
6582
+ """
6583
+ Represents a scheduled task with timing configuration, client settings, and task execution details.
6584
+ """
6412
6585
  type Schedule {
6586
+ """Client configuration for this schedule."""
6413
6587
  client: ScheduleClient!
6588
+
6589
+ """Unique identifier for the schedule."""
6414
6590
  id: ID!
6591
+
6592
+ """Name of the schedule for identification."""
6415
6593
  name: String
6594
+
6595
+ """Schedule expression (cron expression, date string, or delay value)."""
6416
6596
  schedule: String
6597
+
6598
+ """Task configuration and execution details for this schedule."""
6417
6599
  task: ScheduleTask!
6600
+
6601
+ """Timezone for the schedule execution (e.g., UTC, Asia/Seoul)."""
6418
6602
  timezone: String
6603
+
6604
+ """Type of schedule timing (now, delay, date, cron, delay-recur)."""
6419
6605
  type: String!
6420
6606
  }
6421
6607
 
6608
+ """
6609
+ Represents a schedule client configuration that defines the application, group, type, key, and operation for scheduled tasks.
6610
+ """
6422
6611
  type ScheduleClient {
6612
+ """Name of the application that owns this schedule."""
6423
6613
  application: String!
6614
+
6615
+ """Group identifier for organizing related schedules."""
6424
6616
  group: String!
6617
+
6618
+ """Unique key identifier for the schedule."""
6425
6619
  key: String!
6620
+
6621
+ """
6622
+ Operation to be performed by this schedule (e.g., start, stop, collect, report).
6623
+ """
6426
6624
  operation: String!
6625
+
6626
+ """
6627
+ Type of the schedule client (e.g., data collection, reporting, maintenance).
6628
+ """
6427
6629
  type: String!
6428
6630
  }
6429
6631
 
6632
+ """Input type for schedule client configuration."""
6430
6633
  input ScheduleClientInput {
6634
+ """Name of the application that owns this schedule."""
6431
6635
  application: String!
6636
+
6637
+ """Group identifier for organizing related schedules."""
6432
6638
  group: String!
6639
+
6640
+ """Unique key identifier for the schedule."""
6433
6641
  key: String!
6642
+
6643
+ """
6644
+ Operation to be performed by this schedule (e.g., start, stop, collect, report).
6645
+ """
6434
6646
  operation: String!
6647
+
6648
+ """
6649
+ Type of the schedule client (e.g., data collection, reporting, maintenance).
6650
+ """
6435
6651
  type: String!
6436
6652
  }
6437
6653
 
6654
+ """Represents a paginated list of schedules with total count."""
6438
6655
  type ScheduleList {
6656
+ """Array of schedule objects."""
6439
6657
  items: [Schedule!]!
6658
+
6659
+ """Total number of schedules matching the query criteria."""
6440
6660
  total: Int!
6441
6661
  }
6442
6662
 
6663
+ """Input type for updating an existing schedule configuration."""
6443
6664
  input SchedulePatch {
6665
+ """Client configuration for this schedule."""
6444
6666
  client: ScheduleClientInput!
6667
+
6668
+ """Unique identifier for the schedule to update."""
6445
6669
  id: String
6670
+
6671
+ """Name of the schedule for identification."""
6446
6672
  name: String
6673
+
6674
+ """Schedule expression (cron expression, date string, or delay value)."""
6447
6675
  schedule: String
6676
+
6677
+ """Task configuration and execution details for this schedule."""
6448
6678
  task: ScheduleTaskInput!
6679
+
6680
+ """Timezone for the schedule execution (e.g., UTC, Asia/Seoul)."""
6449
6681
  timezone: String
6682
+
6683
+ """Type of schedule timing (now, delay, date, cron, delay-recur)."""
6450
6684
  type: String!
6451
6685
  }
6452
6686
 
6687
+ """
6688
+ Represents a scheduled task with connection settings, data payload, and retry policies.
6689
+ """
6453
6690
  type ScheduleTask {
6691
+ """Connection configuration for the scheduled task."""
6454
6692
  connection: ScheduleTaskConnection!
6693
+
6694
+ """Data payload to be sent with the scheduled task."""
6455
6695
  data: Object!
6696
+
6697
+ """Policy for handling failed task executions (ignore, retry, retry_dlq)."""
6456
6698
  failed_policy: String!
6699
+
6700
+ """Indicates whether to check task execution history before scheduling."""
6457
6701
  history_check: Boolean!
6702
+
6703
+ """Maximum number of retry attempts allowed for this task."""
6458
6704
  max_retry_count: Int!
6705
+
6706
+ """Current number of retry attempts for this task."""
6459
6707
  retry_count: Int!
6708
+
6709
+ """Wait time in seconds before retrying a failed task."""
6460
6710
  retry_wait: Int!
6711
+
6712
+ """Type of the scheduled task (rest, kafka, redis)."""
6461
6713
  type: String!
6462
6714
  }
6463
6715
 
6716
+ """
6717
+ Represents the connection configuration for a scheduled task, including host, headers, and topic settings.
6718
+ """
6464
6719
  type ScheduleTaskConnection {
6720
+ """HTTP headers for REST API connections or connection parameters."""
6465
6721
  headers: Object
6722
+
6723
+ """
6724
+ Host URL for the task connection (e.g., REST API endpoint, Kafka broker, Redis server).
6725
+ """
6466
6726
  host: String
6727
+
6728
+ """
6729
+ Topic name for message-based connections (e.g., Kafka topic, Redis channel).
6730
+ """
6467
6731
  topic: String
6468
6732
  }
6469
6733
 
6734
+ """Input type for schedule task connection configuration."""
6470
6735
  input ScheduleTaskConnectionInput {
6736
+ """HTTP headers for REST API connections or connection parameters."""
6471
6737
  headers: Object
6738
+
6739
+ """
6740
+ Host URL for the task connection (e.g., REST API endpoint, Kafka broker, Redis server).
6741
+ """
6472
6742
  host: String
6743
+
6744
+ """
6745
+ Topic name for message-based connections (e.g., Kafka topic, Redis channel).
6746
+ """
6473
6747
  topic: String
6474
6748
  }
6475
6749
 
6750
+ """Input type for schedule task configuration."""
6476
6751
  input ScheduleTaskInput {
6752
+ """Connection configuration for the scheduled task."""
6477
6753
  connection: ScheduleTaskConnectionInput!
6754
+
6755
+ """Data payload to be sent with the scheduled task."""
6478
6756
  data: Object!
6757
+
6758
+ """Policy for handling failed task executions (ignore, retry, retry_dlq)."""
6479
6759
  failed_policy: String!
6760
+
6761
+ """Indicates whether to check task execution history before scheduling."""
6480
6762
  history_check: Boolean!
6763
+
6764
+ """Maximum number of retry attempts allowed for this task."""
6481
6765
  max_retry_count: Int!
6766
+
6767
+ """Current number of retry attempts for this task."""
6482
6768
  retry_count: Int!
6769
+
6770
+ """Wait time in seconds before retrying a failed task."""
6483
6771
  retry_wait: Int!
6772
+
6773
+ """Type of the scheduled task (rest, kafka, redis)."""
6484
6774
  type: String!
6485
6775
  }
6486
6776
 
@@ -6525,6 +6815,11 @@ input Sorting {
6525
6815
  Represents a key-value store for maintaining the state of various entities within a domain.
6526
6816
  """
6527
6817
  type StateRegister {
6818
+ """
6819
+ Whether to automatically publish state changes. If true, state changes will be published using the name as the tag.
6820
+ """
6821
+ autoPublish: Boolean
6822
+
6528
6823
  """Creation time of the state register"""
6529
6824
  createdAt: DateTimeISO
6530
6825
 
@@ -6549,7 +6844,9 @@ type StateRegister {
6549
6844
  """Unique identifier for the state register."""
6550
6845
  id: ID!
6551
6846
 
6552
- """Name of the state register"""
6847
+ """
6848
+ Name of the state register. If autoPublish is enabled, this name is used as the publish tag.
6849
+ """
6553
6850
  name: String
6554
6851
 
6555
6852
  """Number of decimal places if the state is a number type"""
@@ -6602,6 +6899,11 @@ type StateRegisterList {
6602
6899
 
6603
6900
  """Input for updating (patching) an existing state register."""
6604
6901
  input StateRegisterPatch {
6902
+ """
6903
+ Whether to automatically publish state changes. If true, state changes will be published using the name as the tag.
6904
+ """
6905
+ autoPublish: Boolean
6906
+
6605
6907
  """Flag indicating create/update operations"""
6606
6908
  cuFlag: String
6607
6909
 
@@ -6614,7 +6916,9 @@ input StateRegisterPatch {
6614
6916
  """ID of the state register"""
6615
6917
  id: ID
6616
6918
 
6617
- """Name of the state register"""
6919
+ """
6920
+ Name of the state register. If autoPublish is enabled, this name is used as the publish tag.
6921
+ """
6618
6922
  name: String
6619
6923
 
6620
6924
  """Number of decimal places if the state is a number type"""