@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
@@ -368,7 +368,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
368
368
  description?: string | undefined;
369
369
  specification?: string | undefined;
370
370
  };
371
- conformance: "partial" | "full" | "experimental" | "deprecated";
371
+ conformance: "partial" | "full" | "deprecated" | "experimental";
372
372
  certified: boolean;
373
373
  metadata?: Record<string, any> | undefined;
374
374
  implementedFeatures?: string[] | undefined;
@@ -393,7 +393,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
393
393
  specification?: string | undefined;
394
394
  };
395
395
  metadata?: Record<string, any> | undefined;
396
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
396
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
397
397
  implementedFeatures?: string[] | undefined;
398
398
  features?: {
399
399
  name: string;
@@ -625,7 +625,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
625
625
  description?: string | undefined;
626
626
  specification?: string | undefined;
627
627
  };
628
- conformance: "partial" | "full" | "experimental" | "deprecated";
628
+ conformance: "partial" | "full" | "deprecated" | "experimental";
629
629
  certified: boolean;
630
630
  metadata?: Record<string, any> | undefined;
631
631
  implementedFeatures?: string[] | undefined;
@@ -705,7 +705,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
705
705
  specification?: string | undefined;
706
706
  };
707
707
  metadata?: Record<string, any> | undefined;
708
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
708
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
709
709
  implementedFeatures?: string[] | undefined;
710
710
  features?: {
711
711
  name: string;
@@ -797,7 +797,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
797
797
  description?: string | undefined;
798
798
  specification?: string | undefined;
799
799
  };
800
- conformance: "partial" | "full" | "experimental" | "deprecated";
800
+ conformance: "partial" | "full" | "deprecated" | "experimental";
801
801
  certified: boolean;
802
802
  metadata?: Record<string, any> | undefined;
803
803
  implementedFeatures?: string[] | undefined;
@@ -950,7 +950,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
950
950
  specification?: string | undefined;
951
951
  };
952
952
  metadata?: Record<string, any> | undefined;
953
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
953
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
954
954
  implementedFeatures?: string[] | undefined;
955
955
  features?: {
956
956
  name: string;
@@ -7718,8 +7718,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
7718
7718
  url: string;
7719
7719
  name: string;
7720
7720
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
7721
- includeSession: boolean;
7722
7721
  timeoutMs: number;
7722
+ includeSession: boolean;
7723
7723
  isActive: boolean;
7724
7724
  object?: string | undefined;
7725
7725
  tags?: string[] | undefined;
@@ -7755,6 +7755,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
7755
7755
  } | undefined;
7756
7756
  body?: any;
7757
7757
  secret?: string | undefined;
7758
+ timeoutMs?: number | undefined;
7758
7759
  retryPolicy?: {
7759
7760
  maxRetries?: number | undefined;
7760
7761
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -7764,7 +7765,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
7764
7765
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
7765
7766
  payloadFields?: string[] | undefined;
7766
7767
  includeSession?: boolean | undefined;
7767
- timeoutMs?: number | undefined;
7768
7768
  isActive?: boolean | undefined;
7769
7769
  }>;
7770
7770
  }, "strip", z.ZodTypeAny, {
@@ -7774,8 +7774,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
7774
7774
  url: string;
7775
7775
  name: string;
7776
7776
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
7777
- includeSession: boolean;
7778
7777
  timeoutMs: number;
7778
+ includeSession: boolean;
7779
7779
  isActive: boolean;
7780
7780
  object?: string | undefined;
7781
7781
  tags?: string[] | undefined;
@@ -7815,6 +7815,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
7815
7815
  } | undefined;
7816
7816
  body?: any;
7817
7817
  secret?: string | undefined;
7818
+ timeoutMs?: number | undefined;
7818
7819
  retryPolicy?: {
7819
7820
  maxRetries?: number | undefined;
7820
7821
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -7824,7 +7825,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
7824
7825
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
7825
7826
  payloadFields?: string[] | undefined;
7826
7827
  includeSession?: boolean | undefined;
7827
- timeoutMs?: number | undefined;
7828
7828
  isActive?: boolean | undefined;
7829
7829
  };
7830
7830
  }>, z.ZodObject<{
@@ -8103,8 +8103,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8103
8103
  url: string;
8104
8104
  name: string;
8105
8105
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
8106
- includeSession: boolean;
8107
8106
  timeoutMs: number;
8107
+ includeSession: boolean;
8108
8108
  isActive: boolean;
8109
8109
  object?: string | undefined;
8110
8110
  tags?: string[] | undefined;
@@ -8140,6 +8140,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8140
8140
  } | undefined;
8141
8141
  body?: any;
8142
8142
  secret?: string | undefined;
