@openloaf-saas/sdk 0.1.42 → 0.1.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -298,6 +298,7 @@ declare class SaaSContract {
298
298
  sharedGroup?: string | undefined;
299
299
  sharedMaxCount?: number | undefined;
300
300
  }[];
301
+ estimatedDurationMs?: number | undefined;
301
302
  executionMode?: "task" | "streaming" | "sync" | undefined;
302
303
  endpoint?: string | undefined;
303
304
  tags?: string[] | undefined;
@@ -556,6 +557,7 @@ declare class SaaSContract {
556
557
  sharedGroup?: string | undefined;
557
558
  sharedMaxCount?: number | undefined;
558
559
  }[];
560
+ estimatedDurationMs?: number | undefined;
559
561
  executionMode?: "task" | "streaming" | "sync" | undefined;
560
562
  endpoint?: string | undefined;
561
563
  tags?: string[] | undefined;
@@ -814,6 +816,7 @@ declare class SaaSContract {
814
816
  sharedGroup?: string | undefined;
815
817
  sharedMaxCount?: number | undefined;
816
818
  }[];
819
+ estimatedDurationMs?: number | undefined;
817
820
  executionMode?: "task" | "streaming" | "sync" | undefined;
818
821
  endpoint?: string | undefined;
819
822
  tags?: string[] | undefined;
@@ -1072,6 +1075,7 @@ declare class SaaSContract {
1072
1075
  sharedGroup?: string | undefined;
1073
1076
  sharedMaxCount?: number | undefined;
1074
1077
  }[];
1078
+ estimatedDurationMs?: number | undefined;
1075
1079
  executionMode?: "task" | "streaming" | "sync" | undefined;
1076
1080
  endpoint?: string | undefined;
1077
1081
  tags?: string[] | undefined;
@@ -1330,6 +1334,7 @@ declare class SaaSContract {
1330
1334
  sharedGroup?: string | undefined;
1331
1335
  sharedMaxCount?: number | undefined;
1332
1336
  }[];
1337
+ estimatedDurationMs?: number | undefined;
1333
1338
  executionMode?: "task" | "streaming" | "sync" | undefined;
1334
1339
  endpoint?: string | undefined;
1335
1340
  tags?: string[] | undefined;
@@ -1752,6 +1757,7 @@ declare class SaaSContract {
1752
1757
  params?: Record<string, unknown> | undefined;
1753
1758
  }, {
1754
1759
  success: true;
1760
+ variantId: string;
1755
1761
  data: unknown;
1756
1762
  }>;
1757
1763
  };
@@ -2506,6 +2512,7 @@ declare const aiEndpoints: {
2506
2512
  sharedGroup?: string | undefined;
2507
2513
  sharedMaxCount?: number | undefined;
2508
2514
  }[];
2515
+ estimatedDurationMs?: number | undefined;
2509
2516
  executionMode?: "task" | "streaming" | "sync" | undefined;
2510
2517
  endpoint?: string | undefined;
2511
2518
  tags?: string[] | undefined;
@@ -2765,6 +2772,7 @@ declare const aiEndpoints: {
2765
2772
  sharedGroup?: string | undefined;
2766
2773
  sharedMaxCount?: number | undefined;
2767
2774
  }[];
2775
+ estimatedDurationMs?: number | undefined;
2768
2776
  executionMode?: "task" | "streaming" | "sync" | undefined;
2769
2777
  endpoint?: string | undefined;
2770
2778
  tags?: string[] | undefined;
@@ -3024,6 +3032,7 @@ declare const aiEndpoints: {
3024
3032
  sharedGroup?: string | undefined;
3025
3033
  sharedMaxCount?: number | undefined;
3026
3034
  }[];
3035
+ estimatedDurationMs?: number | undefined;
3027
3036
  executionMode?: "task" | "streaming" | "sync" | undefined;
3028
3037
  endpoint?: string | undefined;
3029
3038
  tags?: string[] | undefined;
@@ -3283,6 +3292,7 @@ declare const aiEndpoints: {
3283
3292
  sharedGroup?: string | undefined;
3284
3293
  sharedMaxCount?: number | undefined;
3285
3294
  }[];
3295
+ estimatedDurationMs?: number | undefined;
3286
3296
  executionMode?: "task" | "streaming" | "sync" | undefined;
3287
3297
  endpoint?: string | undefined;
3288
3298
  tags?: string[] | undefined;
@@ -3542,6 +3552,7 @@ declare const aiEndpoints: {
3542
3552
  sharedGroup?: string | undefined;
3543
3553
  sharedMaxCount?: number | undefined;
3544
3554
  }[];
3555
+ estimatedDurationMs?: number | undefined;
3545
3556
  executionMode?: "task" | "streaming" | "sync" | undefined;
3546
3557
  endpoint?: string | undefined;
3547
3558
  tags?: string[] | undefined;
@@ -3981,6 +3992,7 @@ declare const aiEndpoints: {
3981
3992
  params?: Record<string, unknown> | undefined;
3982
3993
  }, {
3983
3994
  success: true;
3995
+ variantId: string;
3984
3996
  data: unknown;
3985
3997
  }>;
