@bubblelab/bubble-core 0.1.231 → 0.1.233
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/bubble-bundle.d.ts +10 -10
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/slack/slack.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.js +9 -2
- package/dist/bubbles/service-bubble/slack/slack.js.map +1 -1
- package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +371 -0
- package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/zendesk/zendesk.js +80 -0
- package/dist/bubbles/service-bubble/zendesk/zendesk.js.map +1 -1
- package/dist/bubbles/service-bubble/zendesk/zendesk.schema.d.ts +368 -0
- package/dist/bubbles/service-bubble/zendesk/zendesk.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/zendesk/zendesk.schema.js +163 -0
- package/dist/bubbles/service-bubble/zendesk/zendesk.schema.js.map +1 -1
- package/dist/bubbles.json +594 -2
- package/package.json +2 -2
|
@@ -72,6 +72,16 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
72
72
|
priority: import("zod").ZodOptional<import("zod").ZodEnum<["urgent", "high", "normal", "low"]>>;
|
|
73
73
|
type: import("zod").ZodOptional<import("zod").ZodEnum<["problem", "incident", "question", "task"]>>;
|
|
74
74
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
75
|
+
custom_fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
76
|
+
id: import("zod").ZodNumber;
|
|
77
|
+
value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodNull]>;
|
|
78
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
79
|
+
value: string | number | boolean | string[] | null;
|
|
80
|
+
id: number;
|
|
81
|
+
}, {
|
|
82
|
+
value: string | number | boolean | string[] | null;
|
|
83
|
+
id: number;
|
|
84
|
+
}>, "many">>;
|
|
75
85
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
76
86
|
}, "strip", import("zod").ZodTypeAny, {
|
|
77
87
|
operation: "create_ticket";
|
|
@@ -81,6 +91,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
81
91
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
82
92
|
priority?: "low" | "high" | "urgent" | "normal" | undefined;
|
|
83
93
|
tags?: string[] | undefined;
|
|
94
|
+
custom_fields?: {
|
|
95
|
+
value: string | number | boolean | string[] | null;
|
|
96
|
+
id: number;
|
|
97
|
+
}[] | undefined;
|
|
84
98
|
requester_email?: string | undefined;
|
|
85
99
|
requester_name?: string | undefined;
|
|
86
100
|
assignee_id?: number | undefined;
|
|
@@ -92,6 +106,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
92
106
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
93
107
|
priority?: "low" | "high" | "urgent" | "normal" | undefined;
|
|
94
108
|
tags?: string[] | undefined;
|
|
109
|
+
custom_fields?: {
|
|
110
|
+
value: string | number | boolean | string[] | null;
|
|
111
|
+
id: number;
|
|
112
|
+
}[] | undefined;
|
|
95
113
|
requester_email?: string | undefined;
|
|
96
114
|
requester_name?: string | undefined;
|
|
97
115
|
assignee_id?: number | undefined;
|
|
@@ -104,6 +122,16 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
104
122
|
priority: import("zod").ZodOptional<import("zod").ZodEnum<["urgent", "high", "normal", "low"]>>;
|
|
105
123
|
assignee_id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
106
124
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
125
|
+
custom_fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
126
|
+
id: import("zod").ZodNumber;
|
|
127
|
+
value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodNull]>;
|
|
128
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
129
|
+
value: string | number | boolean | string[] | null;
|
|
130
|
+
id: number;
|
|
131
|
+
}, {
|
|
132
|
+
value: string | number | boolean | string[] | null;
|
|
133
|
+
id: number;
|
|
134
|
+
}>, "many">>;
|
|
107
135
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
108
136
|
}, "strip", import("zod").ZodTypeAny, {
|
|
109
137
|
operation: "update_ticket";
|
|
@@ -114,6 +142,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
114
142
|
priority?: "low" | "high" | "urgent" | "normal" | undefined;
|
|
115
143
|
tags?: string[] | undefined;
|
|
116
144
|
comment?: string | undefined;
|
|
145
|
+
custom_fields?: {
|
|
146
|
+
value: string | number | boolean | string[] | null;
|
|
147
|
+
id: number;
|
|
148
|
+
}[] | undefined;
|
|
117
149
|
assignee_id?: number | undefined;
|
|
118
150
|
}, {
|
|
119
151
|
operation: "update_ticket";
|
|
@@ -124,6 +156,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
124
156
|
tags?: string[] | undefined;
|
|
125
157
|
public?: boolean | undefined;
|
|
126
158
|
comment?: string | undefined;
|
|
159
|
+
custom_fields?: {
|
|
160
|
+
value: string | number | boolean | string[] | null;
|
|
161
|
+
id: number;
|
|
162
|
+
}[] | undefined;
|
|
127
163
|
assignee_id?: number | undefined;
|
|
128
164
|
}>, import("zod").ZodObject<{
|
|
129
165
|
operation: import("zod").ZodLiteral<"list_ticket_comments">;
|
|
@@ -275,6 +311,75 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
275
311
|
article_id: string;
|
|
276
312
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
277
313
|
locale?: string | undefined;
|
|
314
|
+
}>, import("zod").ZodObject<{
|
|
315
|
+
operation: import("zod").ZodLiteral<"list_ticket_fields">;
|
|
316
|
+
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
317
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
318
|
+
operation: "list_ticket_fields";
|
|
319
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
320
|
+
}, {
|
|
321
|
+
operation: "list_ticket_fields";
|
|
322
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
323
|
+
}>, import("zod").ZodObject<{
|
|
324
|
+
operation: import("zod").ZodLiteral<"create_ticket_field">;
|
|
325
|
+
type: import("zod").ZodEnum<["text", "textarea", "checkbox", "date", "integer", "decimal", "regexp", "partialcreditcard", "multiselect", "tagger", "lookup"]>;
|
|
326
|
+
title: import("zod").ZodString;
|
|
327
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
328
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
329
|
+
active: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
330
|
+
custom_field_options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
331
|
+
name: import("zod").ZodString;
|
|
332
|
+
value: import("zod").ZodString;
|
|
333
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
334
|
+
value: string;
|
|
335
|
+
name: string;
|
|
336
|
+
}, {
|
|
337
|
+
value: string;
|
|
338
|
+
name: string;
|
|
339
|
+
}>, "many">>;
|
|
340
|
+
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
341
|
+
regexp_for_validation: import("zod").ZodOptional<import("zod").ZodString>;
|
|
342
|
+
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
343
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
344
|
+
type: "integer" | "date" | "text" | "checkbox" | "lookup" | "textarea" | "decimal" | "regexp" | "partialcreditcard" | "multiselect" | "tagger";
|
|
345
|
+
title: string;
|
|
346
|
+
operation: "create_ticket_field";
|
|
347
|
+
active: boolean;
|
|
348
|
+
description?: string | undefined;
|
|
349
|
+
required?: boolean | undefined;
|
|
350
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
351
|
+
custom_field_options?: {
|
|
352
|
+
value: string;
|
|
353
|
+
name: string;
|
|
354
|
+
}[] | undefined;
|
|
355
|
+
tag?: string | undefined;
|
|
356
|
+
regexp_for_validation?: string | undefined;
|
|
357
|
+
}, {
|
|
358
|
+
type: "integer" | "date" | "text" | "checkbox" | "lookup" | "textarea" | "decimal" | "regexp" | "partialcreditcard" | "multiselect" | "tagger";
|
|
359
|
+
title: string;
|
|
360
|
+
operation: "create_ticket_field";
|
|
361
|
+
description?: string | undefined;
|
|
362
|
+
required?: boolean | undefined;
|
|
363
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
364
|
+
active?: boolean | undefined;
|
|
365
|
+
custom_field_options?: {
|
|
366
|
+
value: string;
|
|
367
|
+
name: string;
|
|
368
|
+
}[] | undefined;
|
|
369
|
+
tag?: string | undefined;
|
|
370
|
+
regexp_for_validation?: string | undefined;
|
|
371
|
+
}>, import("zod").ZodObject<{
|
|
372
|
+
operation: import("zod").ZodLiteral<"delete_ticket_field">;
|
|
373
|
+
ticket_field_id: import("zod").ZodString;
|
|
374
|
+
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
375
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
376
|
+
operation: "delete_ticket_field";
|
|
377
|
+
ticket_field_id: string;
|
|
378
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
379
|
+
}, {
|
|
380
|
+
operation: "delete_ticket_field";
|
|
381
|
+
ticket_field_id: string;
|
|
382
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
278
383
|
}>]>;
|
|
279
384
|
static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{
|
|
280
385
|
operation: import("zod").ZodLiteral<"list_tickets">;
|
|
@@ -290,6 +395,16 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
290
395
|
assignee_id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
291
396
|
organization_id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
292
397
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
398
|
+
custom_fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
399
|
+
id: import("zod").ZodNumber;
|
|
400
|
+
value: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodNull]>>;
|
|
401
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
402
|
+
value: string | number | boolean | string[] | null;
|
|
403
|
+
id: number;
|
|
404
|
+
}, {
|
|
405
|
+
value: string | number | boolean | string[] | null;
|
|
406
|
+
id: number;
|
|
407
|
+
}>, "many">>;
|
|
293
408
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
294
409
|
updated_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
295
410
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -302,6 +417,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
302
417
|
subject?: string | undefined;
|
|
303
418
|
created_at?: string | undefined;
|
|
304
419
|
updated_at?: string | undefined;
|
|
420
|
+
custom_fields?: {
|
|
421
|
+
value: string | number | boolean | string[] | null;
|
|
422
|
+
id: number;
|
|
423
|
+
}[] | undefined;
|
|
305
424
|
assignee_id?: number | null | undefined;
|
|
306
425
|
organization_id?: number | null | undefined;
|
|
307
426
|
requester_id?: number | undefined;
|
|
@@ -315,6 +434,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
315
434
|
subject?: string | undefined;
|
|
316
435
|
created_at?: string | undefined;
|
|
317
436
|
updated_at?: string | undefined;
|
|
437
|
+
custom_fields?: {
|
|
438
|
+
value: string | number | boolean | string[] | null;
|
|
439
|
+
id: number;
|
|
440
|
+
}[] | undefined;
|
|
318
441
|
assignee_id?: number | null | undefined;
|
|
319
442
|
organization_id?: number | null | undefined;
|
|
320
443
|
requester_id?: number | undefined;
|
|
@@ -337,6 +460,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
337
460
|
subject?: string | undefined;
|
|
338
461
|
created_at?: string | undefined;
|
|
339
462
|
updated_at?: string | undefined;
|
|
463
|
+
custom_fields?: {
|
|
464
|
+
value: string | number | boolean | string[] | null;
|
|
465
|
+
id: number;
|
|
466
|
+
}[] | undefined;
|
|
340
467
|
assignee_id?: number | null | undefined;
|
|
341
468
|
organization_id?: number | null | undefined;
|
|
342
469
|
requester_id?: number | undefined;
|
|
@@ -357,6 +484,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
357
484
|
subject?: string | undefined;
|
|
358
485
|
created_at?: string | undefined;
|
|
359
486
|
updated_at?: string | undefined;
|
|
487
|
+
custom_fields?: {
|
|
488
|
+
value: string | number | boolean | string[] | null;
|
|
489
|
+
id: number;
|
|
490
|
+
}[] | undefined;
|
|
360
491
|
assignee_id?: number | null | undefined;
|
|
361
492
|
organization_id?: number | null | undefined;
|
|
362
493
|
requester_id?: number | undefined;
|
|
@@ -376,6 +507,16 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
376
507
|
assignee_id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
377
508
|
organization_id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
378
509
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
510
|
+
custom_fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
511
|
+
id: import("zod").ZodNumber;
|
|
512
|
+
value: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodNull]>>;
|
|
513
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
514
|
+
value: string | number | boolean | string[] | null;
|
|
515
|
+
id: number;
|
|
516
|
+
}, {
|
|
517
|
+
value: string | number | boolean | string[] | null;
|
|
518
|
+
id: number;
|
|
519
|
+
}>, "many">>;
|
|
379
520
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
380
521
|
updated_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
381
522
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -388,6 +529,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
388
529
|
subject?: string | undefined;
|
|
389
530
|
created_at?: string | undefined;
|
|
390
531
|
updated_at?: string | undefined;
|
|
532
|
+
custom_fields?: {
|
|
533
|
+
value: string | number | boolean | string[] | null;
|
|
534
|
+
id: number;
|
|
535
|
+
}[] | undefined;
|
|
391
536
|
assignee_id?: number | null | undefined;
|
|
392
537
|
organization_id?: number | null | undefined;
|
|
393
538
|
requester_id?: number | undefined;
|
|
@@ -401,6 +546,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
401
546
|
subject?: string | undefined;
|
|
402
547
|
created_at?: string | undefined;
|
|
403
548
|
updated_at?: string | undefined;
|
|
549
|
+
custom_fields?: {
|
|
550
|
+
value: string | number | boolean | string[] | null;
|
|
551
|
+
id: number;
|
|
552
|
+
}[] | undefined;
|
|
404
553
|
assignee_id?: number | null | undefined;
|
|
405
554
|
organization_id?: number | null | undefined;
|
|
406
555
|
requester_id?: number | undefined;
|
|
@@ -420,6 +569,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
420
569
|
subject?: string | undefined;
|
|
421
570
|
created_at?: string | undefined;
|
|
422
571
|
updated_at?: string | undefined;
|
|
572
|
+
custom_fields?: {
|
|
573
|
+
value: string | number | boolean | string[] | null;
|
|
574
|
+
id: number;
|
|
575
|
+
}[] | undefined;
|
|
423
576
|
assignee_id?: number | null | undefined;
|
|
424
577
|
organization_id?: number | null | undefined;
|
|
425
578
|
requester_id?: number | undefined;
|
|
@@ -438,6 +591,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
438
591
|
subject?: string | undefined;
|
|
439
592
|
created_at?: string | undefined;
|
|
440
593
|
updated_at?: string | undefined;
|
|
594
|
+
custom_fields?: {
|
|
595
|
+
value: string | number | boolean | string[] | null;
|
|
596
|
+
id: number;
|
|
597
|
+
}[] | undefined;
|
|
441
598
|
assignee_id?: number | null | undefined;
|
|
442
599
|
organization_id?: number | null | undefined;
|
|
443
600
|
requester_id?: number | undefined;
|
|
@@ -456,6 +613,16 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
456
613
|
assignee_id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
457
614
|
organization_id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
458
615
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
616
|
+
custom_fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
617
|
+
id: import("zod").ZodNumber;
|
|
618
|
+
value: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodNull]>>;
|
|
619
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
620
|
+
value: string | number | boolean | string[] | null;
|
|
621
|
+
id: number;
|
|
622
|
+
}, {
|
|
623
|
+
value: string | number | boolean | string[] | null;
|
|
624
|
+
id: number;
|
|
625
|
+
}>, "many">>;
|
|
459
626
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
460
627
|
updated_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
461
628
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -468,6 +635,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
468
635
|
subject?: string | undefined;
|
|
469
636
|
created_at?: string | undefined;
|
|
470
637
|
updated_at?: string | undefined;
|
|
638
|
+
custom_fields?: {
|
|
639
|
+
value: string | number | boolean | string[] | null;
|
|
640
|
+
id: number;
|
|
641
|
+
}[] | undefined;
|
|
471
642
|
assignee_id?: number | null | undefined;
|
|
472
643
|
organization_id?: number | null | undefined;
|
|
473
644
|
requester_id?: number | undefined;
|
|
@@ -481,6 +652,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
481
652
|
subject?: string | undefined;
|
|
482
653
|
created_at?: string | undefined;
|
|
483
654
|
updated_at?: string | undefined;
|
|
655
|
+
custom_fields?: {
|
|
656
|
+
value: string | number | boolean | string[] | null;
|
|
657
|
+
id: number;
|
|
658
|
+
}[] | undefined;
|
|
484
659
|
assignee_id?: number | null | undefined;
|
|
485
660
|
organization_id?: number | null | undefined;
|
|
486
661
|
requester_id?: number | undefined;
|
|
@@ -500,6 +675,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
500
675
|
subject?: string | undefined;
|
|
501
676
|
created_at?: string | undefined;
|
|
502
677
|
updated_at?: string | undefined;
|
|
678
|
+
custom_fields?: {
|
|
679
|
+
value: string | number | boolean | string[] | null;
|
|
680
|
+
id: number;
|
|
681
|
+
}[] | undefined;
|
|
503
682
|
assignee_id?: number | null | undefined;
|
|
504
683
|
organization_id?: number | null | undefined;
|
|
505
684
|
requester_id?: number | undefined;
|
|
@@ -518,6 +697,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
518
697
|
subject?: string | undefined;
|
|
519
698
|
created_at?: string | undefined;
|
|
520
699
|
updated_at?: string | undefined;
|
|
700
|
+
custom_fields?: {
|
|
701
|
+
value: string | number | boolean | string[] | null;
|
|
702
|
+
id: number;
|
|
703
|
+
}[] | undefined;
|
|
521
704
|
assignee_id?: number | null | undefined;
|
|
522
705
|
organization_id?: number | null | undefined;
|
|
523
706
|
requester_id?: number | undefined;
|
|
@@ -536,6 +719,16 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
536
719
|
assignee_id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
537
720
|
organization_id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
538
721
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
722
|
+
custom_fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
723
|
+
id: import("zod").ZodNumber;
|
|
724
|
+
value: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodNull]>>;
|
|
725
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
726
|
+
value: string | number | boolean | string[] | null;
|
|
727
|
+
id: number;
|
|
728
|
+
}, {
|
|
729
|
+
value: string | number | boolean | string[] | null;
|
|
730
|
+
id: number;
|
|
731
|
+
}>, "many">>;
|
|
539
732
|
created_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
540
733
|
updated_at: import("zod").ZodOptional<import("zod").ZodString>;
|
|
541
734
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -548,6 +741,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
548
741
|
subject?: string | undefined;
|
|
549
742
|
created_at?: string | undefined;
|
|
550
743
|
updated_at?: string | undefined;
|
|
744
|
+
custom_fields?: {
|
|
745
|
+
value: string | number | boolean | string[] | null;
|
|
746
|
+
id: number;
|
|
747
|
+
}[] | undefined;
|
|
551
748
|
assignee_id?: number | null | undefined;
|
|
552
749
|
organization_id?: number | null | undefined;
|
|
553
750
|
requester_id?: number | undefined;
|
|
@@ -561,6 +758,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
561
758
|
subject?: string | undefined;
|
|
562
759
|
created_at?: string | undefined;
|
|
563
760
|
updated_at?: string | undefined;
|
|
761
|
+
custom_fields?: {
|
|
762
|
+
value: string | number | boolean | string[] | null;
|
|
763
|
+
id: number;
|
|
764
|
+
}[] | undefined;
|
|
564
765
|
assignee_id?: number | null | undefined;
|
|
565
766
|
organization_id?: number | null | undefined;
|
|
566
767
|
requester_id?: number | undefined;
|
|
@@ -580,6 +781,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
580
781
|
subject?: string | undefined;
|
|
581
782
|
created_at?: string | undefined;
|
|
582
783
|
updated_at?: string | undefined;
|
|
784
|
+
custom_fields?: {
|
|
785
|
+
value: string | number | boolean | string[] | null;
|
|
786
|
+
id: number;
|
|
787
|
+
}[] | undefined;
|
|
583
788
|
assignee_id?: number | null | undefined;
|
|
584
789
|
organization_id?: number | null | undefined;
|
|
585
790
|
requester_id?: number | undefined;
|
|
@@ -598,6 +803,10 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
598
803
|
subject?: string | undefined;
|
|
599
804
|
created_at?: string | undefined;
|
|
600
805
|
updated_at?: string | undefined;
|
|
806
|
+
custom_fields?: {
|
|
807
|
+
value: string | number | boolean | string[] | null;
|
|
808
|
+
id: number;
|
|
809
|
+
}[] | undefined;
|
|
601
810
|
assignee_id?: number | null | undefined;
|
|
602
811
|
organization_id?: number | null | undefined;
|
|
603
812
|
requester_id?: number | undefined;
|
|
@@ -891,6 +1100,165 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
891
1100
|
count?: number | undefined;
|
|
892
1101
|
results?: Record<string, unknown>[] | undefined;
|
|
893
1102
|
next_page?: string | null | undefined;
|
|
1103
|
+
}>, import("zod").ZodObject<{
|
|
1104
|
+
operation: import("zod").ZodLiteral<"list_ticket_fields">;
|
|
1105
|
+
success: import("zod").ZodBoolean;
|
|
1106
|
+
ticket_fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1107
|
+
id: import("zod").ZodNumber;
|
|
1108
|
+
type: import("zod").ZodString;
|
|
1109
|
+
title: import("zod").ZodString;
|
|
1110
|
+
description: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1111
|
+
active: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1112
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1113
|
+
custom_field_options: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1114
|
+
name: import("zod").ZodString;
|
|
1115
|
+
value: import("zod").ZodString;
|
|
1116
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1117
|
+
value: string;
|
|
1118
|
+
name: string;
|
|
1119
|
+
}, {
|
|
1120
|
+
value: string;
|
|
1121
|
+
name: string;
|
|
1122
|
+
}>, "many">>>;
|
|
1123
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1124
|
+
type: string;
|
|
1125
|
+
title: string;
|
|
1126
|
+
id: number;
|
|
1127
|
+
description?: string | null | undefined;
|
|
1128
|
+
required?: boolean | undefined;
|
|
1129
|
+
active?: boolean | undefined;
|
|
1130
|
+
custom_field_options?: {
|
|
1131
|
+
value: string;
|
|
1132
|
+
name: string;
|
|
1133
|
+
}[] | null | undefined;
|
|
1134
|
+
}, {
|
|
1135
|
+
type: string;
|
|
1136
|
+
title: string;
|
|
1137
|
+
id: number;
|
|
1138
|
+
description?: string | null | undefined;
|
|
1139
|
+
required?: boolean | undefined;
|
|
1140
|
+
active?: boolean | undefined;
|
|
1141
|
+
custom_field_options?: {
|
|
1142
|
+
value: string;
|
|
1143
|
+
name: string;
|
|
1144
|
+
}[] | null | undefined;
|
|
1145
|
+
}>, "many">>;
|
|
1146
|
+
error: import("zod").ZodString;
|
|
1147
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1148
|
+
error: string;
|
|
1149
|
+
success: boolean;
|
|
1150
|
+
operation: "list_ticket_fields";
|
|
1151
|
+
ticket_fields?: {
|
|
1152
|
+
type: string;
|
|
1153
|
+
title: string;
|
|
1154
|
+
id: number;
|
|
1155
|
+
description?: string | null | undefined;
|
|
1156
|
+
required?: boolean | undefined;
|
|
1157
|
+
active?: boolean | undefined;
|
|
1158
|
+
custom_field_options?: {
|
|
1159
|
+
value: string;
|
|
1160
|
+
name: string;
|
|
1161
|
+
}[] | null | undefined;
|
|
1162
|
+
}[] | undefined;
|
|
1163
|
+
}, {
|
|
1164
|
+
error: string;
|
|
1165
|
+
success: boolean;
|
|
1166
|
+
operation: "list_ticket_fields";
|
|
1167
|
+
ticket_fields?: {
|
|
1168
|
+
type: string;
|
|
1169
|
+
title: string;
|
|
1170
|
+
id: number;
|
|
1171
|
+
description?: string | null | undefined;
|
|
1172
|
+
required?: boolean | undefined;
|
|
1173
|
+
active?: boolean | undefined;
|
|
1174
|
+
custom_field_options?: {
|
|
1175
|
+
value: string;
|
|
1176
|
+
name: string;
|
|
1177
|
+
}[] | null | undefined;
|
|
1178
|
+
}[] | undefined;
|
|
1179
|
+
}>, import("zod").ZodObject<{
|
|
1180
|
+
operation: import("zod").ZodLiteral<"create_ticket_field">;
|
|
1181
|
+
success: import("zod").ZodBoolean;
|
|
1182
|
+
ticket_field: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1183
|
+
id: import("zod").ZodNumber;
|
|
1184
|
+
type: import("zod").ZodString;
|
|
1185
|
+
title: import("zod").ZodString;
|
|
1186
|
+
active: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1187
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1188
|
+
custom_field_options: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1189
|
+
name: import("zod").ZodString;
|
|
1190
|
+
value: import("zod").ZodString;
|
|
1191
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1192
|
+
value: string;
|
|
1193
|
+
name: string;
|
|
1194
|
+
}, {
|
|
1195
|
+
value: string;
|
|
1196
|
+
name: string;
|
|
1197
|
+
}>, "many">>>;
|
|
1198
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1199
|
+
type: string;
|
|
1200
|
+
title: string;
|
|
1201
|
+
id: number;
|
|
1202
|
+
required?: boolean | undefined;
|
|
1203
|
+
active?: boolean | undefined;
|
|
1204
|
+
custom_field_options?: {
|
|
1205
|
+
value: string;
|
|
1206
|
+
name: string;
|
|
1207
|
+
}[] | null | undefined;
|
|
1208
|
+
}, {
|
|
1209
|
+
type: string;
|
|
1210
|
+
title: string;
|
|
1211
|
+
id: number;
|
|
1212
|
+
required?: boolean | undefined;
|
|
1213
|
+
active?: boolean | undefined;
|
|
1214
|
+
custom_field_options?: {
|
|
1215
|
+
value: string;
|
|
1216
|
+
name: string;
|
|
1217
|
+
}[] | null | undefined;
|
|
1218
|
+
}>>;
|
|
1219
|
+
error: import("zod").ZodString;
|
|
1220
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1221
|
+
error: string;
|
|
1222
|
+
success: boolean;
|
|
1223
|
+
operation: "create_ticket_field";
|
|
1224
|
+
ticket_field?: {
|
|
1225
|
+
type: string;
|
|
1226
|
+
title: string;
|
|
1227
|
+
id: number;
|
|
1228
|
+
required?: boolean | undefined;
|
|
1229
|
+
active?: boolean | undefined;
|
|
1230
|
+
custom_field_options?: {
|
|
1231
|
+
value: string;
|
|
1232
|
+
name: string;
|
|
1233
|
+
}[] | null | undefined;
|
|
1234
|
+
} | undefined;
|
|
1235
|
+
}, {
|
|
1236
|
+
error: string;
|
|
1237
|
+
success: boolean;
|
|
1238
|
+
operation: "create_ticket_field";
|
|
1239
|
+
ticket_field?: {
|
|
1240
|
+
type: string;
|
|
1241
|
+
title: string;
|
|
1242
|
+
id: number;
|
|
1243
|
+
required?: boolean | undefined;
|
|
1244
|
+
active?: boolean | undefined;
|
|
1245
|
+
custom_field_options?: {
|
|
1246
|
+
value: string;
|
|
1247
|
+
name: string;
|
|
1248
|
+
}[] | null | undefined;
|
|
1249
|
+
} | undefined;
|
|
1250
|
+
}>, import("zod").ZodObject<{
|
|
1251
|
+
operation: import("zod").ZodLiteral<"delete_ticket_field">;
|
|
1252
|
+
success: import("zod").ZodBoolean;
|
|
1253
|
+
error: import("zod").ZodString;
|
|
1254
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1255
|
+
error: string;
|
|
1256
|
+
success: boolean;
|
|
1257
|
+
operation: "delete_ticket_field";
|
|
1258
|
+
}, {
|
|
1259
|
+
error: string;
|
|
1260
|
+
success: boolean;
|
|
1261
|
+
operation: "delete_ticket_field";
|
|
894
1262
|
}>, import("zod").ZodObject<{
|
|
895
1263
|
operation: import("zod").ZodLiteral<"list_articles">;
|
|
896
1264
|
success: import("zod").ZodBoolean;
|
|
@@ -1048,6 +1416,9 @@ export declare class ZendeskBubble<T extends ZendeskParamsInput = ZendeskParamsI
|
|
|
1048
1416
|
private getTicket;
|
|
1049
1417
|
private createTicket;
|
|
1050
1418
|
private updateTicket;
|
|
1419
|
+
private listTicketFields;
|
|
1420
|
+
private createTicketField;
|
|
1421
|
+
private deleteTicketField;
|
|
1051
1422
|
private listTicketComments;
|
|
1052
1423
|
private listUsers;
|
|
1053
1424
|
private getUser;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zendesk.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/zendesk/zendesk.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EACL,cAAc,EAEf,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAIL,KAAK,kBAAkB,EACvB,KAAK,aAAa,EACnB,MAAM,qBAAqB,CAAC;AAE7B;;;;;;;;;;;;;;;;GAgBG;AACH,qBAAa,aAAa,CACxB,CAAC,SAAS,kBAAkB,GAAG,kBAAkB,CACjD,SAAQ,aAAa,CACrB,CAAC,EACD,OAAO,CAAC,aAAa,EAAE;IAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;CAAE,CAAC,CACtD;IACC,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAG,SAAS,CAAU;IAC1C,MAAM,CAAC,QAAQ,CAAC,OAAO,aAAa;IACpC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,OAAO,CAAU;IAC5C,MAAM,CAAC,QAAQ,CAAC,UAAU,aAAa;IACvC,MAAM,CAAC,QAAQ,CAAC,MAAM
|
|
1
|
+
{"version":3,"file":"zendesk.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/zendesk/zendesk.ts"],"names":[],"mappings":"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"}
|