@objectstack/spec 0.7.1 → 0.7.2

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.
Files changed (91) hide show
  1. package/dist/ai/agent-action.zod.d.ts +8 -8
  2. package/dist/ai/model-registry.zod.d.ts +6 -6
  3. package/dist/ai/orchestration.zod.d.ts +6 -6
  4. package/dist/ai/predictive.zod.d.ts +2 -2
  5. package/dist/ai/rag-pipeline.zod.d.ts +2 -2
  6. package/dist/api/batch.zod.d.ts +81 -8
  7. package/dist/api/batch.zod.d.ts.map +1 -1
  8. package/dist/api/batch.zod.js +14 -1
  9. package/dist/api/graphql.zod.d.ts +224 -224
  10. package/dist/api/odata.zod.d.ts +379 -0
  11. package/dist/api/odata.zod.d.ts.map +1 -1
  12. package/dist/api/odata.zod.js +14 -1
  13. package/dist/api/protocol.zod.d.ts +18 -18
  14. package/dist/api/realtime.zod.d.ts +133 -0
  15. package/dist/api/realtime.zod.d.ts.map +1 -1
  16. package/dist/api/realtime.zod.js +14 -1
  17. package/dist/api/websocket.zod.d.ts +2 -2
  18. package/dist/auth/config.zod.d.ts +12 -12
  19. package/dist/auth/identity.zod.d.ts +3 -3
  20. package/dist/automation/approval.zod.d.ts +16 -16
  21. package/dist/automation/etl.zod.d.ts +2 -2
  22. package/dist/automation/sync.zod.d.ts +4 -4
  23. package/dist/automation/webhook.zod.d.ts +2 -2
  24. package/dist/automation/workflow.zod.d.ts +28 -28
  25. package/dist/data/object.zod.d.ts.map +1 -1
  26. package/dist/data/object.zod.js +3 -1
  27. package/dist/hub/composer.zod.d.ts +9 -8
  28. package/dist/hub/composer.zod.d.ts.map +1 -1
  29. package/dist/hub/marketplace.zod.d.ts +1 -0
  30. package/dist/hub/marketplace.zod.d.ts.map +1 -1
  31. package/dist/hub/plugin-registry.zod.d.ts +9 -9
  32. package/dist/hub/space.zod.d.ts +5 -4
  33. package/dist/hub/space.zod.d.ts.map +1 -1
  34. package/dist/integration/connector/database.zod.d.ts +33 -33
  35. package/dist/integration/connector/file-storage.zod.d.ts +52 -52
  36. package/dist/integration/connector/message-queue.zod.d.ts +43 -43
  37. package/dist/integration/connector/saas.zod.d.ts +31 -30
  38. package/dist/integration/connector/saas.zod.d.ts.map +1 -1
  39. package/dist/integration/connector.zod.d.ts +34 -34
  40. package/dist/stack.zod.d.ts +78 -78
  41. package/dist/system/change-management.zod.d.ts +2 -2
  42. package/dist/system/collaboration.zod.d.ts +6 -6
  43. package/dist/system/events.zod.d.ts +2536 -0
  44. package/dist/system/events.zod.d.ts.map +1 -1
  45. package/dist/system/events.zod.js +582 -1
  46. package/dist/system/http-server.zod.d.ts +2 -2
  47. package/dist/system/index.d.ts +1 -0
  48. package/dist/system/index.d.ts.map +1 -1
  49. package/dist/system/index.js +1 -0
  50. package/dist/system/job.zod.d.ts +3 -2
  51. package/dist/system/job.zod.d.ts.map +1 -1
  52. package/dist/system/logging.zod.d.ts +10 -10
  53. package/dist/system/manifest.zod.d.ts +6 -6
  54. package/dist/system/message-queue.zod.d.ts +10 -10
  55. package/dist/system/metadata-loader.zod.d.ts +3 -3
  56. package/dist/system/notification.zod.d.ts +12 -12
  57. package/dist/system/plugin-capability.zod.d.ts +6 -6
  58. package/dist/system/startup-orchestrator.zod.d.ts +2 -2
  59. package/dist/system/worker.zod.d.ts +1458 -0
  60. package/dist/system/worker.zod.d.ts.map +1 -0
  61. package/dist/system/worker.zod.js +479 -0
  62. package/json-schema/api/BatchConfig.json +51 -0
  63. package/json-schema/api/ODataConfig.json +132 -0
  64. package/json-schema/api/RealtimeConfig.json +90 -0
  65. package/json-schema/data/Object.json +4 -1
  66. package/json-schema/system/BatchProgress.json +72 -0
  67. package/json-schema/system/BatchTask.json +63 -0
  68. package/json-schema/system/DeadLetterQueueEntry.json +137 -0
  69. package/json-schema/system/Event.json +24 -0
  70. package/json-schema/system/EventBusConfig.json +552 -0
  71. package/json-schema/system/EventHandler.json +34 -0
  72. package/json-schema/system/EventLogEntry.json +153 -0
  73. package/json-schema/system/EventMessageQueueConfig.json +79 -0
  74. package/json-schema/system/EventMetadata.json +20 -0
  75. package/json-schema/system/EventPersistence.json +11 -0
  76. package/json-schema/system/EventPriority.json +16 -0
  77. package/json-schema/system/EventQueueConfig.json +67 -0
  78. package/json-schema/system/EventReplayConfig.json +50 -0
  79. package/json-schema/system/EventSourcingConfig.json +65 -0
  80. package/json-schema/system/EventTypeDefinition.json +45 -0
  81. package/json-schema/system/EventWebhookConfig.json +119 -0
  82. package/json-schema/system/QueueConfig.json +133 -0
  83. package/json-schema/system/RealTimeNotificationConfig.json +85 -0
  84. package/json-schema/system/Task.json +145 -0
  85. package/json-schema/system/TaskExecutionResult.json +85 -0
  86. package/json-schema/system/TaskPriority.json +16 -0
  87. package/json-schema/system/TaskRetryPolicy.json +46 -0
  88. package/json-schema/system/TaskStatus.json +19 -0
  89. package/json-schema/system/WorkerConfig.json +188 -0
  90. package/json-schema/system/WorkerStats.json +90 -0
  91. package/package.json +9 -1