8143
+ timeoutMs?: number | undefined;
8143
8144
  retryPolicy?: {
8144
8145
  maxRetries?: number | undefined;
8145
8146
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -8149,7 +8150,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8149
8150
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
8150
8151
  payloadFields?: string[] | undefined;
8151
8152
  includeSession?: boolean | undefined;
8152
- timeoutMs?: number | undefined;
8153
8153
  isActive?: boolean | undefined;
8154
8154
  }>;
8155
8155
  }, "strip", z.ZodTypeAny, {
@@ -8159,8 +8159,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8159
8159
  url: string;
8160
8160
  name: string;
8161
8161
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
8162
- includeSession: boolean;
8163
8162
  timeoutMs: number;
8163
+ includeSession: boolean;
8164
8164
  isActive: boolean;
8165
8165
  object?: string | undefined;
8166
8166
  tags?: string[] | undefined;
@@ -8200,6 +8200,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8200
8200
  } | undefined;
8201
8201
  body?: any;
8202
8202
  secret?: string | undefined;
8203
+ timeoutMs?: number | undefined;
8203
8204
  retryPolicy?: {
8204
8205
  maxRetries?: number | undefined;
8205
8206
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -8209,7 +8210,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8209
8210
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
8210
8211
  payloadFields?: string[] | undefined;
8211
8212
  includeSession?: boolean | undefined;
8212
- timeoutMs?: number | undefined;
8213
8213
  isActive?: boolean | undefined;
8214
8214
  };
8215
8215
  }>, z.ZodObject<{
@@ -8348,8 +8348,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8348
8348
  url: string;
8349
8349
  name: string;
8350
8350
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
8351
- includeSession: boolean;
8352
8351
  timeoutMs: number;
8352
+ includeSession: boolean;
8353
8353
  isActive: boolean;
8354
8354
  object?: string | undefined;
8355
8355
  tags?: string[] | undefined;
@@ -8468,6 +8468,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8468
8468
  } | undefined;
8469
8469
  body?: any;
8470
8470
  secret?: string | undefined;
8471
+ timeoutMs?: number | undefined;
8471
8472
  retryPolicy?: {
8472
8473
  maxRetries?: number | undefined;
8473
8474
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -8477,7 +8478,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8477
8478
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
8478
8479
  payloadFields?: string[] | undefined;
8479
8480
  includeSession?: boolean | undefined;
8480
- timeoutMs?: number | undefined;
8481
8481
  isActive?: boolean | undefined;
8482
8482
  };
8483
8483
  } | {
@@ -8575,8 +8575,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8575
8575
  url: string;
8576
8576
  name: string;
8577
8577
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
8578
- includeSession: boolean;
8579
8578
  timeoutMs: number;
8579
+ includeSession: boolean;
8580
8580
  isActive: boolean;
8581
8581
  object?: string | undefined;
8582
8582
  tags?: string[] | undefined;
@@ -8678,8 +8678,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8678
8678
  url: string;
8679
8679
  name: string;
8680
8680
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
8681
- includeSession: boolean;
8682
8681
  timeoutMs: number;
8682
+ includeSession: boolean;
8683
8683
  isActive: boolean;
8684
8684
  object?: string | undefined;
8685
8685
  tags?: string[] | undefined;
@@ -8804,6 +8804,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8804
8804
  } | undefined;
8805
8805
  body?: any;
8806
8806
  secret?: string | undefined;
8807
+ timeoutMs?: number | undefined;
8807
8808
  retryPolicy?: {
8808
8809
  maxRetries?: number | undefined;
8809
8810
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -8813,7 +8814,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8813
8814
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
8814
8815
  payloadFields?: string[] | undefined;
8815
8816
  includeSession?: boolean | undefined;
8816
- timeoutMs?: number | undefined;
8817
8817
  isActive?: boolean | undefined;
8818
8818
  };
8819
8819
  } | {
@@ -8907,6 +8907,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8907
8907
  } | undefined;
8908
8908
  body?: any;
8909
8909
  secret?: string | undefined;
8910
+ timeoutMs?: number | undefined;
8910
8911
  retryPolicy?: {
8911
8912
  maxRetries?: number | undefined;
8912
8913
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -8916,7 +8917,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8916
8917
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
8917
8918
  payloadFields?: string[] | undefined;
8918
8919
  includeSession?: boolean | undefined;
8919
- timeoutMs?: number | undefined;
8920
8920
  isActive?: boolean | undefined;
8921
8921
  };
8922
8922
  } | {
@@ -8975,10 +8975,10 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
8975
8975
  value: z.ZodString;
8976
8976
  }, "strip", z.ZodTypeAny, {
8977
8977
  value: string;
8978
- type: "field" | "role" | "user" | "manager" | "queue";
8978
+ type: "field" | "role" | "user" | "queue" | "manager";
8979
8979
  }, {
8980
8980
  value: string;
8981
- type: "field" | "role" | "user" | "manager" | "queue";
8981
+ type: "field" | "role" | "user" | "queue" | "manager";
8982
8982
  }>, "many">;
