@rudderhq/shared 0.6.5 → 0.6.6-canary.0
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/chat-subagents.d.ts +14 -0
- package/dist/chat-subagents.d.ts.map +1 -0
- package/dist/chat-subagents.js +234 -0
- package/dist/chat-subagents.js.map +1 -0
- package/dist/chat-subagents.test.d.ts +2 -0
- package/dist/chat-subagents.test.d.ts.map +1 -0
- package/dist/chat-subagents.test.js +214 -0
- package/dist/chat-subagents.test.js.map +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/types/chat.d.ts +24 -0
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +2 -2
- package/dist/validators/automation.d.ts +21 -21
- package/dist/validators/chat.d.ts +346 -346
- package/dist/validators/cost.d.ts +4 -4
- package/dist/validators/custom-integration.d.ts +4 -4
- package/dist/validators/finance.d.ts +4 -4
- package/dist/validators/mcp.d.ts +22 -22
- package/dist/validators/organization-portability.d.ts +20 -20
- package/dist/validators/organization-skill.d.ts +22 -22
- package/dist/validators/work-product.d.ts +8 -8
- package/package.json +1 -1
|
@@ -17,8 +17,8 @@ export declare const createCostEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
17
17
|
occurredAt: z.ZodString;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
19
|
agentId: string;
|
|
20
|
-
provider: string;
|
|
21
20
|
model: string;
|
|
21
|
+
provider: string;
|
|
22
22
|
billingType: "unknown" | "metered_api" | "subscription_included" | "subscription_overage" | "credits" | "fixed";
|
|
23
23
|
inputTokens: number;
|
|
24
24
|
cachedInputTokens: number;
|
|
@@ -33,8 +33,8 @@ export declare const createCostEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
33
33
|
biller?: string | undefined;
|
|
34
34
|
}, {
|
|
35
35
|
agentId: string;
|
|
36
|
-
provider: string;
|
|
37
36
|
model: string;
|
|
37
|
+
provider: string;
|
|
38
38
|
costCents: number;
|
|
39
39
|
occurredAt: string;
|
|
40
40
|
projectId?: string | null | undefined;
|
|
@@ -50,8 +50,8 @@ export declare const createCostEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
50
50
|
}>, {
|
|
51
51
|
biller: string;
|
|
52
52
|
agentId: string;
|
|
53
|
-
provider: string;
|
|
54
53
|
model: string;
|
|
54
|
+
provider: string;
|
|
55
55
|
billingType: "unknown" | "metered_api" | "subscription_included" | "subscription_overage" | "credits" | "fixed";
|
|
56
56
|
inputTokens: number;
|
|
57
57
|
cachedInputTokens: number;
|
|
@@ -65,8 +65,8 @@ export declare const createCostEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
65
65
|
heartbeatRunId?: string | null | undefined;
|
|
66
66
|
}, {
|
|
67
67
|
agentId: string;
|
|
68
|
-
provider: string;
|
|
69
68
|
model: string;
|
|
69
|
+
provider: string;
|
|
70
70
|
costCents: number;
|
|
71
71
|
occurredAt: string;
|
|
72
72
|
projectId?: string | null | undefined;
|
|
@@ -63,8 +63,8 @@ export declare const createCustomIntegrationSchema: z.ZodObject<{
|
|
|
63
63
|
}>, "many">;
|
|
64
64
|
enabledToolNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
|
-
scope: "organization" | "agent";
|
|
67
66
|
kind: "custom_api" | "mcp_server";
|
|
67
|
+
scope: "organization" | "agent";
|
|
68
68
|
displayName: string;
|
|
69
69
|
tools: {
|
|
70
70
|
externalToolName: string;
|
|
@@ -83,8 +83,8 @@ export declare const createCustomIntegrationSchema: z.ZodObject<{
|
|
|
83
83
|
} | undefined;
|
|
84
84
|
enabledToolNames?: string[] | undefined;
|
|
85
85
|
}, {
|
|
86
|
-
scope: "organization" | "agent";
|
|
87
86
|
kind: "custom_api" | "mcp_server";
|
|
87
|
+
scope: "organization" | "agent";
|
|
88
88
|
displayName: string;
|
|
89
89
|
tools: {
|
|
90
90
|
externalToolName: string;
|
|
@@ -122,14 +122,14 @@ export declare const createCustomIntegrationToolCallSchema: z.ZodObject<{
|
|
|
122
122
|
toolId: string;
|
|
123
123
|
issueId?: string | null | undefined;
|
|
124
124
|
conversationId?: string | null | undefined;
|
|
125
|
-
input?: Record<string, unknown> | undefined;
|
|
126
125
|
runId?: string | null | undefined;
|
|
126
|
+
input?: Record<string, unknown> | undefined;
|
|
127
127
|
}, {
|
|
128
128
|
toolId: string;
|
|
129
129
|
issueId?: string | null | undefined;
|
|
130
130
|
conversationId?: string | null | undefined;
|
|
131
|
-
input?: Record<string, unknown> | undefined;
|
|
132
131
|
runId?: string | null | undefined;
|
|
132
|
+
input?: Record<string, unknown> | undefined;
|
|
133
133
|
}>;
|
|
134
134
|
export type CreateCustomIntegrationToolCall = z.infer<typeof createCustomIntegrationToolCallSchema>;
|
|
135
135
|
//# sourceMappingURL=custom-integration.d.ts.map
|
|
@@ -35,9 +35,9 @@ export declare const createFinanceEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
35
35
|
projectId?: string | null | undefined;
|
|
36
36
|
agentId?: string | null | undefined;
|
|
37
37
|
issueId?: string | null | undefined;
|
|
38
|
+
model?: string | null | undefined;
|
|
38
39
|
description?: string | null | undefined;
|
|
39
40
|
provider?: string | null | undefined;
|
|
40
|
-
model?: string | null | undefined;
|
|
41
41
|
goalId?: string | null | undefined;
|
|
42
42
|
billingCode?: string | null | undefined;
|
|
43
43
|
heartbeatRunId?: string | null | undefined;
|
|
@@ -57,9 +57,9 @@ export declare const createFinanceEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
57
57
|
projectId?: string | null | undefined;
|
|
58
58
|
agentId?: string | null | undefined;
|
|
59
59
|
issueId?: string | null | undefined;
|
|
60
|
+
model?: string | null | undefined;
|
|
60
61
|
description?: string | null | undefined;
|
|
61
62
|
provider?: string | null | undefined;
|
|
62
|
-
model?: string | null | undefined;
|
|
63
63
|
goalId?: string | null | undefined;
|
|
64
64
|
billingCode?: string | null | undefined;
|
|
65
65
|
heartbeatRunId?: string | null | undefined;
|
|
@@ -85,9 +85,9 @@ export declare const createFinanceEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
85
85
|
projectId?: string | null | undefined;
|
|
86
86
|
agentId?: string | null | undefined;
|
|
87
87
|
issueId?: string | null | undefined;
|
|
88
|
+
model?: string | null | undefined;
|
|
88
89
|
description?: string | null | undefined;
|
|
89
90
|
provider?: string | null | undefined;
|
|
90
|
-
model?: string | null | undefined;
|
|
91
91
|
goalId?: string | null | undefined;
|
|
92
92
|
billingCode?: string | null | undefined;
|
|
93
93
|
heartbeatRunId?: string | null | undefined;
|
|
@@ -107,9 +107,9 @@ export declare const createFinanceEventSchema: z.ZodEffects<z.ZodObject<{
|
|
|
107
107
|
projectId?: string | null | undefined;
|
|
108
108
|
agentId?: string | null | undefined;
|
|
109
109
|
issueId?: string | null | undefined;
|
|
110
|
+
model?: string | null | undefined;
|
|
110
111
|
description?: string | null | undefined;
|
|
111
112
|
provider?: string | null | undefined;
|
|
112
|
-
model?: string | null | undefined;
|
|
113
113
|
goalId?: string | null | undefined;
|
|
114
114
|
billingCode?: string | null | undefined;
|
|
115
115
|
heartbeatRunId?: string | null | undefined;
|
package/dist/validators/mcp.d.ts
CHANGED
|
@@ -2014,12 +2014,12 @@ export declare const mcpConnectionSummarySchema: z.ZodObject<{
|
|
|
2014
2014
|
}, "strict", z.ZodTypeAny, {
|
|
2015
2015
|
status: "active" | "disabled" | "error" | "revoked" | "draft" | "authorizing" | "selecting_scope" | "needs_reauth";
|
|
2016
2016
|
id: string;
|
|
2017
|
+
updatedAt: string;
|
|
2017
2018
|
orgId: string;
|
|
2018
2019
|
ownerAgentId: string | null;
|
|
2019
2020
|
scope: "organization" | "agent";
|
|
2020
2021
|
displayName: string;
|
|
2021
2022
|
createdAt: string;
|
|
2022
|
-
updatedAt: string;
|
|
2023
2023
|
revokedAt: string | null;
|
|
2024
2024
|
name: string;
|
|
2025
2025
|
accessMode: "provider_default" | "read_only" | "read_write";
|
|
@@ -2063,12 +2063,12 @@ export declare const mcpConnectionSummarySchema: z.ZodObject<{
|
|
|
2063
2063
|
}, {
|
|
2064
2064
|
status: "active" | "disabled" | "error" | "revoked" | "draft" | "authorizing" | "selecting_scope" | "needs_reauth";
|
|
2065
2065
|
id: string;
|
|
2066
|
+
updatedAt: string;
|
|
2066
2067
|
orgId: string;
|
|
2067
2068
|
ownerAgentId: string | null;
|
|
2068
2069
|
scope: "organization" | "agent";
|
|
2069
2070
|
displayName: string;
|
|
2070
2071
|
createdAt: string;
|
|
2071
|
-
updatedAt: string;
|
|
2072
2072
|
revokedAt: string | null;
|
|
2073
2073
|
name: string;
|
|
2074
2074
|
accessMode: "provider_default" | "read_only" | "read_write";
|
|
@@ -2299,8 +2299,8 @@ export declare const mcpOAuthGrantSummarySchema: z.ZodObject<{
|
|
|
2299
2299
|
}, "strict", z.ZodTypeAny, {
|
|
2300
2300
|
status: "active" | "error" | "revoked" | "needs_reauth";
|
|
2301
2301
|
id: string;
|
|
2302
|
-
createdAt: string;
|
|
2303
2302
|
updatedAt: string;
|
|
2303
|
+
createdAt: string;
|
|
2304
2304
|
revokedAt: string | null;
|
|
2305
2305
|
hasCredentials: boolean;
|
|
2306
2306
|
connectionId: string;
|
|
@@ -2312,8 +2312,8 @@ export declare const mcpOAuthGrantSummarySchema: z.ZodObject<{
|
|
|
2312
2312
|
}, {
|
|
2313
2313
|
status: "active" | "error" | "revoked" | "needs_reauth";
|
|
2314
2314
|
id: string;
|
|
2315
|
-
createdAt: string;
|
|
2316
2315
|
updatedAt: string;
|
|
2316
|
+
createdAt: string;
|
|
2317
2317
|
revokedAt: string | null;
|
|
2318
2318
|
hasCredentials: boolean;
|
|
2319
2319
|
connectionId: string;
|
|
@@ -2533,12 +2533,12 @@ export declare const mcpAgentConnectionSummarySchema: z.ZodObject<{
|
|
|
2533
2533
|
}, "strict", z.ZodTypeAny, {
|
|
2534
2534
|
status: "active" | "disabled" | "error" | "revoked" | "draft" | "authorizing" | "selecting_scope" | "needs_reauth";
|
|
2535
2535
|
id: string;
|
|
2536
|
+
updatedAt: string;
|
|
2536
2537
|
orgId: string;
|
|
2537
2538
|
ownerAgentId: string | null;
|
|
2538
2539
|
scope: "organization" | "agent";
|
|
2539
2540
|
displayName: string;
|
|
2540
2541
|
createdAt: string;
|
|
2541
|
-
updatedAt: string;
|
|
2542
2542
|
revokedAt: string | null;
|
|
2543
2543
|
name: string;
|
|
2544
2544
|
accessMode: "provider_default" | "read_only" | "read_write";
|
|
@@ -2582,12 +2582,12 @@ export declare const mcpAgentConnectionSummarySchema: z.ZodObject<{
|
|
|
2582
2582
|
}, {
|
|
2583
2583
|
status: "active" | "disabled" | "error" | "revoked" | "draft" | "authorizing" | "selecting_scope" | "needs_reauth";
|
|
2584
2584
|
id: string;
|
|
2585
|
+
updatedAt: string;
|
|
2585
2586
|
orgId: string;
|
|
2586
2587
|
ownerAgentId: string | null;
|
|
2587
2588
|
scope: "organization" | "agent";
|
|
2588
2589
|
displayName: string;
|
|
2589
2590
|
createdAt: string;
|
|
2590
|
-
updatedAt: string;
|
|
2591
2591
|
revokedAt: string | null;
|
|
2592
2592
|
name: string;
|
|
2593
2593
|
accessMode: "provider_default" | "read_only" | "read_write";
|
|
@@ -2713,12 +2713,12 @@ export declare const mcpAgentConnectionSummarySchema: z.ZodObject<{
|
|
|
2713
2713
|
connection: {
|
|
2714
2714
|
status: "active" | "disabled" | "error" | "revoked" | "draft" | "authorizing" | "selecting_scope" | "needs_reauth";
|
|
2715
2715
|
id: string;
|
|
2716
|
+
updatedAt: string;
|
|
2716
2717
|
orgId: string;
|
|
2717
2718
|
ownerAgentId: string | null;
|
|
2718
2719
|
scope: "organization" | "agent";
|
|
2719
2720
|
displayName: string;
|
|
2720
2721
|
createdAt: string;
|
|
2721
|
-
updatedAt: string;
|
|
2722
2722
|
revokedAt: string | null;
|
|
2723
2723
|
name: string;
|
|
2724
2724
|
accessMode: "provider_default" | "read_only" | "read_write";
|
|
@@ -2788,12 +2788,12 @@ export declare const mcpAgentConnectionSummarySchema: z.ZodObject<{
|
|
|
2788
2788
|
connection: {
|
|
2789
2789
|
status: "active" | "disabled" | "error" | "revoked" | "draft" | "authorizing" | "selecting_scope" | "needs_reauth";
|
|
2790
2790
|
id: string;
|
|
2791
|
+
updatedAt: string;
|
|
2791
2792
|
orgId: string;
|
|
2792
2793
|
ownerAgentId: string | null;
|
|
2793
2794
|
scope: "organization" | "agent";
|
|
2794
2795
|
displayName: string;
|
|
2795
2796
|
createdAt: string;
|
|
2796
|
-
updatedAt: string;
|
|
2797
2797
|
revokedAt: string | null;
|
|
2798
2798
|
name: string;
|
|
2799
2799
|
accessMode: "provider_default" | "read_only" | "read_write";
|
|
@@ -2980,8 +2980,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2980
2980
|
agentConnectionCount: z.ZodOptional<z.ZodNumber>;
|
|
2981
2981
|
historicalGrantConnectionIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2982
2982
|
}, "strict", z.ZodTypeAny, {
|
|
2983
|
-
connectionId: string | null;
|
|
2984
2983
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
2984
|
+
connectionId: string | null;
|
|
2985
2985
|
maxAccess: "read_only" | "read_write" | "provider_granted" | null;
|
|
2986
2986
|
scopeMode: "account" | "workspace" | "legacy_project" | null;
|
|
2987
2987
|
revision: number | null;
|
|
@@ -2989,8 +2989,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2989
2989
|
agentConnectionCount?: number | undefined;
|
|
2990
2990
|
historicalGrantConnectionIds?: string[] | undefined;
|
|
2991
2991
|
}, {
|
|
2992
|
-
connectionId: string | null;
|
|
2993
2992
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
2993
|
+
connectionId: string | null;
|
|
2994
2994
|
maxAccess: "read_only" | "read_write" | "provider_granted" | null;
|
|
2995
2995
|
scopeMode: "account" | "workspace" | "legacy_project" | null;
|
|
2996
2996
|
revision: number | null;
|
|
@@ -3007,13 +3007,13 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3007
3007
|
maxAccess: z.ZodEnum<["read_only", "read_write", "provider_granted"]>;
|
|
3008
3008
|
revision: z.ZodNumber;
|
|
3009
3009
|
}, "strict", z.ZodTypeAny, {
|
|
3010
|
-
connectionId: string;
|
|
3011
3010
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3011
|
+
connectionId: string;
|
|
3012
3012
|
maxAccess: "read_only" | "read_write" | "provider_granted";
|
|
3013
3013
|
revision: number;
|
|
3014
3014
|
}, {
|
|
3015
|
-
connectionId: string;
|
|
3016
3015
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3016
|
+
connectionId: string;
|
|
3017
3017
|
maxAccess: "read_only" | "read_write" | "provider_granted";
|
|
3018
3018
|
revision: number;
|
|
3019
3019
|
}>>>;
|
|
@@ -3022,8 +3022,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3022
3022
|
explicitlyDisabled: z.ZodDefault<z.ZodBoolean>;
|
|
3023
3023
|
}, "strict", z.ZodTypeAny, {
|
|
3024
3024
|
connection: {
|
|
3025
|
-
connectionId: string;
|
|
3026
3025
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3026
|
+
connectionId: string;
|
|
3027
3027
|
maxAccess: "read_only" | "read_write" | "provider_granted";
|
|
3028
3028
|
revision: number;
|
|
3029
3029
|
} | null;
|
|
@@ -3036,8 +3036,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3036
3036
|
access: "read_only" | "read_write" | "none" | "provider_granted" | "full";
|
|
3037
3037
|
activeRunUsesOlderPolicy: boolean;
|
|
3038
3038
|
connection?: {
|
|
3039
|
-
connectionId: string;
|
|
3040
3039
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3040
|
+
connectionId: string;
|
|
3041
3041
|
maxAccess: "read_only" | "read_write" | "provider_granted";
|
|
3042
3042
|
revision: number;
|
|
3043
3043
|
} | null | undefined;
|
|
@@ -3047,8 +3047,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3047
3047
|
}>>;
|
|
3048
3048
|
}, "strict", z.ZodTypeAny, {
|
|
3049
3049
|
organization: {
|
|
3050
|
-
connectionId: string | null;
|
|
3051
3050
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3051
|
+
connectionId: string | null;
|
|
3052
3052
|
maxAccess: "read_only" | "read_write" | "provider_granted" | null;
|
|
3053
3053
|
scopeMode: "account" | "workspace" | "legacy_project" | null;
|
|
3054
3054
|
revision: number | null;
|
|
@@ -3059,8 +3059,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3059
3059
|
provider: "supabase" | "linear" | "notion";
|
|
3060
3060
|
agent?: {
|
|
3061
3061
|
connection: {
|
|
3062
|
-
connectionId: string;
|
|
3063
3062
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3063
|
+
connectionId: string;
|
|
3064
3064
|
maxAccess: "read_only" | "read_write" | "provider_granted";
|
|
3065
3065
|
revision: number;
|
|
3066
3066
|
} | null;
|
|
@@ -3072,8 +3072,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3072
3072
|
} | undefined;
|
|
3073
3073
|
}, {
|
|
3074
3074
|
organization: {
|
|
3075
|
-
connectionId: string | null;
|
|
3076
3075
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3076
|
+
connectionId: string | null;
|
|
3077
3077
|
maxAccess: "read_only" | "read_write" | "provider_granted" | null;
|
|
3078
3078
|
scopeMode: "account" | "workspace" | "legacy_project" | null;
|
|
3079
3079
|
revision: number | null;
|
|
@@ -3086,8 +3086,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3086
3086
|
access: "read_only" | "read_write" | "none" | "provider_granted" | "full";
|
|
3087
3087
|
activeRunUsesOlderPolicy: boolean;
|
|
3088
3088
|
connection?: {
|
|
3089
|
-
connectionId: string;
|
|
3090
3089
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3090
|
+
connectionId: string;
|
|
3091
3091
|
maxAccess: "read_only" | "read_write" | "provider_granted";
|
|
3092
3092
|
revision: number;
|
|
3093
3093
|
} | null | undefined;
|
|
@@ -3097,8 +3097,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3097
3097
|
} | undefined;
|
|
3098
3098
|
}>, {
|
|
3099
3099
|
organization: {
|
|
3100
|
-
connectionId: string | null;
|
|
3101
3100
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3101
|
+
connectionId: string | null;
|
|
3102
3102
|
maxAccess: "read_only" | "read_write" | "provider_granted" | null;
|
|
3103
3103
|
scopeMode: "account" | "workspace" | "legacy_project" | null;
|
|
3104
3104
|
revision: number | null;
|
|
@@ -3109,8 +3109,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3109
3109
|
provider: "supabase" | "linear" | "notion";
|
|
3110
3110
|
agent?: {
|
|
3111
3111
|
connection: {
|
|
3112
|
-
connectionId: string;
|
|
3113
3112
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3113
|
+
connectionId: string;
|
|
3114
3114
|
maxAccess: "read_only" | "read_write" | "provider_granted";
|
|
3115
3115
|
revision: number;
|
|
3116
3116
|
} | null;
|
|
@@ -3122,8 +3122,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3122
3122
|
} | undefined;
|
|
3123
3123
|
}, {
|
|
3124
3124
|
organization: {
|
|
3125
|
-
connectionId: string | null;
|
|
3126
3125
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3126
|
+
connectionId: string | null;
|
|
3127
3127
|
maxAccess: "read_only" | "read_write" | "provider_granted" | null;
|
|
3128
3128
|
scopeMode: "account" | "workspace" | "legacy_project" | null;
|
|
3129
3129
|
revision: number | null;
|
|
@@ -3136,8 +3136,8 @@ export declare const mcpProviderAvailabilitySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3136
3136
|
access: "read_only" | "read_write" | "none" | "provider_granted" | "full";
|
|
3137
3137
|
activeRunUsesOlderPolicy: boolean;
|
|
3138
3138
|
connection?: {
|
|
3139
|
-
connectionId: string;
|
|
3140
3139
|
state: "not_connected" | "connecting" | "connected" | "needs_attention" | "disconnected";
|
|
3140
|
+
connectionId: string;
|
|
3141
3141
|
maxAccess: "read_only" | "read_write" | "provider_granted";
|
|
3142
3142
|
revision: number;
|
|
3143
3143
|
} | null | undefined;
|
|
@@ -301,17 +301,17 @@ export declare const portabilityIssueAutomationTriggerManifestEntrySchema: z.Zod
|
|
|
301
301
|
signingMode: z.ZodNullable<z.ZodString>;
|
|
302
302
|
replayWindowSec: z.ZodNullable<z.ZodNumber>;
|
|
303
303
|
}, "strip", z.ZodTypeAny, {
|
|
304
|
+
label: string | null;
|
|
304
305
|
kind: string;
|
|
305
306
|
enabled: boolean;
|
|
306
|
-
label: string | null;
|
|
307
307
|
cronExpression: string | null;
|
|
308
308
|
timezone: string | null;
|
|
309
309
|
signingMode: string | null;
|
|
310
310
|
replayWindowSec: number | null;
|
|
311
311
|
}, {
|
|
312
|
+
label: string | null;
|
|
312
313
|
kind: string;
|
|
313
314
|
enabled: boolean;
|
|
314
|
-
label: string | null;
|
|
315
315
|
cronExpression: string | null;
|
|
316
316
|
timezone: string | null;
|
|
317
317
|
signingMode: string | null;
|
|
@@ -329,17 +329,17 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
329
329
|
signingMode: z.ZodNullable<z.ZodString>;
|
|
330
330
|
replayWindowSec: z.ZodNullable<z.ZodNumber>;
|
|
331
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
|
+
label: string | null;
|
|
332
333
|
kind: string;
|
|
333
334
|
enabled: boolean;
|
|
334
|
-
label: string | null;
|
|
335
335
|
cronExpression: string | null;
|
|
336
336
|
timezone: string | null;
|
|
337
337
|
signingMode: string | null;
|
|
338
338
|
replayWindowSec: number | null;
|
|
339
339
|
}, {
|
|
340
|
+
label: string | null;
|
|
340
341
|
kind: string;
|
|
341
342
|
enabled: boolean;
|
|
342
|
-
label: string | null;
|
|
343
343
|
cronExpression: string | null;
|
|
344
344
|
timezone: string | null;
|
|
345
345
|
signingMode: string | null;
|
|
@@ -349,9 +349,9 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
349
349
|
concurrencyPolicy: string | null;
|
|
350
350
|
catchUpPolicy: string | null;
|
|
351
351
|
triggers: {
|
|
352
|
+
label: string | null;
|
|
352
353
|
kind: string;
|
|
353
354
|
enabled: boolean;
|
|
354
|
-
label: string | null;
|
|
355
355
|
cronExpression: string | null;
|
|
356
356
|
timezone: string | null;
|
|
357
357
|
signingMode: string | null;
|
|
@@ -361,9 +361,9 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
361
361
|
concurrencyPolicy: string | null;
|
|
362
362
|
catchUpPolicy: string | null;
|
|
363
363
|
triggers?: {
|
|
364
|
+
label: string | null;
|
|
364
365
|
kind: string;
|
|
365
366
|
enabled: boolean;
|
|
366
|
-
label: string | null;
|
|
367
367
|
cronExpression: string | null;
|
|
368
368
|
timezone: string | null;
|
|
369
369
|
signingMode: string | null;
|
|
@@ -392,17 +392,17 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
392
392
|
signingMode: z.ZodNullable<z.ZodString>;
|
|
393
393
|
replayWindowSec: z.ZodNullable<z.ZodNumber>;
|
|
394
394
|
}, "strip", z.ZodTypeAny, {
|
|
395
|
+
label: string | null;
|
|
395
396
|
kind: string;
|
|
396
397
|
enabled: boolean;
|
|
397
|
-
label: string | null;
|
|
398
398
|
cronExpression: string | null;
|
|
399
399
|
timezone: string | null;
|
|
400
400
|
signingMode: string | null;
|
|
401
401
|
replayWindowSec: number | null;
|
|
402
402
|
}, {
|
|
403
|
+
label: string | null;
|
|
403
404
|
kind: string;
|
|
404
405
|
enabled: boolean;
|
|
405
|
-
label: string | null;
|
|
406
406
|
cronExpression: string | null;
|
|
407
407
|
timezone: string | null;
|
|
408
408
|
signingMode: string | null;
|
|
@@ -412,9 +412,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
412
412
|
concurrencyPolicy: string | null;
|
|
413
413
|
catchUpPolicy: string | null;
|
|
414
414
|
triggers: {
|
|
415
|
+
label: string | null;
|
|
415
416
|
kind: string;
|
|
416
417
|
enabled: boolean;
|
|
417
|
-
label: string | null;
|
|
418
418
|
cronExpression: string | null;
|
|
419
419
|
timezone: string | null;
|
|
420
420
|
signingMode: string | null;
|
|
@@ -424,9 +424,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
424
424
|
concurrencyPolicy: string | null;
|
|
425
425
|
catchUpPolicy: string | null;
|
|
426
426
|
triggers?: {
|
|
427
|
+
label: string | null;
|
|
427
428
|
kind: string;
|
|
428
429
|
enabled: boolean;
|
|
429
|
-
label: string | null;
|
|
430
430
|
cronExpression: string | null;
|
|
431
431
|
timezone: string | null;
|
|
432
432
|
signingMode: string | null;
|
|
@@ -449,9 +449,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
449
449
|
concurrencyPolicy: string | null;
|
|
450
450
|
catchUpPolicy: string | null;
|
|
451
451
|
triggers: {
|
|
452
|
+
label: string | null;
|
|
452
453
|
kind: string;
|
|
453
454
|
enabled: boolean;
|
|
454
|
-
label: string | null;
|
|
455
455
|
cronExpression: string | null;
|
|
456
456
|
timezone: string | null;
|
|
457
457
|
signingMode: string | null;
|
|
@@ -480,9 +480,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
480
480
|
concurrencyPolicy: string | null;
|
|
481
481
|
catchUpPolicy: string | null;
|
|
482
482
|
triggers?: {
|
|
483
|
+
label: string | null;
|
|
483
484
|
kind: string;
|
|
484
485
|
enabled: boolean;
|
|
485
|
-
label: string | null;
|
|
486
486
|
cronExpression: string | null;
|
|
487
487
|
timezone: string | null;
|
|
488
488
|
signingMode: string | null;
|
|
@@ -794,17 +794,17 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
794
794
|
signingMode: z.ZodNullable<z.ZodString>;
|
|
795
795
|
replayWindowSec: z.ZodNullable<z.ZodNumber>;
|
|
796
796
|
}, "strip", z.ZodTypeAny, {
|
|
797
|
+
label: string | null;
|
|
797
798
|
kind: string;
|
|
798
799
|
enabled: boolean;
|
|
799
|
-
label: string | null;
|
|
800
800
|
cronExpression: string | null;
|
|
801
801
|
timezone: string | null;
|
|
802
802
|
signingMode: string | null;
|
|
803
803
|
replayWindowSec: number | null;
|
|
804
804
|
}, {
|
|
805
|
+
label: string | null;
|
|
805
806
|
kind: string;
|
|
806
807
|
enabled: boolean;
|
|
807
|
-
label: string | null;
|
|
808
808
|
cronExpression: string | null;
|
|
809
809
|
timezone: string | null;
|
|
810
810
|
signingMode: string | null;
|
|
@@ -814,9 +814,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
814
814
|
concurrencyPolicy: string | null;
|
|
815
815
|
catchUpPolicy: string | null;
|
|
816
816
|
triggers: {
|
|
817
|
+
label: string | null;
|
|
817
818
|
kind: string;
|
|
818
819
|
enabled: boolean;
|
|
819
|
-
label: string | null;
|
|
820
820
|
cronExpression: string | null;
|
|
821
821
|
timezone: string | null;
|
|
822
822
|
signingMode: string | null;
|
|
@@ -826,9 +826,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
826
826
|
concurrencyPolicy: string | null;
|
|
827
827
|
catchUpPolicy: string | null;
|
|
828
828
|
triggers?: {
|
|
829
|
+
label: string | null;
|
|
829
830
|
kind: string;
|
|
830
831
|
enabled: boolean;
|
|
831
|
-
label: string | null;
|
|
832
832
|
cronExpression: string | null;
|
|
833
833
|
timezone: string | null;
|
|
834
834
|
signingMode: string | null;
|
|
@@ -851,9 +851,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
851
851
|
concurrencyPolicy: string | null;
|
|
852
852
|
catchUpPolicy: string | null;
|
|
853
853
|
triggers: {
|
|
854
|
+
label: string | null;
|
|
854
855
|
kind: string;
|
|
855
856
|
enabled: boolean;
|
|
856
|
-
label: string | null;
|
|
857
857
|
cronExpression: string | null;
|
|
858
858
|
timezone: string | null;
|
|
859
859
|
signingMode: string | null;
|
|
@@ -882,9 +882,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
882
882
|
concurrencyPolicy: string | null;
|
|
883
883
|
catchUpPolicy: string | null;
|
|
884
884
|
triggers?: {
|
|
885
|
+
label: string | null;
|
|
885
886
|
kind: string;
|
|
886
887
|
enabled: boolean;
|
|
887
|
-
label: string | null;
|
|
888
888
|
cronExpression: string | null;
|
|
889
889
|
timezone: string | null;
|
|
890
890
|
signingMode: string | null;
|
|
@@ -951,9 +951,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
951
951
|
concurrencyPolicy: string | null;
|
|
952
952
|
catchUpPolicy: string | null;
|
|
953
953
|
triggers: {
|
|
954
|
+
label: string | null;
|
|
954
955
|
kind: string;
|
|
955
956
|
enabled: boolean;
|
|
956
|
-
label: string | null;
|
|
957
957
|
cronExpression: string | null;
|
|
958
958
|
timezone: string | null;
|
|
959
959
|
signingMode: string | null;
|
|
@@ -1109,9 +1109,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1109
1109
|
concurrencyPolicy: string | null;
|
|
1110
1110
|
catchUpPolicy: string | null;
|
|
1111
1111
|
triggers?: {
|
|
1112
|
+
label: string | null;
|
|
1112
1113
|
kind: string;
|
|
1113
1114
|
enabled: boolean;
|
|
1114
|
-
label: string | null;
|
|
1115
1115
|
cronExpression: string | null;
|
|
1116
1116
|
timezone: string | null;
|
|
1117
1117
|
signingMode: string | null;
|