@databricks/sdk-marketplaces 0.1.0-dev.1 → 0.1.0-dev.3
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/v1/client.d.ts +48 -48
- package/dist/v1/client.d.ts.map +1 -1
- package/dist/v1/client.js +242 -242
- package/dist/v1/client.js.map +1 -1
- package/dist/v1/index.d.ts +1 -1
- package/dist/v1/index.d.ts.map +1 -1
- package/dist/v1/model.d.ts +118 -118
- package/dist/v1/model.d.ts.map +1 -1
- package/dist/v1/model.js +71 -106
- package/dist/v1/model.js.map +1 -1
- package/dist/v1/utils.d.ts +1 -2
- package/dist/v1/utils.d.ts.map +1 -1
- package/dist/v1/utils.js +1 -1
- package/dist/v1/utils.js.map +1 -1
- package/package.json +6 -5
- package/src/v1/client.ts +478 -511
- package/src/v1/index.ts +40 -40
- package/src/v1/model.ts +184 -252
- package/src/v1/utils.ts +3 -3
package/src/v1/model.ts
CHANGED
|
@@ -199,19 +199,21 @@ export interface CreateFileRequest {
|
|
|
199
199
|
displayName?: string | undefined;
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
-
|
|
203
|
-
export interface CreateFileRequest_Response {
|
|
202
|
+
export interface CreateFileResponse {
|
|
204
203
|
/** Pre-signed POST URL to blob storage */
|
|
205
204
|
uploadUrl?: string | undefined;
|
|
206
205
|
fileInfo?: FileInfo | undefined;
|
|
207
206
|
}
|
|
208
207
|
|
|
208
|
+
export interface CreateInstallationResponse {
|
|
209
|
+
installation?: InstallationDetail | undefined;
|
|
210
|
+
}
|
|
211
|
+
|
|
209
212
|
export interface CreateListingRequest {
|
|
210
213
|
listing?: Listing | undefined;
|
|
211
214
|
}
|
|
212
215
|
|
|
213
|
-
|
|
214
|
-
export interface CreateListingRequest_Response {
|
|
216
|
+
export interface CreateListingResponse {
|
|
215
217
|
listingId?: string | undefined;
|
|
216
218
|
}
|
|
217
219
|
|
|
@@ -231,16 +233,14 @@ export interface CreatePersonalizationRequest {
|
|
|
231
233
|
acceptedConsumerTerms?: ConsumerTerms | undefined;
|
|
232
234
|
}
|
|
233
235
|
|
|
234
|
-
|
|
235
|
-
export interface CreatePersonalizationRequest_Response {
|
|
236
|
+
export interface CreatePersonalizationResponse {
|
|
236
237
|
id?: string | undefined;
|
|
237
238
|
}
|
|
238
239
|
|
|
239
240
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
240
241
|
export interface CreateProviderAnalyticsDashboardRequest {}
|
|
241
242
|
|
|
242
|
-
|
|
243
|
-
export interface CreateProviderAnalyticsDashboardRequest_Response {
|
|
243
|
+
export interface CreateProviderAnalyticsDashboardResponse {
|
|
244
244
|
id?: string | undefined;
|
|
245
245
|
}
|
|
246
246
|
|
|
@@ -248,8 +248,7 @@ export interface CreateProviderRequest {
|
|
|
248
248
|
provider?: ProviderInfo | undefined;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
-
|
|
252
|
-
export interface CreateProviderRequest_Response {
|
|
251
|
+
export interface CreateProviderResponse {
|
|
253
252
|
id?: string | undefined;
|
|
254
253
|
}
|
|
255
254
|
|
|
@@ -276,22 +275,25 @@ export interface DeleteFileRequest {
|
|
|
276
275
|
fileId?: string | undefined;
|
|
277
276
|
}
|
|
278
277
|
|
|
279
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
280
|
-
export interface
|
|
278
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
279
|
+
export interface DeleteFileResponse {}
|
|
280
|
+
|
|
281
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
282
|
+
export interface DeleteInstallationResponse {}
|
|
281
283
|
|
|
282
284
|
export interface DeleteListingRequest {
|
|
283
285
|
id?: string | undefined;
|
|
284
286
|
}
|
|
285
287
|
|
|
286
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
287
|
-
export interface
|
|
288
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
289
|
+
export interface DeleteListingResponse {}
|
|
288
290
|
|
|
289
291
|
export interface DeleteProviderRequest {
|
|
290
292
|
id?: string | undefined;
|
|
291
293
|
}
|
|
292
294
|
|
|
293
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
294
|
-
export interface
|
|
295
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
296
|
+
export interface DeleteProviderResponse {}
|
|
295
297
|
|
|
296
298
|
export interface Exchange {
|
|
297
299
|
id?: string | undefined;
|
|
@@ -348,24 +350,7 @@ export interface FileParent {
|
|
|
348
350
|
fileParentType?: FileParentType | undefined;
|
|
349
351
|
}
|
|
350
352
|
|
|
351
|
-
export interface
|
|
352
|
-
pageToken?: string | undefined;
|
|
353
|
-
pageSize?: number | undefined;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
357
|
-
export interface GetAllInstallations_Response {
|
|
358
|
-
installations?: InstallationDetail[] | undefined;
|
|
359
|
-
nextPageToken?: string | undefined;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
export interface GetAllPersonalizationRequestsForConsumer {
|
|
363
|
-
pageToken?: string | undefined;
|
|
364
|
-
pageSize?: number | undefined;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
368
|
-
export interface GetAllPersonalizationRequestsForConsumer_Response {
|
|
353
|
+
export interface GetAllPersonalizationRequestsForConsumerResponse {
|
|
369
354
|
personalizationRequests?: PersonalizationRequest[] | undefined;
|
|
370
355
|
nextPageToken?: string | undefined;
|
|
371
356
|
}
|
|
@@ -382,8 +367,7 @@ export interface GetFileRequest {
|
|
|
382
367
|
fileId?: string | undefined;
|
|
383
368
|
}
|
|
384
369
|
|
|
385
|
-
|
|
386
|
-
export interface GetFileRequest_Response {
|
|
370
|
+
export interface GetFileResponse {
|
|
387
371
|
fileInfo?: FileInfo | undefined;
|
|
388
372
|
}
|
|
389
373
|
|
|
@@ -393,12 +377,6 @@ export interface GetInstallationDetails {
|
|
|
393
377
|
pageSize?: number | undefined;
|
|
394
378
|
}
|
|
395
379
|
|
|
396
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
397
|
-
export interface GetInstallationDetails_Response {
|
|
398
|
-
installations?: InstallationDetail[] | undefined;
|
|
399
|
-
nextPageToken?: string | undefined;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
380
|
/**
|
|
403
381
|
* this is effectively a static request for now and will return latest version of the dashboard template
|
|
404
382
|
* that exists on server.
|
|
@@ -406,8 +384,7 @@ export interface GetInstallationDetails_Response {
|
|
|
406
384
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
407
385
|
export interface GetLatestVersionProviderAnalyticsDashboardRequest {}
|
|
408
386
|
|
|
409
|
-
|
|
410
|
-
export interface GetLatestVersionProviderAnalyticsDashboardRequest_Response {
|
|
387
|
+
export interface GetLatestVersionProviderAnalyticsDashboardResponse {
|
|
411
388
|
/** version here is latest logical version of the dashboard template */
|
|
412
389
|
version?: bigint | undefined;
|
|
413
390
|
}
|
|
@@ -418,40 +395,20 @@ export interface GetListingContent {
|
|
|
418
395
|
pageSize?: number | undefined;
|
|
419
396
|
}
|
|
420
397
|
|
|
421
|
-
|
|
422
|
-
export interface GetListingContent_Response {
|
|
398
|
+
export interface GetListingContentMetadataResponse {
|
|
423
399
|
sharedDataObjects?: SharedDataObject[] | undefined;
|
|
424
400
|
nextPageToken?: string | undefined;
|
|
425
401
|
}
|
|
426
402
|
|
|
427
|
-
export interface GetListingFulfillments {
|
|
428
|
-
listingId?: string | undefined;
|
|
429
|
-
pageToken?: string | undefined;
|
|
430
|
-
pageSize?: number | undefined;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
434
|
-
export interface GetListingFulfillments_Response {
|
|
435
|
-
fulfillments?: ListingFulfillment[] | undefined;
|
|
436
|
-
nextPageToken?: string | undefined;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
403
|
export interface GetListingRequest {
|
|
440
404
|
id?: string | undefined;
|
|
441
405
|
}
|
|
442
406
|
|
|
443
|
-
|
|
444
|
-
export interface GetListingRequest_Response {
|
|
407
|
+
export interface GetListingResponse {
|
|
445
408
|
listing?: Listing | undefined;
|
|
446
409
|
}
|
|
447
410
|
|
|
448
|
-
export interface
|
|
449
|
-
pageToken?: string | undefined;
|
|
450
|
-
pageSize?: number | undefined;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
454
|
-
export interface GetListingsRequest_Response {
|
|
411
|
+
export interface GetListingsResponse {
|
|
455
412
|
listings?: Listing[] | undefined;
|
|
456
413
|
nextPageToken?: string | undefined;
|
|
457
414
|
}
|
|
@@ -460,8 +417,7 @@ export interface GetPersonalizationRequestsForConsumer {
|
|
|
460
417
|
listingId?: string | undefined;
|
|
461
418
|
}
|
|
462
419
|
|
|
463
|
-
|
|
464
|
-
export interface GetPersonalizationRequestsForConsumer_Response {
|
|
420
|
+
export interface GetPersonalizationRequestsForConsumerResponse {
|
|
465
421
|
personalizationRequests?: PersonalizationRequest[] | undefined;
|
|
466
422
|
}
|
|
467
423
|
|
|
@@ -470,8 +426,7 @@ export interface GetPersonalizationRequestsForProviderRequest {
|
|
|
470
426
|
pageSize?: number | undefined;
|
|
471
427
|
}
|
|
472
428
|
|
|
473
|
-
|
|
474
|
-
export interface GetPersonalizationRequestsForProviderRequest_Response {
|
|
429
|
+
export interface GetPersonalizationRequestsForProviderResponse {
|
|
475
430
|
personalizationRequests?: PersonalizationRequest[] | undefined;
|
|
476
431
|
nextPageToken?: string | undefined;
|
|
477
432
|
}
|
|
@@ -480,8 +435,7 @@ export interface GetProviderRequest {
|
|
|
480
435
|
id?: string | undefined;
|
|
481
436
|
}
|
|
482
437
|
|
|
483
|
-
|
|
484
|
-
export interface GetProviderRequest_Response {
|
|
438
|
+
export interface GetProviderResponse {
|
|
485
439
|
provider?: ProviderInfo | undefined;
|
|
486
440
|
}
|
|
487
441
|
|
|
@@ -489,33 +443,11 @@ export interface GetPublishedListingForConsumer {
|
|
|
489
443
|
id?: string | undefined;
|
|
490
444
|
}
|
|
491
445
|
|
|
492
|
-
|
|
493
|
-
export interface GetPublishedListingForConsumer_Response {
|
|
446
|
+
export interface GetPublishedListingForConsumerResponse {
|
|
494
447
|
listing?: Listing | undefined;
|
|
495
448
|
}
|
|
496
449
|
|
|
497
|
-
|
|
498
|
-
export interface GetPublishedListingsForConsumer {
|
|
499
|
-
pageToken?: string | undefined;
|
|
500
|
-
pageSize?: number | undefined;
|
|
501
|
-
/** Matches any of the following asset types */
|
|
502
|
-
assets?: AssetType[] | undefined;
|
|
503
|
-
/** Matches any of the following categories */
|
|
504
|
-
categories?: Category[] | undefined;
|
|
505
|
-
/** Matches listings with this tag */
|
|
506
|
-
tags?: ListingTag | undefined;
|
|
507
|
-
/** Filters each listing based on if it is free. */
|
|
508
|
-
isFree?: boolean | undefined;
|
|
509
|
-
/** Filters each listing based on if it is a private exchange. */
|
|
510
|
-
isPrivateExchange?: boolean | undefined;
|
|
511
|
-
/** Filters each listing based on whether it is a staff pick. */
|
|
512
|
-
isStaffPick?: boolean | undefined;
|
|
513
|
-
/** Matches any of the following provider ids */
|
|
514
|
-
providerIds?: string[] | undefined;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
518
|
-
export interface GetPublishedListingsForConsumer_Response {
|
|
450
|
+
export interface GetPublishedListingsForConsumerResponse {
|
|
519
451
|
listings?: Listing[] | undefined;
|
|
520
452
|
nextPageToken?: string | undefined;
|
|
521
453
|
}
|
|
@@ -524,8 +456,7 @@ export interface GetPublishedProviderForConsumer {
|
|
|
524
456
|
id?: string | undefined;
|
|
525
457
|
}
|
|
526
458
|
|
|
527
|
-
|
|
528
|
-
export interface GetPublishedProviderForConsumer_Response {
|
|
459
|
+
export interface GetPublishedProviderForConsumerResponse {
|
|
529
460
|
provider?: ProviderInfo | undefined;
|
|
530
461
|
}
|
|
531
462
|
|
|
@@ -539,11 +470,6 @@ export interface InstallListing {
|
|
|
539
470
|
acceptedConsumerTerms?: ConsumerTerms | undefined;
|
|
540
471
|
}
|
|
541
472
|
|
|
542
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
543
|
-
export interface InstallListing_Response {
|
|
544
|
-
installation?: InstallationDetail | undefined;
|
|
545
|
-
}
|
|
546
|
-
|
|
547
473
|
export interface InstallationDetail {
|
|
548
474
|
id?: string | undefined;
|
|
549
475
|
listingId?: string | undefined;
|
|
@@ -560,6 +486,11 @@ export interface InstallationDetail {
|
|
|
560
486
|
tokenDetail?: TokenDetail | undefined;
|
|
561
487
|
}
|
|
562
488
|
|
|
489
|
+
export interface ListAllInstallationsResponse {
|
|
490
|
+
installations?: InstallationDetail[] | undefined;
|
|
491
|
+
nextPageToken?: string | undefined;
|
|
492
|
+
}
|
|
493
|
+
|
|
563
494
|
export interface ListExchangeFiltersRequest {
|
|
564
495
|
exchangeId?: string | undefined;
|
|
565
496
|
pageToken?: string | undefined;
|
|
@@ -598,12 +529,32 @@ export interface ListFilesRequest {
|
|
|
598
529
|
pageSize?: number | undefined;
|
|
599
530
|
}
|
|
600
531
|
|
|
601
|
-
|
|
602
|
-
export interface ListFilesRequest_Response {
|
|
532
|
+
export interface ListFilesResponse {
|
|
603
533
|
fileInfos?: FileInfo[] | undefined;
|
|
604
534
|
nextPageToken?: string | undefined;
|
|
605
535
|
}
|
|
606
536
|
|
|
537
|
+
export interface ListFulfillmentsResponse {
|
|
538
|
+
fulfillments?: ListingFulfillment[] | undefined;
|
|
539
|
+
nextPageToken?: string | undefined;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
export interface ListInstallationsRequest {
|
|
543
|
+
pageToken?: string | undefined;
|
|
544
|
+
pageSize?: number | undefined;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
export interface ListInstallationsResponse {
|
|
548
|
+
installations?: InstallationDetail[] | undefined;
|
|
549
|
+
nextPageToken?: string | undefined;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
export interface ListListingFulfillmentsRequest {
|
|
553
|
+
listingId?: string | undefined;
|
|
554
|
+
pageToken?: string | undefined;
|
|
555
|
+
pageSize?: number | undefined;
|
|
556
|
+
}
|
|
557
|
+
|
|
607
558
|
export interface ListListingsForExchangeRequest {
|
|
608
559
|
exchangeId?: string | undefined;
|
|
609
560
|
pageToken?: string | undefined;
|
|
@@ -615,11 +566,20 @@ export interface ListListingsForExchangeResponse {
|
|
|
615
566
|
nextPageToken?: string | undefined;
|
|
616
567
|
}
|
|
617
568
|
|
|
569
|
+
export interface ListListingsRequest {
|
|
570
|
+
pageToken?: string | undefined;
|
|
571
|
+
pageSize?: number | undefined;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
export interface ListPersonalizationRequestsForConsumerRequest {
|
|
575
|
+
pageToken?: string | undefined;
|
|
576
|
+
pageSize?: number | undefined;
|
|
577
|
+
}
|
|
578
|
+
|
|
618
579
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
619
580
|
export interface ListProviderAnalyticsDashboardRequest {}
|
|
620
581
|
|
|
621
|
-
|
|
622
|
-
export interface ListProviderAnalyticsDashboardRequest_Response {
|
|
582
|
+
export interface ListProviderAnalyticsDashboardResponse {
|
|
623
583
|
id?: string | undefined;
|
|
624
584
|
version?: bigint | undefined;
|
|
625
585
|
/** dashboard_id will be used to open Lakeview dashboard. */
|
|
@@ -631,20 +591,38 @@ export interface ListProvidersRequest {
|
|
|
631
591
|
pageSize?: number | undefined;
|
|
632
592
|
}
|
|
633
593
|
|
|
634
|
-
|
|
635
|
-
export interface ListProvidersRequest_Response {
|
|
594
|
+
export interface ListProvidersResponse {
|
|
636
595
|
providers?: ProviderInfo[] | undefined;
|
|
637
596
|
nextPageToken?: string | undefined;
|
|
638
597
|
}
|
|
639
598
|
|
|
599
|
+
/** Listing messages */
|
|
600
|
+
export interface ListPublishedListingsForConsumerRequest {
|
|
601
|
+
pageToken?: string | undefined;
|
|
602
|
+
pageSize?: number | undefined;
|
|
603
|
+
/** Matches any of the following asset types */
|
|
604
|
+
assets?: AssetType[] | undefined;
|
|
605
|
+
/** Matches any of the following categories */
|
|
606
|
+
categories?: Category[] | undefined;
|
|
607
|
+
/** Matches listings with this tag */
|
|
608
|
+
tags?: ListingTag | undefined;
|
|
609
|
+
/** Filters each listing based on if it is free. */
|
|
610
|
+
isFree?: boolean | undefined;
|
|
611
|
+
/** Filters each listing based on if it is a private exchange. */
|
|
612
|
+
isPrivateExchange?: boolean | undefined;
|
|
613
|
+
/** Filters each listing based on whether it is a staff pick. */
|
|
614
|
+
isStaffPick?: boolean | undefined;
|
|
615
|
+
/** Matches any of the following provider ids */
|
|
616
|
+
providerIds?: string[] | undefined;
|
|
617
|
+
}
|
|
618
|
+
|
|
640
619
|
export interface ListPublishedProvidersForConsumer {
|
|
641
620
|
pageToken?: string | undefined;
|
|
642
621
|
pageSize?: number | undefined;
|
|
643
622
|
isFeatured?: boolean | undefined;
|
|
644
623
|
}
|
|
645
624
|
|
|
646
|
-
|
|
647
|
-
export interface ListPublishedProvidersForConsumer_Response {
|
|
625
|
+
export interface ListPublishedProvidersForConsumerResponse {
|
|
648
626
|
providers?: ProviderInfo[] | undefined;
|
|
649
627
|
nextPageToken?: string | undefined;
|
|
650
628
|
}
|
|
@@ -830,8 +808,7 @@ export interface SearchPublishedListingsForConsumer {
|
|
|
830
808
|
pageSize?: number | undefined;
|
|
831
809
|
}
|
|
832
810
|
|
|
833
|
-
|
|
834
|
-
export interface SearchPublishedListingsForConsumer_Response {
|
|
811
|
+
export interface SearchPublishedListingsForConsumerResponse {
|
|
835
812
|
listings?: Listing[] | undefined;
|
|
836
813
|
nextPageToken?: string | undefined;
|
|
837
814
|
}
|
|
@@ -884,9 +861,6 @@ export interface UninstallListing {
|
|
|
884
861
|
installationId?: string | undefined;
|
|
885
862
|
}
|
|
886
863
|
|
|
887
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention, @typescript-eslint/no-empty-object-type -- Proto-style nested message name.
|
|
888
|
-
export interface UninstallListing_Response {}
|
|
889
|
-
|
|
890
864
|
export interface UpdateExchangeFilterRequest {
|
|
891
865
|
id?: string | undefined;
|
|
892
866
|
filter?: ExchangeFilter | undefined;
|
|
@@ -912,8 +886,7 @@ export interface UpdateInstallationDetail {
|
|
|
912
886
|
rotateToken?: boolean | undefined;
|
|
913
887
|
}
|
|
914
888
|
|
|
915
|
-
|
|
916
|
-
export interface UpdateInstallationDetail_Response {
|
|
889
|
+
export interface UpdateInstallationResponse {
|
|
917
890
|
installation?: InstallationDetail | undefined;
|
|
918
891
|
}
|
|
919
892
|
|
|
@@ -922,8 +895,7 @@ export interface UpdateListingRequest {
|
|
|
922
895
|
listing?: Listing | undefined;
|
|
923
896
|
}
|
|
924
897
|
|
|
925
|
-
|
|
926
|
-
export interface UpdateListingRequest_Response {
|
|
898
|
+
export interface UpdateListingResponse {
|
|
927
899
|
listing?: Listing | undefined;
|
|
928
900
|
}
|
|
929
901
|
|
|
@@ -935,8 +907,7 @@ export interface UpdatePersonalizationRequestStatusRequest {
|
|
|
935
907
|
share?: ShareInfo | undefined;
|
|
936
908
|
}
|
|
937
909
|
|
|
938
|
-
|
|
939
|
-
export interface UpdatePersonalizationRequestStatusRequest_Response {
|
|
910
|
+
export interface UpdatePersonalizationRequestStatusResponse {
|
|
940
911
|
request?: PersonalizationRequest | undefined;
|
|
941
912
|
}
|
|
942
913
|
|
|
@@ -950,8 +921,7 @@ export interface UpdateProviderAnalyticsDashboardRequest {
|
|
|
950
921
|
version?: bigint | undefined;
|
|
951
922
|
}
|
|
952
923
|
|
|
953
|
-
|
|
954
|
-
export interface UpdateProviderAnalyticsDashboardRequest_Response {
|
|
924
|
+
export interface UpdateProviderAnalyticsDashboardResponse {
|
|
955
925
|
/** id & version should be the same as the request */
|
|
956
926
|
id?: string | undefined;
|
|
957
927
|
version?: bigint | undefined;
|
|
@@ -964,8 +934,7 @@ export interface UpdateProviderRequest {
|
|
|
964
934
|
provider?: ProviderInfo | undefined;
|
|
965
935
|
}
|
|
966
936
|
|
|
967
|
-
|
|
968
|
-
export interface UpdateProviderRequest_Response {
|
|
937
|
+
export interface UpdateProviderResponse {
|
|
969
938
|
provider?: ProviderInfo | undefined;
|
|
970
939
|
}
|
|
971
940
|
|
|
@@ -1030,8 +999,7 @@ export const unmarshalCreateExchangeResponseSchema: z.ZodType<CreateExchangeResp
|
|
|
1030
999
|
exchangeId: d.exchange_id,
|
|
1031
1000
|
}));
|
|
1032
1001
|
|
|
1033
|
-
|
|
1034
|
-
export const unmarshalCreateFileRequest_ResponseSchema: z.ZodType<CreateFileRequest_Response> =
|
|
1002
|
+
export const unmarshalCreateFileResponseSchema: z.ZodType<CreateFileResponse> =
|
|
1035
1003
|
z
|
|
1036
1004
|
.object({
|
|
1037
1005
|
upload_url: z.string().optional(),
|
|
@@ -1042,8 +1010,16 @@ export const unmarshalCreateFileRequest_ResponseSchema: z.ZodType<CreateFileRequ
|
|
|
1042
1010
|
fileInfo: d.file_info,
|
|
1043
1011
|
}));
|
|
1044
1012
|
|
|
1045
|
-
|
|
1046
|
-
|
|
1013
|
+
export const unmarshalCreateInstallationResponseSchema: z.ZodType<CreateInstallationResponse> =
|
|
1014
|
+
z
|
|
1015
|
+
.object({
|
|
1016
|
+
installation: z.lazy(() => unmarshalInstallationDetailSchema).optional(),
|
|
1017
|
+
})
|
|
1018
|
+
.transform(d => ({
|
|
1019
|
+
installation: d.installation,
|
|
1020
|
+
}));
|
|
1021
|
+
|
|
1022
|
+
export const unmarshalCreateListingResponseSchema: z.ZodType<CreateListingResponse> =
|
|
1047
1023
|
z
|
|
1048
1024
|
.object({
|
|
1049
1025
|
listing_id: z.string().optional(),
|
|
@@ -1052,8 +1028,7 @@ export const unmarshalCreateListingRequest_ResponseSchema: z.ZodType<CreateListi
|
|
|
1052
1028
|
listingId: d.listing_id,
|
|
1053
1029
|
}));
|
|
1054
1030
|
|
|
1055
|
-
|
|
1056
|
-
export const unmarshalCreatePersonalizationRequest_ResponseSchema: z.ZodType<CreatePersonalizationRequest_Response> =
|
|
1031
|
+
export const unmarshalCreatePersonalizationResponseSchema: z.ZodType<CreatePersonalizationResponse> =
|
|
1057
1032
|
z
|
|
1058
1033
|
.object({
|
|
1059
1034
|
id: z.string().optional(),
|
|
@@ -1062,8 +1037,7 @@ export const unmarshalCreatePersonalizationRequest_ResponseSchema: z.ZodType<Cre
|
|
|
1062
1037
|
id: d.id,
|
|
1063
1038
|
}));
|
|
1064
1039
|
|
|
1065
|
-
|
|
1066
|
-
export const unmarshalCreateProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<CreateProviderAnalyticsDashboardRequest_Response> =
|
|
1040
|
+
export const unmarshalCreateProviderAnalyticsDashboardResponseSchema: z.ZodType<CreateProviderAnalyticsDashboardResponse> =
|
|
1067
1041
|
z
|
|
1068
1042
|
.object({
|
|
1069
1043
|
id: z.string().optional(),
|
|
@@ -1072,8 +1046,7 @@ export const unmarshalCreateProviderAnalyticsDashboardRequest_ResponseSchema: z.
|
|
|
1072
1046
|
id: d.id,
|
|
1073
1047
|
}));
|
|
1074
1048
|
|
|
1075
|
-
|
|
1076
|
-
export const unmarshalCreateProviderRequest_ResponseSchema: z.ZodType<CreateProviderRequest_Response> =
|
|
1049
|
+
export const unmarshalCreateProviderResponseSchema: z.ZodType<CreateProviderResponse> =
|
|
1077
1050
|
z
|
|
1078
1051
|
.object({
|
|
1079
1052
|
id: z.string().optional(),
|
|
@@ -1101,16 +1074,16 @@ export const unmarshalDeleteExchangeFilterResponseSchema: z.ZodType<DeleteExchan
|
|
|
1101
1074
|
export const unmarshalDeleteExchangeResponseSchema: z.ZodType<DeleteExchangeResponse> =
|
|
1102
1075
|
z.object({});
|
|
1103
1076
|
|
|
1104
|
-
|
|
1105
|
-
|
|
1077
|
+
export const unmarshalDeleteFileResponseSchema: z.ZodType<DeleteFileResponse> =
|
|
1078
|
+
z.object({});
|
|
1079
|
+
|
|
1080
|
+
export const unmarshalDeleteInstallationResponseSchema: z.ZodType<DeleteInstallationResponse> =
|
|
1106
1081
|
z.object({});
|
|
1107
1082
|
|
|
1108
|
-
|
|
1109
|
-
export const unmarshalDeleteListingRequest_ResponseSchema: z.ZodType<DeleteListingRequest_Response> =
|
|
1083
|
+
export const unmarshalDeleteListingResponseSchema: z.ZodType<DeleteListingResponse> =
|
|
1110
1084
|
z.object({});
|
|
1111
1085
|
|
|
1112
|
-
|
|
1113
|
-
export const unmarshalDeleteProviderRequest_ResponseSchema: z.ZodType<DeleteProviderRequest_Response> =
|
|
1086
|
+
export const unmarshalDeleteProviderResponseSchema: z.ZodType<DeleteProviderResponse> =
|
|
1114
1087
|
z.object({});
|
|
1115
1088
|
|
|
1116
1089
|
export const unmarshalExchangeSchema: z.ZodType<Exchange> = z
|
|
@@ -1240,22 +1213,7 @@ export const unmarshalFileParentSchema: z.ZodType<FileParent> = z
|
|
|
1240
1213
|
fileParentType: d.file_parent_type,
|
|
1241
1214
|
}));
|
|
1242
1215
|
|
|
1243
|
-
|
|
1244
|
-
export const unmarshalGetAllInstallations_ResponseSchema: z.ZodType<GetAllInstallations_Response> =
|
|
1245
|
-
z
|
|
1246
|
-
.object({
|
|
1247
|
-
installations: z
|
|
1248
|
-
.array(z.lazy(() => unmarshalInstallationDetailSchema))
|
|
1249
|
-
.optional(),
|
|
1250
|
-
next_page_token: z.string().optional(),
|
|
1251
|
-
})
|
|
1252
|
-
.transform(d => ({
|
|
1253
|
-
installations: d.installations,
|
|
1254
|
-
nextPageToken: d.next_page_token,
|
|
1255
|
-
}));
|
|
1256
|
-
|
|
1257
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
1258
|
-
export const unmarshalGetAllPersonalizationRequestsForConsumer_ResponseSchema: z.ZodType<GetAllPersonalizationRequestsForConsumer_Response> =
|
|
1216
|
+
export const unmarshalGetAllPersonalizationRequestsForConsumerResponseSchema: z.ZodType<GetAllPersonalizationRequestsForConsumerResponse> =
|
|
1259
1217
|
z
|
|
1260
1218
|
.object({
|
|
1261
1219
|
personalization_requests: z
|
|
@@ -1277,32 +1235,15 @@ export const unmarshalGetExchangeResponseSchema: z.ZodType<GetExchangeResponse>
|
|
|
1277
1235
|
exchange: d.exchange,
|
|
1278
1236
|
}));
|
|
1279
1237
|
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
fileInfo: d.file_info,
|
|
1288
|
-
}));
|
|
1289
|
-
|
|
1290
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
1291
|
-
export const unmarshalGetInstallationDetails_ResponseSchema: z.ZodType<GetInstallationDetails_Response> =
|
|
1292
|
-
z
|
|
1293
|
-
.object({
|
|
1294
|
-
installations: z
|
|
1295
|
-
.array(z.lazy(() => unmarshalInstallationDetailSchema))
|
|
1296
|
-
.optional(),
|
|
1297
|
-
next_page_token: z.string().optional(),
|
|
1298
|
-
})
|
|
1299
|
-
.transform(d => ({
|
|
1300
|
-
installations: d.installations,
|
|
1301
|
-
nextPageToken: d.next_page_token,
|
|
1302
|
-
}));
|
|
1238
|
+
export const unmarshalGetFileResponseSchema: z.ZodType<GetFileResponse> = z
|
|
1239
|
+
.object({
|
|
1240
|
+
file_info: z.lazy(() => unmarshalFileInfoSchema).optional(),
|
|
1241
|
+
})
|
|
1242
|
+
.transform(d => ({
|
|
1243
|
+
fileInfo: d.file_info,
|
|
1244
|
+
}));
|
|
1303
1245
|
|
|
1304
|
-
|
|
1305
|
-
export const unmarshalGetLatestVersionProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<GetLatestVersionProviderAnalyticsDashboardRequest_Response> =
|
|
1246
|
+
export const unmarshalGetLatestVersionProviderAnalyticsDashboardResponseSchema: z.ZodType<GetLatestVersionProviderAnalyticsDashboardResponse> =
|
|
1306
1247
|
z
|
|
1307
1248
|
.object({
|
|
1308
1249
|
version: z
|
|
@@ -1314,8 +1255,7 @@ export const unmarshalGetLatestVersionProviderAnalyticsDashboardRequest_Response
|
|
|
1314
1255
|
version: d.version,
|
|
1315
1256
|
}));
|
|
1316
1257
|
|
|
1317
|
-
|
|
1318
|
-
export const unmarshalGetListingContent_ResponseSchema: z.ZodType<GetListingContent_Response> =
|
|
1258
|
+
export const unmarshalGetListingContentMetadataResponseSchema: z.ZodType<GetListingContentMetadataResponse> =
|
|
1319
1259
|
z
|
|
1320
1260
|
.object({
|
|
1321
1261
|
shared_data_objects: z
|
|
@@ -1328,22 +1268,7 @@ export const unmarshalGetListingContent_ResponseSchema: z.ZodType<GetListingCont
|
|
|
1328
1268
|
nextPageToken: d.next_page_token,
|
|
1329
1269
|
}));
|
|
1330
1270
|
|
|
1331
|
-
|
|
1332
|
-
export const unmarshalGetListingFulfillments_ResponseSchema: z.ZodType<GetListingFulfillments_Response> =
|
|
1333
|
-
z
|
|
1334
|
-
.object({
|
|
1335
|
-
fulfillments: z
|
|
1336
|
-
.array(z.lazy(() => unmarshalListingFulfillmentSchema))
|
|
1337
|
-
.optional(),
|
|
1338
|
-
next_page_token: z.string().optional(),
|
|
1339
|
-
})
|
|
1340
|
-
.transform(d => ({
|
|
1341
|
-
fulfillments: d.fulfillments,
|
|
1342
|
-
nextPageToken: d.next_page_token,
|
|
1343
|
-
}));
|
|
1344
|
-
|
|
1345
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
1346
|
-
export const unmarshalGetListingRequest_ResponseSchema: z.ZodType<GetListingRequest_Response> =
|
|
1271
|
+
export const unmarshalGetListingResponseSchema: z.ZodType<GetListingResponse> =
|
|
1347
1272
|
z
|
|
1348
1273
|
.object({
|
|
1349
1274
|
listing: z.lazy(() => unmarshalListingSchema).optional(),
|
|
@@ -1352,8 +1277,7 @@ export const unmarshalGetListingRequest_ResponseSchema: z.ZodType<GetListingRequ
|
|
|
1352
1277
|
listing: d.listing,
|
|
1353
1278
|
}));
|
|
1354
1279
|
|
|
1355
|
-
|
|
1356
|
-
export const unmarshalGetListingsRequest_ResponseSchema: z.ZodType<GetListingsRequest_Response> =
|
|
1280
|
+
export const unmarshalGetListingsResponseSchema: z.ZodType<GetListingsResponse> =
|
|
1357
1281
|
z
|
|
1358
1282
|
.object({
|
|
1359
1283
|
listings: z.array(z.lazy(() => unmarshalListingSchema)).optional(),
|
|
@@ -1364,8 +1288,7 @@ export const unmarshalGetListingsRequest_ResponseSchema: z.ZodType<GetListingsRe
|
|
|
1364
1288
|
nextPageToken: d.next_page_token,
|
|
1365
1289
|
}));
|
|
1366
1290
|
|
|
1367
|
-
|
|
1368
|
-
export const unmarshalGetPersonalizationRequestsForConsumer_ResponseSchema: z.ZodType<GetPersonalizationRequestsForConsumer_Response> =
|
|
1291
|
+
export const unmarshalGetPersonalizationRequestsForConsumerResponseSchema: z.ZodType<GetPersonalizationRequestsForConsumerResponse> =
|
|
1369
1292
|
z
|
|
1370
1293
|
.object({
|
|
1371
1294
|
personalization_requests: z
|
|
@@ -1376,8 +1299,7 @@ export const unmarshalGetPersonalizationRequestsForConsumer_ResponseSchema: z.Zo
|
|
|
1376
1299
|
personalizationRequests: d.personalization_requests,
|
|
1377
1300
|
}));
|
|
1378
1301
|
|
|
1379
|
-
|
|
1380
|
-
export const unmarshalGetPersonalizationRequestsForProviderRequest_ResponseSchema: z.ZodType<GetPersonalizationRequestsForProviderRequest_Response> =
|
|
1302
|
+
export const unmarshalGetPersonalizationRequestsForProviderResponseSchema: z.ZodType<GetPersonalizationRequestsForProviderResponse> =
|
|
1381
1303
|
z
|
|
1382
1304
|
.object({
|
|
1383
1305
|
personalization_requests: z
|
|
@@ -1390,8 +1312,7 @@ export const unmarshalGetPersonalizationRequestsForProviderRequest_ResponseSchem
|
|
|
1390
1312
|
nextPageToken: d.next_page_token,
|
|
1391
1313
|
}));
|
|
1392
1314
|
|
|
1393
|
-
|
|
1394
|
-
export const unmarshalGetProviderRequest_ResponseSchema: z.ZodType<GetProviderRequest_Response> =
|
|
1315
|
+
export const unmarshalGetProviderResponseSchema: z.ZodType<GetProviderResponse> =
|
|
1395
1316
|
z
|
|
1396
1317
|
.object({
|
|
1397
1318
|
provider: z.lazy(() => unmarshalProviderInfoSchema).optional(),
|
|
@@ -1400,8 +1321,7 @@ export const unmarshalGetProviderRequest_ResponseSchema: z.ZodType<GetProviderRe
|
|
|
1400
1321
|
provider: d.provider,
|
|
1401
1322
|
}));
|
|
1402
1323
|
|
|
1403
|
-
|
|
1404
|
-
export const unmarshalGetPublishedListingForConsumer_ResponseSchema: z.ZodType<GetPublishedListingForConsumer_Response> =
|
|
1324
|
+
export const unmarshalGetPublishedListingForConsumerResponseSchema: z.ZodType<GetPublishedListingForConsumerResponse> =
|
|
1405
1325
|
z
|
|
1406
1326
|
.object({
|
|
1407
1327
|
listing: z.lazy(() => unmarshalListingSchema).optional(),
|
|
@@ -1410,8 +1330,7 @@ export const unmarshalGetPublishedListingForConsumer_ResponseSchema: z.ZodType<G
|
|
|
1410
1330
|
listing: d.listing,
|
|
1411
1331
|
}));
|
|
1412
1332
|
|
|
1413
|
-
|
|
1414
|
-
export const unmarshalGetPublishedListingsForConsumer_ResponseSchema: z.ZodType<GetPublishedListingsForConsumer_Response> =
|
|
1333
|
+
export const unmarshalGetPublishedListingsForConsumerResponseSchema: z.ZodType<GetPublishedListingsForConsumerResponse> =
|
|
1415
1334
|
z
|
|
1416
1335
|
.object({
|
|
1417
1336
|
listings: z.array(z.lazy(() => unmarshalListingSchema)).optional(),
|
|
@@ -1422,8 +1341,7 @@ export const unmarshalGetPublishedListingsForConsumer_ResponseSchema: z.ZodType<
|
|
|
1422
1341
|
nextPageToken: d.next_page_token,
|
|
1423
1342
|
}));
|
|
1424
1343
|
|
|
1425
|
-
|
|
1426
|
-
export const unmarshalGetPublishedProviderForConsumer_ResponseSchema: z.ZodType<GetPublishedProviderForConsumer_Response> =
|
|
1344
|
+
export const unmarshalGetPublishedProviderForConsumerResponseSchema: z.ZodType<GetPublishedProviderForConsumerResponse> =
|
|
1427
1345
|
z
|
|
1428
1346
|
.object({
|
|
1429
1347
|
provider: z.lazy(() => unmarshalProviderInfoSchema).optional(),
|
|
@@ -1432,16 +1350,6 @@ export const unmarshalGetPublishedProviderForConsumer_ResponseSchema: z.ZodType<
|
|
|
1432
1350
|
provider: d.provider,
|
|
1433
1351
|
}));
|
|
1434
1352
|
|
|
1435
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
1436
|
-
export const unmarshalInstallListing_ResponseSchema: z.ZodType<InstallListing_Response> =
|
|
1437
|
-
z
|
|
1438
|
-
.object({
|
|
1439
|
-
installation: z.lazy(() => unmarshalInstallationDetailSchema).optional(),
|
|
1440
|
-
})
|
|
1441
|
-
.transform(d => ({
|
|
1442
|
-
installation: d.installation,
|
|
1443
|
-
}));
|
|
1444
|
-
|
|
1445
1353
|
export const unmarshalInstallationDetailSchema: z.ZodType<InstallationDetail> =
|
|
1446
1354
|
z
|
|
1447
1355
|
.object({
|
|
@@ -1478,6 +1386,19 @@ export const unmarshalInstallationDetailSchema: z.ZodType<InstallationDetail> =
|
|
|
1478
1386
|
tokenDetail: d.token_detail,
|
|
1479
1387
|
}));
|
|
1480
1388
|
|
|
1389
|
+
export const unmarshalListAllInstallationsResponseSchema: z.ZodType<ListAllInstallationsResponse> =
|
|
1390
|
+
z
|
|
1391
|
+
.object({
|
|
1392
|
+
installations: z
|
|
1393
|
+
.array(z.lazy(() => unmarshalInstallationDetailSchema))
|
|
1394
|
+
.optional(),
|
|
1395
|
+
next_page_token: z.string().optional(),
|
|
1396
|
+
})
|
|
1397
|
+
.transform(d => ({
|
|
1398
|
+
installations: d.installations,
|
|
1399
|
+
nextPageToken: d.next_page_token,
|
|
1400
|
+
}));
|
|
1401
|
+
|
|
1481
1402
|
export const unmarshalListExchangeFiltersResponseSchema: z.ZodType<ListExchangeFiltersResponse> =
|
|
1482
1403
|
z
|
|
1483
1404
|
.object({
|
|
@@ -1513,15 +1434,39 @@ export const unmarshalListExchangesResponseSchema: z.ZodType<ListExchangesRespon
|
|
|
1513
1434
|
nextPageToken: d.next_page_token,
|
|
1514
1435
|
}));
|
|
1515
1436
|
|
|
1516
|
-
|
|
1517
|
-
|
|
1437
|
+
export const unmarshalListFilesResponseSchema: z.ZodType<ListFilesResponse> = z
|
|
1438
|
+
.object({
|
|
1439
|
+
file_infos: z.array(z.lazy(() => unmarshalFileInfoSchema)).optional(),
|
|
1440
|
+
next_page_token: z.string().optional(),
|
|
1441
|
+
})
|
|
1442
|
+
.transform(d => ({
|
|
1443
|
+
fileInfos: d.file_infos,
|
|
1444
|
+
nextPageToken: d.next_page_token,
|
|
1445
|
+
}));
|
|
1446
|
+
|
|
1447
|
+
export const unmarshalListFulfillmentsResponseSchema: z.ZodType<ListFulfillmentsResponse> =
|
|
1448
|
+
z
|
|
1449
|
+
.object({
|
|
1450
|
+
fulfillments: z
|
|
1451
|
+
.array(z.lazy(() => unmarshalListingFulfillmentSchema))
|
|
1452
|
+
.optional(),
|
|
1453
|
+
next_page_token: z.string().optional(),
|
|
1454
|
+
})
|
|
1455
|
+
.transform(d => ({
|
|
1456
|
+
fulfillments: d.fulfillments,
|
|
1457
|
+
nextPageToken: d.next_page_token,
|
|
1458
|
+
}));
|
|
1459
|
+
|
|
1460
|
+
export const unmarshalListInstallationsResponseSchema: z.ZodType<ListInstallationsResponse> =
|
|
1518
1461
|
z
|
|
1519
1462
|
.object({
|
|
1520
|
-
|
|
1463
|
+
installations: z
|
|
1464
|
+
.array(z.lazy(() => unmarshalInstallationDetailSchema))
|
|
1465
|
+
.optional(),
|
|
1521
1466
|
next_page_token: z.string().optional(),
|
|
1522
1467
|
})
|
|
1523
1468
|
.transform(d => ({
|
|
1524
|
-
|
|
1469
|
+
installations: d.installations,
|
|
1525
1470
|
nextPageToken: d.next_page_token,
|
|
1526
1471
|
}));
|
|
1527
1472
|
|
|
@@ -1538,8 +1483,7 @@ export const unmarshalListListingsForExchangeResponseSchema: z.ZodType<ListListi
|
|
|
1538
1483
|
nextPageToken: d.next_page_token,
|
|
1539
1484
|
}));
|
|
1540
1485
|
|
|
1541
|
-
|
|
1542
|
-
export const unmarshalListProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<ListProviderAnalyticsDashboardRequest_Response> =
|
|
1486
|
+
export const unmarshalListProviderAnalyticsDashboardResponseSchema: z.ZodType<ListProviderAnalyticsDashboardResponse> =
|
|
1543
1487
|
z
|
|
1544
1488
|
.object({
|
|
1545
1489
|
id: z.string().optional(),
|
|
@@ -1555,8 +1499,7 @@ export const unmarshalListProviderAnalyticsDashboardRequest_ResponseSchema: z.Zo
|
|
|
1555
1499
|
dashboardId: d.dashboard_id,
|
|
1556
1500
|
}));
|
|
1557
1501
|
|
|
1558
|
-
|
|
1559
|
-
export const unmarshalListProvidersRequest_ResponseSchema: z.ZodType<ListProvidersRequest_Response> =
|
|
1502
|
+
export const unmarshalListProvidersResponseSchema: z.ZodType<ListProvidersResponse> =
|
|
1560
1503
|
z
|
|
1561
1504
|
.object({
|
|
1562
1505
|
providers: z.array(z.lazy(() => unmarshalProviderInfoSchema)).optional(),
|
|
@@ -1567,8 +1510,7 @@ export const unmarshalListProvidersRequest_ResponseSchema: z.ZodType<ListProvide
|
|
|
1567
1510
|
nextPageToken: d.next_page_token,
|
|
1568
1511
|
}));
|
|
1569
1512
|
|
|
1570
|
-
|
|
1571
|
-
export const unmarshalListPublishedProvidersForConsumer_ResponseSchema: z.ZodType<ListPublishedProvidersForConsumer_Response> =
|
|
1513
|
+
export const unmarshalListPublishedProvidersForConsumerResponseSchema: z.ZodType<ListPublishedProvidersForConsumerResponse> =
|
|
1572
1514
|
z
|
|
1573
1515
|
.object({
|
|
1574
1516
|
providers: z.array(z.lazy(() => unmarshalProviderInfoSchema)).optional(),
|
|
@@ -1839,8 +1781,7 @@ export const unmarshalRepoInfoSchema: z.ZodType<RepoInfo> = z
|
|
|
1839
1781
|
gitRepoUrl: d.git_repo_url,
|
|
1840
1782
|
}));
|
|
1841
1783
|
|
|
1842
|
-
|
|
1843
|
-
export const unmarshalSearchPublishedListingsForConsumer_ResponseSchema: z.ZodType<SearchPublishedListingsForConsumer_Response> =
|
|
1784
|
+
export const unmarshalSearchPublishedListingsForConsumerResponseSchema: z.ZodType<SearchPublishedListingsForConsumerResponse> =
|
|
1844
1785
|
z
|
|
1845
1786
|
.object({
|
|
1846
1787
|
listings: z.array(z.lazy(() => unmarshalListingSchema)).optional(),
|
|
@@ -1914,10 +1855,6 @@ export const unmarshalTokenInfoSchema: z.ZodType<TokenInfo> = z
|
|
|
1914
1855
|
updatedBy: d.updated_by,
|
|
1915
1856
|
}));
|
|
1916
1857
|
|
|
1917
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.
|
|
1918
|
-
export const unmarshalUninstallListing_ResponseSchema: z.ZodType<UninstallListing_Response> =
|
|
1919
|
-
z.object({});
|
|
1920
|
-
|
|
1921
1858
|
export const unmarshalUpdateExchangeFilterResponseSchema: z.ZodType<UpdateExchangeFilterResponse> =
|
|
1922
1859
|
z
|
|
1923
1860
|
.object({
|
|
@@ -1936,8 +1873,7 @@ export const unmarshalUpdateExchangeResponseSchema: z.ZodType<UpdateExchangeResp
|
|
|
1936
1873
|
exchange: d.exchange,
|
|
1937
1874
|
}));
|
|
1938
1875
|
|
|
1939
|
-
|
|
1940
|
-
export const unmarshalUpdateInstallationDetail_ResponseSchema: z.ZodType<UpdateInstallationDetail_Response> =
|
|
1876
|
+
export const unmarshalUpdateInstallationResponseSchema: z.ZodType<UpdateInstallationResponse> =
|
|
1941
1877
|
z
|
|
1942
1878
|
.object({
|
|
1943
1879
|
installation: z.lazy(() => unmarshalInstallationDetailSchema).optional(),
|
|
@@ -1946,8 +1882,7 @@ export const unmarshalUpdateInstallationDetail_ResponseSchema: z.ZodType<UpdateI
|
|
|
1946
1882
|
installation: d.installation,
|
|
1947
1883
|
}));
|
|
1948
1884
|
|
|
1949
|
-
|
|
1950
|
-
export const unmarshalUpdateListingRequest_ResponseSchema: z.ZodType<UpdateListingRequest_Response> =
|
|
1885
|
+
export const unmarshalUpdateListingResponseSchema: z.ZodType<UpdateListingResponse> =
|
|
1951
1886
|
z
|
|
1952
1887
|
.object({
|
|
1953
1888
|
listing: z.lazy(() => unmarshalListingSchema).optional(),
|
|
@@ -1956,8 +1891,7 @@ export const unmarshalUpdateListingRequest_ResponseSchema: z.ZodType<UpdateListi
|
|
|
1956
1891
|
listing: d.listing,
|
|
1957
1892
|
}));
|
|
1958
1893
|
|
|
1959
|
-
|
|
1960
|
-
export const unmarshalUpdatePersonalizationRequestStatusRequest_ResponseSchema: z.ZodType<UpdatePersonalizationRequestStatusRequest_Response> =
|
|
1894
|
+
export const unmarshalUpdatePersonalizationRequestStatusResponseSchema: z.ZodType<UpdatePersonalizationRequestStatusResponse> =
|
|
1961
1895
|
z
|
|
1962
1896
|
.object({
|
|
1963
1897
|
request: z.lazy(() => unmarshalPersonalizationRequestSchema).optional(),
|
|
@@ -1966,8 +1900,7 @@ export const unmarshalUpdatePersonalizationRequestStatusRequest_ResponseSchema:
|
|
|
1966
1900
|
request: d.request,
|
|
1967
1901
|
}));
|
|
1968
1902
|
|
|
1969
|
-
|
|
1970
|
-
export const unmarshalUpdateProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<UpdateProviderAnalyticsDashboardRequest_Response> =
|
|
1903
|
+
export const unmarshalUpdateProviderAnalyticsDashboardResponseSchema: z.ZodType<UpdateProviderAnalyticsDashboardResponse> =
|
|
1971
1904
|
z
|
|
1972
1905
|
.object({
|
|
1973
1906
|
id: z.string().optional(),
|
|
@@ -1983,8 +1916,7 @@ export const unmarshalUpdateProviderAnalyticsDashboardRequest_ResponseSchema: z.
|
|
|
1983
1916
|
dashboardId: d.dashboard_id,
|
|
1984
1917
|
}));
|
|
1985
1918
|
|
|
1986
|
-
|
|
1987
|
-
export const unmarshalUpdateProviderRequest_ResponseSchema: z.ZodType<UpdateProviderRequest_Response> =
|
|
1919
|
+
export const unmarshalUpdateProviderResponseSchema: z.ZodType<UpdateProviderResponse> =
|
|
1988
1920
|
z
|
|
1989
1921
|
.object({
|
|
1990
1922
|
provider: z.lazy(() => unmarshalProviderInfoSchema).optional(),
|