8983
8983
  behavior: z.ZodDefault<z.ZodEnum<["first_response", "unanimous"]>>;
8984
8984
  rejectionBehavior: z.ZodDefault<z.ZodEnum<["reject_process", "back_to_previous"]>>;
@@ -9013,7 +9013,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
9013
9013
  name: string;
9014
9014
  approvers: {
9015
9015
  value: string;
9016
- type: "field" | "role" | "user" | "manager" | "queue";
9016
+ type: "field" | "role" | "user" | "queue" | "manager";
9017
9017
  }[];
9018
9018
  behavior: "first_response" | "unanimous";
9019
9019
  rejectionBehavior: "reject_process" | "back_to_previous";
@@ -9034,7 +9034,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
9034
9034
  name: string;
9035
9035
  approvers: {
9036
9036
  value: string;
9037
- type: "field" | "role" | "user" | "manager" | "queue";
9037
+ type: "field" | "role" | "user" | "queue" | "manager";
9038
9038
  }[];
9039
9039
  description?: string | undefined;
9040
9040
  entryCriteria?: string | undefined;
@@ -9113,7 +9113,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
9113
9113
  name: string;
9114
9114
  approvers: {
9115
9115
  value: string;
9116
- type: "field" | "role" | "user" | "manager" | "queue";
9116
+ type: "field" | "role" | "user" | "queue" | "manager";
9117
9117
  }[];
9118
9118
  behavior: "first_response" | "unanimous";
9119
9119
  rejectionBehavior: "reject_process" | "back_to_previous";
@@ -9162,7 +9162,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
9162
9162
  name: string;
9163
9163
  approvers: {
9164
9164
  value: string;
9165
- type: "field" | "role" | "user" | "manager" | "queue";
9165
+ type: "field" | "role" | "user" | "queue" | "manager";
9166
9166
  }[];
9167
9167
  description?: string | undefined;
9168
9168
  entryCriteria?: string | undefined;
@@ -9800,7 +9800,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
9800
9800
  description?: string | undefined;
9801
9801
  specification?: string | undefined;
9802
9802
  };
9803
- conformance: "partial" | "full" | "experimental" | "deprecated";
9803
+ conformance: "partial" | "full" | "deprecated" | "experimental";
9804
9804
  certified: boolean;
9805
9805
  metadata?: Record<string, any> | undefined;
9806
9806
  implementedFeatures?: string[] | undefined;
@@ -10860,8 +10860,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
10860
10860
  url: string;
10861
10861
  name: string;
10862
10862
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
10863
- includeSession: boolean;
10864
10863
  timeoutMs: number;
10864
+ includeSession: boolean;
10865
10865
  isActive: boolean;
10866
10866
  object?: string | undefined;
10867
10867
  tags?: string[] | undefined;
@@ -10963,8 +10963,8 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
10963
10963
  url: string;
10964
10964
  name: string;
10965
10965
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
10966
- includeSession: boolean;
10967
10966
  timeoutMs: number;
10967
+ includeSession: boolean;
10968
10968
  isActive: boolean;
10969
10969
  object?: string | undefined;
10970
10970
  tags?: string[] | undefined;
@@ -11033,7 +11033,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
11033
11033
  name: string;
11034
11034
  approvers: {
11035
11035
  value: string;
11036
- type: "field" | "role" | "user" | "manager" | "queue";
11036
+ type: "field" | "role" | "user" | "queue" | "manager";
11037
11037
  }[];
11038
11038
  behavior: "first_response" | "unanimous";
11039
11039
  rejectionBehavior: "reject_process" | "back_to_previous";
@@ -11161,7 +11161,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
11161
11161
  specification?: string | undefined;
11162
11162
  };
11163
11163
  metadata?: Record<string, any> | undefined;
11164
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
11164
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
11165
11165
  implementedFeatures?: string[] | undefined;
11166
11166
  features?: {
11167
11167
  name: string;
@@ -12230,6 +12230,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
12230
12230
  } | undefined;
12231
12231
  body?: any;
12232
12232
  secret?: string | undefined;
12233
+ timeoutMs?: number | undefined;
12233
12234
  retryPolicy?: {
12234
12235
  maxRetries?: number | undefined;
12235
12236
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -12239,7 +12240,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
12239
12240
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
12240
12241
  payloadFields?: string[] | undefined;
12241
12242
  includeSession?: boolean | undefined;
12242
- timeoutMs?: number | undefined;
12243
12243
  isActive?: boolean | undefined;
12244
12244
  };
12245
12245
  } | {
@@ -12333,6 +12333,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
12333
12333
  } | undefined;
12334
12334
  body?: any;
12335
12335
  secret?: string | undefined;