@@ -230,11 +230,11 @@ export declare const GraphQLQueryConfigSchema: z.ZodObject<{
230
230
  }, "strip", z.ZodTypeAny, {
231
231
  enabled: boolean;
232
232
  fields?: string[] | undefined;
233
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
233
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
234
234
  }, {
235
235
  enabled?: boolean | undefined;
236
236
  fields?: string[] | undefined;
237
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
237
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
238
238
  }>>;
239
239
  /** Sorting configuration */
240
240
  sorting: z.ZodOptional<z.ZodObject<{
@@ -333,16 +333,16 @@ export declare const GraphQLQueryConfigSchema: z.ZodObject<{
333
333
  defaultLimit: number;
334
334
  maxLimit: number;
335
335
  } | undefined;
336
- permissions?: string[] | undefined;
337
336
  args?: Record<string, {
338
337
  type: string;
339
338
  defaultValue?: any;
340
339
  description?: string | undefined;
341
340
  }> | undefined;
341
+ permissions?: string[] | undefined;
342
342
  filtering?: {
343
343
  enabled: boolean;
344
344
  fields?: string[] | undefined;
345
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
345
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
346
346
  } | undefined;
347
347
  sorting?: {
348
348
  enabled: boolean;
@@ -372,17 +372,17 @@ export declare const GraphQLQueryConfigSchema: z.ZodObject<{
372
372
  defaultLimit?: number | undefined;
373
373
  maxLimit?: number | undefined;
374
374
  } | undefined;
375
- permissions?: string[] | undefined;
376
375
  args?: Record<string, {
377
376
  type: string;
378
377
  defaultValue?: any;
379
378
  description?: string | undefined;
380
379
  }> | undefined;
380
+ permissions?: string[] | undefined;
381
381
  authRequired?: boolean | undefined;
382
382
  filtering?: {
383
383
  enabled?: boolean | undefined;
384
384
  fields?: string[] | undefined;
385
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
385
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
386
386
  } | undefined;
387
387
  sorting?: {
388
388
  enabled?: boolean | undefined;
@@ -1113,7 +1113,7 @@ export declare const GraphQLRateLimitSchema: z.ZodObject<{
1113
1113
  }, "strip", z.ZodTypeAny, {
1114
1114
  enabled: boolean;
1115
1115
  strategy: "sliding_window" | "token_bucket" | "fixed_window" | "cost_based";
1116
- onLimitExceeded: "log" | "reject" | "queue";
1116
+ onLimitExceeded: "log" | "queue" | "reject";
1117
1117
  includeHeaders: boolean;
1118
1118
  errorMessage?: string | undefined;
1119
1119
  operations?: Record<string, {
@@ -1142,7 +1142,7 @@ export declare const GraphQLRateLimitSchema: z.ZodObject<{
1142
1142
  windowMs: number;
1143
1143
  maxRequests: number;
1144
1144
  }> | undefined;
1145
- onLimitExceeded?: "log" | "reject" | "queue" | undefined;
1145
+ onLimitExceeded?: "log" | "queue" | "reject" | undefined;
1146
1146
  global?: {
1147
1147
  windowMs?: number | undefined;
1148
1148
  maxRequests?: number | undefined;
@@ -1502,11 +1502,11 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
1502
1502
  }, "strip", z.ZodTypeAny, {
1503
1503
  enabled: boolean;
1504
1504
  fields?: string[] | undefined;
1505
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
1505
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
1506
1506
  }, {
1507
1507
  enabled?: boolean | undefined;
1508
1508
  fields?: string[] | undefined;
1509
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
1509
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
1510
1510
  }>>;
1511
1511
  /** Sorting configuration */
1512
1512
  sorting: z.ZodOptional<z.ZodObject<{
@@ -1605,16 +1605,16 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
1605
1605
  defaultLimit: number;
1606
1606
  maxLimit: number;
1607
1607
  } | undefined;
1608
- permissions?: string[] | undefined;
1609
1608
  args?: Record<string, {
1610
1609
  type: string;
1611
1610
  defaultValue?: any;
1612
1611
  description?: string | undefined;
1613
1612
  }> | undefined;
1613
+ permissions?: string[] | undefined;
1614
1614
  filtering?: {
1615
1615
  enabled: boolean;
1616
1616
  fields?: string[] | undefined;
1617
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
1617
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
1618
1618
  } | undefined;
1619
1619
  sorting?: {
1620
1620
  enabled: boolean;
@@ -1644,17 +1644,17 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
1644
1644
  defaultLimit?: number | undefined;
1645
1645
  maxLimit?: number | undefined;
1646
1646
  } | undefined;
1647
- permissions?: string[] | undefined;
1648
1647
  args?: Record<string, {
1649
1648
  type: string;
1650
1649
  defaultValue?: any;
1651
1650
  description?: string | undefined;
1652
1651
  }> | undefined;
1652
+ permissions?: string[] | undefined;
1653
1653
  authRequired?: boolean | undefined;
1654
1654
  filtering?: {
1655
1655
  enabled?: boolean | undefined;
1656
1656
  fields?: string[] | undefined;
1657
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
1657
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
1658
1658
  } | undefined;
1659
1659
  sorting?: {
1660
1660
  enabled?: boolean | undefined;
@@ -2085,6 +2085,28 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2085
2085
  }>, "many">>;
2086
2086
  }, "strip", z.ZodTypeAny, {
2087
2087
  autoGenerateTypes: boolean;
2088
+ subscriptions?: {
2089
+ object: string;
2090
+ name: string;
2091
+ events: ("custom" | "created" | "deleted" | "updated")[];
2092
+ authRequired: boolean;
2093
+ filter?: {
2094
+ enabled: boolean;
2095
+ fields?: string[] | undefined;
2096
+ } | undefined;
2097
+ description?: string | undefined;
2098
+ rateLimit?: {
2099
+ enabled: boolean;
2100
+ maxSubscriptionsPerUser: number;
2101
+ throttleMs?: number | undefined;
2102
+ } | undefined;
2103
+ payload?: {
2104
+ includeEntity: boolean;
2105
+ includePreviousValues: boolean;
2106
+ includeMeta: boolean;
2107
+ } | undefined;
2108
+ permissions?: string[] | undefined;
2109
+ }[] | undefined;
2088
2110
  directives?: {
2089
2111
  name: string;
2090
2112
  locations: ("QUERY" | "MUTATION" | "SUBSCRIPTION" | "FIELD" | "FRAGMENT_DEFINITION" | "FRAGMENT_SPREAD" | "INLINE_FRAGMENT" | "VARIABLE_DEFINITION" | "SCHEMA" | "SCALAR" | "OBJECT" | "FIELD_DEFINITION" | "ARGUMENT_DEFINITION" | "INTERFACE" | "UNION" | "ENUM" | "ENUM_VALUE" | "INPUT_OBJECT" | "INPUT_FIELD_DEFINITION")[];
@@ -2121,16 +2143,16 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2121
2143
  defaultLimit: number;
2122
2144
  maxLimit: number;
2123
2145
  } | undefined;
2124
- permissions?: string[] | undefined;
2125
2146
  args?: Record<string, {
2126
2147
  type: string;
2127
2148
  defaultValue?: any;
2128
2149
  description?: string | undefined;
2129
2150
  }> | undefined;
2151
+ permissions?: string[] | undefined;
2130
2152
  filtering?: {
2131
2153
  enabled: boolean;
2132
2154
  fields?: string[] | undefined;
2133
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
2155
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
2134
2156
  } | undefined;
2135
2157
  sorting?: {
2136
2158
  enabled: boolean;
@@ -2196,28 +2218,6 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2196
2218
  after?: string[] | undefined;
2197
2219
  } | undefined;
2198
2220
  }[] | undefined;
2199
- subscriptions?: {
2200
- object: string;
2201
- name: string;
2202
- events: ("custom" | "created" | "deleted" | "updated")[];
2203
- authRequired: boolean;
2204
- filter?: {
2205
- enabled: boolean;
2206
- fields?: string[] | undefined;
2207
- } | undefined;
2208
- description?: string | undefined;
2209
- rateLimit?: {
2210
- enabled: boolean;
2211
- maxSubscriptionsPerUser: number;
2212
- throttleMs?: number | undefined;
2213
- } | undefined;
2214
- payload?: {
2215
- includeEntity: boolean;
2216
- includePreviousValues: boolean;
2217
- includeMeta: boolean;
2218
- } | undefined;
2219
- permissions?: string[] | undefined;
2220
- }[] | undefined;
2221
2221
  resolvers?: {
2222
2222
  path: string;
2223
2223
  type: "script" | "datasource" | "proxy" | "computed";
@@ -2237,6 +2237,28 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2237
2237
  } | undefined;
2238
2238
  }[] | undefined;
2239
2239
  }, {
2240
+ subscriptions?: {
2241
+ object: string;
2242
+ name: string;
2243
+ events: ("custom" | "created" | "deleted" | "updated")[];
2244
+ filter?: {
2245
+ enabled?: boolean | undefined;
2246
+ fields?: string[] | undefined;
2247
+ } | undefined;
2248
+ description?: string | undefined;
2249
+ rateLimit?: {
2250
+ enabled?: boolean | undefined;
2251
+ maxSubscriptionsPerUser?: number | undefined;
2252
+ throttleMs?: number | undefined;
2253
+ } | undefined;
2254
+ payload?: {
2255
+ includeEntity?: boolean | undefined;
2256
+ includePreviousValues?: boolean | undefined;
2257
+ includeMeta?: boolean | undefined;
2258
+ } | undefined;
2259
+ permissions?: string[] | undefined;
2260
+ authRequired?: boolean | undefined;
2261
+ }[] | undefined;
2240
2262
  directives?: {
2241
2263
  name: string;
2242
2264
  locations: ("QUERY" | "MUTATION" | "SUBSCRIPTION" | "FIELD" | "FRAGMENT_DEFINITION" | "FRAGMENT_SPREAD" | "INLINE_FRAGMENT" | "VARIABLE_DEFINITION" | "SCHEMA" | "SCALAR" | "OBJECT" | "FIELD_DEFINITION" | "ARGUMENT_DEFINITION" | "INTERFACE" | "UNION" | "ENUM" | "ENUM_VALUE" | "INPUT_OBJECT" | "INPUT_FIELD_DEFINITION")[];
@@ -2272,17 +2294,17 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2272
2294
  defaultLimit?: number | undefined;
2273
2295
  maxLimit?: number | undefined;
2274
2296
  } | undefined;
2275
- permissions?: string[] | undefined;
2276
2297
  args?: Record<string, {
2277
2298
  type: string;
2278
2299
  defaultValue?: any;
2279
2300
  description?: string | undefined;
2280
2301
  }> | undefined;
2302
+ permissions?: string[] | undefined;
2281
2303
  authRequired?: boolean | undefined;
2282
2304
  filtering?: {
2283
2305
  enabled?: boolean | undefined;
2284
2306
  fields?: string[] | undefined;
2285
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
2307
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
2286
2308
  } | undefined;
2287
2309
  sorting?: {
2288
2310
  enabled?: boolean | undefined;
@@ -2349,28 +2371,6 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2349
2371
  after?: string[] | undefined;
2350
2372
  } | undefined;
2351
2373
  }[] | undefined;
2352
- subscriptions?: {
2353
- object: string;
2354
- name: string;
2355
- events: ("custom" | "created" | "deleted" | "updated")[];
2356
- filter?: {
2357
- enabled?: boolean | undefined;
2358
- fields?: string[] | undefined;
2359
- } | undefined;
2360
- description?: string | undefined;
2361
- rateLimit?: {
2362
- enabled?: boolean | undefined;
2363
- maxSubscriptionsPerUser?: number | undefined;
2364
- throttleMs?: number | undefined;
2365
- } | undefined;
2366
- payload?: {
2367
- includeEntity?: boolean | undefined;
2368
- includePreviousValues?: boolean | undefined;
2369
- includeMeta?: boolean | undefined;
2370
- } | undefined;
2371
- permissions?: string[] | undefined;
2372
- authRequired?: boolean | undefined;
2373
- }[] | undefined;
2374
2374
  resolvers?: {
2375
2375
  path: string;
2376
2376
  type: "script" | "datasource" | "proxy" | "computed";
@@ -2645,7 +2645,7 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2645
2645
  }, "strip", z.ZodTypeAny, {
2646
2646
  enabled: boolean;
2647
2647
  strategy: "sliding_window" | "token_bucket" | "fixed_window" | "cost_based";
2648
- onLimitExceeded: "log" | "reject" | "queue";
2648
+ onLimitExceeded: "log" | "queue" | "reject";
2649
2649
  includeHeaders: boolean;
2650
2650
  errorMessage?: string | undefined;
2651
2651
  operations?: Record<string, {
@@ -2674,7 +2674,7 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2674
2674
  windowMs: number;
2675
2675
  maxRequests: number;
2676
2676
  }> | undefined;
2677
- onLimitExceeded?: "log" | "reject" | "queue" | undefined;
2677
+ onLimitExceeded?: "log" | "queue" | "reject" | undefined;
2678
2678
  global?: {
2679
2679
  windowMs?: number | undefined;
2680
2680
  maxRequests?: number | undefined;
@@ -2861,7 +2861,7 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2861
2861
  rateLimit?: {
2862
2862
  enabled: boolean;
2863
2863
  strategy: "sliding_window" | "token_bucket" | "fixed_window" | "cost_based";
2864
- onLimitExceeded: "log" | "reject" | "queue";
2864
+ onLimitExceeded: "log" | "queue" | "reject";
2865
2865
  includeHeaders: boolean;
2866
2866
  errorMessage?: string | undefined;
2867
2867
  operations?: Record<string, {
@@ -2942,7 +2942,7 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
2942
2942
  windowMs: number;
2943
2943
  maxRequests: number;
2944
2944
  }> | undefined;
2945
- onLimitExceeded?: "log" | "reject" | "queue" | undefined;
2945
+ onLimitExceeded?: "log" | "queue" | "reject" | undefined;
2946
2946
  global?: {
2947
2947
  windowMs?: number | undefined;
2948
2948
  maxRequests?: number | undefined;
@@ -3015,6 +3015,28 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
3015
3015
  enabled: boolean;
3016
3016
  schema?: {
3017
3017
  autoGenerateTypes: boolean;
3018
+ subscriptions?: {
3019
+ object: string;
3020
+ name: string;
3021
+ events: ("custom" | "created" | "deleted" | "updated")[];
3022
+ authRequired: boolean;
3023
+ filter?: {
3024
+ enabled: boolean;
3025
+ fields?: string[] | undefined;
3026
+ } | undefined;
3027
+ description?: string | undefined;
3028
+ rateLimit?: {
3029
+ enabled: boolean;
3030
+ maxSubscriptionsPerUser: number;
3031
+ throttleMs?: number | undefined;
3032
+ } | undefined;
3033
+ payload?: {
3034
+ includeEntity: boolean;
3035
+ includePreviousValues: boolean;
3036
+ includeMeta: boolean;
3037
+ } | undefined;
3038
+ permissions?: string[] | undefined;
3039
+ }[] | undefined;
3018
3040
  directives?: {
3019
3041
  name: string;
3020
3042
  locations: ("QUERY" | "MUTATION" | "SUBSCRIPTION" | "FIELD" | "FRAGMENT_DEFINITION" | "FRAGMENT_SPREAD" | "INLINE_FRAGMENT" | "VARIABLE_DEFINITION" | "SCHEMA" | "SCALAR" | "OBJECT" | "FIELD_DEFINITION" | "ARGUMENT_DEFINITION" | "INTERFACE" | "UNION" | "ENUM" | "ENUM_VALUE" | "INPUT_OBJECT" | "INPUT_FIELD_DEFINITION")[];
@@ -3051,16 +3073,16 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
3051
3073
  defaultLimit: number;
3052
3074
  maxLimit: number;
3053
3075
  } | undefined;
3054
- permissions?: string[] | undefined;
3055
3076
  args?: Record<string, {
3056
3077
  type: string;
3057
3078
  defaultValue?: any;
3058
3079
  description?: string | undefined;
3059
3080
  }> | undefined;
3081
+ permissions?: string[] | undefined;
3060
3082
  filtering?: {
3061
3083
  enabled: boolean;
3062
3084
  fields?: string[] | undefined;
3063
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3085
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3064
3086
  } | undefined;
3065
3087
  sorting?: {
3066
3088
  enabled: boolean;
@@ -3126,28 +3148,6 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
3126
3148
  after?: string[] | undefined;
3127
3149
  } | undefined;
3128
3150
  }[] | undefined;
3129
- subscriptions?: {
3130
- object: string;
3131
- name: string;
3132
- events: ("custom" | "created" | "deleted" | "updated")[];
3133
- authRequired: boolean;
3134
- filter?: {
3135
- enabled: boolean;
3136
- fields?: string[] | undefined;
3137
- } | undefined;
3138
- description?: string | undefined;
3139
- rateLimit?: {
3140
- enabled: boolean;
3141
- maxSubscriptionsPerUser: number;
3142
- throttleMs?: number | undefined;
3143
- } | undefined;
3144
- payload?: {
3145
- includeEntity: boolean;
3146
- includePreviousValues: boolean;
3147
- includeMeta: boolean;
3148
- } | undefined;
3149
- permissions?: string[] | undefined;
3150
- }[] | undefined;
3151
3151
  resolvers?: {
3152
3152
  path: string;
3153
3153
  type: "script" | "datasource" | "proxy" | "computed";
@@ -3171,7 +3171,7 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
3171
3171
  rateLimit?: {
3172
3172
  enabled: boolean;
3173
3173
  strategy: "sliding_window" | "token_bucket" | "fixed_window" | "cost_based";
3174
- onLimitExceeded: "log" | "reject" | "queue";
3174
+ onLimitExceeded: "log" | "queue" | "reject";
3175
3175
  includeHeaders: boolean;
3176
3176
  errorMessage?: string | undefined;
3177
3177
  operations?: Record<string, {
@@ -3272,6 +3272,28 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
3272
3272
  path?: string | undefined;
3273
3273
  enabled?: boolean | undefined;
3274
3274
  schema?: {
3275
+ subscriptions?: {
3276
+ object: string;
3277
+ name: string;
3278
+ events: ("custom" | "created" | "deleted" | "updated")[];
3279
+ filter?: {
3280
+ enabled?: boolean | undefined;
3281
+ fields?: string[] | undefined;
3282
+ } | undefined;
3283
+ description?: string | undefined;
3284
+ rateLimit?: {
3285
+ enabled?: boolean | undefined;
3286
+ maxSubscriptionsPerUser?: number | undefined;
3287
+ throttleMs?: number | undefined;
3288
+ } | undefined;
3289
+ payload?: {
3290
+ includeEntity?: boolean | undefined;
3291
+ includePreviousValues?: boolean | undefined;
3292
+ includeMeta?: boolean | undefined;
3293
+ } | undefined;
3294
+ permissions?: string[] | undefined;
3295
+ authRequired?: boolean | undefined;
3296
+ }[] | undefined;
3275
3297
  directives?: {
3276
3298
  name: string;
3277
3299
  locations: ("QUERY" | "MUTATION" | "SUBSCRIPTION" | "FIELD" | "FRAGMENT_DEFINITION" | "FRAGMENT_SPREAD" | "INLINE_FRAGMENT" | "VARIABLE_DEFINITION" | "SCHEMA" | "SCALAR" | "OBJECT" | "FIELD_DEFINITION" | "ARGUMENT_DEFINITION" | "INTERFACE" | "UNION" | "ENUM" | "ENUM_VALUE" | "INPUT_OBJECT" | "INPUT_FIELD_DEFINITION")[];
@@ -3307,17 +3329,17 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
3307
3329
  defaultLimit?: number | undefined;
3308
3330
  maxLimit?: number | undefined;
3309
3331
  } | undefined;
3310
- permissions?: string[] | undefined;
3311
3332
  args?: Record<string, {
3312
3333
  type: string;
3313
3334
  defaultValue?: any;
3314
3335
  description?: string | undefined;
3315
3336
  }> | undefined;
3337
+ permissions?: string[] | undefined;
3316
3338
  authRequired?: boolean | undefined;
3317
3339
  filtering?: {
3318
3340
  enabled?: boolean | undefined;
3319
3341
  fields?: string[] | undefined;
3320
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3342
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3321
3343
  } | undefined;
3322
3344
  sorting?: {
3323
3345
  enabled?: boolean | undefined;
@@ -3384,28 +3406,6 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
3384
3406
  after?: string[] | undefined;
3385
3407
  } | undefined;
3386
3408
  }[] | undefined;
3387
- subscriptions?: {
3388
- object: string;
3389
- name: string;
3390
- events: ("custom" | "created" | "deleted" | "updated")[];
3391
- filter?: {
3392
- enabled?: boolean | undefined;
3393
- fields?: string[] | undefined;
3394
- } | undefined;
3395
- description?: string | undefined;
3396
- rateLimit?: {
3397
- enabled?: boolean | undefined;
3398
- maxSubscriptionsPerUser?: number | undefined;
3399
- throttleMs?: number | undefined;
3400
- } | undefined;
3401
- payload?: {
3402
- includeEntity?: boolean | undefined;
3403
- includePreviousValues?: boolean | undefined;
3404
- includeMeta?: boolean | undefined;
3405
- } | undefined;
3406
- permissions?: string[] | undefined;
3407
- authRequired?: boolean | undefined;
3408
- }[] | undefined;
3409
3409
  resolvers?: {
3410
3410
  path: string;
3411
3411
  type: "script" | "datasource" | "proxy" | "computed";
@@ -3434,7 +3434,7 @@ export declare const GraphQLConfigSchema: z.ZodObject<{
3434
3434
  windowMs: number;
3435
3435
  maxRequests: number;
3436
3436
  }> | undefined;
3437
- onLimitExceeded?: "log" | "reject" | "queue" | undefined;
3437
+ onLimitExceeded?: "log" | "queue" | "reject" | undefined;
3438
3438
  global?: {
3439
3439
  windowMs?: number | undefined;
3440
3440
  maxRequests?: number | undefined;
@@ -3692,11 +3692,11 @@ export declare const GraphQLConfig: z.ZodObject<{
3692
3692
  }, "strip", z.ZodTypeAny, {
3693
3693
  enabled: boolean;
3694
3694
  fields?: string[] | undefined;
3695
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3695
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3696
3696
  }, {
3697
3697
  enabled?: boolean | undefined;
3698
3698
  fields?: string[] | undefined;
3699
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3699
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3700
3700
  }>>;
3701
3701
  /** Sorting configuration */
3702
3702
  sorting: z.ZodOptional<z.ZodObject<{
@@ -3795,16 +3795,16 @@ export declare const GraphQLConfig: z.ZodObject<{
3795
3795
  defaultLimit: number;
3796
3796
  maxLimit: number;
3797
3797
  } | undefined;
3798
- permissions?: string[] | undefined;
3799
3798
  args?: Record<string, {
3800
3799
  type: string;
3801
3800
  defaultValue?: any;
3802
3801
  description?: string | undefined;
3803
3802
  }> | undefined;
3803
+ permissions?: string[] | undefined;
3804
3804
  filtering?: {
3805
3805
  enabled: boolean;
3806
3806
  fields?: string[] | undefined;
3807
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3807
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3808
3808
  } | undefined;
3809
3809
  sorting?: {
3810
3810
  enabled: boolean;
@@ -3834,17 +3834,17 @@ export declare const GraphQLConfig: z.ZodObject<{
3834
3834
  defaultLimit?: number | undefined;
3835
3835
  maxLimit?: number | undefined;
3836
3836
  } | undefined;
3837
- permissions?: string[] | undefined;
3838
3837
  args?: Record<string, {
3839
3838
  type: string;
3840
3839
  defaultValue?: any;
3841
3840
  description?: string | undefined;
3842
3841
  }> | undefined;
3842
+ permissions?: string[] | undefined;
3843
3843
  authRequired?: boolean | undefined;
3844
3844
  filtering?: {
3845
3845
  enabled?: boolean | undefined;
3846
3846
  fields?: string[] | undefined;
3847
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3847
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
3848
3848
  } | undefined;
3849
3849
  sorting?: {
3850
3850
  enabled?: boolean | undefined;
@@ -4275,6 +4275,28 @@ export declare const GraphQLConfig: z.ZodObject<{
4275
4275
  }>, "many">>;
4276
4276
  }, "strip", z.ZodTypeAny, {
4277
4277
  autoGenerateTypes: boolean;
4278
+ subscriptions?: {
4279
+ object: string;
4280
+ name: string;
4281
+ events: ("custom" | "created" | "deleted" | "updated")[];
4282
+ authRequired: boolean;
4283
+ filter?: {
4284
+ enabled: boolean;
4285
+ fields?: string[] | undefined;
4286
+ } | undefined;
4287
+ description?: string | undefined;
4288
+ rateLimit?: {
4289
+ enabled: boolean;
4290
+ maxSubscriptionsPerUser: number;
4291
+ throttleMs?: number | undefined;
4292
+ } | undefined;
4293
+ payload?: {
4294
+ includeEntity: boolean;
4295
+ includePreviousValues: boolean;
4296
+ includeMeta: boolean;
4297
+ } | undefined;
4298
+ permissions?: string[] | undefined;
4299
+ }[] | undefined;
4278
4300
  directives?: {
4279
4301
  name: string;
4280
4302
  locations: ("QUERY" | "MUTATION" | "SUBSCRIPTION" | "FIELD" | "FRAGMENT_DEFINITION" | "FRAGMENT_SPREAD" | "INLINE_FRAGMENT" | "VARIABLE_DEFINITION" | "SCHEMA" | "SCALAR" | "OBJECT" | "FIELD_DEFINITION" | "ARGUMENT_DEFINITION" | "INTERFACE" | "UNION" | "ENUM" | "ENUM_VALUE" | "INPUT_OBJECT" | "INPUT_FIELD_DEFINITION")[];
@@ -4311,16 +4333,16 @@ export declare const GraphQLConfig: z.ZodObject<{
4311
4333
  defaultLimit: number;
4312
4334
  maxLimit: number;
4313
4335
  } | undefined;
4314
- permissions?: string[] | undefined;
4315
4336
  args?: Record<string, {
4316
4337
  type: string;
4317
4338
  defaultValue?: any;
4318
4339
  description?: string | undefined;
4319
4340
  }> | undefined;
4341
+ permissions?: string[] | undefined;
4320
4342
  filtering?: {
4321
4343
  enabled: boolean;
4322
4344
  fields?: string[] | undefined;
4323
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
4345
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
4324
4346
  } | undefined;
4325
4347
  sorting?: {
4326
4348
  enabled: boolean;
@@ -4386,28 +4408,6 @@ export declare const GraphQLConfig: z.ZodObject<{
4386
4408
  after?: string[] | undefined;
4387
4409
  } | undefined;
4388
4410
  }[] | undefined;
4389
- subscriptions?: {
4390
- object: string;
4391
- name: string;
4392
- events: ("custom" | "created" | "deleted" | "updated")[];
4393
- authRequired: boolean;
4394
- filter?: {
4395
- enabled: boolean;
4396
- fields?: string[] | undefined;
4397
- } | undefined;
4398
- description?: string | undefined;
4399
- rateLimit?: {
4400
- enabled: boolean;
4401
- maxSubscriptionsPerUser: number;
4402
- throttleMs?: number | undefined;
4403
- } | undefined;
4404
- payload?: {
4405
- includeEntity: boolean;
4406
- includePreviousValues: boolean;
4407
- includeMeta: boolean;
4408
- } | undefined;
4409
- permissions?: string[] | undefined;
4410
- }[] | undefined;
4411
4411
  resolvers?: {
4412
4412
  path: string;
4413
4413
  type: "script" | "datasource" | "proxy" | "computed";
@@ -4427,6 +4427,28 @@ export declare const GraphQLConfig: z.ZodObject<{
4427
4427
  } | undefined;
4428
4428
  }[] | undefined;
4429
4429
  }, {
4430
+ subscriptions?: {
4431
+ object: string;
4432
+ name: string;
4433
+ events: ("custom" | "created" | "deleted" | "updated")[];
4434
+ filter?: {
4435
+ enabled?: boolean | undefined;
4436
+ fields?: string[] | undefined;
4437
+ } | undefined;
4438
+ description?: string | undefined;
4439
+ rateLimit?: {
4440
+ enabled?: boolean | undefined;
4441
+ maxSubscriptionsPerUser?: number | undefined;
4442
+ throttleMs?: number | undefined;
4443
+ } | undefined;
4444
+ payload?: {
4445
+ includeEntity?: boolean | undefined;
4446
+ includePreviousValues?: boolean | undefined;
4447
+ includeMeta?: boolean | undefined;
4448
+ } | undefined;
4449
+ permissions?: string[] | undefined;
4450
+ authRequired?: boolean | undefined;
4451
+ }[] | undefined;
4430
4452
  directives?: {
4431
4453
  name: string;
4432
4454
  locations: ("QUERY" | "MUTATION" | "SUBSCRIPTION" | "FIELD" | "FRAGMENT_DEFINITION" | "FRAGMENT_SPREAD" | "INLINE_FRAGMENT" | "VARIABLE_DEFINITION" | "SCHEMA" | "SCALAR" | "OBJECT" | "FIELD_DEFINITION" | "ARGUMENT_DEFINITION" | "INTERFACE" | "UNION" | "ENUM" | "ENUM_VALUE" | "INPUT_OBJECT" | "INPUT_FIELD_DEFINITION")[];
@@ -4462,17 +4484,17 @@ export declare const GraphQLConfig: z.ZodObject<{
4462
4484
  defaultLimit?: number | undefined;
4463
4485
  maxLimit?: number | undefined;
4464
4486
  } | undefined;
4465
- permissions?: string[] | undefined;
4466
4487
  args?: Record<string, {
4467
4488
  type: string;
4468
4489
  defaultValue?: any;
4469
4490
  description?: string | undefined;
4470
4491
  }> | undefined;
4492
+ permissions?: string[] | undefined;
4471
4493
  authRequired?: boolean | undefined;
4472
4494
  filtering?: {
4473
4495
  enabled?: boolean | undefined;
4474
4496
  fields?: string[] | undefined;
4475
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
4497
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
4476
4498
  } | undefined;
4477
4499
  sorting?: {
4478
4500
  enabled?: boolean | undefined;
@@ -4539,28 +4561,6 @@ export declare const GraphQLConfig: z.ZodObject<{
4539
4561
  after?: string[] | undefined;
4540
4562
  } | undefined;
4541
4563
  }[] | undefined;
4542
- subscriptions?: {
4543
- object: string;
4544
- name: string;
4545
- events: ("custom" | "created" | "deleted" | "updated")[];
4546
- filter?: {
4547
- enabled?: boolean | undefined;
4548
- fields?: string[] | undefined;
4549
- } | undefined;
4550
- description?: string | undefined;
4551
- rateLimit?: {
4552
- enabled?: boolean | undefined;
4553
- maxSubscriptionsPerUser?: number | undefined;
4554
- throttleMs?: number | undefined;
4555
- } | undefined;
4556
- payload?: {
4557
- includeEntity?: boolean | undefined;
4558
- includePreviousValues?: boolean | undefined;
4559
- includeMeta?: boolean | undefined;
4560
- } | undefined;
4561
- permissions?: string[] | undefined;
4562
- authRequired?: boolean | undefined;
4563
- }[] | undefined;
4564
4564
  resolvers?: {
4565
4565
  path: string;
4566
4566
  type: "script" | "datasource" | "proxy" | "computed";
@@ -4835,7 +4835,7 @@ export declare const GraphQLConfig: z.ZodObject<{
4835
4835
  }, "strip", z.ZodTypeAny, {
4836
4836
  enabled: boolean;
4837
4837
  strategy: "sliding_window" | "token_bucket" | "fixed_window" | "cost_based";
4838
- onLimitExceeded: "log" | "reject" | "queue";
4838
+ onLimitExceeded: "log" | "queue" | "reject";
4839
4839
  includeHeaders: boolean;
4840
4840
  errorMessage?: string | undefined;
4841
4841
  operations?: Record<string, {
@@ -4864,7 +4864,7 @@ export declare const GraphQLConfig: z.ZodObject<{
4864
4864
  windowMs: number;
4865
4865
  maxRequests: number;
4866
4866
  }> | undefined;
4867
- onLimitExceeded?: "log" | "reject" | "queue" | undefined;
4867
+ onLimitExceeded?: "log" | "queue" | "reject" | undefined;
4868
4868
  global?: {
4869
4869
  windowMs?: number | undefined;
4870
4870
  maxRequests?: number | undefined;
@@ -5051,7 +5051,7 @@ export declare const GraphQLConfig: z.ZodObject<{
5051
5051
  rateLimit?: {
5052
5052
  enabled: boolean;
5053
5053
  strategy: "sliding_window" | "token_bucket" | "fixed_window" | "cost_based";
5054
- onLimitExceeded: "log" | "reject" | "queue";
5054
+ onLimitExceeded: "log" | "queue" | "reject";
5055
5055
  includeHeaders: boolean;
5056
5056
  errorMessage?: string | undefined;
5057
5057
  operations?: Record<string, {
@@ -5132,7 +5132,7 @@ export declare const GraphQLConfig: z.ZodObject<{
5132
5132
  windowMs: number;
5133
5133
  maxRequests: number;
5134
5134
  }> | undefined;
5135
- onLimitExceeded?: "log" | "reject" | "queue" | undefined;
5135
+ onLimitExceeded?: "log" | "queue" | "reject" | undefined;
5136
5136
  global?: {
5137
5137
  windowMs?: number | undefined;
5138
5138
  maxRequests?: number | undefined;
@@ -5205,6 +5205,28 @@ export declare const GraphQLConfig: z.ZodObject<{
5205
5205
  enabled: boolean;
5206
5206
  schema?: {
5207
5207
  autoGenerateTypes: boolean;
5208
+ subscriptions?: {
5209
+ object: string;
5210
+ name: string;
5211
+ events: ("custom" | "created" | "deleted" | "updated")[];
5212
+ authRequired: boolean;
5213
+ filter?: {
5214
+ enabled: boolean;
5215
+ fields?: string[] | undefined;
5216
+ } | undefined;
5217
+ description?: string | undefined;
5218
+ rateLimit?: {
5219
+ enabled: boolean;
5220
+ maxSubscriptionsPerUser: number;
5221
+ throttleMs?: number | undefined;
5222
+ } | undefined;
5223
+ payload?: {
5224
+ includeEntity: boolean;
5225
+ includePreviousValues: boolean;
5226
+ includeMeta: boolean;
5227
+ } | undefined;
5228
+ permissions?: string[] | undefined;
5229
+ }[] | undefined;
5208
5230
  directives?: {
5209
5231
  name: string;
5210
5232
  locations: ("QUERY" | "MUTATION" | "SUBSCRIPTION" | "FIELD" | "FRAGMENT_DEFINITION" | "FRAGMENT_SPREAD" | "INLINE_FRAGMENT" | "VARIABLE_DEFINITION" | "SCHEMA" | "SCALAR" | "OBJECT" | "FIELD_DEFINITION" | "ARGUMENT_DEFINITION" | "INTERFACE" | "UNION" | "ENUM" | "ENUM_VALUE" | "INPUT_OBJECT" | "INPUT_FIELD_DEFINITION")[];
@@ -5241,16 +5263,16 @@ export declare const GraphQLConfig: z.ZodObject<{
5241
5263
  defaultLimit: number;
5242
5264
  maxLimit: number;
5243
5265
  } | undefined;
5244
- permissions?: string[] | undefined;
5245
5266
  args?: Record<string, {
5246
5267
  type: string;
5247
5268
  defaultValue?: any;
5248
5269
  description?: string | undefined;
5249
5270
  }> | undefined;
5271
+ permissions?: string[] | undefined;
5250
5272
  filtering?: {
5251
5273
  enabled: boolean;
5252
5274
  fields?: string[] | undefined;
5253
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
5275
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
5254
5276
  } | undefined;
5255
5277
  sorting?: {
5256
5278
  enabled: boolean;
@@ -5316,28 +5338,6 @@ export declare const GraphQLConfig: z.ZodObject<{
5316
5338
  after?: string[] | undefined;
5317
5339
  } | undefined;
5318
5340
  }[] | undefined;
5319
- subscriptions?: {
5320
- object: string;
5321
- name: string;
5322
- events: ("custom" | "created" | "deleted" | "updated")[];
5323
- authRequired: boolean;
5324
- filter?: {
5325
- enabled: boolean;
5326
- fields?: string[] | undefined;
5327
- } | undefined;
5328
- description?: string | undefined;
5329
- rateLimit?: {
5330
- enabled: boolean;
5331
- maxSubscriptionsPerUser: number;
5332
- throttleMs?: number | undefined;
5333
- } | undefined;
5334
- payload?: {
5335
- includeEntity: boolean;
5336
- includePreviousValues: boolean;
5337
- includeMeta: boolean;
5338
- } | undefined;
5339
- permissions?: string[] | undefined;
5340
- }[] | undefined;
5341
5341
  resolvers?: {
5342
5342
  path: string;
5343
5343
  type: "script" | "datasource" | "proxy" | "computed";
@@ -5361,7 +5361,7 @@ export declare const GraphQLConfig: z.ZodObject<{
5361
5361
  rateLimit?: {
5362
5362
  enabled: boolean;
5363
5363
  strategy: "sliding_window" | "token_bucket" | "fixed_window" | "cost_based";
5364
- onLimitExceeded: "log" | "reject" | "queue";
5364
+ onLimitExceeded: "log" | "queue" | "reject";
5365
5365
  includeHeaders: boolean;
5366
5366
  errorMessage?: string | undefined;
5367
5367
  operations?: Record<string, {
@@ -5462,6 +5462,28 @@ export declare const GraphQLConfig: z.ZodObject<{
5462
5462
  path?: string | undefined;
5463
5463
  enabled?: boolean | undefined;
5464
5464
  schema?: {
5465
+ subscriptions?: {
5466
+ object: string;
5467
+ name: string;
5468
+ events: ("custom" | "created" | "deleted" | "updated")[];
5469
+ filter?: {
5470
+ enabled?: boolean | undefined;
5471
+ fields?: string[] | undefined;
5472
+ } | undefined;
5473
+ description?: string | undefined;
5474
+ rateLimit?: {
5475
+ enabled?: boolean | undefined;
5476
+ maxSubscriptionsPerUser?: number | undefined;
5477
+ throttleMs?: number | undefined;
5478
+ } | undefined;
5479
+ payload?: {
5480
+ includeEntity?: boolean | undefined;
5481
+ includePreviousValues?: boolean | undefined;
5482
+ includeMeta?: boolean | undefined;
5483
+ } | undefined;
5484
+ permissions?: string[] | undefined;
5485
+ authRequired?: boolean | undefined;
5486
+ }[] | undefined;
5465
5487
  directives?: {
5466
5488
  name: string;
5467
5489
  locations: ("QUERY" | "MUTATION" | "SUBSCRIPTION" | "FIELD" | "FRAGMENT_DEFINITION" | "FRAGMENT_SPREAD" | "INLINE_FRAGMENT" | "VARIABLE_DEFINITION" | "SCHEMA" | "SCALAR" | "OBJECT" | "FIELD_DEFINITION" | "ARGUMENT_DEFINITION" | "INTERFACE" | "UNION" | "ENUM" | "ENUM_VALUE" | "INPUT_OBJECT" | "INPUT_FIELD_DEFINITION")[];
@@ -5497,17 +5519,17 @@ export declare const GraphQLConfig: z.ZodObject<{
5497
5519
  defaultLimit?: number | undefined;
5498
5520
  maxLimit?: number | undefined;
5499
5521
  } | undefined;
5500
- permissions?: string[] | undefined;
5501
5522
  args?: Record<string, {
5502
5523
  type: string;
5503
5524
  defaultValue?: any;
5504
5525
  description?: string | undefined;
5505
5526
  }> | undefined;
5527
+ permissions?: string[] | undefined;
5506
5528
  authRequired?: boolean | undefined;
5507
5529
  filtering?: {
5508
5530
  enabled?: boolean | undefined;
5509
5531
  fields?: string[] | undefined;
5510
- operators?: ("lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "startsWith" | "endsWith" | "notIn" | "isNull" | "isNotNull")[] | undefined;
5532
+ operators?: ("startsWith" | "endsWith" | "lt" | "lte" | "gt" | "gte" | "eq" | "ne" | "in" | "contains" | "notIn" | "isNull" | "isNotNull")[] | undefined;
5511
5533
  } | undefined;
5512
5534
  sorting?: {
5513
5535
  enabled?: boolean | undefined;
@@ -5574,28 +5596,6 @@ export declare const GraphQLConfig: z.ZodObject<{
5574
5596
  after?: string[] | undefined;
5575
5597
  } | undefined;
5576
5598
  }[] | undefined;
5577
- subscriptions?: {
5578
- object: string;
5579
- name: string;
5580
- events: ("custom" | "created" | "deleted" | "updated")[];
5581
- filter?: {
5582
- enabled?: boolean | undefined;
5583
- fields?: string[] | undefined;
5584
- } | undefined;
5585
- description?: string | undefined;
5586
- rateLimit?: {
5587
- enabled?: boolean | undefined;
5588
- maxSubscriptionsPerUser?: number | undefined;
5589
- throttleMs?: number | undefined;
5590
- } | undefined;
5591
- payload?: {
5592
- includeEntity?: boolean | undefined;
5593
- includePreviousValues?: boolean | undefined;
5594
- includeMeta?: boolean | undefined;
5595
- } | undefined;
5596
- permissions?: string[] | undefined;
5597
- authRequired?: boolean | undefined;
5598
- }[] | undefined;
5599
5599
  resolvers?: {
5600
5600
  path: string;
5601
5601
  type: "script" | "datasource" | "proxy" | "computed";
@@ -5624,7 +5624,7 @@ export declare const GraphQLConfig: z.ZodObject<{
5624
5624
  windowMs: number;
5625
5625
  maxRequests: number;
5626
5626
  }> | undefined;
5627
- onLimitExceeded?: "log" | "reject" | "queue" | undefined;
5627
+ onLimitExceeded?: "log" | "queue" | "reject" | undefined;
5628
5628
  global?: {
5629
5629
  windowMs?: number | undefined;
5630
5630
  maxRequests?: number | undefined;