@burdenoff/microfe-vibecontrols 2026.515.2 → 2026.515.4

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.
@@ -78,6 +78,9 @@ var n = {}, r = e`
78
78
  agentApiKey
79
79
  appId
80
80
  appClientId
81
+ lastGatewayAuthPushStatus
82
+ lastGatewayAuthPushAt
83
+ lastGatewayAuthPushError
81
84
  targetId
82
85
  metadata
83
86
  aiContext
@@ -5131,9 +5134,13 @@ function ul(e) {
5131
5134
  return t.useSuspenseQuery(sl, r);
5132
5135
  }
5133
5136
  var dl = e`
5134
- query SearchNotes($query: String!, $vibeId: ID, $limit: Int) {
5135
- searchNotes(query: $query, vibeId: $vibeId, limit: $limit) {
5136
- ...NoteFields
5137
+ query SearchNotes($query: String!, $vibeId: ID, $pagination: PaginationInput) {
5138
+ searchNotes(query: $query, vibeId: $vibeId, pagination: $pagination) {
5139
+ items {
5140
+ ...NoteFields
5141
+ }
5142
+ total
5143
+ hasMore
5137
5144
  }
5138
5145
  }
5139
5146
  ${d}`;
@@ -5161,7 +5168,11 @@ function ml(e) {
5161
5168
  var hl = e`
5162
5169
  query PinnedNotes($vibeId: ID) {
5163
5170
  pinnedNotes(vibeId: $vibeId) {
5164
- ...NoteFields
5171
+ items {
5172
+ ...NoteFields
5173
+ }
5174
+ total
5175
+ hasMore
5165
5176
  }
5166
5177
  }
5167
5178
  ${d}`;
@@ -7091,9 +7102,13 @@ function up(e) {
7091
7102
  return t.useSuspenseQuery($, r);
7092
7103
  }
7093
7104
  var dp = e`
7094
- query WebhooksByEvent($event: String!) {
7095
- webhooksByEvent(event: $event) {
7096
- ...WebhookFields
7105
+ query WebhooksByEvent($event: String!, $pagination: PaginationInput) {
7106
+ webhooksByEvent(event: $event, pagination: $pagination) {
7107
+ items {
7108
+ ...WebhookFields
7109
+ }
7110
+ total
7111
+ hasMore
7097
7112
  }
7098
7113
  }
7099
7114
  ${T}`;