12336
+ timeoutMs?: number | undefined;
12336
12337
  retryPolicy?: {
12337
12338
  maxRetries?: number | undefined;
12338
12339
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -12342,7 +12343,6 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
12342
12343
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
12343
12344
  payloadFields?: string[] | undefined;
12344
12345
  includeSession?: boolean | undefined;
12345
- timeoutMs?: number | undefined;
12346
12346
  isActive?: boolean | undefined;
12347
12347
  };
12348
12348
  } | {
@@ -12392,7 +12392,7 @@ export declare const ObjectStackDefinitionSchema: z.ZodObject<{
12392
12392
  name: string;
12393
12393
  approvers: {
12394
12394
  value: string;
12395
- type: "field" | "role" | "user" | "manager" | "queue";
12395
+ type: "field" | "role" | "user" | "queue" | "manager";
12396
12396
  }[];
12397
12397
  description?: string | undefined;
12398
12398
  entryCriteria?: string | undefined;
@@ -12844,7 +12844,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
12844
12844
  description?: string | undefined;
12845
12845
  specification?: string | undefined;
12846
12846
  };
12847
- conformance: "partial" | "full" | "experimental" | "deprecated";
12847
+ conformance: "partial" | "full" | "deprecated" | "experimental";
12848
12848
  certified: boolean;
12849
12849
  metadata?: Record<string, any> | undefined;
12850
12850
  implementedFeatures?: string[] | undefined;
@@ -12869,7 +12869,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
12869
12869
  specification?: string | undefined;
12870
12870
  };
12871
12871
  metadata?: Record<string, any> | undefined;
12872
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
12872
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
12873
12873
  implementedFeatures?: string[] | undefined;
12874
12874
  features?: {
12875
12875
  name: string;
@@ -13101,7 +13101,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
13101
13101
  description?: string | undefined;
13102
13102
  specification?: string | undefined;
13103
13103
  };
13104
- conformance: "partial" | "full" | "experimental" | "deprecated";
13104
+ conformance: "partial" | "full" | "deprecated" | "experimental";
13105
13105
  certified: boolean;
13106
13106
  metadata?: Record<string, any> | undefined;
13107
13107
  implementedFeatures?: string[] | undefined;
@@ -13181,7 +13181,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
13181
13181
  specification?: string | undefined;
13182
13182
  };
13183
13183
  metadata?: Record<string, any> | undefined;
13184
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
13184
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
13185
13185
  implementedFeatures?: string[] | undefined;
13186
13186
  features?: {
13187
13187
  name: string;
@@ -13273,7 +13273,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
13273
13273
  description?: string | undefined;
13274
13274
  specification?: string | undefined;
13275
13275
  };
13276
- conformance: "partial" | "full" | "experimental" | "deprecated";
13276
+ conformance: "partial" | "full" | "deprecated" | "experimental";
13277
13277
  certified: boolean;
13278
13278
  metadata?: Record<string, any> | undefined;
13279
13279
  implementedFeatures?: string[] | undefined;
@@ -13426,7 +13426,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
13426
13426
  specification?: string | undefined;
13427
13427
  };
13428
13428
  metadata?: Record<string, any> | undefined;
13429
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
13429
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
13430
13430
  implementedFeatures?: string[] | undefined;
13431
13431
  features?: {
13432
13432
  name: string;
@@ -20194,8 +20194,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
20194
20194
  url: string;
20195
20195
  name: string;
20196
20196
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
20197
- includeSession: boolean;
20198
20197
  timeoutMs: number;
20198
+ includeSession: boolean;
20199
20199
  isActive: boolean;
20200
20200
  object?: string | undefined;
20201
20201
  tags?: string[] | undefined;
@@ -20231,6 +20231,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
20231
20231
  } | undefined;
20232
20232
  body?: any;
20233
20233
  secret?: string | undefined;
20234
+ timeoutMs?: number | undefined;
20234
20235
  retryPolicy?: {
20235
20236
  maxRetries?: number | undefined;
20236
20237
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -20240,7 +20241,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
20240
20241
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
20241
20242
  payloadFields?: string[] | undefined;
20242
20243
  includeSession?: boolean | undefined;
20243
- timeoutMs?: number | undefined;
20244
20244
  isActive?: boolean | undefined;
20245
20245
  }>;
20246
20246
  }, "strip", z.ZodTypeAny, {
@@ -20250,8 +20250,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
20250
20250
  url: string;
20251
20251
  name: string;
20252
20252
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
20253
- includeSession: boolean;
20254
20253
  timeoutMs: number;
20254
+ includeSession: boolean;
20255
20255
  isActive: boolean;
20256
20256
  object?: string | undefined;
20257
20257
  tags?: string[] | undefined;
@@ -20291,6 +20291,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
20291
20291
  } | undefined;
20292
20292
  body?: any;
20293
20293
  secret?: string | undefined;
