@databricks/sdk-marketplaces 0.1.0-dev.2 → 0.1.0-dev.4

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.
@@ -1,124 +1,141 @@
1
1
  import { z } from 'zod';
2
- export declare enum AssetType {
3
- ASSET_TYPE_UNSPECIFIED = "ASSET_TYPE_UNSPECIFIED",
4
- ASSET_TYPE_GIT_REPO = "ASSET_TYPE_GIT_REPO",
5
- ASSET_TYPE_DATA_TABLE = "ASSET_TYPE_DATA_TABLE",
6
- ASSET_TYPE_MODEL = "ASSET_TYPE_MODEL",
7
- ASSET_TYPE_NOTEBOOK = "ASSET_TYPE_NOTEBOOK",
2
+ export declare const AssetType: {
3
+ readonly ASSET_TYPE_UNSPECIFIED: "ASSET_TYPE_UNSPECIFIED";
4
+ readonly ASSET_TYPE_GIT_REPO: "ASSET_TYPE_GIT_REPO";
5
+ readonly ASSET_TYPE_DATA_TABLE: "ASSET_TYPE_DATA_TABLE";
6
+ readonly ASSET_TYPE_MODEL: "ASSET_TYPE_MODEL";
7
+ readonly ASSET_TYPE_NOTEBOOK: "ASSET_TYPE_NOTEBOOK";
8
8
  /**
9
9
  * (MP-2408): media-based assets generally involve volumes; however some volumes files (e.g. CSV) still correspond to datasets
10
10
  * as such, add a new asset type to specify media
11
11
  */
12
- ASSET_TYPE_MEDIA = "ASSET_TYPE_MEDIA",
13
- ASSET_TYPE_PARTNER_INTEGRATION = "ASSET_TYPE_PARTNER_INTEGRATION",
14
- ASSET_TYPE_APP = "ASSET_TYPE_APP",
15
- ASSET_TYPE_MCP = "ASSET_TYPE_MCP"
16
- }
17
- export declare enum Category {
18
- ADVERTISING_AND_MARKETING = "ADVERTISING_AND_MARKETING",
19
- CLIMATE_AND_ENVIRONMENT = "CLIMATE_AND_ENVIRONMENT",
20
- COMMERCE = "COMMERCE",
21
- DEMOGRAPHICS = "DEMOGRAPHICS",
22
- ECONOMICS = "ECONOMICS",
23
- EDUCATION = "EDUCATION",
24
- ENERGY = "ENERGY",
25
- FINANCIAL = "FINANCIAL",
26
- GAMING = "GAMING",
27
- GEOSPATIAL = "GEOSPATIAL",
28
- HEALTH = "HEALTH",
29
- LOOKUP_TABLES = "LOOKUP_TABLES",
30
- MANUFACTURING = "MANUFACTURING",
31
- MEDIA = "MEDIA",
32
- OTHER = "OTHER",
33
- PUBLIC_SECTOR = "PUBLIC_SECTOR",
34
- RETAIL = "RETAIL",
35
- SECURITY = "SECURITY",
36
- SCIENCE_AND_RESEARCH = "SCIENCE_AND_RESEARCH",
37
- SPORTS = "SPORTS",
38
- TRANSPORTATION_AND_LOGISTICS = "TRANSPORTATION_AND_LOGISTICS",
39
- TRAVEL_AND_TOURISM = "TRAVEL_AND_TOURISM"
40
- }
41
- export declare enum Cost {
42
- FREE = "FREE",
43
- PAID = "PAID"
44
- }
45
- export declare enum DataRefresh {
46
- NONE = "NONE",
47
- SECOND = "SECOND",
48
- MINUTE = "MINUTE",
49
- HOURLY = "HOURLY",
50
- DAILY = "DAILY",
51
- WEEKLY = "WEEKLY",
52
- MONTHLY = "MONTHLY",
53
- QUARTERLY = "QUARTERLY",
54
- YEARLY = "YEARLY"
55
- }
56
- export declare enum DeltaSharingRecipientType {
57
- DELTA_SHARING_RECIPIENT_TYPE_DATABRICKS = "DELTA_SHARING_RECIPIENT_TYPE_DATABRICKS",
58
- DELTA_SHARING_RECIPIENT_TYPE_OPEN = "DELTA_SHARING_RECIPIENT_TYPE_OPEN"
59
- }
60
- export declare enum ExchangeFilterType {
61
- GLOBAL_METASTORE_ID = "GLOBAL_METASTORE_ID"
62
- }
63
- export declare enum FileParentType {
64
- PROVIDER = "PROVIDER",
65
- LISTING = "LISTING",
66
- LISTING_RESOURCE = "LISTING_RESOURCE"
67
- }
68
- export declare enum FileStatus {
12
+ readonly ASSET_TYPE_MEDIA: "ASSET_TYPE_MEDIA";
13
+ readonly ASSET_TYPE_PARTNER_INTEGRATION: "ASSET_TYPE_PARTNER_INTEGRATION";
14
+ readonly ASSET_TYPE_APP: "ASSET_TYPE_APP";
15
+ readonly ASSET_TYPE_MCP: "ASSET_TYPE_MCP";
16
+ };
17
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType] | (string & {});
18
+ export declare const Category: {
19
+ readonly ADVERTISING_AND_MARKETING: "ADVERTISING_AND_MARKETING";
20
+ readonly CLIMATE_AND_ENVIRONMENT: "CLIMATE_AND_ENVIRONMENT";
21
+ readonly COMMERCE: "COMMERCE";
22
+ readonly DEMOGRAPHICS: "DEMOGRAPHICS";
23
+ readonly ECONOMICS: "ECONOMICS";
24
+ readonly EDUCATION: "EDUCATION";
25
+ readonly ENERGY: "ENERGY";
26
+ readonly FINANCIAL: "FINANCIAL";
27
+ readonly GAMING: "GAMING";
28
+ readonly GEOSPATIAL: "GEOSPATIAL";
29
+ readonly HEALTH: "HEALTH";
30
+ readonly LOOKUP_TABLES: "LOOKUP_TABLES";
31
+ readonly MANUFACTURING: "MANUFACTURING";
32
+ readonly MEDIA: "MEDIA";
33
+ readonly OTHER: "OTHER";
34
+ readonly PUBLIC_SECTOR: "PUBLIC_SECTOR";
35
+ readonly RETAIL: "RETAIL";
36
+ readonly SECURITY: "SECURITY";
37
+ readonly SCIENCE_AND_RESEARCH: "SCIENCE_AND_RESEARCH";
38
+ readonly SPORTS: "SPORTS";
39
+ readonly TRANSPORTATION_AND_LOGISTICS: "TRANSPORTATION_AND_LOGISTICS";
40
+ readonly TRAVEL_AND_TOURISM: "TRAVEL_AND_TOURISM";
41
+ };
42
+ export type Category = (typeof Category)[keyof typeof Category] | (string & {});
43
+ export declare const Cost: {
44
+ readonly FREE: "FREE";
45
+ readonly PAID: "PAID";
46
+ };
47
+ export type Cost = (typeof Cost)[keyof typeof Cost] | (string & {});
48
+ export declare const DataRefresh: {
49
+ readonly NONE: "NONE";
50
+ readonly SECOND: "SECOND";
51
+ readonly MINUTE: "MINUTE";
52
+ readonly HOURLY: "HOURLY";
53
+ readonly DAILY: "DAILY";
54
+ readonly WEEKLY: "WEEKLY";
55
+ readonly MONTHLY: "MONTHLY";
56
+ readonly QUARTERLY: "QUARTERLY";
57
+ readonly YEARLY: "YEARLY";
58
+ };
59
+ export type DataRefresh = (typeof DataRefresh)[keyof typeof DataRefresh] | (string & {});
60
+ export declare const DeltaSharingRecipientType: {
61
+ readonly DELTA_SHARING_RECIPIENT_TYPE_DATABRICKS: "DELTA_SHARING_RECIPIENT_TYPE_DATABRICKS";
62
+ readonly DELTA_SHARING_RECIPIENT_TYPE_OPEN: "DELTA_SHARING_RECIPIENT_TYPE_OPEN";
63
+ };
64
+ export type DeltaSharingRecipientType = (typeof DeltaSharingRecipientType)[keyof typeof DeltaSharingRecipientType] | (string & {});
65
+ export declare const ExchangeFilterType: {
66
+ readonly GLOBAL_METASTORE_ID: "GLOBAL_METASTORE_ID";
67
+ };
68
+ export type ExchangeFilterType = (typeof ExchangeFilterType)[keyof typeof ExchangeFilterType] | (string & {});
69
+ export declare const FileParentType: {
70
+ readonly PROVIDER: "PROVIDER";
71
+ readonly LISTING: "LISTING";
72
+ readonly LISTING_RESOURCE: "LISTING_RESOURCE";
73
+ };
74
+ export type FileParentType = (typeof FileParentType)[keyof typeof FileParentType] | (string & {});
75
+ export declare const FileStatus: {
69
76
  /** Published files have been sanitized by Marketplace backend and can be viewed by consumers. */
70
- FILE_STATUS_PUBLISHED = "FILE_STATUS_PUBLISHED",
77
+ readonly FILE_STATUS_PUBLISHED: "FILE_STATUS_PUBLISHED";
71
78
  /** Created files start in staging. These are viewable by provider APIs but not consumer APIs. */
72
- FILE_STATUS_STAGING = "FILE_STATUS_STAGING",
79
+ readonly FILE_STATUS_STAGING: "FILE_STATUS_STAGING";
73
80
  /** Indicates this file is in the process of being sanitized. */
74
- FILE_STATUS_SANITIZING = "FILE_STATUS_SANITIZING",
81
+ readonly FILE_STATUS_SANITIZING: "FILE_STATUS_SANITIZING";
75
82
  /** Something went wrong with sanitization, refer to the status message for more information. */
76
- FILE_STATUS_SANITIZATION_FAILED = "FILE_STATUS_SANITIZATION_FAILED"
77
- }
78
- export declare enum FulfillmentType {
79
- REQUEST_ACCESS = "REQUEST_ACCESS",
80
- INSTALL = "INSTALL"
81
- }
82
- export declare enum InstallationStatus {
83
- INSTALLED = "INSTALLED",
84
- FAILED = "FAILED"
85
- }
86
- export declare enum ListingShareType {
87
- SAMPLE = "SAMPLE",
88
- FULL = "FULL"
89
- }
83
+ readonly FILE_STATUS_SANITIZATION_FAILED: "FILE_STATUS_SANITIZATION_FAILED";
84
+ };
85
+ export type FileStatus = (typeof FileStatus)[keyof typeof FileStatus] | (string & {});
86
+ export declare const FulfillmentType: {
87
+ readonly REQUEST_ACCESS: "REQUEST_ACCESS";
88
+ readonly INSTALL: "INSTALL";
89
+ };
90
+ export type FulfillmentType = (typeof FulfillmentType)[keyof typeof FulfillmentType] | (string & {});
91
+ export declare const InstallationStatus: {
92
+ readonly INSTALLED: "INSTALLED";
93
+ readonly FAILED: "FAILED";
94
+ };
95
+ export type InstallationStatus = (typeof InstallationStatus)[keyof typeof InstallationStatus] | (string & {});
96
+ export declare const ListingShareType: {
97
+ readonly SAMPLE: "SAMPLE";
98
+ readonly FULL: "FULL";
99
+ };
100
+ export type ListingShareType = (typeof ListingShareType)[keyof typeof ListingShareType] | (string & {});
90
101
  /** Enums */
