@rudderhq/shared 0.4.6-canary.9 → 0.5.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/agent-run.d.ts +3 -0
- package/dist/agent-run.d.ts.map +1 -1
- package/dist/agent-run.js +60 -8
- package/dist/agent-run.js.map +1 -1
- package/dist/agent-run.test.js +74 -1
- package/dist/agent-run.test.js.map +1 -1
- package/dist/browser-shortcuts.d.ts +16 -0
- package/dist/browser-shortcuts.d.ts.map +1 -0
- package/dist/browser-shortcuts.js +49 -0
- package/dist/browser-shortcuts.js.map +1 -0
- package/dist/browser-shortcuts.test.d.ts +2 -0
- package/dist/browser-shortcuts.test.d.ts.map +1 -0
- package/dist/browser-shortcuts.test.js +37 -0
- package/dist/browser-shortcuts.test.js.map +1 -0
- package/dist/chat-inline-visuals.d.ts +35 -0
- package/dist/chat-inline-visuals.d.ts.map +1 -0
- package/dist/chat-inline-visuals.js +167 -0
- package/dist/chat-inline-visuals.js.map +1 -0
- package/dist/chat-inline-visuals.test.d.ts +2 -0
- package/dist/chat-inline-visuals.test.d.ts.map +1 -0
- package/dist/chat-inline-visuals.test.js +112 -0
- package/dist/chat-inline-visuals.test.js.map +1 -0
- package/dist/chat-work-manifest.d.ts +1 -1
- package/dist/chat-work-manifest.d.ts.map +1 -1
- package/dist/chat-work-manifest.js +110 -2
- package/dist/chat-work-manifest.js.map +1 -1
- package/dist/chat-work-manifest.test.js +54 -0
- package/dist/chat-work-manifest.test.js.map +1 -1
- package/dist/constants.d.ts +4 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +2 -0
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +8 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/dist/organization-skill-reference.d.ts +4 -1
- package/dist/organization-skill-reference.d.ts.map +1 -1
- package/dist/organization-skill-reference.js +29 -7
- package/dist/organization-skill-reference.js.map +1 -1
- package/dist/organization-skill-reference.test.js +17 -2
- package/dist/organization-skill-reference.test.js.map +1 -1
- package/dist/types/chat.d.ts +158 -5
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/cost.d.ts +2 -0
- package/dist/types/cost.d.ts.map +1 -1
- package/dist/types/heartbeat.d.ts +10 -0
- package/dist/types/heartbeat.d.ts.map +1 -1
- package/dist/types/index.d.ts +4 -4
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/organization.d.ts +12 -1
- package/dist/types/organization.d.ts.map +1 -1
- package/dist/types/run-intelligence.d.ts +28 -0
- package/dist/types/run-intelligence.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +6 -6
- package/dist/validators/agent.d.ts +12 -12
- package/dist/validators/approval.d.ts +2 -2
- package/dist/validators/automation.d.ts +60 -60
- package/dist/validators/budget.d.ts +4 -4
- package/dist/validators/calendar.d.ts +16 -16
- package/dist/validators/chat.d.ts +213 -72
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +170 -0
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/chat.test.js +71 -1
- package/dist/validators/chat.test.js.map +1 -1
- package/dist/validators/cost.d.ts +4 -4
- package/dist/validators/finance.d.ts +8 -8
- package/dist/validators/goal.d.ts +3 -3
- package/dist/validators/index.d.ts +2 -2
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +2 -2
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/issue.d.ts +20 -20
- package/dist/validators/organization-portability.d.ts +96 -96
- package/dist/validators/organization-skill.d.ts +48 -48
- package/dist/validators/organization.d.ts +15 -0
- package/dist/validators/organization.d.ts.map +1 -1
- package/dist/validators/organization.js +6 -0
- package/dist/validators/organization.js.map +1 -1
- package/dist/validators/plugin.d.ts +2 -2
- package/dist/validators/project.d.ts +19 -19
- package/dist/validators/resource.d.ts +12 -12
- package/dist/validators/work-product.d.ts +12 -12
- package/package.json +1 -1
|
@@ -6,14 +6,14 @@ export declare const portabilityIncludeSchema: z.ZodObject<{
|
|
|
6
6
|
issues: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7
7
|
skills: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
organization?: boolean | undefined;
|
|
10
9
|
issues?: boolean | undefined;
|
|
10
|
+
organization?: boolean | undefined;
|
|
11
11
|
agents?: boolean | undefined;
|
|
12
12
|
projects?: boolean | undefined;
|
|
13
13
|
skills?: boolean | undefined;
|
|
14
14
|
}, {
|
|
15
|
-
organization?: boolean | undefined;
|
|
16
15
|
issues?: boolean | undefined;
|
|
16
|
+
organization?: boolean | undefined;
|
|
17
17
|
agents?: boolean | undefined;
|
|
18
18
|
projects?: boolean | undefined;
|
|
19
19
|
skills?: boolean | undefined;
|
|
@@ -110,9 +110,9 @@ export declare const portabilityAgentManifestEntrySchema: z.ZodObject<{
|
|
|
110
110
|
path: string;
|
|
111
111
|
slug: string;
|
|
112
112
|
name: string;
|
|
113
|
+
metadata: Record<string, unknown> | null;
|
|
113
114
|
agentRuntimeType: string;
|
|
114
115
|
skills: string[];
|
|
115
|
-
metadata: Record<string, unknown> | null;
|
|
116
116
|
agentRuntimeConfig: Record<string, unknown>;
|
|
117
117
|
budgetMonthlyCents: number;
|
|
118
118
|
role: string;
|
|
@@ -126,8 +126,8 @@ export declare const portabilityAgentManifestEntrySchema: z.ZodObject<{
|
|
|
126
126
|
path: string;
|
|
127
127
|
slug: string;
|
|
128
128
|
name: string;
|
|
129
|
-
agentRuntimeType: string;
|
|
130
129
|
metadata: Record<string, unknown> | null;
|
|
130
|
+
agentRuntimeType: string;
|
|
131
131
|
agentRuntimeConfig: Record<string, unknown>;
|
|
132
132
|
budgetMonthlyCents: number;
|
|
133
133
|
role: string;
|
|
@@ -164,8 +164,8 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
164
164
|
slug: string;
|
|
165
165
|
description: string | null;
|
|
166
166
|
name: string;
|
|
167
|
-
key: string;
|
|
168
167
|
metadata: Record<string, unknown> | null;
|
|
168
|
+
key: string;
|
|
169
169
|
sourceType: string;
|
|
170
170
|
sourceLocator: string | null;
|
|
171
171
|
sourceRef: string | null;
|
|
@@ -180,8 +180,8 @@ export declare const portabilitySkillManifestEntrySchema: z.ZodObject<{
|
|
|
180
180
|
slug: string;
|
|
181
181
|
description: string | null;
|
|
182
182
|
name: string;
|
|
183
|
-
key: string;
|
|
184
183
|
metadata: Record<string, unknown> | null;
|
|
184
|
+
key: string;
|
|
185
185
|
sourceType: string;
|
|
186
186
|
sourceLocator: string | null;
|
|
187
187
|
sourceRef: string | null;
|
|
@@ -217,8 +217,8 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
217
217
|
isPrimary: z.ZodBoolean;
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
219
|
name: string;
|
|
220
|
-
key: string;
|
|
221
220
|
metadata: Record<string, unknown> | null;
|
|
221
|
+
key: string;
|
|
222
222
|
sourceType: string | null;
|
|
223
223
|
repoUrl: string | null;
|
|
224
224
|
repoRef: string | null;
|
|
@@ -229,8 +229,8 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
229
229
|
isPrimary: boolean;
|
|
230
230
|
}, {
|
|
231
231
|
name: string;
|
|
232
|
-
key: string;
|
|
233
232
|
metadata: Record<string, unknown> | null;
|
|
233
|
+
key: string;
|
|
234
234
|
sourceType: string | null;
|
|
235
235
|
repoUrl: string | null;
|
|
236
236
|
repoRef: string | null;
|
|
@@ -242,8 +242,8 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
242
242
|
}>, "many">>;
|
|
243
243
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
|
-
color: string | null;
|
|
246
245
|
status: string | null;
|
|
246
|
+
color: string | null;
|
|
247
247
|
path: string;
|
|
248
248
|
slug: string;
|
|
249
249
|
description: string | null;
|
|
@@ -255,8 +255,8 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
255
255
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
256
256
|
workspaces: {
|
|
257
257
|
name: string;
|
|
258
|
-
key: string;
|
|
259
258
|
metadata: Record<string, unknown> | null;
|
|
259
|
+
key: string;
|
|
260
260
|
sourceType: string | null;
|
|
261
261
|
repoUrl: string | null;
|
|
262
262
|
repoRef: string | null;
|
|
@@ -267,8 +267,8 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
267
267
|
isPrimary: boolean;
|
|
268
268
|
}[];
|
|
269
269
|
}, {
|
|
270
|
-
color: string | null;
|
|
271
270
|
status: string | null;
|
|
271
|
+
color: string | null;
|
|
272
272
|
path: string;
|
|
273
273
|
slug: string;
|
|
274
274
|
description: string | null;
|
|
@@ -280,8 +280,8 @@ export declare const portabilityProjectManifestEntrySchema: z.ZodObject<{
|
|
|
280
280
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
281
281
|
workspaces?: {
|
|
282
282
|
name: string;
|
|
283
|
-
key: string;
|
|
284
283
|
metadata: Record<string, unknown> | null;
|
|
284
|
+
key: string;
|
|
285
285
|
sourceType: string | null;
|
|
286
286
|
repoUrl: string | null;
|
|
287
287
|
repoRef: string | null;
|
|
@@ -303,17 +303,17 @@ export declare const portabilityIssueAutomationTriggerManifestEntrySchema: z.Zod
|
|
|
303
303
|
}, "strip", z.ZodTypeAny, {
|
|
304
304
|
kind: string;
|
|
305
305
|
label: string | null;
|
|
306
|
-
enabled: boolean;
|
|
307
306
|
cronExpression: string | null;
|
|
308
307
|
timezone: string | null;
|
|
308
|
+
enabled: boolean;
|
|
309
309
|
signingMode: string | null;
|
|
310
310
|
replayWindowSec: number | null;
|
|
311
311
|
}, {
|
|
312
312
|
kind: string;
|
|
313
313
|
label: string | null;
|
|
314
|
-
enabled: boolean;
|
|
315
314
|
cronExpression: string | null;
|
|
316
315
|
timezone: string | null;
|
|
316
|
+
enabled: boolean;
|
|
317
317
|
signingMode: string | null;
|
|
318
318
|
replayWindowSec: number | null;
|
|
319
319
|
}>;
|
|
@@ -331,17 +331,17 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
331
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
332
|
kind: string;
|
|
333
333
|
label: string | null;
|
|
334
|
-
enabled: boolean;
|
|
335
334
|
cronExpression: string | null;
|
|
336
335
|
timezone: string | null;
|
|
336
|
+
enabled: boolean;
|
|
337
337
|
signingMode: string | null;
|
|
338
338
|
replayWindowSec: number | null;
|
|
339
339
|
}, {
|
|
340
340
|
kind: string;
|
|
341
341
|
label: string | null;
|
|
342
|
-
enabled: boolean;
|
|
343
342
|
cronExpression: string | null;
|
|
344
343
|
timezone: string | null;
|
|
344
|
+
enabled: boolean;
|
|
345
345
|
signingMode: string | null;
|
|
346
346
|
replayWindowSec: number | null;
|
|
347
347
|
}>, "many">>;
|
|
@@ -351,9 +351,9 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
351
351
|
triggers: {
|
|
352
352
|
kind: string;
|
|
353
353
|
label: string | null;
|
|
354
|
-
enabled: boolean;
|
|
355
354
|
cronExpression: string | null;
|
|
356
355
|
timezone: string | null;
|
|
356
|
+
enabled: boolean;
|
|
357
357
|
signingMode: string | null;
|
|
358
358
|
replayWindowSec: number | null;
|
|
359
359
|
}[];
|
|
@@ -363,9 +363,9 @@ export declare const portabilityIssueAutomationManifestEntrySchema: z.ZodObject<
|
|
|
363
363
|
triggers?: {
|
|
364
364
|
kind: string;
|
|
365
365
|
label: string | null;
|
|
366
|
-
enabled: boolean;
|
|
367
366
|
cronExpression: string | null;
|
|
368
367
|
timezone: string | null;
|
|
368
|
+
enabled: boolean;
|
|
369
369
|
signingMode: string | null;
|
|
370
370
|
replayWindowSec: number | null;
|
|
371
371
|
}[] | undefined;
|
|
@@ -394,17 +394,17 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
394
394
|
}, "strip", z.ZodTypeAny, {
|
|
395
395
|
kind: string;
|
|
396
396
|
label: string | null;
|
|
397
|
-
enabled: boolean;
|
|
398
397
|
cronExpression: string | null;
|
|
399
398
|
timezone: string | null;
|
|
399
|
+
enabled: boolean;
|
|
400
400
|
signingMode: string | null;
|
|
401
401
|
replayWindowSec: number | null;
|
|
402
402
|
}, {
|
|
403
403
|
kind: string;
|
|
404
404
|
label: string | null;
|
|
405
|
-
enabled: boolean;
|
|
406
405
|
cronExpression: string | null;
|
|
407
406
|
timezone: string | null;
|
|
407
|
+
enabled: boolean;
|
|
408
408
|
signingMode: string | null;
|
|
409
409
|
replayWindowSec: number | null;
|
|
410
410
|
}>, "many">>;
|
|
@@ -414,9 +414,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
414
414
|
triggers: {
|
|
415
415
|
kind: string;
|
|
416
416
|
label: string | null;
|
|
417
|
-
enabled: boolean;
|
|
418
417
|
cronExpression: string | null;
|
|
419
418
|
timezone: string | null;
|
|
419
|
+
enabled: boolean;
|
|
420
420
|
signingMode: string | null;
|
|
421
421
|
replayWindowSec: number | null;
|
|
422
422
|
}[];
|
|
@@ -426,9 +426,9 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
426
426
|
triggers?: {
|
|
427
427
|
kind: string;
|
|
428
428
|
label: string | null;
|
|
429
|
-
enabled: boolean;
|
|
430
429
|
cronExpression: string | null;
|
|
431
430
|
timezone: string | null;
|
|
431
|
+
enabled: boolean;
|
|
432
432
|
signingMode: string | null;
|
|
433
433
|
replayWindowSec: number | null;
|
|
434
434
|
}[] | undefined;
|
|
@@ -442,8 +442,8 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
442
442
|
assigneeAgentRuntimeOverrides: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
443
443
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
444
444
|
}, "strip", z.ZodTypeAny, {
|
|
445
|
-
title: string;
|
|
446
445
|
status: string | null;
|
|
446
|
+
title: string;
|
|
447
447
|
path: string;
|
|
448
448
|
automation: {
|
|
449
449
|
concurrencyPolicy: string | null;
|
|
@@ -451,30 +451,30 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
451
451
|
triggers: {
|
|
452
452
|
kind: string;
|
|
453
453
|
label: string | null;
|
|
454
|
-
enabled: boolean;
|
|
455
454
|
cronExpression: string | null;
|
|
456
455
|
timezone: string | null;
|
|
456
|
+
enabled: boolean;
|
|
457
457
|
signingMode: string | null;
|
|
458
458
|
replayWindowSec: number | null;
|
|
459
459
|
}[];
|
|
460
460
|
} | null;
|
|
461
461
|
slug: string;
|
|
462
462
|
description: string | null;
|
|
463
|
+
metadata: Record<string, unknown> | null;
|
|
463
464
|
identifier: string | null;
|
|
464
465
|
priority: string | null;
|
|
466
|
+
labelIds: string[];
|
|
465
467
|
billingCode: string | null;
|
|
466
468
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
467
469
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
468
|
-
labelIds: string[];
|
|
469
|
-
metadata: Record<string, unknown> | null;
|
|
470
470
|
projectSlug: string | null;
|
|
471
471
|
projectWorkspaceKey: string | null;
|
|
472
472
|
assigneeAgentSlug: string | null;
|
|
473
473
|
recurring: boolean;
|
|
474
474
|
legacyRecurrence: Record<string, unknown> | null;
|
|
475
475
|
}, {
|
|
476
|
-
title: string;
|
|
477
476
|
status: string | null;
|
|
477
|
+
title: string;
|
|
478
478
|
path: string;
|
|
479
479
|
automation: {
|
|
480
480
|
concurrencyPolicy: string | null;
|
|
@@ -482,21 +482,21 @@ export declare const portabilityIssueManifestEntrySchema: z.ZodObject<{
|
|
|
482
482
|
triggers?: {
|
|
483
483
|
kind: string;
|
|
484
484
|
label: string | null;
|
|
485
|
-
enabled: boolean;
|
|
486
485
|
cronExpression: string | null;
|
|
487
486
|
timezone: string | null;
|
|
487
|
+
enabled: boolean;
|
|
488
488
|
signingMode: string | null;
|
|
489
489
|
replayWindowSec: number | null;
|
|
490
490
|
}[] | undefined;
|
|
491
491
|
} | null;
|
|
492
492
|
slug: string;
|
|
493
493
|
description: string | null;
|
|
494
|
+
metadata: Record<string, unknown> | null;
|
|
494
495
|
identifier: string | null;
|
|
495
496
|
priority: string | null;
|
|
496
497
|
billingCode: string | null;
|
|
497
498
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
498
499
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
499
|
-
metadata: Record<string, unknown> | null;
|
|
500
500
|
projectSlug: string | null;
|
|
501
501
|
projectWorkspaceKey: string | null;
|
|
502
502
|
assigneeAgentSlug: string | null;
|
|
@@ -524,14 +524,14 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
524
524
|
issues: z.ZodBoolean;
|
|
525
525
|
skills: z.ZodBoolean;
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
|
-
organization: boolean;
|
|
528
527
|
issues: boolean;
|
|
528
|
+
organization: boolean;
|
|
529
529
|
agents: boolean;
|
|
530
530
|
projects: boolean;
|
|
531
531
|
skills: boolean;
|
|
532
532
|
}, {
|
|
533
|
-
organization: boolean;
|
|
534
533
|
issues: boolean;
|
|
534
|
+
organization: boolean;
|
|
535
535
|
agents: boolean;
|
|
536
536
|
projects: boolean;
|
|
537
537
|
skills: boolean;
|
|
@@ -590,9 +590,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
590
590
|
path: string;
|
|
591
591
|
slug: string;
|
|
592
592
|
name: string;
|
|
593
|
+
metadata: Record<string, unknown> | null;
|
|
593
594
|
agentRuntimeType: string;
|
|
594
595
|
skills: string[];
|
|
595
|
-
metadata: Record<string, unknown> | null;
|
|
596
596
|
agentRuntimeConfig: Record<string, unknown>;
|
|
597
597
|
budgetMonthlyCents: number;
|
|
598
598
|
role: string;
|
|
@@ -606,8 +606,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
606
606
|
path: string;
|
|
607
607
|
slug: string;
|
|
608
608
|
name: string;
|
|
609
|
-
agentRuntimeType: string;
|
|
610
609
|
metadata: Record<string, unknown> | null;
|
|
610
|
+
agentRuntimeType: string;
|
|
611
611
|
agentRuntimeConfig: Record<string, unknown>;
|
|
612
612
|
budgetMonthlyCents: number;
|
|
613
613
|
role: string;
|
|
@@ -644,8 +644,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
644
644
|
slug: string;
|
|
645
645
|
description: string | null;
|
|
646
646
|
name: string;
|
|
647
|
-
key: string;
|
|
648
647
|
metadata: Record<string, unknown> | null;
|
|
648
|
+
key: string;
|
|
649
649
|
sourceType: string;
|
|
650
650
|
sourceLocator: string | null;
|
|
651
651
|
sourceRef: string | null;
|
|
@@ -660,8 +660,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
660
660
|
slug: string;
|
|
661
661
|
description: string | null;
|
|
662
662
|
name: string;
|
|
663
|
-
key: string;
|
|
664
663
|
metadata: Record<string, unknown> | null;
|
|
664
|
+
key: string;
|
|
665
665
|
sourceType: string;
|
|
666
666
|
sourceLocator: string | null;
|
|
667
667
|
sourceRef: string | null;
|
|
@@ -697,8 +697,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
697
697
|
isPrimary: z.ZodBoolean;
|
|
698
698
|
}, "strip", z.ZodTypeAny, {
|
|
699
699
|
name: string;
|
|
700
|
-
key: string;
|
|
701
700
|
metadata: Record<string, unknown> | null;
|
|
701
|
+
key: string;
|
|
702
702
|
sourceType: string | null;
|
|
703
703
|
repoUrl: string | null;
|
|
704
704
|
repoRef: string | null;
|
|
@@ -709,8 +709,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
709
709
|
isPrimary: boolean;
|
|
710
710
|
}, {
|
|
711
711
|
name: string;
|
|
712
|
-
key: string;
|
|
713
712
|
metadata: Record<string, unknown> | null;
|
|
713
|
+
key: string;
|
|
714
714
|
sourceType: string | null;
|
|
715
715
|
repoUrl: string | null;
|
|
716
716
|
repoRef: string | null;
|
|
@@ -722,8 +722,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
722
722
|
}>, "many">>;
|
|
723
723
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
724
724
|
}, "strip", z.ZodTypeAny, {
|
|
725
|
-
color: string | null;
|
|
726
725
|
status: string | null;
|
|
726
|
+
color: string | null;
|
|
727
727
|
path: string;
|
|
728
728
|
slug: string;
|
|
729
729
|
description: string | null;
|
|
@@ -735,8 +735,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
735
735
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
736
736
|
workspaces: {
|
|
737
737
|
name: string;
|
|
738
|
-
key: string;
|
|
739
738
|
metadata: Record<string, unknown> | null;
|
|
739
|
+
key: string;
|
|
740
740
|
sourceType: string | null;
|
|
741
741
|
repoUrl: string | null;
|
|
742
742
|
repoRef: string | null;
|
|
@@ -747,8 +747,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
747
747
|
isPrimary: boolean;
|
|
748
748
|
}[];
|
|
749
749
|
}, {
|
|
750
|
-
color: string | null;
|
|
751
750
|
status: string | null;
|
|
751
|
+
color: string | null;
|
|
752
752
|
path: string;
|
|
753
753
|
slug: string;
|
|
754
754
|
description: string | null;
|
|
@@ -760,8 +760,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
760
760
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
761
761
|
workspaces?: {
|
|
762
762
|
name: string;
|
|
763
|
-
key: string;
|
|
764
763
|
metadata: Record<string, unknown> | null;
|
|
764
|
+
key: string;
|
|
765
765
|
sourceType: string | null;
|
|
766
766
|
repoUrl: string | null;
|
|
767
767
|
repoRef: string | null;
|
|
@@ -796,17 +796,17 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
796
796
|
}, "strip", z.ZodTypeAny, {
|
|
797
797
|
kind: string;
|
|
798
798
|
label: string | null;
|
|
799
|
-
enabled: boolean;
|
|
800
799
|
cronExpression: string | null;
|
|
801
800
|
timezone: string | null;
|
|
801
|
+
enabled: boolean;
|
|
802
802
|
signingMode: string | null;
|
|
803
803
|
replayWindowSec: number | null;
|
|
804
804
|
}, {
|
|
805
805
|
kind: string;
|
|
806
806
|
label: string | null;
|
|
807
|
-
enabled: boolean;
|
|
808
807
|
cronExpression: string | null;
|
|
809
808
|
timezone: string | null;
|
|
809
|
+
enabled: boolean;
|
|
810
810
|
signingMode: string | null;
|
|
811
811
|
replayWindowSec: number | null;
|
|
812
812
|
}>, "many">>;
|
|
@@ -816,9 +816,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
816
816
|
triggers: {
|
|
817
817
|
kind: string;
|
|
818
818
|
label: string | null;
|
|
819
|
-
enabled: boolean;
|
|
820
819
|
cronExpression: string | null;
|
|
821
820
|
timezone: string | null;
|
|
821
|
+
enabled: boolean;
|
|
822
822
|
signingMode: string | null;
|
|
823
823
|
replayWindowSec: number | null;
|
|
824
824
|
}[];
|
|
@@ -828,9 +828,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
828
828
|
triggers?: {
|
|
829
829
|
kind: string;
|
|
830
830
|
label: string | null;
|
|
831
|
-
enabled: boolean;
|
|
832
831
|
cronExpression: string | null;
|
|
833
832
|
timezone: string | null;
|
|
833
|
+
enabled: boolean;
|
|
834
834
|
signingMode: string | null;
|
|
835
835
|
replayWindowSec: number | null;
|
|
836
836
|
}[] | undefined;
|
|
@@ -844,8 +844,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
844
844
|
assigneeAgentRuntimeOverrides: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
845
845
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
846
846
|
}, "strip", z.ZodTypeAny, {
|
|
847
|
-
title: string;
|
|
848
847
|
status: string | null;
|
|
848
|
+
title: string;
|
|
849
849
|
path: string;
|
|
850
850
|
automation: {
|
|
851
851
|
concurrencyPolicy: string | null;
|
|
@@ -853,30 +853,30 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
853
853
|
triggers: {
|
|
854
854
|
kind: string;
|
|
855
855
|
label: string | null;
|
|
856
|
-
enabled: boolean;
|
|
857
856
|
cronExpression: string | null;
|
|
858
857
|
timezone: string | null;
|
|
858
|
+
enabled: boolean;
|
|
859
859
|
signingMode: string | null;
|
|
860
860
|
replayWindowSec: number | null;
|
|
861
861
|
}[];
|
|
862
862
|
} | null;
|
|
863
863
|
slug: string;
|
|
864
864
|
description: string | null;
|
|
865
|
+
metadata: Record<string, unknown> | null;
|
|
865
866
|
identifier: string | null;
|
|
866
867
|
priority: string | null;
|
|
868
|
+
labelIds: string[];
|
|
867
869
|
billingCode: string | null;
|
|
868
870
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
869
871
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
870
|
-
labelIds: string[];
|
|
871
|
-
metadata: Record<string, unknown> | null;
|
|
872
872
|
projectSlug: string | null;
|
|
873
873
|
projectWorkspaceKey: string | null;
|
|
874
874
|
assigneeAgentSlug: string | null;
|
|
875
875
|
recurring: boolean;
|
|
876
876
|
legacyRecurrence: Record<string, unknown> | null;
|
|
877
877
|
}, {
|
|
878
|
-
title: string;
|
|
879
878
|
status: string | null;
|
|
879
|
+
title: string;
|
|
880
880
|
path: string;
|
|
881
881
|
automation: {
|
|
882
882
|
concurrencyPolicy: string | null;
|
|
@@ -884,21 +884,21 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
884
884
|
triggers?: {
|
|
885
885
|
kind: string;
|
|
886
886
|
label: string | null;
|
|
887
|
-
enabled: boolean;
|
|
888
887
|
cronExpression: string | null;
|
|
889
888
|
timezone: string | null;
|
|
889
|
+
enabled: boolean;
|
|
890
890
|
signingMode: string | null;
|
|
891
891
|
replayWindowSec: number | null;
|
|
892
892
|
}[] | undefined;
|
|
893
893
|
} | null;
|
|
894
894
|
slug: string;
|
|
895
895
|
description: string | null;
|
|
896
|
+
metadata: Record<string, unknown> | null;
|
|
896
897
|
identifier: string | null;
|
|
897
898
|
priority: string | null;
|
|
898
899
|
billingCode: string | null;
|
|
899
900
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
900
901
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
901
|
-
metadata: Record<string, unknown> | null;
|
|
902
902
|
projectSlug: string | null;
|
|
903
903
|
projectWorkspaceKey: string | null;
|
|
904
904
|
assigneeAgentSlug: string | null;
|
|
@@ -932,28 +932,20 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
932
932
|
portability: "portable" | "system_dependent";
|
|
933
933
|
}>, "many">>;
|
|
934
934
|
}, "strip", z.ZodTypeAny, {
|
|
935
|
-
source: {
|
|
936
|
-
orgId: string;
|
|
937
|
-
organizationName: string;
|
|
938
|
-
} | null;
|
|
939
935
|
includes: {
|
|
940
|
-
organization: boolean;
|
|
941
936
|
issues: boolean;
|
|
937
|
+
organization: boolean;
|
|
942
938
|
agents: boolean;
|
|
943
939
|
projects: boolean;
|
|
944
940
|
skills: boolean;
|
|
945
941
|
};
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
name: string;
|
|
950
|
-
brandColor: string | null;
|
|
951
|
-
requireBoardApprovalForNewAgents: boolean;
|
|
952
|
-
logoPath: string | null;
|
|
942
|
+
source: {
|
|
943
|
+
orgId: string;
|
|
944
|
+
organizationName: string;
|
|
953
945
|
} | null;
|
|
954
946
|
issues: {
|
|
955
|
-
title: string;
|
|
956
947
|
status: string | null;
|
|
948
|
+
title: string;
|
|
957
949
|
path: string;
|
|
958
950
|
automation: {
|
|
959
951
|
concurrencyPolicy: string | null;
|
|
@@ -961,28 +953,36 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
961
953
|
triggers: {
|
|
962
954
|
kind: string;
|
|
963
955
|
label: string | null;
|
|
964
|
-
enabled: boolean;
|
|
965
956
|
cronExpression: string | null;
|
|
966
957
|
timezone: string | null;
|
|
958
|
+
enabled: boolean;
|
|
967
959
|
signingMode: string | null;
|
|
968
960
|
replayWindowSec: number | null;
|
|
969
961
|
}[];
|
|
970
962
|
} | null;
|
|
971
963
|
slug: string;
|
|
972
964
|
description: string | null;
|
|
965
|
+
metadata: Record<string, unknown> | null;
|
|
973
966
|
identifier: string | null;
|
|
974
967
|
priority: string | null;
|
|
968
|
+
labelIds: string[];
|
|
975
969
|
billingCode: string | null;
|
|
976
970
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
977
971
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
978
|
-
labelIds: string[];
|
|
979
|
-
metadata: Record<string, unknown> | null;
|
|
980
972
|
projectSlug: string | null;
|
|
981
973
|
projectWorkspaceKey: string | null;
|
|
982
974
|
assigneeAgentSlug: string | null;
|
|
983
975
|
recurring: boolean;
|
|
984
976
|
legacyRecurrence: Record<string, unknown> | null;
|
|
985
977
|
}[];
|
|
978
|
+
organization: {
|
|
979
|
+
path: string;
|
|
980
|
+
description: string | null;
|
|
981
|
+
name: string;
|
|
982
|
+
brandColor: string | null;
|
|
983
|
+
requireBoardApprovalForNewAgents: boolean;
|
|
984
|
+
logoPath: string | null;
|
|
985
|
+
} | null;
|
|
986
986
|
sidebar: {
|
|
987
987
|
agents: string[];
|
|
988
988
|
projects: string[];
|
|
@@ -993,9 +993,9 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
993
993
|
path: string;
|
|
994
994
|
slug: string;
|
|
995
995
|
name: string;
|
|
996
|
+
metadata: Record<string, unknown> | null;
|
|
996
997
|
agentRuntimeType: string;
|
|
997
998
|
skills: string[];
|
|
998
|
-
metadata: Record<string, unknown> | null;
|
|
999
999
|
agentRuntimeConfig: Record<string, unknown>;
|
|
1000
1000
|
budgetMonthlyCents: number;
|
|
1001
1001
|
role: string;
|
|
@@ -1005,8 +1005,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1005
1005
|
permissions: Record<string, unknown>;
|
|
1006
1006
|
}[];
|
|
1007
1007
|
projects: {
|
|
1008
|
-
color: string | null;
|
|
1009
1008
|
status: string | null;
|
|
1009
|
+
color: string | null;
|
|
1010
1010
|
path: string;
|
|
1011
1011
|
slug: string;
|
|
1012
1012
|
description: string | null;
|
|
@@ -1018,8 +1018,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1018
1018
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1019
1019
|
workspaces: {
|
|
1020
1020
|
name: string;
|
|
1021
|
-
key: string;
|
|
1022
1021
|
metadata: Record<string, unknown> | null;
|
|
1022
|
+
key: string;
|
|
1023
1023
|
sourceType: string | null;
|
|
1024
1024
|
repoUrl: string | null;
|
|
1025
1025
|
repoRef: string | null;
|
|
@@ -1035,8 +1035,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1035
1035
|
slug: string;
|
|
1036
1036
|
description: string | null;
|
|
1037
1037
|
name: string;
|
|
1038
|
-
key: string;
|
|
1039
1038
|
metadata: Record<string, unknown> | null;
|
|
1039
|
+
key: string;
|
|
1040
1040
|
sourceType: string;
|
|
1041
1041
|
sourceLocator: string | null;
|
|
1042
1042
|
sourceRef: string | null;
|
|
@@ -1059,17 +1059,17 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1059
1059
|
portability: "portable" | "system_dependent";
|
|
1060
1060
|
}[];
|
|
1061
1061
|
}, {
|
|
1062
|
-
source: {
|
|
1063
|
-
orgId: string;
|
|
1064
|
-
organizationName: string;
|
|
1065
|
-
} | null;
|
|
1066
1062
|
includes: {
|
|
1067
|
-
organization: boolean;
|
|
1068
1063
|
issues: boolean;
|
|
1064
|
+
organization: boolean;
|
|
1069
1065
|
agents: boolean;
|
|
1070
1066
|
projects: boolean;
|
|
1071
1067
|
skills: boolean;
|
|
1072
1068
|
};
|
|
1069
|
+
source: {
|
|
1070
|
+
orgId: string;
|
|
1071
|
+
organizationName: string;
|
|
1072
|
+
} | null;
|
|
1073
1073
|
organization: {
|
|
1074
1074
|
path: string;
|
|
1075
1075
|
description: string | null;
|
|
@@ -1088,8 +1088,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1088
1088
|
path: string;
|
|
1089
1089
|
slug: string;
|
|
1090
1090
|
name: string;
|
|
1091
|
-
agentRuntimeType: string;
|
|
1092
1091
|
metadata: Record<string, unknown> | null;
|
|
1092
|
+
agentRuntimeType: string;
|
|
1093
1093
|
agentRuntimeConfig: Record<string, unknown>;
|
|
1094
1094
|
budgetMonthlyCents: number;
|
|
1095
1095
|
role: string;
|
|
@@ -1102,8 +1102,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1102
1102
|
schemaVersion: number;
|
|
1103
1103
|
generatedAt: string;
|
|
1104
1104
|
issues?: {
|
|
1105
|
-
title: string;
|
|
1106
1105
|
status: string | null;
|
|
1106
|
+
title: string;
|
|
1107
1107
|
path: string;
|
|
1108
1108
|
automation: {
|
|
1109
1109
|
concurrencyPolicy: string | null;
|
|
@@ -1111,21 +1111,21 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1111
1111
|
triggers?: {
|
|
1112
1112
|
kind: string;
|
|
1113
1113
|
label: string | null;
|
|
1114
|
-
enabled: boolean;
|
|
1115
1114
|
cronExpression: string | null;
|
|
1116
1115
|
timezone: string | null;
|
|
1116
|
+
enabled: boolean;
|
|
1117
1117
|
signingMode: string | null;
|
|
1118
1118
|
replayWindowSec: number | null;
|
|
1119
1119
|
}[] | undefined;
|
|
1120
1120
|
} | null;
|
|
1121
1121
|
slug: string;
|
|
1122
1122
|
description: string | null;
|
|
1123
|
+
metadata: Record<string, unknown> | null;
|
|
1123
1124
|
identifier: string | null;
|
|
1124
1125
|
priority: string | null;
|
|
1125
1126
|
billingCode: string | null;
|
|
1126
1127
|
assigneeAgentRuntimeOverrides: Record<string, unknown> | null;
|
|
1127
1128
|
executionWorkspaceSettings: Record<string, unknown> | null;
|
|
1128
|
-
metadata: Record<string, unknown> | null;
|
|
1129
1129
|
projectSlug: string | null;
|
|
1130
1130
|
projectWorkspaceKey: string | null;
|
|
1131
1131
|
assigneeAgentSlug: string | null;
|
|
@@ -1134,8 +1134,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1134
1134
|
recurring?: boolean | undefined;
|
|
1135
1135
|
}[] | undefined;
|
|
1136
1136
|
projects?: {
|
|
1137
|
-
color: string | null;
|
|
1138
1137
|
status: string | null;
|
|
1138
|
+
color: string | null;
|
|
1139
1139
|
path: string;
|
|
1140
1140
|
slug: string;
|
|
1141
1141
|
description: string | null;
|
|
@@ -1147,8 +1147,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1147
1147
|
executionWorkspacePolicy: Record<string, unknown> | null;
|
|
1148
1148
|
workspaces?: {
|
|
1149
1149
|
name: string;
|
|
1150
|
-
key: string;
|
|
1151
1150
|
metadata: Record<string, unknown> | null;
|
|
1151
|
+
key: string;
|
|
1152
1152
|
sourceType: string | null;
|
|
1153
1153
|
repoUrl: string | null;
|
|
1154
1154
|
repoRef: string | null;
|
|
@@ -1164,8 +1164,8 @@ export declare const portabilityManifestSchema: z.ZodObject<{
|
|
|
1164
1164
|
slug: string;
|
|
1165
1165
|
description: string | null;
|
|
1166
1166
|
name: string;
|
|
1167
|
-
key: string;
|
|
1168
1167
|
metadata: Record<string, unknown> | null;
|
|
1168
|
+
key: string;
|
|
1169
1169
|
sourceType: string;
|
|
1170
1170
|
sourceLocator: string | null;
|
|
1171
1171
|
sourceRef: string | null;
|
|
@@ -1260,14 +1260,14 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
|
|
|
1260
1260
|
issues: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1261
1261
|
skills: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1262
1262
|
}, "strip", z.ZodTypeAny, {
|
|
1263
|
-
organization?: boolean | undefined;
|
|
1264
1263
|
issues?: boolean | undefined;
|
|
1264
|
+
organization?: boolean | undefined;
|
|
1265
1265
|
agents?: boolean | undefined;
|
|
1266
1266
|
projects?: boolean | undefined;
|
|
1267
1267
|
skills?: boolean | undefined;
|
|
1268
1268
|
}, {
|
|
1269
|
-
organization?: boolean | undefined;
|
|
1270
1269
|
issues?: boolean | undefined;
|
|
1270
|
+
organization?: boolean | undefined;
|
|
1271
1271
|
agents?: boolean | undefined;
|
|
1272
1272
|
projects?: boolean | undefined;
|
|
1273
1273
|
skills?: boolean | undefined;
|
|
@@ -1295,8 +1295,8 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
|
|
|
1295
1295
|
projects?: string[] | undefined;
|
|
1296
1296
|
skills?: string[] | undefined;
|
|
1297
1297
|
include?: {
|
|
1298
|
-
organization?: boolean | undefined;
|
|
1299
1298
|
issues?: boolean | undefined;
|
|
1299
|
+
organization?: boolean | undefined;
|
|
1300
1300
|
agents?: boolean | undefined;
|
|
1301
1301
|
projects?: boolean | undefined;
|
|
1302
1302
|
skills?: boolean | undefined;
|
|
@@ -1314,8 +1314,8 @@ export declare const organizationPortabilityExportSchema: z.ZodObject<{
|
|
|
1314
1314
|
projects?: string[] | undefined;
|
|
1315
1315
|
skills?: string[] | undefined;
|
|
1316
1316
|
include?: {
|
|
1317
|
-
organization?: boolean | undefined;
|
|
1318
1317
|
issues?: boolean | undefined;
|
|
1318
|
+
organization?: boolean | undefined;
|
|
1319
1319
|
agents?: boolean | undefined;
|
|
1320
1320
|
projects?: boolean | undefined;
|
|
1321
1321
|
skills?: boolean | undefined;
|
|
@@ -1379,14 +1379,14 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1379
1379
|
issues: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1380
1380
|
skills: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1381
1381
|
}, "strip", z.ZodTypeAny, {
|
|
1382
|
-
organization?: boolean | undefined;
|
|
1383
1382
|
issues?: boolean | undefined;
|
|
1383
|
+
organization?: boolean | undefined;
|
|
1384
1384
|
agents?: boolean | undefined;
|
|
1385
1385
|
projects?: boolean | undefined;
|
|
1386
1386
|
skills?: boolean | undefined;
|
|
1387
1387
|
}, {
|
|
1388
|
-
organization?: boolean | undefined;
|
|
1389
1388
|
issues?: boolean | undefined;
|
|
1389
|
+
organization?: boolean | undefined;
|
|
1390
1390
|
agents?: boolean | undefined;
|
|
1391
1391
|
projects?: boolean | undefined;
|
|
1392
1392
|
skills?: boolean | undefined;
|
|
@@ -1440,8 +1440,8 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1440
1440
|
};
|
|
1441
1441
|
agents?: string[] | "all" | undefined;
|
|
1442
1442
|
include?: {
|
|
1443
|
-
organization?: boolean | undefined;
|
|
1444
1443
|
issues?: boolean | undefined;
|
|
1444
|
+
organization?: boolean | undefined;
|
|
1445
1445
|
agents?: boolean | undefined;
|
|
1446
1446
|
projects?: boolean | undefined;
|
|
1447
1447
|
skills?: boolean | undefined;
|
|
@@ -1472,8 +1472,8 @@ export declare const organizationPortabilityPreviewSchema: z.ZodObject<{
|
|
|
1472
1472
|
};
|
|
1473
1473
|
agents?: string[] | "all" | undefined;
|
|
1474
1474
|
include?: {
|
|
1475
|
-
organization?: boolean | undefined;
|
|
1476
1475
|
issues?: boolean | undefined;
|
|
1476
|
+
organization?: boolean | undefined;
|
|
1477
1477
|
agents?: boolean | undefined;
|
|
1478
1478
|
projects?: boolean | undefined;
|
|
1479
1479
|
skills?: boolean | undefined;
|
|
@@ -1543,14 +1543,14 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1543
1543
|
issues: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1544
1544
|
skills: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1545
1545
|
}, "strip", z.ZodTypeAny, {
|
|
1546
|
-
organization?: boolean | undefined;
|
|
1547
1546
|
issues?: boolean | undefined;
|
|
1547
|
+
organization?: boolean | undefined;
|
|
1548
1548
|
agents?: boolean | undefined;
|
|
1549
1549
|
projects?: boolean | undefined;
|
|
1550
1550
|
skills?: boolean | undefined;
|
|
1551
1551
|
}, {
|
|
1552
|
-
organization?: boolean | undefined;
|
|
1553
1552
|
issues?: boolean | undefined;
|
|
1553
|
+
organization?: boolean | undefined;
|
|
1554
1554
|
agents?: boolean | undefined;
|
|
1555
1555
|
projects?: boolean | undefined;
|
|
1556
1556
|
skills?: boolean | undefined;
|
|
@@ -1615,8 +1615,8 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1615
1615
|
};
|
|
1616
1616
|
agents?: string[] | "all" | undefined;
|
|
1617
1617
|
include?: {
|
|
1618
|
-
organization?: boolean | undefined;
|
|
1619
1618
|
issues?: boolean | undefined;
|
|
1619
|
+
organization?: boolean | undefined;
|
|
1620
1620
|
agents?: boolean | undefined;
|
|
1621
1621
|
projects?: boolean | undefined;
|
|
1622
1622
|
skills?: boolean | undefined;
|
|
@@ -1651,8 +1651,8 @@ export declare const organizationPortabilityImportSchema: z.ZodObject<{
|
|
|
1651
1651
|
};
|
|
1652
1652
|
agents?: string[] | "all" | undefined;
|
|
1653
1653
|
include?: {
|
|
1654
|
-
organization?: boolean | undefined;
|
|
1655
1654
|
issues?: boolean | undefined;
|
|
1655
|
+
organization?: boolean | undefined;
|
|
1656
1656
|
agents?: boolean | undefined;
|
|
1657
1657
|
projects?: boolean | undefined;
|
|
1658
1658
|
skills?: boolean | undefined;
|