20294
+ timeoutMs?: number | undefined;
20294
20295
  retryPolicy?: {
20295
20296
  maxRetries?: number | undefined;
20296
20297
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -20300,7 +20301,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
20300
20301
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
20301
20302
  payloadFields?: string[] | undefined;
20302
20303
  includeSession?: boolean | undefined;
20303
- timeoutMs?: number | undefined;
20304
20304
  isActive?: boolean | undefined;
20305
20305
  };
20306
20306
  }>, z.ZodObject<{
@@ -20579,8 +20579,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
20579
20579
  url: string;
20580
20580
  name: string;
20581
20581
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
20582
- includeSession: boolean;
20583
20582
  timeoutMs: number;
20583
+ includeSession: boolean;
20584
20584
  isActive: boolean;
20585
20585
  object?: string | undefined;
20586
20586
  tags?: string[] | undefined;
@@ -20616,6 +20616,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
20616
20616
  } | undefined;
20617
20617
  body?: any;
20618
20618
  secret?: string | undefined;
20619
+ timeoutMs?: number | undefined;
20619
20620
  retryPolicy?: {
20620
20621
  maxRetries?: number | undefined;
20621
20622
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -20625,7 +20626,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
20625
20626
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
20626
20627
  payloadFields?: string[] | undefined;
20627
20628
  includeSession?: boolean | undefined;
20628
- timeoutMs?: number | undefined;
20629
20629
  isActive?: boolean | undefined;
20630
20630
  }>;
20631
20631
  }, "strip", z.ZodTypeAny, {
@@ -20635,8 +20635,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
20635
20635
  url: string;
20636
20636
  name: string;
20637
20637
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
20638
- includeSession: boolean;
20639
20638
  timeoutMs: number;
20639
+ includeSession: boolean;
20640
20640
  isActive: boolean;
20641
20641
  object?: string | undefined;
20642
20642
  tags?: string[] | undefined;
@@ -20676,6 +20676,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
20676
20676
  } | undefined;
20677
20677
  body?: any;
20678
20678
  secret?: string | undefined;
20679
+ timeoutMs?: number | undefined;
20679
20680
  retryPolicy?: {
20680
20681
  maxRetries?: number | undefined;
20681
20682
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -20685,7 +20686,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
20685
20686
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
20686
20687
  payloadFields?: string[] | undefined;
20687
20688
  includeSession?: boolean | undefined;
20688
- timeoutMs?: number | undefined;
20689
20689
  isActive?: boolean | undefined;
20690
20690
  };
20691
20691
  }>, z.ZodObject<{
@@ -20824,8 +20824,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
20824
20824
  url: string;
20825
20825
  name: string;
20826
20826
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
20827
- includeSession: boolean;
20828
20827
  timeoutMs: number;
20828
+ includeSession: boolean;
20829
20829
  isActive: boolean;
20830
20830
  object?: string | undefined;
20831
20831
  tags?: string[] | undefined;
@@ -20944,6 +20944,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
20944
20944
  } | undefined;
20945
20945
  body?: any;
20946
20946
  secret?: string | undefined;
20947
+ timeoutMs?: number | undefined;
20947
20948
  retryPolicy?: {
20948
20949
  maxRetries?: number | undefined;
20949
20950
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -20953,7 +20954,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
20953
20954
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
20954
20955
  payloadFields?: string[] | undefined;
20955
20956
  includeSession?: boolean | undefined;
20956
- timeoutMs?: number | undefined;
20957
20957
  isActive?: boolean | undefined;
20958
20958
  };
20959
20959
  } | {
@@ -21051,8 +21051,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
21051
21051
  url: string;
21052
21052
  name: string;
21053
21053
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
21054
- includeSession: boolean;
21055
21054
  timeoutMs: number;
21055
+ includeSession: boolean;
21056
21056
  isActive: boolean;
21057
21057
  object?: string | undefined;
21058
21058
  tags?: string[] | undefined;
@@ -21154,8 +21154,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
21154
21154
  url: string;
21155
21155
  name: string;
21156
21156
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
21157
- includeSession: boolean;
21158
21157
  timeoutMs: number;
21158
+ includeSession: boolean;
21159
21159
  isActive: boolean;
21160
21160
  object?: string | undefined;
21161
21161
  tags?: string[] | undefined;
@@ -21280,6 +21280,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
21280
21280
  } | undefined;
21281
21281
  body?: any;
21282
21282
  secret?: string | undefined;
21283
+ timeoutMs?: number | undefined;
21283
21284
  retryPolicy?: {
21284
21285
  maxRetries?: number | undefined;
21285
21286
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -21289,7 +21290,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
21289
21290
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
21290
21291
  payloadFields?: string[] | undefined;
21291
21292
  includeSession?: boolean | undefined;
21292
- timeoutMs?: number | undefined;
21293
21293
  isActive?: boolean | undefined;
21294
21294
  };