91
- export declare enum ListingStatus {
92
- DRAFT = "DRAFT",
93
- PENDING = "PENDING",
94
- PUBLISHED = "PUBLISHED",
95
- SUSPENDED = "SUSPENDED"
96
- }
97
- export declare enum ListingTagType {
98
- LISTING_TAG_TYPE_UNSPECIFIED = "LISTING_TAG_TYPE_UNSPECIFIED",
99
- LISTING_TAG_TYPE_LANGUAGE = "LISTING_TAG_TYPE_LANGUAGE",
100
- LISTING_TAG_TYPE_TASK = "LISTING_TAG_TYPE_TASK"
101
- }
102
- export declare enum ListingType {
103
- STANDARD = "STANDARD",
104
- PERSONALIZED = "PERSONALIZED"
105
- }
106
- export declare enum MarketplaceFileType {
107
- PROVIDER_ICON = "PROVIDER_ICON",
108
- EMBEDDED_NOTEBOOK = "EMBEDDED_NOTEBOOK",
109
- APP = "APP"
110
- }
111
- export declare enum PersonalizationRequestStatus {
112
- NEW = "NEW",
102
+ export declare const ListingStatus: {
103
+ readonly DRAFT: "DRAFT";
104
+ readonly PENDING: "PENDING";
105
+ readonly PUBLISHED: "PUBLISHED";
106
+ readonly SUSPENDED: "SUSPENDED";
107
+ };
108
+ export type ListingStatus = (typeof ListingStatus)[keyof typeof ListingStatus] | (string & {});
109
+ export declare const ListingTagType: {
110
+ readonly LISTING_TAG_TYPE_UNSPECIFIED: "LISTING_TAG_TYPE_UNSPECIFIED";
111
+ readonly LISTING_TAG_TYPE_LANGUAGE: "LISTING_TAG_TYPE_LANGUAGE";
112
+ readonly LISTING_TAG_TYPE_TASK: "LISTING_TAG_TYPE_TASK";
113
+ };
114
+ export type ListingTagType = (typeof ListingTagType)[keyof typeof ListingTagType] | (string & {});
115
+ export declare const ListingType: {
116
+ readonly STANDARD: "STANDARD";
117
+ readonly PERSONALIZED: "PERSONALIZED";
118
+ };
119
+ export type ListingType = (typeof ListingType)[keyof typeof ListingType] | (string & {});
120
+ export declare const MarketplaceFileType: {
121
+ readonly PROVIDER_ICON: "PROVIDER_ICON";
122
+ readonly EMBEDDED_NOTEBOOK: "EMBEDDED_NOTEBOOK";
123
+ readonly APP: "APP";
124
+ };
125
+ export type MarketplaceFileType = (typeof MarketplaceFileType)[keyof typeof MarketplaceFileType] | (string & {});
126
+ export declare const PersonalizationRequestStatus: {
127
+ readonly NEW: "NEW";
113
128
  /** Pending already defined for ListingStatus */
114
- REQUEST_PENDING = "REQUEST_PENDING",
115
- FULFILLED = "FULFILLED",
116
- DENIED = "DENIED"
117
- }
118
- export declare enum Visibility {
119
- PUBLIC = "PUBLIC",
120
- PRIVATE = "PRIVATE"
121
- }
129
+ readonly REQUEST_PENDING: "REQUEST_PENDING";
130
+ readonly FULFILLED: "FULFILLED";
131
+ readonly DENIED: "DENIED";
132
+ };
133
+ export type PersonalizationRequestStatus = (typeof PersonalizationRequestStatus)[keyof typeof PersonalizationRequestStatus] | (string & {});
134
+ export declare const Visibility: {
135
+ readonly PUBLIC: "PUBLIC";
136
+ readonly PRIVATE: "PRIVATE";
137
+ };
138
+ export type Visibility = (typeof Visibility)[keyof typeof Visibility] | (string & {});
122
139
  export interface AddExchangeForListingRequest {
123
140
  listingId?: string | undefined;
124
141
  exchangeId?: string | undefined;
@@ -166,15 +183,18 @@ export interface CreateFileRequest {
166
183
  mimeType?: string | undefined;
167
184
  displayName?: string | undefined;
168
185
  }
169
- export interface CreateFileRequest_Response {
186
+ export interface CreateFileResponse {
170
187
  /** Pre-signed POST URL to blob storage */
171
188
  uploadUrl?: string | undefined;
172
189
  fileInfo?: FileInfo | undefined;
173
190
  }
191
+ export interface CreateInstallationResponse {
192
+ installation?: InstallationDetail | undefined;
193
+ }
174
194
  export interface CreateListingRequest {
175
195
  listing?: Listing | undefined;
176
196
  }
177
- export interface CreateListingRequest_Response {
197
+ export interface CreateListingResponse {
178
198
  listingId?: string | undefined;
179
199
  }
180
200
  /**
@@ -192,18 +212,18 @@ export interface CreatePersonalizationRequest {
192
212
  recipientType?: DeltaSharingRecipientType | undefined;
193
213
  acceptedConsumerTerms?: ConsumerTerms | undefined;
194
214
  }
195
- export interface CreatePersonalizationRequest_Response {
215
+ export interface CreatePersonalizationResponse {
196
216
  id?: string | undefined;
197
217
  }
198
218
  export interface CreateProviderAnalyticsDashboardRequest {
199
219
  }
200
- export interface CreateProviderAnalyticsDashboardRequest_Response {
220
+ export interface CreateProviderAnalyticsDashboardResponse {
201
221
  id?: string | undefined;
202
222
  }
203
223
  export interface CreateProviderRequest {
204
224
  provider?: ProviderInfo | undefined;
205
225
  }
206
- export interface CreateProviderRequest_Response {
226
+ export interface CreateProviderResponse {
207
227
  id?: string | undefined;
208
228
  }
209
229
  export interface DataRefreshInfo {
@@ -223,17 +243,19 @@ export interface DeleteExchangeResponse {
223
243
  export interface DeleteFileRequest {
224
244
  fileId?: string | undefined;
225
245
  }
226
- export interface DeleteFileRequest_Response {
246
+ export interface DeleteFileResponse {
247
+ }
248
+ export interface DeleteInstallationResponse {
227
249
  }
228
250
  export interface DeleteListingRequest {
229
251
  id?: string | undefined;
230
252
  }
231
- export interface DeleteListingRequest_Response {
253
+ export interface DeleteListingResponse {
232
254
  }
233
255
  export interface DeleteProviderRequest {
234
256
  id?: string | undefined;
235
257
  }
236
- export interface DeleteProviderRequest_Response {
258
+ export interface DeleteProviderResponse {
237
259
  }
238
260
  export interface Exchange {
239
261
  id?: string | undefined;
@@ -285,6 +307,10 @@ export interface FileParent {
285
307
  parentId?: string | undefined;
286
308
  fileParentType?: FileParentType | undefined;
287
309
  }
310
+ export interface GetAllPersonalizationRequestsForConsumerResponse {
311
+ personalizationRequests?: PersonalizationRequest[] | undefined;
312
+ nextPageToken?: string | undefined;
313
+ }
288
314
  export interface GetExchangeRequest {
289
315
  id?: string | undefined;
290
316
  }
@@ -294,7 +320,7 @@ export interface GetExchangeResponse {
294
320
  export interface GetFileRequest {
295
321
  fileId?: string | undefined;
296
322
  }
297
- export interface GetFileRequest_Response {
323
+ export interface GetFileResponse {
298
324
  fileInfo?: FileInfo | undefined;
299
325
  }
300
326
  export interface GetInstallationDetails {
@@ -302,17 +328,13 @@ export interface GetInstallationDetails {
302
328
  pageToken?: string | undefined;
303
329
  pageSize?: number | undefined;
304
330
  }
305
- export interface GetInstallationDetails_Response {
306
- installations?: InstallationDetail[] | undefined;
307
- nextPageToken?: string | undefined;
308
- }
309
331
  /**
310
332
  * this is effectively a static request for now and will return latest version of the dashboard template
311
333
  * that exists on server.
312
334
  */
313
335
  export interface GetLatestVersionProviderAnalyticsDashboardRequest {
314
336
  }
315
- export interface GetLatestVersionProviderAnalyticsDashboardRequest_Response {
337
+ export interface GetLatestVersionProviderAnalyticsDashboardResponse {
316
338
  /** version here is latest logical version of the dashboard template */
317
339
  version?: bigint | undefined;
318
340
  }
@@ -321,46 +343,54 @@ export interface GetListingContent {
321
343
  pageToken?: string | undefined;
322
344
  pageSize?: number | undefined;
323
345
  }
324
- export interface GetListingContent_Response {
346
+ export interface GetListingContentMetadataResponse {
325
347
  sharedDataObjects?: SharedDataObject[] | undefined;
326
348
  nextPageToken?: string | undefined;
327
349
  }
328
350
  export interface GetListingRequest {
329
351
  id?: string | undefined;
330
352
  }
331
- export interface GetListingRequest_Response {
353
+ export interface GetListingResponse {
332
354
  listing?: Listing | undefined;
333
355
  }
356
+ export interface GetListingsResponse {
357
+ listings?: Listing[] | undefined;
358
+ nextPageToken?: string | undefined;
359
+ }
334
360
  export interface GetPersonalizationRequestsForConsumer {
335
361
  listingId?: string | undefined;
336
362
  }
337
- export interface GetPersonalizationRequestsForConsumer_Response {
363
+ export interface GetPersonalizationRequestsForConsumerResponse {
338
364
  personalizationRequests?: PersonalizationRequest[] | undefined;
339
365
  }
340
366
  export interface GetPersonalizationRequestsForProviderRequest {
341
367
  pageToken?: string | undefined;
342
368
  pageSize?: number | undefined;
343
369
  }
344
- export interface GetPersonalizationRequestsForProviderRequest_Response {
370
+ export interface GetPersonalizationRequestsForProviderResponse {
345
371
  personalizationRequests?: PersonalizationRequest[] | undefined;
346
372
  nextPageToken?: string | undefined;
347
373
  }
348
374
  export interface GetProviderRequest {
349
375
  id?: string | undefined;
350
376
  }
351
- export interface GetProviderRequest_Response {
377
+ export interface GetProviderResponse {
352
378
  provider?: ProviderInfo | undefined;
353
379
  }
354
380
  export interface GetPublishedListingForConsumer {
355
381
  id?: string | undefined;
356
382
  }
357
- export interface GetPublishedListingForConsumer_Response {
383
+ export interface GetPublishedListingForConsumerResponse {
358
384
  listing?: Listing | undefined;
359
385
  }
386
+ export interface GetPublishedListingsForConsumerResponse {
387
+ listings?: Listing[] | undefined;
388
+ nextPageToken?: string | undefined;
389
+ }
360
390
  export interface GetPublishedProviderForConsumer {
361
391
  id?: string | undefined;
362
392
  }
363
- export interface GetPublishedProviderForConsumer_Response {
393
+ export interface GetPublishedProviderForConsumerResponse {
364
394
  provider?: ProviderInfo | undefined;
365
395
  }
366
396
  export interface InstallListing {
@@ -372,9 +402,6 @@ export interface InstallListing {
372
402
  recipientType?: DeltaSharingRecipientType | undefined;
373
403
  acceptedConsumerTerms?: ConsumerTerms | undefined;
374
404
  }
375
- export interface InstallListing_Response {
376
- installation?: InstallationDetail | undefined;
377
- }
378
405
  export interface InstallationDetail {
379
406
  id?: string | undefined;
380
407
  listingId?: string | undefined;
@@ -390,6 +417,10 @@ export interface InstallationDetail {
390
417
  tokens?: TokenInfo[] | undefined;
391
418
  tokenDetail?: TokenDetail | undefined;
392
419
  }
420
+ export interface ListAllInstallationsResponse {
421
+ installations?: InstallationDetail[] | undefined;
422
+ nextPageToken?: string | undefined;
423
+ }
393
424
  export interface ListExchangeFiltersRequest {
394
425
  exchangeId?: string | undefined;
395
426
  pageToken?: string | undefined;
@@ -421,15 +452,19 @@ export interface ListFilesRequest {
421
452
  pageToken?: string | undefined;
422
453
  pageSize?: number | undefined;
423
454
  }
424
- export interface ListFilesRequest_Response {
455
+ export interface ListFilesResponse {
425
456
  fileInfos?: FileInfo[] | undefined;
426
457
  nextPageToken?: string | undefined;
427
458
  }
459
+ export interface ListFulfillmentsResponse {
460
+ fulfillments?: ListingFulfillment[] | undefined;
461
+ nextPageToken?: string | undefined;
462
+ }
428
463
  export interface ListInstallationsRequest {
429
464
  pageToken?: string | undefined;
430
465
  pageSize?: number | undefined;
431
466
  }
432
- export interface ListInstallationsRequest_Response {
467
+ export interface ListInstallationsResponse {
433
468
  installations?: InstallationDetail[] | undefined;
434
469
  nextPageToken?: string | undefined;
435
470
  }
@@ -438,10 +473,6 @@ export interface ListListingFulfillmentsRequest {
438
473
  pageToken?: string | undefined;
439
474
  pageSize?: number | undefined;
440
475
  }
441
- export interface ListListingFulfillmentsRequest_Response {
442
- fulfillments?: ListingFulfillment[] | undefined;
443
- nextPageToken?: string | undefined;
444
- }
445
476
  export interface ListListingsForExchangeRequest {
446
477
  exchangeId?: string | undefined;
447
478
  pageToken?: string | undefined;
@@ -455,21 +486,13 @@ export interface ListListingsRequest {
455
486
  pageToken?: string | undefined;
456
487
  pageSize?: number | undefined;
457
488
  }
458
- export interface ListListingsRequest_Response {
459
- listings?: Listing[] | undefined;
460
- nextPageToken?: string | undefined;
461
- }
462
489
  export interface ListPersonalizationRequestsForConsumerRequest {
463
490
  pageToken?: string | undefined;
464
491
  pageSize?: number | undefined;
465
492
  }
466
- export interface ListPersonalizationRequestsForConsumerRequest_Response {
467
- personalizationRequests?: PersonalizationRequest[] | undefined;
468
- nextPageToken?: string | undefined;
469
- }
470
493
  export interface ListProviderAnalyticsDashboardRequest {
471
494
  }
472
- export interface ListProviderAnalyticsDashboardRequest_Response {
495
+ export interface ListProviderAnalyticsDashboardResponse {
473
496
  id?: string | undefined;
474
497
  version?: bigint | undefined;
475
498
  /** dashboard_id will be used to open Lakeview dashboard. */
@@ -479,7 +502,7 @@ export interface ListProvidersRequest {
479
502
  pageToken?: string | undefined;
480
503
  pageSize?: number | undefined;
481
504
  }
482
- export interface ListProvidersRequest_Response {
505
+ export interface ListProvidersResponse {
483
506
  providers?: ProviderInfo[] | undefined;
484
507
  nextPageToken?: string | undefined;
485
508
  }
@@ -502,16 +525,12 @@ export interface ListPublishedListingsForConsumerRequest {
502
525
  /** Matches any of the following provider ids */
503
526
  providerIds?: string[] | undefined;
504
527
  }
505
- export interface ListPublishedListingsForConsumerRequest_Response {
506
- listings?: Listing[] | undefined;
507
- nextPageToken?: string | undefined;
508
- }
509
528
  export interface ListPublishedProvidersForConsumer {
510
529
  pageToken?: string | undefined;
511
530
  pageSize?: number | undefined;
512
531
  isFeatured?: boolean | undefined;
513
532
  }
514
- export interface ListPublishedProvidersForConsumer_Response {
533
+ export interface ListPublishedProvidersForConsumerResponse {
515
534
  providers?: ProviderInfo[] | undefined;
516
535
  nextPageToken?: string | undefined;
517
536
  }
@@ -682,7 +701,7 @@ export interface SearchPublishedListingsForConsumer {
682
701
  pageToken?: string | undefined;
683
702
  pageSize?: number | undefined;
684
703
  }
685
- export interface SearchPublishedListingsForConsumer_Response {
704
+ export interface SearchPublishedListingsForConsumerResponse {
686
705
  listings?: Listing[] | undefined;
687
706
  nextPageToken?: string | undefined;
688
707
  }
@@ -729,8 +748,6 @@ export interface UninstallListing {
729
748
  listingId?: string | undefined;
730
749
  installationId?: string | undefined;
731
750
  }
732
- export interface UninstallListing_Response {
733
- }
734
751
  export interface UpdateExchangeFilterRequest {
735
752
  id?: string | undefined;
736
753
  filter?: ExchangeFilter | undefined;
@@ -751,14 +768,14 @@ export interface UpdateInstallationDetail {
751
768
  installation?: InstallationDetail | undefined;
752
769
  rotateToken?: boolean | undefined;
753
770
  }
754
- export interface UpdateInstallationDetail_Response {
771
+ export interface UpdateInstallationResponse {
755
772
  installation?: InstallationDetail | undefined;
756
773
  }
757
774
  export interface UpdateListingRequest {
758
775
  id?: string | undefined;
759
776
  listing?: Listing | undefined;
760
777
  }
761
- export interface UpdateListingRequest_Response {
778
+ export interface UpdateListingResponse {
762
779
  listing?: Listing | undefined;
763
780
  }
764
781
  export interface UpdatePersonalizationRequestStatusRequest {
@@ -768,7 +785,7 @@ export interface UpdatePersonalizationRequestStatusRequest {
768
785
  reason?: string | undefined;
769
786
  share?: ShareInfo | undefined;
770
787
  }
771
- export interface UpdatePersonalizationRequestStatusRequest_Response {
788
+ export interface UpdatePersonalizationRequestStatusResponse {
772
789
  request?: PersonalizationRequest | undefined;
773
790
  }
774
791
  export interface UpdateProviderAnalyticsDashboardRequest {
@@ -780,7 +797,7 @@ export interface UpdateProviderAnalyticsDashboardRequest {
780
797
  */
781
798
  version?: bigint | undefined;
782
799
  }
783
- export interface UpdateProviderAnalyticsDashboardRequest_Response {
800
+ export interface UpdateProviderAnalyticsDashboardResponse {
784
801
  /** id & version should be the same as the request */
785
802
  id?: string | undefined;
786
803
  version?: bigint | undefined;
@@ -791,7 +808,7 @@ export interface UpdateProviderRequest {
791
808
  id?: string | undefined;
792
809
  provider?: ProviderInfo | undefined;
793
810
  }
794
- export interface UpdateProviderRequest_Response {
811
+ export interface UpdateProviderResponse {
795
812
  provider?: ProviderInfo | undefined;
796
813
  }
797
814
  export declare const unmarshalAddExchangeForListingResponseSchema: z.ZodType<AddExchangeForListingResponse>;
@@ -800,48 +817,49 @@ export declare const unmarshalBatchGetProvidersResponseSchema: z.ZodType<BatchGe
800
817
  export declare const unmarshalContactInfoSchema: z.ZodType<ContactInfo>;
801
818
  export declare const unmarshalCreateExchangeFilterResponseSchema: z.ZodType<CreateExchangeFilterResponse>;
802
819
  export declare const unmarshalCreateExchangeResponseSchema: z.ZodType<CreateExchangeResponse>;
803
- export declare const unmarshalCreateFileRequest_ResponseSchema: z.ZodType<CreateFileRequest_Response>;
804
- export declare const unmarshalCreateListingRequest_ResponseSchema: z.ZodType<CreateListingRequest_Response>;
805
- export declare const unmarshalCreatePersonalizationRequest_ResponseSchema: z.ZodType<CreatePersonalizationRequest_Response>;
806
- export declare const unmarshalCreateProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<CreateProviderAnalyticsDashboardRequest_Response>;
807
- export declare const unmarshalCreateProviderRequest_ResponseSchema: z.ZodType<CreateProviderRequest_Response>;
820
+ export declare const unmarshalCreateFileResponseSchema: z.ZodType<CreateFileResponse>;
821
+ export declare const unmarshalCreateInstallationResponseSchema: z.ZodType<CreateInstallationResponse>;
822
+ export declare const unmarshalCreateListingResponseSchema: z.ZodType<CreateListingResponse>;
823
+ export declare const unmarshalCreatePersonalizationResponseSchema: z.ZodType<CreatePersonalizationResponse>;
824
+ export declare const unmarshalCreateProviderAnalyticsDashboardResponseSchema: z.ZodType<CreateProviderAnalyticsDashboardResponse>;
825
+ export declare const unmarshalCreateProviderResponseSchema: z.ZodType<CreateProviderResponse>;
808
826
  export declare const unmarshalDataRefreshInfoSchema: z.ZodType<DataRefreshInfo>;
809
827
  export declare const unmarshalDeleteExchangeFilterResponseSchema: z.ZodType<DeleteExchangeFilterResponse>;
810
828
  export declare const unmarshalDeleteExchangeResponseSchema: z.ZodType<DeleteExchangeResponse>;
811
- export declare const unmarshalDeleteFileRequest_ResponseSchema: z.ZodType<DeleteFileRequest_Response>;
812
- export declare const unmarshalDeleteListingRequest_ResponseSchema: z.ZodType<DeleteListingRequest_Response>;
813
- export declare const unmarshalDeleteProviderRequest_ResponseSchema: z.ZodType<DeleteProviderRequest_Response>;
829
+ export declare const unmarshalDeleteFileResponseSchema: z.ZodType<DeleteFileResponse>;
830
+ export declare const unmarshalDeleteInstallationResponseSchema: z.ZodType<DeleteInstallationResponse>;
831
+ export declare const unmarshalDeleteListingResponseSchema: z.ZodType<DeleteListingResponse>;
832
+ export declare const unmarshalDeleteProviderResponseSchema: z.ZodType<DeleteProviderResponse>;
814
833
  export declare const unmarshalExchangeSchema: z.ZodType<Exchange>;
815
834
  export declare const unmarshalExchangeFilterSchema: z.ZodType<ExchangeFilter>;
816
835
  export declare const unmarshalExchangeListingSchema: z.ZodType<ExchangeListing>;
817
836
  export declare const unmarshalFileInfoSchema: z.ZodType<FileInfo>;
818
837
  export declare const unmarshalFileParentSchema: z.ZodType<FileParent>;
838
+ export declare const unmarshalGetAllPersonalizationRequestsForConsumerResponseSchema: z.ZodType<GetAllPersonalizationRequestsForConsumerResponse>;
819
839
  export declare const unmarshalGetExchangeResponseSchema: z.ZodType<GetExchangeResponse>;
820
- export declare const unmarshalGetFileRequest_ResponseSchema: z.ZodType<GetFileRequest_Response>;
821
- export declare const unmarshalGetInstallationDetails_ResponseSchema: z.ZodType<GetInstallationDetails_Response>;
822
- export declare const unmarshalGetLatestVersionProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<GetLatestVersionProviderAnalyticsDashboardRequest_Response>;
823
- export declare const unmarshalGetListingContent_ResponseSchema: z.ZodType<GetListingContent_Response>;
824
- export declare const unmarshalGetListingRequest_ResponseSchema: z.ZodType<GetListingRequest_Response>;
825
- export declare const unmarshalGetPersonalizationRequestsForConsumer_ResponseSchema: z.ZodType<GetPersonalizationRequestsForConsumer_Response>;
826
- export declare const unmarshalGetPersonalizationRequestsForProviderRequest_ResponseSchema: z.ZodType<GetPersonalizationRequestsForProviderRequest_Response>;
827
- export declare const unmarshalGetProviderRequest_ResponseSchema: z.ZodType<GetProviderRequest_Response>;
828
- export declare const unmarshalGetPublishedListingForConsumer_ResponseSchema: z.ZodType<GetPublishedListingForConsumer_Response>;
829
- export declare const unmarshalGetPublishedProviderForConsumer_ResponseSchema: z.ZodType<GetPublishedProviderForConsumer_Response>;
830
- export declare const unmarshalInstallListing_ResponseSchema: z.ZodType<InstallListing_Response>;
840
+ export declare const unmarshalGetFileResponseSchema: z.ZodType<GetFileResponse>;
841
+ export declare const unmarshalGetLatestVersionProviderAnalyticsDashboardResponseSchema: z.ZodType<GetLatestVersionProviderAnalyticsDashboardResponse>;
842
+ export declare const unmarshalGetListingContentMetadataResponseSchema: z.ZodType<GetListingContentMetadataResponse>;
843
+ export declare const unmarshalGetListingResponseSchema: z.ZodType<GetListingResponse>;
844
+ export declare const unmarshalGetListingsResponseSchema: z.ZodType<GetListingsResponse>;
845
+ export declare const unmarshalGetPersonalizationRequestsForConsumerResponseSchema: z.ZodType<GetPersonalizationRequestsForConsumerResponse>;
846
+ export declare const unmarshalGetPersonalizationRequestsForProviderResponseSchema: z.ZodType<GetPersonalizationRequestsForProviderResponse>;
847
+ export declare const unmarshalGetProviderResponseSchema: z.ZodType<GetProviderResponse>;
848
+ export declare const unmarshalGetPublishedListingForConsumerResponseSchema: z.ZodType<GetPublishedListingForConsumerResponse>;
849
+ export declare const unmarshalGetPublishedListingsForConsumerResponseSchema: z.ZodType<GetPublishedListingsForConsumerResponse>;
850
+ export declare const unmarshalGetPublishedProviderForConsumerResponseSchema: z.ZodType<GetPublishedProviderForConsumerResponse>;
831
851
  export declare const unmarshalInstallationDetailSchema: z.ZodType<InstallationDetail>;
852
+ export declare const unmarshalListAllInstallationsResponseSchema: z.ZodType<ListAllInstallationsResponse>;
832
853
  export declare const unmarshalListExchangeFiltersResponseSchema: z.ZodType<ListExchangeFiltersResponse>;
833
854
  export declare const unmarshalListExchangesForListingResponseSchema: z.ZodType<ListExchangesForListingResponse>;
834
855
  export declare const unmarshalListExchangesResponseSchema: z.ZodType<ListExchangesResponse>;
835
- export declare const unmarshalListFilesRequest_ResponseSchema: z.ZodType<ListFilesRequest_Response>;
836
- export declare const unmarshalListInstallationsRequest_ResponseSchema: z.ZodType<ListInstallationsRequest_Response>;
837
- export declare const unmarshalListListingFulfillmentsRequest_ResponseSchema: z.ZodType<ListListingFulfillmentsRequest_Response>;
856
+ export declare const unmarshalListFilesResponseSchema: z.ZodType<ListFilesResponse>;
857
+ export declare const unmarshalListFulfillmentsResponseSchema: z.ZodType<ListFulfillmentsResponse>;
858
+ export declare const unmarshalListInstallationsResponseSchema: z.ZodType<ListInstallationsResponse>;
838
859
  export declare const unmarshalListListingsForExchangeResponseSchema: z.ZodType<ListListingsForExchangeResponse>;
839
- export declare const unmarshalListListingsRequest_ResponseSchema: z.ZodType<ListListingsRequest_Response>;
840
- export declare const unmarshalListPersonalizationRequestsForConsumerRequest_ResponseSchema: z.ZodType<ListPersonalizationRequestsForConsumerRequest_Response>;
841
- export declare const unmarshalListProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<ListProviderAnalyticsDashboardRequest_Response>;
842
- export declare const unmarshalListProvidersRequest_ResponseSchema: z.ZodType<ListProvidersRequest_Response>;
843
- export declare const unmarshalListPublishedListingsForConsumerRequest_ResponseSchema: z.ZodType<ListPublishedListingsForConsumerRequest_Response>;
844
- export declare const unmarshalListPublishedProvidersForConsumer_ResponseSchema: z.ZodType<ListPublishedProvidersForConsumer_Response>;
860
+ export declare const unmarshalListProviderAnalyticsDashboardResponseSchema: z.ZodType<ListProviderAnalyticsDashboardResponse>;
861
+ export declare const unmarshalListProvidersResponseSchema: z.ZodType<ListProvidersResponse>;
862
+ export declare const unmarshalListPublishedProvidersForConsumerResponseSchema: z.ZodType<ListPublishedProvidersForConsumerResponse>;
845
863
  export declare const unmarshalListingSchema: z.ZodType<Listing>;
846
864
  export declare const unmarshalListingDetailSchema: z.ZodType<ListingDetail>;
847
865
  export declare const unmarshalListingFulfillmentSchema: z.ZodType<ListingFulfillment>;
@@ -853,19 +871,18 @@ export declare const unmarshalProviderInfoSchema: z.ZodType<ProviderInfo>;
853
871
  export declare const unmarshalRegionInfoSchema: z.ZodType<RegionInfo>;
854
872
  export declare const unmarshalRemoveExchangeForListingResponseSchema: z.ZodType<RemoveExchangeForListingResponse>;
855
873
  export declare const unmarshalRepoInfoSchema: z.ZodType<RepoInfo>;
856
- export declare const unmarshalSearchPublishedListingsForConsumer_ResponseSchema: z.ZodType<SearchPublishedListingsForConsumer_Response>;
874
+ export declare const unmarshalSearchPublishedListingsForConsumerResponseSchema: z.ZodType<SearchPublishedListingsForConsumerResponse>;
857
875
  export declare const unmarshalShareInfoSchema: z.ZodType<ShareInfo>;
858
876
  export declare const unmarshalSharedDataObjectSchema: z.ZodType<SharedDataObject>;
859
877
  export declare const unmarshalTokenDetailSchema: z.ZodType<TokenDetail>;
860
878
  export declare const unmarshalTokenInfoSchema: z.ZodType<TokenInfo>;
861
- export declare const unmarshalUninstallListing_ResponseSchema: z.ZodType<UninstallListing_Response>;
862
879
  export declare const unmarshalUpdateExchangeFilterResponseSchema: z.ZodType<UpdateExchangeFilterResponse>;
863
880
  export declare const unmarshalUpdateExchangeResponseSchema: z.ZodType<UpdateExchangeResponse>;
864
- export declare const unmarshalUpdateInstallationDetail_ResponseSchema: z.ZodType<UpdateInstallationDetail_Response>;
865
- export declare const unmarshalUpdateListingRequest_ResponseSchema: z.ZodType<UpdateListingRequest_Response>;
866
- export declare const unmarshalUpdatePersonalizationRequestStatusRequest_ResponseSchema: z.ZodType<UpdatePersonalizationRequestStatusRequest_Response>;
867
- export declare const unmarshalUpdateProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<UpdateProviderAnalyticsDashboardRequest_Response>;
868
- export declare const unmarshalUpdateProviderRequest_ResponseSchema: z.ZodType<UpdateProviderRequest_Response>;
881
+ export declare const unmarshalUpdateInstallationResponseSchema: z.ZodType<UpdateInstallationResponse>;
882
+ export declare const unmarshalUpdateListingResponseSchema: z.ZodType<UpdateListingResponse>;
883
+ export declare const unmarshalUpdatePersonalizationRequestStatusResponseSchema: z.ZodType<UpdatePersonalizationRequestStatusResponse>;
884
+ export declare const unmarshalUpdateProviderAnalyticsDashboardResponseSchema: z.ZodType<UpdateProviderAnalyticsDashboardResponse>;
885
+ export declare const unmarshalUpdateProviderResponseSchema: z.ZodType<UpdateProviderResponse>;
869
886
  export declare const marshalAddExchangeForListingRequestSchema: z.ZodType;
870
887
  export declare const marshalConsumerTermsSchema: z.ZodType;
871
888
  export declare const marshalCreateExchangeFilterRequestSchema: z.ZodType;