@graphlit/durable-agents-sdk 1.0.20260610016-dev → 1.0.20260611001-dev
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/src/build-info.d.ts +1 -1
- package/dist/src/build-info.js +1 -1
- package/dist/src/generated/api/durable/billing/fundingRequests/index.d.ts +42 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/index.d.ts.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/index.js +41 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/index.js.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/index.d.ts +38 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/index.d.ts.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/index.js +36 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/index.js.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/mpp/index.d.ts +32 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/mpp/index.d.ts.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/mpp/index.js +30 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/mpp/index.js.map +1 -0
- package/dist/src/generated/api/durable/billing/index.d.ts +5 -0
- package/dist/src/generated/api/durable/billing/index.d.ts.map +1 -1
- package/dist/src/generated/api/durable/billing/index.js +6 -0
- package/dist/src/generated/api/durable/billing/index.js.map +1 -1
- package/dist/src/generated/api/durable/content/index.d.ts.map +1 -1
- package/dist/src/generated/api/durable/content/index.js +2 -1
- package/dist/src/generated/api/durable/content/index.js.map +1 -1
- package/dist/src/generated/api/durable/content/item/index.d.ts +10 -1
- package/dist/src/generated/api/durable/content/item/index.d.ts.map +1 -1
- package/dist/src/generated/api/durable/content/item/index.js +10 -0
- package/dist/src/generated/api/durable/content/item/index.js.map +1 -1
- package/dist/src/generated/api/durable/content/item/inspect/index.d.ts +29 -0
- package/dist/src/generated/api/durable/content/item/inspect/index.d.ts.map +1 -0
- package/dist/src/generated/api/durable/content/item/inspect/index.js +26 -0
- package/dist/src/generated/api/durable/content/item/inspect/index.js.map +1 -0
- package/dist/src/generated/api/durable/vfs/search/index.d.ts +10 -1
- package/dist/src/generated/api/durable/vfs/search/index.d.ts.map +1 -1
- package/dist/src/generated/api/durable/vfs/search/index.js +6 -1
- package/dist/src/generated/api/durable/vfs/search/index.js.map +1 -1
- package/dist/src/generated/models/index.d.ts +926 -23
- package/dist/src/generated/models/index.d.ts.map +1 -1
- package/dist/src/generated/models/index.js +920 -7
- package/dist/src/generated/models/index.js.map +1 -1
- package/openapi/durable-agents.sdk.yaml +629 -1
- package/package.json +1 -1
|
@@ -77,6 +77,10 @@ export interface Agent extends Parsable {
|
|
|
77
77
|
* The effort property
|
|
78
78
|
*/
|
|
79
79
|
effort?: Effort | null;
|
|
80
|
+
/**
|
|
81
|
+
* The focus property
|
|
82
|
+
*/
|
|
83
|
+
focus?: string | null;
|
|
80
84
|
/**
|
|
81
85
|
* The heartbeat property
|
|
82
86
|
*/
|
|
@@ -101,6 +105,10 @@ export interface Agent extends Parsable {
|
|
|
101
105
|
* The persona property
|
|
102
106
|
*/
|
|
103
107
|
persona?: Ref | null;
|
|
108
|
+
/**
|
|
109
|
+
* The prompt property
|
|
110
|
+
*/
|
|
111
|
+
prompt?: string | null;
|
|
104
112
|
/**
|
|
105
113
|
* The schedule property
|
|
106
114
|
*/
|
|
@@ -113,6 +121,10 @@ export interface Agent extends Parsable {
|
|
|
113
121
|
* The targets property
|
|
114
122
|
*/
|
|
115
123
|
targets?: TargetInput[] | null;
|
|
124
|
+
/**
|
|
125
|
+
* The trigger property
|
|
126
|
+
*/
|
|
127
|
+
trigger?: AgentTrigger | null;
|
|
116
128
|
/**
|
|
117
129
|
* The updated_at property
|
|
118
130
|
*/
|
|
@@ -138,6 +150,10 @@ export interface AgentCreate extends Parsable {
|
|
|
138
150
|
* The effort property
|
|
139
151
|
*/
|
|
140
152
|
effort?: Effort | null;
|
|
153
|
+
/**
|
|
154
|
+
* The focus property
|
|
155
|
+
*/
|
|
156
|
+
focus?: string | null;
|
|
141
157
|
/**
|
|
142
158
|
* The heartbeat property
|
|
143
159
|
*/
|
|
@@ -158,6 +174,10 @@ export interface AgentCreate extends Parsable {
|
|
|
158
174
|
* The persona property
|
|
159
175
|
*/
|
|
160
176
|
persona?: Ref | null;
|
|
177
|
+
/**
|
|
178
|
+
* The prompt property
|
|
179
|
+
*/
|
|
180
|
+
prompt?: string | null;
|
|
161
181
|
/**
|
|
162
182
|
* The schedule property
|
|
163
183
|
*/
|
|
@@ -166,6 +186,10 @@ export interface AgentCreate extends Parsable {
|
|
|
166
186
|
* The targets property
|
|
167
187
|
*/
|
|
168
188
|
targets?: TargetInput[] | null;
|
|
189
|
+
/**
|
|
190
|
+
* The trigger property
|
|
191
|
+
*/
|
|
192
|
+
trigger?: AgentTrigger | null;
|
|
169
193
|
}
|
|
170
194
|
export interface AgentList extends Parsable {
|
|
171
195
|
/**
|
|
@@ -195,6 +219,10 @@ export interface AgentPatch extends Parsable {
|
|
|
195
219
|
* The effort property
|
|
196
220
|
*/
|
|
197
221
|
effort?: Effort | null;
|
|
222
|
+
/**
|
|
223
|
+
* The focus property
|
|
224
|
+
*/
|
|
225
|
+
focus?: string | null;
|
|
198
226
|
/**
|
|
199
227
|
* The heartbeat property
|
|
200
228
|
*/
|
|
@@ -215,6 +243,10 @@ export interface AgentPatch extends Parsable {
|
|
|
215
243
|
* The persona property
|
|
216
244
|
*/
|
|
217
245
|
persona?: Ref | null;
|
|
246
|
+
/**
|
|
247
|
+
* The prompt property
|
|
248
|
+
*/
|
|
249
|
+
prompt?: string | null;
|
|
218
250
|
/**
|
|
219
251
|
* The schedule property
|
|
220
252
|
*/
|
|
@@ -227,6 +259,23 @@ export interface AgentPatch extends Parsable {
|
|
|
227
259
|
* The targets property
|
|
228
260
|
*/
|
|
229
261
|
targets?: Target[] | null;
|
|
262
|
+
/**
|
|
263
|
+
* The trigger property
|
|
264
|
+
*/
|
|
265
|
+
trigger?: AgentTrigger | null;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Content ingestion trigger. Empty object means any finished content.
|
|
269
|
+
*/
|
|
270
|
+
export interface AgentTrigger extends Parsable {
|
|
271
|
+
/**
|
|
272
|
+
* Content or file kinds that should trigger the agent.
|
|
273
|
+
*/
|
|
274
|
+
kinds?: string[] | null;
|
|
275
|
+
/**
|
|
276
|
+
* Data source references that should trigger the agent.
|
|
277
|
+
*/
|
|
278
|
+
sources?: Ref[] | null;
|
|
230
279
|
}
|
|
231
280
|
export interface ApiKey extends Parsable {
|
|
232
281
|
/**
|
|
@@ -331,6 +380,291 @@ export interface AuditEventList extends Parsable {
|
|
|
331
380
|
*/
|
|
332
381
|
nextCursor?: string | null;
|
|
333
382
|
}
|
|
383
|
+
export interface BillingFundingCompletion extends Parsable {
|
|
384
|
+
/**
|
|
385
|
+
* The funding_request property
|
|
386
|
+
*/
|
|
387
|
+
fundingRequest?: BillingFundingRequest | null;
|
|
388
|
+
/**
|
|
389
|
+
* The usage property
|
|
390
|
+
*/
|
|
391
|
+
usage?: BillingUsage | null;
|
|
392
|
+
}
|
|
393
|
+
export interface BillingFundingLineItem extends Parsable {
|
|
394
|
+
/**
|
|
395
|
+
* The description property
|
|
396
|
+
*/
|
|
397
|
+
description?: string | null;
|
|
398
|
+
/**
|
|
399
|
+
* The name property
|
|
400
|
+
*/
|
|
401
|
+
name?: string | null;
|
|
402
|
+
/**
|
|
403
|
+
* The quantity property
|
|
404
|
+
*/
|
|
405
|
+
quantity?: number | null;
|
|
406
|
+
/**
|
|
407
|
+
* The unit_amount property
|
|
408
|
+
*/
|
|
409
|
+
unitAmount?: number | null;
|
|
410
|
+
}
|
|
411
|
+
export interface BillingFundingLinkCli extends Parsable {
|
|
412
|
+
/**
|
|
413
|
+
* The mpp_pay property
|
|
414
|
+
*/
|
|
415
|
+
mppPay?: BillingFundingLinkCli_mpp_pay | null;
|
|
416
|
+
/**
|
|
417
|
+
* The spend_request_create property
|
|
418
|
+
*/
|
|
419
|
+
spendRequestCreate?: BillingFundingLinkCli_spend_request_create | null;
|
|
420
|
+
}
|
|
421
|
+
export interface BillingFundingLinkCli_mpp_pay extends Parsable {
|
|
422
|
+
/**
|
|
423
|
+
* The args_without_spend_request_id property
|
|
424
|
+
*/
|
|
425
|
+
argsWithoutSpendRequestId?: string[] | null;
|
|
426
|
+
/**
|
|
427
|
+
* The spend_request_id_required property
|
|
428
|
+
*/
|
|
429
|
+
spendRequestIdRequired?: boolean | null;
|
|
430
|
+
}
|
|
431
|
+
export interface BillingFundingLinkCli_spend_request_create extends Parsable {
|
|
432
|
+
/**
|
|
433
|
+
* The args_without_payment_method property
|
|
434
|
+
*/
|
|
435
|
+
argsWithoutPaymentMethod?: string[] | null;
|
|
436
|
+
/**
|
|
437
|
+
* The payment_method_id_required property
|
|
438
|
+
*/
|
|
439
|
+
paymentMethodIdRequired?: boolean | null;
|
|
440
|
+
}
|
|
441
|
+
export interface BillingFundingLinkMcp extends Parsable {
|
|
442
|
+
/**
|
|
443
|
+
* The mpp_pay_input_without_spend_request_id property
|
|
444
|
+
*/
|
|
445
|
+
mppPayInputWithoutSpendRequestId?: BillingFundingLinkMcp_mpp_pay_input_without_spend_request_id | null;
|
|
446
|
+
/**
|
|
447
|
+
* The spend_request_create_input_without_payment_method property
|
|
448
|
+
*/
|
|
449
|
+
spendRequestCreateInputWithoutPaymentMethod?: BillingFundingLinkMcp_spend_request_create_input_without_payment_method | null;
|
|
450
|
+
}
|
|
451
|
+
export interface BillingFundingLinkMcp_mpp_pay_input_without_spend_request_id extends Parsable {
|
|
452
|
+
/**
|
|
453
|
+
* The data property
|
|
454
|
+
*/
|
|
455
|
+
data?: string | null;
|
|
456
|
+
/**
|
|
457
|
+
* The method property
|
|
458
|
+
*/
|
|
459
|
+
method?: string | null;
|
|
460
|
+
/**
|
|
461
|
+
* The url property
|
|
462
|
+
*/
|
|
463
|
+
url?: string | null;
|
|
464
|
+
}
|
|
465
|
+
export interface BillingFundingLinkMcp_spend_request_create_input_without_payment_method extends Parsable {
|
|
466
|
+
/**
|
|
467
|
+
* The amount property
|
|
468
|
+
*/
|
|
469
|
+
amount?: number | null;
|
|
470
|
+
/**
|
|
471
|
+
* The context property
|
|
472
|
+
*/
|
|
473
|
+
context?: string | null;
|
|
474
|
+
/**
|
|
475
|
+
* The credentialType property
|
|
476
|
+
*/
|
|
477
|
+
credentialType?: string | null;
|
|
478
|
+
/**
|
|
479
|
+
* The currency property
|
|
480
|
+
*/
|
|
481
|
+
currency?: string | null;
|
|
482
|
+
/**
|
|
483
|
+
* The lineItem property
|
|
484
|
+
*/
|
|
485
|
+
lineItem?: BillingFundingLineItem[] | null;
|
|
486
|
+
/**
|
|
487
|
+
* The networkId property
|
|
488
|
+
*/
|
|
489
|
+
networkId?: string | null;
|
|
490
|
+
/**
|
|
491
|
+
* The requestApproval property
|
|
492
|
+
*/
|
|
493
|
+
requestApproval?: boolean | null;
|
|
494
|
+
/**
|
|
495
|
+
* The total property
|
|
496
|
+
*/
|
|
497
|
+
total?: BillingFundingTotal[] | null;
|
|
498
|
+
}
|
|
499
|
+
export interface BillingFundingMerchant extends Parsable {
|
|
500
|
+
/**
|
|
501
|
+
* The name property
|
|
502
|
+
*/
|
|
503
|
+
name?: string | null;
|
|
504
|
+
/**
|
|
505
|
+
* The url property
|
|
506
|
+
*/
|
|
507
|
+
url?: string | null;
|
|
508
|
+
}
|
|
509
|
+
export interface BillingFundingMpp extends Parsable {
|
|
510
|
+
/**
|
|
511
|
+
* The body property
|
|
512
|
+
*/
|
|
513
|
+
body?: BillingFundingMpp_body | null;
|
|
514
|
+
/**
|
|
515
|
+
* The challenge property
|
|
516
|
+
*/
|
|
517
|
+
challenge?: string | null;
|
|
518
|
+
/**
|
|
519
|
+
* The debug_decode_command property
|
|
520
|
+
*/
|
|
521
|
+
debugDecodeCommand?: string | null;
|
|
522
|
+
/**
|
|
523
|
+
* The method property
|
|
524
|
+
*/
|
|
525
|
+
method?: string | null;
|
|
526
|
+
/**
|
|
527
|
+
* The network_id property
|
|
528
|
+
*/
|
|
529
|
+
networkId?: string | null;
|
|
530
|
+
/**
|
|
531
|
+
* The pay_command property
|
|
532
|
+
*/
|
|
533
|
+
payCommand?: string | null;
|
|
534
|
+
/**
|
|
535
|
+
* The url property
|
|
536
|
+
*/
|
|
537
|
+
url?: string | null;
|
|
538
|
+
}
|
|
539
|
+
export interface BillingFundingMpp_body extends Parsable {
|
|
540
|
+
/**
|
|
541
|
+
* The funding_request_id property
|
|
542
|
+
*/
|
|
543
|
+
fundingRequestId?: string | null;
|
|
544
|
+
}
|
|
545
|
+
export interface BillingFundingMppComplete extends Parsable {
|
|
546
|
+
/**
|
|
547
|
+
* The funding_request_id property
|
|
548
|
+
*/
|
|
549
|
+
fundingRequestId?: string | null;
|
|
550
|
+
}
|
|
551
|
+
export interface BillingFundingProviderResult extends Parsable {
|
|
552
|
+
/**
|
|
553
|
+
* The charge_id property
|
|
554
|
+
*/
|
|
555
|
+
chargeId?: string | null;
|
|
556
|
+
/**
|
|
557
|
+
* The kind property
|
|
558
|
+
*/
|
|
559
|
+
kind?: string | null;
|
|
560
|
+
/**
|
|
561
|
+
* The payment_intent_id property
|
|
562
|
+
*/
|
|
563
|
+
paymentIntentId?: string | null;
|
|
564
|
+
}
|
|
565
|
+
export interface BillingFundingRequest extends ApiError, Parsable {
|
|
566
|
+
/**
|
|
567
|
+
* The amount_cents property
|
|
568
|
+
*/
|
|
569
|
+
amountCents?: number | null;
|
|
570
|
+
/**
|
|
571
|
+
* The completed_at property
|
|
572
|
+
*/
|
|
573
|
+
completedAt?: Date | null;
|
|
574
|
+
/**
|
|
575
|
+
* The context property
|
|
576
|
+
*/
|
|
577
|
+
context?: string | null;
|
|
578
|
+
/**
|
|
579
|
+
* The created_at property
|
|
580
|
+
*/
|
|
581
|
+
createdAt?: Date | null;
|
|
582
|
+
/**
|
|
583
|
+
* The credits property
|
|
584
|
+
*/
|
|
585
|
+
credits?: number | null;
|
|
586
|
+
/**
|
|
587
|
+
* The currency property
|
|
588
|
+
*/
|
|
589
|
+
currency?: string | null;
|
|
590
|
+
/**
|
|
591
|
+
* The expires_at property
|
|
592
|
+
*/
|
|
593
|
+
expiresAt?: Date | null;
|
|
594
|
+
/**
|
|
595
|
+
* The failure_code property
|
|
596
|
+
*/
|
|
597
|
+
failureCode?: string | null;
|
|
598
|
+
/**
|
|
599
|
+
* The failure_message property
|
|
600
|
+
*/
|
|
601
|
+
failureMessage?: string | null;
|
|
602
|
+
/**
|
|
603
|
+
* The id property
|
|
604
|
+
*/
|
|
605
|
+
id?: string | null;
|
|
606
|
+
/**
|
|
607
|
+
* The line_items property
|
|
608
|
+
*/
|
|
609
|
+
lineItems?: BillingFundingLineItem[] | null;
|
|
610
|
+
/**
|
|
611
|
+
* The link_cli property
|
|
612
|
+
*/
|
|
613
|
+
linkCli?: BillingFundingLinkCli | null;
|
|
614
|
+
/**
|
|
615
|
+
* The link_mcp property
|
|
616
|
+
*/
|
|
617
|
+
linkMcp?: BillingFundingLinkMcp | null;
|
|
618
|
+
/**
|
|
619
|
+
* The merchant property
|
|
620
|
+
*/
|
|
621
|
+
merchant?: BillingFundingMerchant | null;
|
|
622
|
+
/**
|
|
623
|
+
* The mpp property
|
|
624
|
+
*/
|
|
625
|
+
mpp?: BillingFundingMpp | null;
|
|
626
|
+
/**
|
|
627
|
+
* The provider_result property
|
|
628
|
+
*/
|
|
629
|
+
providerResult?: BillingFundingProviderResult | null;
|
|
630
|
+
/**
|
|
631
|
+
* The status property
|
|
632
|
+
*/
|
|
633
|
+
status?: BillingFundingStatus | null;
|
|
634
|
+
/**
|
|
635
|
+
* The totals property
|
|
636
|
+
*/
|
|
637
|
+
totals?: BillingFundingTotal[] | null;
|
|
638
|
+
/**
|
|
639
|
+
* The updated_at property
|
|
640
|
+
*/
|
|
641
|
+
updatedAt?: Date | null;
|
|
642
|
+
}
|
|
643
|
+
export interface BillingFundingRequestCreate extends Parsable {
|
|
644
|
+
/**
|
|
645
|
+
* The credits property
|
|
646
|
+
*/
|
|
647
|
+
credits?: number | null;
|
|
648
|
+
/**
|
|
649
|
+
* The payment_method property
|
|
650
|
+
*/
|
|
651
|
+
paymentMethod?: string | null;
|
|
652
|
+
}
|
|
653
|
+
export type BillingFundingStatus = (typeof BillingFundingStatusObject)[keyof typeof BillingFundingStatusObject];
|
|
654
|
+
export interface BillingFundingTotal extends Parsable {
|
|
655
|
+
/**
|
|
656
|
+
* The amount property
|
|
657
|
+
*/
|
|
658
|
+
amount?: number | null;
|
|
659
|
+
/**
|
|
660
|
+
* The display_text property
|
|
661
|
+
*/
|
|
662
|
+
displayText?: string | null;
|
|
663
|
+
/**
|
|
664
|
+
* The type property
|
|
665
|
+
*/
|
|
666
|
+
type?: string | null;
|
|
667
|
+
}
|
|
334
668
|
export interface BillingUsage extends Parsable {
|
|
335
669
|
/**
|
|
336
670
|
* The admin_grant_credits property
|
|
@@ -976,6 +1310,116 @@ export interface ContentCreate extends Parsable {
|
|
|
976
1310
|
*/
|
|
977
1311
|
wait?: boolean | null;
|
|
978
1312
|
}
|
|
1313
|
+
export interface ContentInspection extends Parsable {
|
|
1314
|
+
/**
|
|
1315
|
+
* The children property
|
|
1316
|
+
*/
|
|
1317
|
+
children?: ContentInspectionRef[] | null;
|
|
1318
|
+
/**
|
|
1319
|
+
* The content property
|
|
1320
|
+
*/
|
|
1321
|
+
content?: Content | null;
|
|
1322
|
+
/**
|
|
1323
|
+
* The coverage property
|
|
1324
|
+
*/
|
|
1325
|
+
coverage?: ContentInspectionCoverage | null;
|
|
1326
|
+
/**
|
|
1327
|
+
* The description property
|
|
1328
|
+
*/
|
|
1329
|
+
description?: string | null;
|
|
1330
|
+
/**
|
|
1331
|
+
* The markdown property
|
|
1332
|
+
*/
|
|
1333
|
+
markdown?: string | null;
|
|
1334
|
+
/**
|
|
1335
|
+
* The metadata property
|
|
1336
|
+
*/
|
|
1337
|
+
metadata?: ContentInspection_metadata | null;
|
|
1338
|
+
/**
|
|
1339
|
+
* The mime_type property
|
|
1340
|
+
*/
|
|
1341
|
+
mimeType?: string | null;
|
|
1342
|
+
/**
|
|
1343
|
+
* The name property
|
|
1344
|
+
*/
|
|
1345
|
+
name?: string | null;
|
|
1346
|
+
/**
|
|
1347
|
+
* The parent property
|
|
1348
|
+
*/
|
|
1349
|
+
parent?: ContentInspectionRef | null;
|
|
1350
|
+
/**
|
|
1351
|
+
* The provenance property
|
|
1352
|
+
*/
|
|
1353
|
+
provenance?: ContentInspectionProvenance | null;
|
|
1354
|
+
/**
|
|
1355
|
+
* The resource_type property
|
|
1356
|
+
*/
|
|
1357
|
+
resourceType?: ContentInspection_resource_type | null;
|
|
1358
|
+
/**
|
|
1359
|
+
* The summary property
|
|
1360
|
+
*/
|
|
1361
|
+
summary?: string | null;
|
|
1362
|
+
/**
|
|
1363
|
+
* Selected rendered text for terminal inspection. This field is not locally truncated by the Durable CLI/API.
|
|
1364
|
+
*/
|
|
1365
|
+
text?: string | null;
|
|
1366
|
+
/**
|
|
1367
|
+
* The uri property
|
|
1368
|
+
*/
|
|
1369
|
+
uri?: string | null;
|
|
1370
|
+
}
|
|
1371
|
+
export interface ContentInspection_metadata extends AdditionalDataHolder, Parsable {
|
|
1372
|
+
}
|
|
1373
|
+
export type ContentInspection_resource_type = (typeof ContentInspection_resource_typeObject)[keyof typeof ContentInspection_resource_typeObject];
|
|
1374
|
+
export interface ContentInspectionCoverage extends Parsable {
|
|
1375
|
+
/**
|
|
1376
|
+
* The full_text_available property
|
|
1377
|
+
*/
|
|
1378
|
+
fullTextAvailable?: boolean | null;
|
|
1379
|
+
/**
|
|
1380
|
+
* The returned_chars property
|
|
1381
|
+
*/
|
|
1382
|
+
returnedChars?: number | null;
|
|
1383
|
+
/**
|
|
1384
|
+
* The source_kind property
|
|
1385
|
+
*/
|
|
1386
|
+
sourceKind?: ContentInspectionCoverage_source_kind | null;
|
|
1387
|
+
/**
|
|
1388
|
+
* The status property
|
|
1389
|
+
*/
|
|
1390
|
+
status?: ContentInspectionCoverage_status | null;
|
|
1391
|
+
/**
|
|
1392
|
+
* The total_chars property
|
|
1393
|
+
*/
|
|
1394
|
+
totalChars?: number | null;
|
|
1395
|
+
/**
|
|
1396
|
+
* The truncation_reason property
|
|
1397
|
+
*/
|
|
1398
|
+
truncationReason?: string | null;
|
|
1399
|
+
}
|
|
1400
|
+
export type ContentInspectionCoverage_source_kind = (typeof ContentInspectionCoverage_source_kindObject)[keyof typeof ContentInspectionCoverage_source_kindObject];
|
|
1401
|
+
export type ContentInspectionCoverage_status = (typeof ContentInspectionCoverage_statusObject)[keyof typeof ContentInspectionCoverage_statusObject];
|
|
1402
|
+
export interface ContentInspectionProvenance extends Parsable {
|
|
1403
|
+
/**
|
|
1404
|
+
* The reused_existing_data property
|
|
1405
|
+
*/
|
|
1406
|
+
reusedExistingData?: boolean | null;
|
|
1407
|
+
/**
|
|
1408
|
+
* The source property
|
|
1409
|
+
*/
|
|
1410
|
+
source?: ContentInspectionProvenance_source | null;
|
|
1411
|
+
}
|
|
1412
|
+
export type ContentInspectionProvenance_source = (typeof ContentInspectionProvenance_sourceObject)[keyof typeof ContentInspectionProvenance_sourceObject];
|
|
1413
|
+
export interface ContentInspectionRef extends Parsable {
|
|
1414
|
+
/**
|
|
1415
|
+
* The name property
|
|
1416
|
+
*/
|
|
1417
|
+
name?: string | null;
|
|
1418
|
+
/**
|
|
1419
|
+
* MCP content resource URI.
|
|
1420
|
+
*/
|
|
1421
|
+
uri?: string | null;
|
|
1422
|
+
}
|
|
979
1423
|
export interface ContentList extends Parsable {
|
|
980
1424
|
/**
|
|
981
1425
|
* The data property
|
|
@@ -1036,73 +1480,175 @@ export declare function createAccountMutationResult_authorize_urlMember1FromDisc
|
|
|
1036
1480
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1037
1481
|
* @returns {AccountMutationResult}
|
|
1038
1482
|
*/
|
|
1039
|
-
export declare function createAccountMutationResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1483
|
+
export declare function createAccountMutationResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1484
|
+
/**
|
|
1485
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1486
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1487
|
+
* @returns {AgentCreate}
|
|
1488
|
+
*/
|
|
1489
|
+
export declare function createAgentCreateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1490
|
+
/**
|
|
1491
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1492
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1493
|
+
* @returns {Agent}
|
|
1494
|
+
*/
|
|
1495
|
+
export declare function createAgentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1496
|
+
/**
|
|
1497
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1498
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1499
|
+
* @returns {AgentList}
|
|
1500
|
+
*/
|
|
1501
|
+
export declare function createAgentListFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1502
|
+
/**
|
|
1503
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1504
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1505
|
+
* @returns {AgentPatch}
|
|
1506
|
+
*/
|
|
1507
|
+
export declare function createAgentPatchFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1508
|
+
/**
|
|
1509
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1510
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1511
|
+
* @returns {AgentTrigger}
|
|
1512
|
+
*/
|
|
1513
|
+
export declare function createAgentTriggerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1514
|
+
/**
|
|
1515
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1516
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1517
|
+
* @returns {ApiKeyClaim}
|
|
1518
|
+
*/
|
|
1519
|
+
export declare function createApiKeyClaimFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1520
|
+
/**
|
|
1521
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1522
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1523
|
+
* @returns {ApiKeyCreate}
|
|
1524
|
+
*/
|
|
1525
|
+
export declare function createApiKeyCreateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1526
|
+
/**
|
|
1527
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1528
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1529
|
+
* @returns {ApiKey}
|
|
1530
|
+
*/
|
|
1531
|
+
export declare function createApiKeyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1532
|
+
/**
|
|
1533
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1534
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1535
|
+
* @returns {ApiKeyList}
|
|
1536
|
+
*/
|
|
1537
|
+
export declare function createApiKeyListFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1538
|
+
/**
|
|
1539
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1540
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1541
|
+
* @returns {AuditEvent_data}
|
|
1542
|
+
*/
|
|
1543
|
+
export declare function createAuditEvent_dataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1544
|
+
/**
|
|
1545
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1546
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1547
|
+
* @returns {AuditEvent}
|
|
1548
|
+
*/
|
|
1549
|
+
export declare function createAuditEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1550
|
+
/**
|
|
1551
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1552
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1553
|
+
* @returns {AuditEventList}
|
|
1554
|
+
*/
|
|
1555
|
+
export declare function createAuditEventListFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1556
|
+
/**
|
|
1557
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1558
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1559
|
+
* @returns {BillingFundingCompletion}
|
|
1560
|
+
*/
|
|
1561
|
+
export declare function createBillingFundingCompletionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1562
|
+
/**
|
|
1563
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1564
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1565
|
+
* @returns {BillingFundingLineItem}
|
|
1566
|
+
*/
|
|
1567
|
+
export declare function createBillingFundingLineItemFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1568
|
+
/**
|
|
1569
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1570
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1571
|
+
* @returns {BillingFundingLinkCli_mpp_pay}
|
|
1572
|
+
*/
|
|
1573
|
+
export declare function createBillingFundingLinkCli_mpp_payFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1574
|
+
/**
|
|
1575
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1576
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1577
|
+
* @returns {BillingFundingLinkCli_spend_request_create}
|
|
1578
|
+
*/
|
|
1579
|
+
export declare function createBillingFundingLinkCli_spend_request_createFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1580
|
+
/**
|
|
1581
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1582
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1583
|
+
* @returns {BillingFundingLinkCli}
|
|
1584
|
+
*/
|
|
1585
|
+
export declare function createBillingFundingLinkCliFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1040
1586
|
/**
|
|
1041
1587
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1042
1588
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1043
|
-
* @returns {
|
|
1589
|
+
* @returns {BillingFundingLinkMcp_mpp_pay_input_without_spend_request_id}
|
|
1044
1590
|
*/
|
|
1045
|
-
export declare function
|
|
1591
|
+
export declare function createBillingFundingLinkMcp_mpp_pay_input_without_spend_request_idFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1046
1592
|
/**
|
|
1047
1593
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1048
1594
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1049
|
-
* @returns {
|
|
1595
|
+
* @returns {BillingFundingLinkMcp_spend_request_create_input_without_payment_method}
|
|
1050
1596
|
*/
|
|
1051
|
-
export declare function
|
|
1597
|
+
export declare function createBillingFundingLinkMcp_spend_request_create_input_without_payment_methodFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1052
1598
|
/**
|
|
1053
1599
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1054
1600
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1055
|
-
* @returns {
|
|
1601
|
+
* @returns {BillingFundingLinkMcp}
|
|
1056
1602
|
*/
|
|
1057
|
-
export declare function
|
|
1603
|
+
export declare function createBillingFundingLinkMcpFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1058
1604
|
/**
|
|
1059
1605
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1060
1606
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1061
|
-
* @returns {
|
|
1607
|
+
* @returns {BillingFundingMerchant}
|
|
1062
1608
|
*/
|
|
1063
|
-
export declare function
|
|
1609
|
+
export declare function createBillingFundingMerchantFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1064
1610
|
/**
|
|
1065
1611
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1066
1612
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1067
|
-
* @returns {
|
|
1613
|
+
* @returns {BillingFundingMpp_body}
|
|
1068
1614
|
*/
|
|
1069
|
-
export declare function
|
|
1615
|
+
export declare function createBillingFundingMpp_bodyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1070
1616
|
/**
|
|
1071
1617
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1072
1618
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1073
|
-
* @returns {
|
|
1619
|
+
* @returns {BillingFundingMppComplete}
|
|
1074
1620
|
*/
|
|
1075
|
-
export declare function
|
|
1621
|
+
export declare function createBillingFundingMppCompleteFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1076
1622
|
/**
|
|
1077
1623
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1078
1624
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1079
|
-
* @returns {
|
|
1625
|
+
* @returns {BillingFundingMpp}
|
|
1080
1626
|
*/
|
|
1081
|
-
export declare function
|
|
1627
|
+
export declare function createBillingFundingMppFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1082
1628
|
/**
|
|
1083
1629
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1084
1630
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1085
|
-
* @returns {
|
|
1631
|
+
* @returns {BillingFundingProviderResult}
|
|
1086
1632
|
*/
|
|
1087
|
-
export declare function
|
|
1633
|
+
export declare function createBillingFundingProviderResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1088
1634
|
/**
|
|
1089
1635
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1090
1636
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1091
|
-
* @returns {
|
|
1637
|
+
* @returns {BillingFundingRequestCreate}
|
|
1092
1638
|
*/
|
|
1093
|
-
export declare function
|
|
1639
|
+
export declare function createBillingFundingRequestCreateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1094
1640
|
/**
|
|
1095
1641
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1096
1642
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1097
|
-
* @returns {
|
|
1643
|
+
* @returns {BillingFundingRequest}
|
|
1098
1644
|
*/
|
|
1099
|
-
export declare function
|
|
1645
|
+
export declare function createBillingFundingRequestFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1100
1646
|
/**
|
|
1101
1647
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1102
1648
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1103
|
-
* @returns {
|
|
1649
|
+
* @returns {BillingFundingTotal}
|
|
1104
1650
|
*/
|
|
1105
|
-
export declare function
|
|
1651
|
+
export declare function createBillingFundingTotalFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1106
1652
|
/**
|
|
1107
1653
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1108
1654
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1271,6 +1817,36 @@ export declare function createContentCreateFromDiscriminatorValue(parseNode: Par
|
|
|
1271
1817
|
* @returns {Content}
|
|
1272
1818
|
*/
|
|
1273
1819
|
export declare function createContentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1820
|
+
/**
|
|
1821
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1822
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1823
|
+
* @returns {ContentInspection_metadata}
|
|
1824
|
+
*/
|
|
1825
|
+
export declare function createContentInspection_metadataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1826
|
+
/**
|
|
1827
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1828
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1829
|
+
* @returns {ContentInspectionCoverage}
|
|
1830
|
+
*/
|
|
1831
|
+
export declare function createContentInspectionCoverageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1832
|
+
/**
|
|
1833
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1834
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1835
|
+
* @returns {ContentInspection}
|
|
1836
|
+
*/
|
|
1837
|
+
export declare function createContentInspectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1838
|
+
/**
|
|
1839
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1840
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1841
|
+
* @returns {ContentInspectionProvenance}
|
|
1842
|
+
*/
|
|
1843
|
+
export declare function createContentInspectionProvenanceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1844
|
+
/**
|
|
1845
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1846
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1847
|
+
* @returns {ContentInspectionRef}
|
|
1848
|
+
*/
|
|
1849
|
+
export declare function createContentInspectionRefFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1274
1850
|
/**
|
|
1275
1851
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1276
1852
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2250,6 +2826,12 @@ export declare function deserializeIntoAgentList(agentList?: Partial<AgentList>
|
|
|
2250
2826
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2251
2827
|
*/
|
|
2252
2828
|
export declare function deserializeIntoAgentPatch(agentPatch?: Partial<AgentPatch> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2829
|
+
/**
|
|
2830
|
+
* The deserialization information for the current model
|
|
2831
|
+
* @param AgentTrigger The instance to deserialize into.
|
|
2832
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2833
|
+
*/
|
|
2834
|
+
export declare function deserializeIntoAgentTrigger(agentTrigger?: Partial<AgentTrigger> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2253
2835
|
/**
|
|
2254
2836
|
* The deserialization information for the current model
|
|
2255
2837
|
* @param ApiKey The instance to deserialize into.
|
|
@@ -2292,6 +2874,102 @@ export declare function deserializeIntoAuditEvent_data(auditEvent_data?: Partial
|
|
|
2292
2874
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2293
2875
|
*/
|
|
2294
2876
|
export declare function deserializeIntoAuditEventList(auditEventList?: Partial<AuditEventList> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2877
|
+
/**
|
|
2878
|
+
* The deserialization information for the current model
|
|
2879
|
+
* @param BillingFundingCompletion The instance to deserialize into.
|
|
2880
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2881
|
+
*/
|
|
2882
|
+
export declare function deserializeIntoBillingFundingCompletion(billingFundingCompletion?: Partial<BillingFundingCompletion> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2883
|
+
/**
|
|
2884
|
+
* The deserialization information for the current model
|
|
2885
|
+
* @param BillingFundingLineItem The instance to deserialize into.
|
|
2886
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2887
|
+
*/
|
|
2888
|
+
export declare function deserializeIntoBillingFundingLineItem(billingFundingLineItem?: Partial<BillingFundingLineItem> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2889
|
+
/**
|
|
2890
|
+
* The deserialization information for the current model
|
|
2891
|
+
* @param BillingFundingLinkCli The instance to deserialize into.
|
|
2892
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2893
|
+
*/
|
|
2894
|
+
export declare function deserializeIntoBillingFundingLinkCli(billingFundingLinkCli?: Partial<BillingFundingLinkCli> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2895
|
+
/**
|
|
2896
|
+
* The deserialization information for the current model
|
|
2897
|
+
* @param BillingFundingLinkCli_mpp_pay The instance to deserialize into.
|
|
2898
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2899
|
+
*/
|
|
2900
|
+
export declare function deserializeIntoBillingFundingLinkCli_mpp_pay(billingFundingLinkCli_mpp_pay?: Partial<BillingFundingLinkCli_mpp_pay> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2901
|
+
/**
|
|
2902
|
+
* The deserialization information for the current model
|
|
2903
|
+
* @param BillingFundingLinkCli_spend_request_create The instance to deserialize into.
|
|
2904
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2905
|
+
*/
|
|
2906
|
+
export declare function deserializeIntoBillingFundingLinkCli_spend_request_create(billingFundingLinkCli_spend_request_create?: Partial<BillingFundingLinkCli_spend_request_create> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2907
|
+
/**
|
|
2908
|
+
* The deserialization information for the current model
|
|
2909
|
+
* @param BillingFundingLinkMcp The instance to deserialize into.
|
|
2910
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2911
|
+
*/
|
|
2912
|
+
export declare function deserializeIntoBillingFundingLinkMcp(billingFundingLinkMcp?: Partial<BillingFundingLinkMcp> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2913
|
+
/**
|
|
2914
|
+
* The deserialization information for the current model
|
|
2915
|
+
* @param BillingFundingLinkMcp_mpp_pay_input_without_spend_request_id The instance to deserialize into.
|
|
2916
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2917
|
+
*/
|
|
2918
|
+
export declare function deserializeIntoBillingFundingLinkMcp_mpp_pay_input_without_spend_request_id(billingFundingLinkMcp_mpp_pay_input_without_spend_request_id?: Partial<BillingFundingLinkMcp_mpp_pay_input_without_spend_request_id> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2919
|
+
/**
|
|
2920
|
+
* The deserialization information for the current model
|
|
2921
|
+
* @param BillingFundingLinkMcp_spend_request_create_input_without_payment_method The instance to deserialize into.
|
|
2922
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2923
|
+
*/
|
|
2924
|
+
export declare function deserializeIntoBillingFundingLinkMcp_spend_request_create_input_without_payment_method(billingFundingLinkMcp_spend_request_create_input_without_payment_method?: Partial<BillingFundingLinkMcp_spend_request_create_input_without_payment_method> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2925
|
+
/**
|
|
2926
|
+
* The deserialization information for the current model
|
|
2927
|
+
* @param BillingFundingMerchant The instance to deserialize into.
|
|
2928
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2929
|
+
*/
|
|
2930
|
+
export declare function deserializeIntoBillingFundingMerchant(billingFundingMerchant?: Partial<BillingFundingMerchant> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2931
|
+
/**
|
|
2932
|
+
* The deserialization information for the current model
|
|
2933
|
+
* @param BillingFundingMpp The instance to deserialize into.
|
|
2934
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2935
|
+
*/
|
|
2936
|
+
export declare function deserializeIntoBillingFundingMpp(billingFundingMpp?: Partial<BillingFundingMpp> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2937
|
+
/**
|
|
2938
|
+
* The deserialization information for the current model
|
|
2939
|
+
* @param BillingFundingMpp_body The instance to deserialize into.
|
|
2940
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2941
|
+
*/
|
|
2942
|
+
export declare function deserializeIntoBillingFundingMpp_body(billingFundingMpp_body?: Partial<BillingFundingMpp_body> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2943
|
+
/**
|
|
2944
|
+
* The deserialization information for the current model
|
|
2945
|
+
* @param BillingFundingMppComplete The instance to deserialize into.
|
|
2946
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2947
|
+
*/
|
|
2948
|
+
export declare function deserializeIntoBillingFundingMppComplete(billingFundingMppComplete?: Partial<BillingFundingMppComplete> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2949
|
+
/**
|
|
2950
|
+
* The deserialization information for the current model
|
|
2951
|
+
* @param BillingFundingProviderResult The instance to deserialize into.
|
|
2952
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2953
|
+
*/
|
|
2954
|
+
export declare function deserializeIntoBillingFundingProviderResult(billingFundingProviderResult?: Partial<BillingFundingProviderResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2955
|
+
/**
|
|
2956
|
+
* The deserialization information for the current model
|
|
2957
|
+
* @param BillingFundingRequest The instance to deserialize into.
|
|
2958
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2959
|
+
*/
|
|
2960
|
+
export declare function deserializeIntoBillingFundingRequest(billingFundingRequest?: Partial<BillingFundingRequest> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2961
|
+
/**
|
|
2962
|
+
* The deserialization information for the current model
|
|
2963
|
+
* @param BillingFundingRequestCreate The instance to deserialize into.
|
|
2964
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2965
|
+
*/
|
|
2966
|
+
export declare function deserializeIntoBillingFundingRequestCreate(billingFundingRequestCreate?: Partial<BillingFundingRequestCreate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2967
|
+
/**
|
|
2968
|
+
* The deserialization information for the current model
|
|
2969
|
+
* @param BillingFundingTotal The instance to deserialize into.
|
|
2970
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2971
|
+
*/
|
|
2972
|
+
export declare function deserializeIntoBillingFundingTotal(billingFundingTotal?: Partial<BillingFundingTotal> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2295
2973
|
/**
|
|
2296
2974
|
* The deserialization information for the current model
|
|
2297
2975
|
* @param BillingUsage The instance to deserialize into.
|
|
@@ -2460,6 +3138,36 @@ export declare function deserializeIntoContent_source_metadata(content_source_me
|
|
|
2460
3138
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2461
3139
|
*/
|
|
2462
3140
|
export declare function deserializeIntoContentCreate(contentCreate?: Partial<ContentCreate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3141
|
+
/**
|
|
3142
|
+
* The deserialization information for the current model
|
|
3143
|
+
* @param ContentInspection The instance to deserialize into.
|
|
3144
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3145
|
+
*/
|
|
3146
|
+
export declare function deserializeIntoContentInspection(contentInspection?: Partial<ContentInspection> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3147
|
+
/**
|
|
3148
|
+
* The deserialization information for the current model
|
|
3149
|
+
* @param ContentInspection_metadata The instance to deserialize into.
|
|
3150
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3151
|
+
*/
|
|
3152
|
+
export declare function deserializeIntoContentInspection_metadata(contentInspection_metadata?: Partial<ContentInspection_metadata> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3153
|
+
/**
|
|
3154
|
+
* The deserialization information for the current model
|
|
3155
|
+
* @param ContentInspectionCoverage The instance to deserialize into.
|
|
3156
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3157
|
+
*/
|
|
3158
|
+
export declare function deserializeIntoContentInspectionCoverage(contentInspectionCoverage?: Partial<ContentInspectionCoverage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3159
|
+
/**
|
|
3160
|
+
* The deserialization information for the current model
|
|
3161
|
+
* @param ContentInspectionProvenance The instance to deserialize into.
|
|
3162
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3163
|
+
*/
|
|
3164
|
+
export declare function deserializeIntoContentInspectionProvenance(contentInspectionProvenance?: Partial<ContentInspectionProvenance> | undefined): Record<string, (node: ParseNode) => void>;
|
|
3165
|
+
/**
|
|
3166
|
+
* The deserialization information for the current model
|
|
3167
|
+
* @param ContentInspectionRef The instance to deserialize into.
|
|
3168
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
3169
|
+
*/
|
|
3170
|
+
export declare function deserializeIntoContentInspectionRef(contentInspectionRef?: Partial<ContentInspectionRef> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2463
3171
|
/**
|
|
2464
3172
|
* The deserialization information for the current model
|
|
2465
3173
|
* @param ContentList The instance to deserialize into.
|
|
@@ -3595,6 +4303,10 @@ export interface Run extends Parsable {
|
|
|
3595
4303
|
* The created_at property
|
|
3596
4304
|
*/
|
|
3597
4305
|
createdAt?: Date | null;
|
|
4306
|
+
/**
|
|
4307
|
+
* The current_execution_id property
|
|
4308
|
+
*/
|
|
4309
|
+
currentExecutionId?: string | null;
|
|
3598
4310
|
/**
|
|
3599
4311
|
* The error property
|
|
3600
4312
|
*/
|
|
@@ -3607,6 +4319,10 @@ export interface Run extends Parsable {
|
|
|
3607
4319
|
* The input property
|
|
3608
4320
|
*/
|
|
3609
4321
|
input?: Run_input | null;
|
|
4322
|
+
/**
|
|
4323
|
+
* The latest_execution_id property
|
|
4324
|
+
*/
|
|
4325
|
+
latestExecutionId?: string | null;
|
|
3610
4326
|
/**
|
|
3611
4327
|
* The mode property
|
|
3612
4328
|
*/
|
|
@@ -3623,6 +4339,10 @@ export interface Run extends Parsable {
|
|
|
3623
4339
|
* The status property
|
|
3624
4340
|
*/
|
|
3625
4341
|
status?: RunStatus | null;
|
|
4342
|
+
/**
|
|
4343
|
+
* The terminal_execution_id property
|
|
4344
|
+
*/
|
|
4345
|
+
terminalExecutionId?: string | null;
|
|
3626
4346
|
/**
|
|
3627
4347
|
* The updated_at property
|
|
3628
4348
|
*/
|
|
@@ -3869,6 +4589,13 @@ export declare function serializeAgentList(writer: SerializationWriter, agentLis
|
|
|
3869
4589
|
* @param writer Serialization writer to use to serialize this model
|
|
3870
4590
|
*/
|
|
3871
4591
|
export declare function serializeAgentPatch(writer: SerializationWriter, agentPatch?: Partial<AgentPatch> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4592
|
+
/**
|
|
4593
|
+
* Serializes information the current object
|
|
4594
|
+
* @param AgentTrigger The instance to serialize from.
|
|
4595
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4596
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4597
|
+
*/
|
|
4598
|
+
export declare function serializeAgentTrigger(writer: SerializationWriter, agentTrigger?: Partial<AgentTrigger> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
3872
4599
|
/**
|
|
3873
4600
|
* Serializes information the current object
|
|
3874
4601
|
* @param ApiKey The instance to serialize from.
|
|
@@ -3918,6 +4645,118 @@ export declare function serializeAuditEvent_data(writer: SerializationWriter, au
|
|
|
3918
4645
|
* @param writer Serialization writer to use to serialize this model
|
|
3919
4646
|
*/
|
|
3920
4647
|
export declare function serializeAuditEventList(writer: SerializationWriter, auditEventList?: Partial<AuditEventList> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4648
|
+
/**
|
|
4649
|
+
* Serializes information the current object
|
|
4650
|
+
* @param BillingFundingCompletion The instance to serialize from.
|
|
4651
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4652
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4653
|
+
*/
|
|
4654
|
+
export declare function serializeBillingFundingCompletion(writer: SerializationWriter, billingFundingCompletion?: Partial<BillingFundingCompletion> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4655
|
+
/**
|
|
4656
|
+
* Serializes information the current object
|
|
4657
|
+
* @param BillingFundingLineItem The instance to serialize from.
|
|
4658
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4659
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4660
|
+
*/
|
|
4661
|
+
export declare function serializeBillingFundingLineItem(writer: SerializationWriter, billingFundingLineItem?: Partial<BillingFundingLineItem> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4662
|
+
/**
|
|
4663
|
+
* Serializes information the current object
|
|
4664
|
+
* @param BillingFundingLinkCli The instance to serialize from.
|
|
4665
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4666
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4667
|
+
*/
|
|
4668
|
+
export declare function serializeBillingFundingLinkCli(writer: SerializationWriter, billingFundingLinkCli?: Partial<BillingFundingLinkCli> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4669
|
+
/**
|
|
4670
|
+
* Serializes information the current object
|
|
4671
|
+
* @param BillingFundingLinkCli_mpp_pay The instance to serialize from.
|
|
4672
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4673
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4674
|
+
*/
|
|
4675
|
+
export declare function serializeBillingFundingLinkCli_mpp_pay(writer: SerializationWriter, billingFundingLinkCli_mpp_pay?: Partial<BillingFundingLinkCli_mpp_pay> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4676
|
+
/**
|
|
4677
|
+
* Serializes information the current object
|
|
4678
|
+
* @param BillingFundingLinkCli_spend_request_create The instance to serialize from.
|
|
4679
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4680
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4681
|
+
*/
|
|
4682
|
+
export declare function serializeBillingFundingLinkCli_spend_request_create(writer: SerializationWriter, billingFundingLinkCli_spend_request_create?: Partial<BillingFundingLinkCli_spend_request_create> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4683
|
+
/**
|
|
4684
|
+
* Serializes information the current object
|
|
4685
|
+
* @param BillingFundingLinkMcp The instance to serialize from.
|
|
4686
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4687
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4688
|
+
*/
|
|
4689
|
+
export declare function serializeBillingFundingLinkMcp(writer: SerializationWriter, billingFundingLinkMcp?: Partial<BillingFundingLinkMcp> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4690
|
+
/**
|
|
4691
|
+
* Serializes information the current object
|
|
4692
|
+
* @param BillingFundingLinkMcp_mpp_pay_input_without_spend_request_id The instance to serialize from.
|
|
4693
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4694
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4695
|
+
*/
|
|
4696
|
+
export declare function serializeBillingFundingLinkMcp_mpp_pay_input_without_spend_request_id(writer: SerializationWriter, billingFundingLinkMcp_mpp_pay_input_without_spend_request_id?: Partial<BillingFundingLinkMcp_mpp_pay_input_without_spend_request_id> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4697
|
+
/**
|
|
4698
|
+
* Serializes information the current object
|
|
4699
|
+
* @param BillingFundingLinkMcp_spend_request_create_input_without_payment_method The instance to serialize from.
|
|
4700
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4701
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4702
|
+
*/
|
|
4703
|
+
export declare function serializeBillingFundingLinkMcp_spend_request_create_input_without_payment_method(writer: SerializationWriter, billingFundingLinkMcp_spend_request_create_input_without_payment_method?: Partial<BillingFundingLinkMcp_spend_request_create_input_without_payment_method> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4704
|
+
/**
|
|
4705
|
+
* Serializes information the current object
|
|
4706
|
+
* @param BillingFundingMerchant The instance to serialize from.
|
|
4707
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4708
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4709
|
+
*/
|
|
4710
|
+
export declare function serializeBillingFundingMerchant(writer: SerializationWriter, billingFundingMerchant?: Partial<BillingFundingMerchant> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4711
|
+
/**
|
|
4712
|
+
* Serializes information the current object
|
|
4713
|
+
* @param BillingFundingMpp The instance to serialize from.
|
|
4714
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4715
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4716
|
+
*/
|
|
4717
|
+
export declare function serializeBillingFundingMpp(writer: SerializationWriter, billingFundingMpp?: Partial<BillingFundingMpp> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4718
|
+
/**
|
|
4719
|
+
* Serializes information the current object
|
|
4720
|
+
* @param BillingFundingMpp_body The instance to serialize from.
|
|
4721
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4722
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4723
|
+
*/
|
|
4724
|
+
export declare function serializeBillingFundingMpp_body(writer: SerializationWriter, billingFundingMpp_body?: Partial<BillingFundingMpp_body> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4725
|
+
/**
|
|
4726
|
+
* Serializes information the current object
|
|
4727
|
+
* @param BillingFundingMppComplete The instance to serialize from.
|
|
4728
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4729
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4730
|
+
*/
|
|
4731
|
+
export declare function serializeBillingFundingMppComplete(writer: SerializationWriter, billingFundingMppComplete?: Partial<BillingFundingMppComplete> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4732
|
+
/**
|
|
4733
|
+
* Serializes information the current object
|
|
4734
|
+
* @param BillingFundingProviderResult The instance to serialize from.
|
|
4735
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4736
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4737
|
+
*/
|
|
4738
|
+
export declare function serializeBillingFundingProviderResult(writer: SerializationWriter, billingFundingProviderResult?: Partial<BillingFundingProviderResult> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4739
|
+
/**
|
|
4740
|
+
* Serializes information the current object
|
|
4741
|
+
* @param BillingFundingRequest The instance to serialize from.
|
|
4742
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4743
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4744
|
+
*/
|
|
4745
|
+
export declare function serializeBillingFundingRequest(writer: SerializationWriter, billingFundingRequest?: Partial<BillingFundingRequest> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4746
|
+
/**
|
|
4747
|
+
* Serializes information the current object
|
|
4748
|
+
* @param BillingFundingRequestCreate The instance to serialize from.
|
|
4749
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4750
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4751
|
+
*/
|
|
4752
|
+
export declare function serializeBillingFundingRequestCreate(writer: SerializationWriter, billingFundingRequestCreate?: Partial<BillingFundingRequestCreate> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4753
|
+
/**
|
|
4754
|
+
* Serializes information the current object
|
|
4755
|
+
* @param BillingFundingTotal The instance to serialize from.
|
|
4756
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4757
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4758
|
+
*/
|
|
4759
|
+
export declare function serializeBillingFundingTotal(writer: SerializationWriter, billingFundingTotal?: Partial<BillingFundingTotal> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
3921
4760
|
/**
|
|
3922
4761
|
* Serializes information the current object
|
|
3923
4762
|
* @param BillingUsage The instance to serialize from.
|
|
@@ -4114,6 +4953,41 @@ export declare function serializeContent_source_metadata(writer: SerializationWr
|
|
|
4114
4953
|
* @param writer Serialization writer to use to serialize this model
|
|
4115
4954
|
*/
|
|
4116
4955
|
export declare function serializeContentCreate(writer: SerializationWriter, contentCreate?: Partial<ContentCreate> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4956
|
+
/**
|
|
4957
|
+
* Serializes information the current object
|
|
4958
|
+
* @param ContentInspection The instance to serialize from.
|
|
4959
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4960
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4961
|
+
*/
|
|
4962
|
+
export declare function serializeContentInspection(writer: SerializationWriter, contentInspection?: Partial<ContentInspection> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4963
|
+
/**
|
|
4964
|
+
* Serializes information the current object
|
|
4965
|
+
* @param ContentInspection_metadata The instance to serialize from.
|
|
4966
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4967
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4968
|
+
*/
|
|
4969
|
+
export declare function serializeContentInspection_metadata(writer: SerializationWriter, contentInspection_metadata?: Partial<ContentInspection_metadata> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4970
|
+
/**
|
|
4971
|
+
* Serializes information the current object
|
|
4972
|
+
* @param ContentInspectionCoverage The instance to serialize from.
|
|
4973
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4974
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4975
|
+
*/
|
|
4976
|
+
export declare function serializeContentInspectionCoverage(writer: SerializationWriter, contentInspectionCoverage?: Partial<ContentInspectionCoverage> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4977
|
+
/**
|
|
4978
|
+
* Serializes information the current object
|
|
4979
|
+
* @param ContentInspectionProvenance The instance to serialize from.
|
|
4980
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4981
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4982
|
+
*/
|
|
4983
|
+
export declare function serializeContentInspectionProvenance(writer: SerializationWriter, contentInspectionProvenance?: Partial<ContentInspectionProvenance> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4984
|
+
/**
|
|
4985
|
+
* Serializes information the current object
|
|
4986
|
+
* @param ContentInspectionRef The instance to serialize from.
|
|
4987
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
4988
|
+
* @param writer Serialization writer to use to serialize this model
|
|
4989
|
+
*/
|
|
4990
|
+
export declare function serializeContentInspectionRef(writer: SerializationWriter, contentInspectionRef?: Partial<ContentInspectionRef> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4117
4991
|
/**
|
|
4118
4992
|
* Serializes information the current object
|
|
4119
4993
|
* @param ContentList The instance to serialize from.
|
|
@@ -5317,6 +6191,14 @@ export declare const AuditEvent_actorObject: {
|
|
|
5317
6191
|
readonly Stripe: "stripe";
|
|
5318
6192
|
readonly Webhook: "webhook";
|
|
5319
6193
|
};
|
|
6194
|
+
export declare const BillingFundingStatusObject: {
|
|
6195
|
+
readonly Payment_required: "payment_required";
|
|
6196
|
+
readonly Processing: "processing";
|
|
6197
|
+
readonly Succeeded: "succeeded";
|
|
6198
|
+
readonly Failed: "failed";
|
|
6199
|
+
readonly Expired: "expired";
|
|
6200
|
+
readonly Cancelled: "cancelled";
|
|
6201
|
+
};
|
|
5320
6202
|
export declare const BillingUsage_provider_kindObject: {
|
|
5321
6203
|
readonly None: "none";
|
|
5322
6204
|
readonly Stripe: "stripe";
|
|
@@ -5381,6 +6263,27 @@ export declare const ConnectorProviderObject: {
|
|
|
5381
6263
|
readonly Google_chat: "google_chat";
|
|
5382
6264
|
readonly Whatsapp: "whatsapp";
|
|
5383
6265
|
};
|
|
6266
|
+
export declare const ContentInspection_resource_typeObject: {
|
|
6267
|
+
readonly Content: "content";
|
|
6268
|
+
};
|
|
6269
|
+
export declare const ContentInspectionCoverage_source_kindObject: {
|
|
6270
|
+
readonly Inline_markdown: "inline_markdown";
|
|
6271
|
+
readonly Stored_summary: "stored_summary";
|
|
6272
|
+
readonly Stored_description: "stored_description";
|
|
6273
|
+
readonly Resource_name: "resource_name";
|
|
6274
|
+
};
|
|
6275
|
+
export declare const ContentInspectionCoverage_statusObject: {
|
|
6276
|
+
readonly Full: "full";
|
|
6277
|
+
readonly Partial: "partial";
|
|
6278
|
+
readonly Preview: "preview";
|
|
6279
|
+
readonly Truncated: "truncated";
|
|
6280
|
+
};
|
|
6281
|
+
export declare const ContentInspectionProvenance_sourceObject: {
|
|
6282
|
+
readonly Markdown: "markdown";
|
|
6283
|
+
readonly Summary: "summary";
|
|
6284
|
+
readonly Description: "description";
|
|
6285
|
+
readonly Resource: "resource";
|
|
6286
|
+
};
|
|
5384
6287
|
export declare const ContentTypeObject: {
|
|
5385
6288
|
readonly Commit: "commit";
|
|
5386
6289
|
readonly Email: "email";
|