21295
21295
  } | {
@@ -21383,6 +21383,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
21383
21383
  } | undefined;
21384
21384
  body?: any;
21385
21385
  secret?: string | undefined;
21386
+ timeoutMs?: number | undefined;
21386
21387
  retryPolicy?: {
21387
21388
  maxRetries?: number | undefined;
21388
21389
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -21392,7 +21393,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
21392
21393
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
21393
21394
  payloadFields?: string[] | undefined;
21394
21395
  includeSession?: boolean | undefined;
21395
- timeoutMs?: number | undefined;
21396
21396
  isActive?: boolean | undefined;
21397
21397
  };
21398
21398
  } | {
@@ -21451,10 +21451,10 @@ export declare const ObjectStackSchema: z.ZodObject<{
21451
21451
  value: z.ZodString;
21452
21452
  }, "strip", z.ZodTypeAny, {
21453
21453
  value: string;
21454
- type: "field" | "role" | "user" | "manager" | "queue";
21454
+ type: "field" | "role" | "user" | "queue" | "manager";
21455
21455
  }, {
21456
21456
  value: string;
21457
- type: "field" | "role" | "user" | "manager" | "queue";
21457
+ type: "field" | "role" | "user" | "queue" | "manager";
21458
21458
  }>, "many">;
21459
21459
  behavior: z.ZodDefault<z.ZodEnum<["first_response", "unanimous"]>>;
21460
21460
  rejectionBehavior: z.ZodDefault<z.ZodEnum<["reject_process", "back_to_previous"]>>;
@@ -21489,7 +21489,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
21489
21489
  name: string;
21490
21490
  approvers: {
21491
21491
  value: string;
21492
- type: "field" | "role" | "user" | "manager" | "queue";
21492
+ type: "field" | "role" | "user" | "queue" | "manager";
21493
21493
  }[];
21494
21494
  behavior: "first_response" | "unanimous";
21495
21495
  rejectionBehavior: "reject_process" | "back_to_previous";
@@ -21510,7 +21510,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
21510
21510
  name: string;
21511
21511
  approvers: {
21512
21512
  value: string;
21513
- type: "field" | "role" | "user" | "manager" | "queue";
21513
+ type: "field" | "role" | "user" | "queue" | "manager";
21514
21514
  }[];
21515
21515
  description?: string | undefined;
21516
21516
  entryCriteria?: string | undefined;
@@ -21589,7 +21589,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
21589
21589
  name: string;
21590
21590
  approvers: {
21591
21591
  value: string;
21592
- type: "field" | "role" | "user" | "manager" | "queue";
21592
+ type: "field" | "role" | "user" | "queue" | "manager";
21593
21593
  }[];
21594
21594
  behavior: "first_response" | "unanimous";
21595
21595
  rejectionBehavior: "reject_process" | "back_to_previous";
@@ -21638,7 +21638,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
21638
21638
  name: string;
21639
21639
  approvers: {
21640
21640
  value: string;
21641
- type: "field" | "role" | "user" | "manager" | "queue";
21641
+ type: "field" | "role" | "user" | "queue" | "manager";
21642
21642
  }[];
21643
21643
  description?: string | undefined;
21644
21644
  entryCriteria?: string | undefined;
@@ -22276,7 +22276,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
22276
22276
  description?: string | undefined;
22277
22277
  specification?: string | undefined;
22278
22278
  };
22279
- conformance: "partial" | "full" | "experimental" | "deprecated";
22279
+ conformance: "partial" | "full" | "deprecated" | "experimental";
22280
22280
  certified: boolean;
22281
22281
  metadata?: Record<string, any> | undefined;
22282
22282
  implementedFeatures?: string[] | undefined;
@@ -23336,8 +23336,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
23336
23336
  url: string;
23337
23337
  name: string;
23338
23338
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
23339
- includeSession: boolean;
23340
23339
  timeoutMs: number;
23340
+ includeSession: boolean;
23341
23341
  isActive: boolean;
23342
23342
  object?: string | undefined;
23343
23343
  tags?: string[] | undefined;
@@ -23439,8 +23439,8 @@ export declare const ObjectStackSchema: z.ZodObject<{
23439
23439
  url: string;
23440
23440
  name: string;
23441
23441
  method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
23442
- includeSession: boolean;
23443
23442
  timeoutMs: number;
23443
+ includeSession: boolean;
23444
23444
  isActive: boolean;
23445
23445
  object?: string | undefined;
23446
23446
  tags?: string[] | undefined;
@@ -23509,7 +23509,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
23509
23509
  name: string;
23510
23510
  approvers: {
23511
23511
  value: string;
23512
- type: "field" | "role" | "user" | "manager" | "queue";
23512
+ type: "field" | "role" | "user" | "queue" | "manager";
23513
23513
  }[];
23514
23514
  behavior: "first_response" | "unanimous";
23515
23515
  rejectionBehavior: "reject_process" | "back_to_previous";
@@ -23637,7 +23637,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
23637
23637
  specification?: string | undefined;
23638
23638
  };