3986
3998
  };
@@ -5008,6 +5020,7 @@ declare const v3VariantSchema: z.ZodObject<{
5008
5020
  sharedGroup: z.ZodOptional<z.ZodString>;
5009
5021
  sharedMaxCount: z.ZodOptional<z.ZodNumber>;
5010
5022
  }, z.core.$strip>>;
5023
+ estimatedDurationMs: z.ZodOptional<z.ZodNumber>;
5011
5024
  executionMode: z.ZodOptional<z.ZodEnum<{
5012
5025
  task: "task";
5013
5026
  streaming: "streaming";
@@ -5181,6 +5194,7 @@ declare const v3FeatureSchema: z.ZodObject<{
5181
5194
  sharedGroup: z.ZodOptional<z.ZodString>;
5182
5195
  sharedMaxCount: z.ZodOptional<z.ZodNumber>;
5183
5196
  }, z.core.$strip>>;
5197
+ estimatedDurationMs: z.ZodOptional<z.ZodNumber>;
5184
5198
  executionMode: z.ZodOptional<z.ZodEnum<{
5185
5199
  task: "task";
5186
5200
  streaming: "streaming";
@@ -5506,6 +5520,7 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
5506
5520
  sharedGroup: z.ZodOptional<z.ZodString>;
5507
5521
  sharedMaxCount: z.ZodOptional<z.ZodNumber>;
5508
5522
  }, z.core.$strip>>;
5523
+ estimatedDurationMs: z.ZodOptional<z.ZodNumber>;
5509
5524
  executionMode: z.ZodOptional<z.ZodEnum<{
5510
5525
  task: "task";
5511
5526
  streaming: "streaming";
@@ -5829,6 +5844,7 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
5829
5844
  sharedGroup: z.ZodOptional<z.ZodString>;
5830
5845
  sharedMaxCount: z.ZodOptional<z.ZodNumber>;
5831
5846
  }, z.core.$strip>>;
5847
+ estimatedDurationMs: z.ZodOptional<z.ZodNumber>;
5832
5848
  executionMode: z.ZodOptional<z.ZodEnum<{
5833
5849
  task: "task";
5834
5850
  streaming: "streaming";
@@ -6490,6 +6506,7 @@ declare const v3ToolExecuteRequestSchema: z.ZodObject<{
6490
6506
  /** v3 tool execute response. */
6491
6507
  declare const v3ToolExecuteResponseSchema: z.ZodObject<{
6492
6508
  success: z.ZodLiteral<true>;
6509
+ variantId: z.ZodString;
6493
6510
  data: z.ZodUnknown;
6494
6511
  }, z.core.$strip>;
6495
6512
  /** Capabilities overview response. */
@@ -6920,6 +6937,7 @@ declare class AiClient {
6920
6937
  sharedGroup?: string | undefined;
6921
6938
  sharedMaxCount?: number | undefined;
6922
6939
  }[];
6940
+ estimatedDurationMs?: number | undefined;
6923
6941
  executionMode?: "task" | "streaming" | "sync" | undefined;
6924
6942
  endpoint?: string | undefined;
6925
6943
  tags?: string[] | undefined;
@@ -7179,6 +7197,7 @@ declare class AiClient {
7179
7197
  sharedGroup?: string | undefined;
7180
7198
  sharedMaxCount?: number | undefined;
7181
7199
  }[];
7200
+ estimatedDurationMs?: number | undefined;
7182
7201
  executionMode?: "task" | "streaming" | "sync" | undefined;
7183
7202
  endpoint?: string | undefined;
7184
7203
  tags?: string[] | undefined;
@@ -7438,6 +7457,7 @@ declare class AiClient {
7438
7457
  sharedGroup?: string | undefined;
7439
7458
  sharedMaxCount?: number | undefined;
7440
7459
  }[];
7460
+ estimatedDurationMs?: number | undefined;
7441
7461
  executionMode?: "task" | "streaming" | "sync" | undefined;
7442
7462
  endpoint?: string | undefined;
7443
7463
  tags?: string[] | undefined;
@@ -7697,6 +7717,7 @@ declare class AiClient {
7697
7717
  sharedGroup?: string | undefined;
7698
7718
  sharedMaxCount?: number | undefined;
7699
7719
  }[];
7720
+ estimatedDurationMs?: number | undefined;
7700
7721
  executionMode?: "task" | "streaming" | "sync" | undefined;
7701
7722
  endpoint?: string | undefined;
7702
7723
  tags?: string[] | undefined;
@@ -7956,6 +7977,7 @@ declare class AiClient {
7956
7977
  sharedGroup?: string | undefined;
7957
7978
  sharedMaxCount?: number | undefined;
7958
7979
  }[];
7980
+ estimatedDurationMs?: number | undefined;
7959
7981
  executionMode?: "task" | "streaming" | "sync" | undefined;
7960
7982
  endpoint?: string | undefined;
7961
7983
  tags?: string[] | undefined;