23639
23639
  metadata?: Record<string, any> | undefined;
23640
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
23640
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
23641
23641
  implementedFeatures?: string[] | undefined;
23642
23642
  features?: {
23643
23643
  name: string;
@@ -24706,6 +24706,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
24706
24706
  } | undefined;
24707
24707
  body?: any;
24708
24708
  secret?: string | undefined;
24709
+ timeoutMs?: number | undefined;
24709
24710
  retryPolicy?: {
24710
24711
  maxRetries?: number | undefined;
24711
24712
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -24715,7 +24716,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
24715
24716
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
24716
24717
  payloadFields?: string[] | undefined;
24717
24718
  includeSession?: boolean | undefined;
24718
- timeoutMs?: number | undefined;
24719
24719
  isActive?: boolean | undefined;
24720
24720
  };
24721
24721
  } | {
@@ -24809,6 +24809,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
24809
24809
  } | undefined;
24810
24810
  body?: any;
24811
24811
  secret?: string | undefined;
24812
+ timeoutMs?: number | undefined;
24812
24813
  retryPolicy?: {
24813
24814
  maxRetries?: number | undefined;
24814
24815
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -24818,7 +24819,6 @@ export declare const ObjectStackSchema: z.ZodObject<{
24818
24819
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
24819
24820
  payloadFields?: string[] | undefined;
24820
24821
  includeSession?: boolean | undefined;
24821
- timeoutMs?: number | undefined;
24822
24822
  isActive?: boolean | undefined;
24823
24823
  };
24824
24824
  } | {
@@ -24868,7 +24868,7 @@ export declare const ObjectStackSchema: z.ZodObject<{
24868
24868
  name: string;
24869
24869
  approvers: {
24870
24870
  value: string;
24871
- type: "field" | "role" | "user" | "manager" | "queue";
24871
+ type: "field" | "role" | "user" | "queue" | "manager";
24872
24872
  }[];
24873
24873
  description?: string | undefined;
24874
24874
  entryCriteria?: string | undefined;
@@ -25003,7 +25003,7 @@ export declare const defineStack: (config: z.input<typeof ObjectStackDefinitionS
25003
25003
  specification?: string | undefined;
25004
25004
  };
25005
25005
  metadata?: Record<string, any> | undefined;
25006
- conformance?: "partial" | "full" | "experimental" | "deprecated" | undefined;
25006
+ conformance?: "partial" | "full" | "deprecated" | "experimental" | undefined;
25007
25007
  implementedFeatures?: string[] | undefined;
25008
25008
  features?: {
25009
25009
  name: string;
@@ -26072,6 +26072,7 @@ export declare const defineStack: (config: z.input<typeof ObjectStackDefinitionS
26072
26072
  } | undefined;
26073
26073
  body?: any;
26074
26074
  secret?: string | undefined;
26075
+ timeoutMs?: number | undefined;
26075
26076
  retryPolicy?: {
26076
26077
  maxRetries?: number | undefined;
26077
26078
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -26081,7 +26082,6 @@ export declare const defineStack: (config: z.input<typeof ObjectStackDefinitionS
26081
26082
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
26082
26083
  payloadFields?: string[] | undefined;
26083
26084
  includeSession?: boolean | undefined;
26084
- timeoutMs?: number | undefined;
26085
26085
  isActive?: boolean | undefined;
26086
26086
  };
26087
26087
  } | {
@@ -26175,6 +26175,7 @@ export declare const defineStack: (config: z.input<typeof ObjectStackDefinitionS
26175
26175
  } | undefined;
26176
26176
  body?: any;
26177
26177
  secret?: string | undefined;
26178
+ timeoutMs?: number | undefined;
26178
26179
  retryPolicy?: {
26179
26180
  maxRetries?: number | undefined;
26180
26181
  backoffStrategy?: "fixed" | "linear" | "exponential" | undefined;
@@ -26184,7 +26185,6 @@ export declare const defineStack: (config: z.input<typeof ObjectStackDefinitionS
26184
26185
  triggers?: ("update" | "delete" | "create" | "api" | "undelete")[] | undefined;
26185
26186
  payloadFields?: string[] | undefined;
26186
26187
  includeSession?: boolean | undefined;
26187
- timeoutMs?: number | undefined;
26188
26188
  isActive?: boolean | undefined;
26189
26189
  };
26190
26190
  } | {
@@ -26234,7 +26234,7 @@ export declare const defineStack: (config: z.input<typeof ObjectStackDefinitionS
26234
26234
  name: string;
26235
26235
  approvers: {
26236
26236
  value: string;
26237
- type: "field" | "role" | "user" | "manager" | "queue";
26237
+ type: "field" | "role" | "user" | "queue" | "manager";
26238
26238
  }[];
26239
26239
  description?: string | undefined;
26240
26240
  entryCriteria?: string | undefined;
@@ -26750,10 +26750,10 @@ export declare const ObjectOSCapabilitiesSchema: z.ZodObject<{
26750
26750
  version: string;
26751
26751
  authentication: boolean;
26752
26752
  rowLevelSecurity: boolean;
26753
+ webhooks: boolean;
26753
26754
  environment: "test" | "staging" | "development" | "production";
26754
26755
  i18n: boolean;
26755
26756
  websockets: boolean;
26756
- webhooks: boolean;
26757
26757
  restApi: boolean;
26758
26758
  graphqlApi: boolean;
26759
26759
  odataApi: boolean;
@@ -26861,6 +26861,7 @@ export declare const ObjectOSCapabilitiesSchema: z.ZodObject<{
26861
26861
  }[] | undefined;
26862
26862
  cacheTtl?: number | undefined;
26863
26863
  }[] | undefined;
26864
+ webhooks?: boolean | undefined;
26864
26865
  features?: {
26865
26866
  name: string;
26866
26867
  enabled?: boolean | undefined;
@@ -26891,7 +26892,6 @@ export declare const ObjectOSCapabilitiesSchema: z.ZodObject<{
26891
26892
  fileUploadSizeLimit?: number | undefined;
26892
26893
  } | undefined;
26893
26894
  websockets?: boolean | undefined;
26894
- webhooks?: boolean | undefined;
26895
26895
  restApi?: boolean | undefined;
26896
26896
  graphqlApi?: boolean | undefined;
26897
26897
  odataApi?: boolean | undefined;
@@ -27289,10 +27289,10 @@ export declare const ObjectStackCapabilitiesSchema: z.ZodObject<{
27289
27289
  version: string;
27290
27290
  authentication: boolean;
27291
27291
  rowLevelSecurity: boolean;
27292
+ webhooks: boolean;
27292
27293
  environment: "test" | "staging" | "development" | "production";
27293
27294
  i18n: boolean;
27294
27295
  websockets: boolean;
27295
- webhooks: boolean;
27296
27296
  restApi: boolean;
27297
27297
  graphqlApi: boolean;
27298
27298
  odataApi: boolean;
@@ -27400,6 +27400,7 @@ export declare const ObjectStackCapabilitiesSchema: z.ZodObject<{
27400
27400
  }[] | undefined;
27401
27401
  cacheTtl?: number | undefined;
27402
27402
  }[] | undefined;
27403
+ webhooks?: boolean | undefined;
27403
27404
  features?: {
27404
27405
  name: string;
27405
27406
  enabled?: boolean | undefined;
@@ -27430,7 +27431,6 @@ export declare const ObjectStackCapabilitiesSchema: z.ZodObject<{
27430
27431
  fileUploadSizeLimit?: number | undefined;
27431
27432
  } | undefined;
27432
27433
  websockets?: boolean | undefined;
27433
- webhooks?: boolean | undefined;
27434
27434
  restApi?: boolean | undefined;
27435
27435
  graphqlApi?: boolean | undefined;
27436
27436
  odataApi?: boolean | undefined;
@@ -27474,10 +27474,10 @@ export declare const ObjectStackCapabilitiesSchema: z.ZodObject<{
27474
27474
  version: string;
27475
27475
  authentication: boolean;
27476
27476
  rowLevelSecurity: boolean;
27477
+ webhooks: boolean;
27477
27478
  environment: "test" | "staging" | "development" | "production";
27478
27479
  i18n: boolean;
27479
27480
  websockets: boolean;
27480
- webhooks: boolean;
27481
27481
  restApi: boolean;
27482
27482
  graphqlApi: boolean;
27483
27483
  odataApi: boolean;
@@ -27627,6 +27627,7 @@ export declare const ObjectStackCapabilitiesSchema: z.ZodObject<{
27627
27627
  }[] | undefined;
27628
27628
  cacheTtl?: number | undefined;
27629
27629
  }[] | undefined;
27630
+ webhooks?: boolean | undefined;
27630
27631
  features?: {
27631
27632
  name: string;
27632
27633
  enabled?: boolean | undefined;
@@ -27657,7 +27658,6 @@ export declare const ObjectStackCapabilitiesSchema: z.ZodObject<{
27657
27658
  fileUploadSizeLimit?: number | undefined;
27658
27659
  } | undefined;
27659
27660
  websockets?: boolean | undefined;
27660
- webhooks?: boolean | undefined;
27661
27661
  restApi?: boolean | undefined;
27662
27662
  graphqlApi?: boolean | undefined;
27663
27663
  odataApi?: boolean | undefined;