@databricks/sdk-marketplaces 0.0.0-dev → 0.1.0-dev.1
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/LICENSE +203 -0
- package/dist/v1/client.d.ts +143 -0
- package/dist/v1/client.d.ts.map +1 -0
- package/dist/v1/client.js +1690 -0
- package/dist/v1/client.js.map +1 -0
- package/dist/v1/index.d.ts +4 -0
- package/dist/v1/index.d.ts.map +1 -0
- package/dist/v1/index.js +4 -0
- package/dist/v1/index.js.map +1 -0
- package/dist/v1/model.d.ts +905 -0
- package/dist/v1/model.d.ts.map +1 -0
- package/dist/v1/model.js +1567 -0
- package/dist/v1/model.js.map +1 -0
- package/dist/v1/transport.d.ts +5 -0
- package/dist/v1/transport.d.ts.map +1 -0
- package/dist/v1/transport.js +57 -0
- package/dist/v1/transport.js.map +1 -0
- package/dist/v1/utils.d.ts +22 -0
- package/dist/v1/utils.d.ts.map +1 -0
- package/dist/v1/utils.js +113 -0
- package/dist/v1/utils.js.map +1 -0
- package/package.json +38 -4
- package/src/v1/client.ts +2286 -0
- package/src/v1/index.ts +150 -0
- package/src/v1/model.ts +2560 -0
- package/src/v1/transport.ts +73 -0
- package/src/v1/utils.ts +156 -0
- package/README.md +0 -1
- package/index.js +0 -1
|
@@ -0,0 +1,905 @@
|
|
|
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",
|
|
8
|
+
/**
|
|
9
|
+
* (MP-2408): media-based assets generally involve volumes; however some volumes files (e.g. CSV) still correspond to datasets
|
|
10
|
+
* as such, add a new asset type to specify media
|
|
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 {
|
|
69
|
+
/** Published files have been sanitized by Marketplace backend and can be viewed by consumers. */
|
|
70
|
+
FILE_STATUS_PUBLISHED = "FILE_STATUS_PUBLISHED",
|
|
71
|
+
/** Created files start in staging. These are viewable by provider APIs but not consumer APIs. */
|
|
72
|
+
FILE_STATUS_STAGING = "FILE_STATUS_STAGING",
|
|
73
|
+
/** Indicates this file is in the process of being sanitized. */
|
|
74
|
+
FILE_STATUS_SANITIZING = "FILE_STATUS_SANITIZING",
|
|
75
|
+
/** 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
|
+
}
|
|
90
|
+
/** 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",
|
|
113
|
+
/** 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
|
+
}
|
|
122
|
+
export interface AddExchangeForListingRequest {
|
|
123
|
+
listingId?: string | undefined;
|
|
124
|
+
exchangeId?: string | undefined;
|
|
125
|
+
}
|
|
126
|
+
export interface AddExchangeForListingResponse {
|
|
127
|
+
exchangeForListing?: ExchangeListing | undefined;
|
|
128
|
+
}
|
|
129
|
+
export interface BatchGetListingsRequest {
|
|
130
|
+
ids?: string[] | undefined;
|
|
131
|
+
}
|
|
132
|
+
export interface BatchGetListingsResponse {
|
|
133
|
+
listings?: Listing[] | undefined;
|
|
134
|
+
}
|
|
135
|
+
export interface BatchGetProvidersRequest {
|
|
136
|
+
ids?: string[] | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface BatchGetProvidersResponse {
|
|
139
|
+
providers?: ProviderInfo[] | undefined;
|
|
140
|
+
}
|
|
141
|
+
export interface ConsumerTerms {
|
|
142
|
+
version?: string | undefined;
|
|
143
|
+
}
|
|
144
|
+
/** contact info for the consumer requesting data or performing a listing installation */
|
|
145
|
+
export interface ContactInfo {
|
|
146
|
+
firstName?: string | undefined;
|
|
147
|
+
lastName?: string | undefined;
|
|
148
|
+
email?: string | undefined;
|
|
149
|
+
company?: string | undefined;
|
|
150
|
+
}
|
|
151
|
+
export interface CreateExchangeFilterRequest {
|
|
152
|
+
filter?: ExchangeFilter | undefined;
|
|
153
|
+
}
|
|
154
|
+
export interface CreateExchangeFilterResponse {
|
|
155
|
+
filterId?: string | undefined;
|
|
156
|
+
}
|
|
157
|
+
export interface CreateExchangeRequest {
|
|
158
|
+
exchange?: Exchange | undefined;
|
|
159
|
+
}
|
|
160
|
+
export interface CreateExchangeResponse {
|
|
161
|
+
exchangeId?: string | undefined;
|
|
162
|
+
}
|
|
163
|
+
export interface CreateFileRequest {
|
|
164
|
+
fileParent?: FileParent | undefined;
|
|
165
|
+
marketplaceFileType?: MarketplaceFileType | undefined;
|
|
166
|
+
mimeType?: string | undefined;
|
|
167
|
+
displayName?: string | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface CreateFileRequest_Response {
|
|
170
|
+
/** Pre-signed POST URL to blob storage */
|
|
171
|
+
uploadUrl?: string | undefined;
|
|
172
|
+
fileInfo?: FileInfo | undefined;
|
|
173
|
+
}
|
|
174
|
+
export interface CreateListingRequest {
|
|
175
|
+
listing?: Listing | undefined;
|
|
176
|
+
}
|
|
177
|
+
export interface CreateListingRequest_Response {
|
|
178
|
+
listingId?: string | undefined;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* Data request messages
|
|
182
|
+
* also creates a lead (maybe)
|
|
183
|
+
*/
|
|
184
|
+
export interface CreatePersonalizationRequest {
|
|
185
|
+
listingId?: string | undefined;
|
|
186
|
+
comment?: string | undefined;
|
|
187
|
+
intendedUse?: string | undefined;
|
|
188
|
+
firstName?: string | undefined;
|
|
189
|
+
lastName?: string | undefined;
|
|
190
|
+
company?: string | undefined;
|
|
191
|
+
isFromLighthouse?: boolean | undefined;
|
|
192
|
+
recipientType?: DeltaSharingRecipientType | undefined;
|
|
193
|
+
acceptedConsumerTerms?: ConsumerTerms | undefined;
|
|
194
|
+
}
|
|
195
|
+
export interface CreatePersonalizationRequest_Response {
|
|
196
|
+
id?: string | undefined;
|
|
197
|
+
}
|
|
198
|
+
export interface CreateProviderAnalyticsDashboardRequest {
|
|
199
|
+
}
|
|
200
|
+
export interface CreateProviderAnalyticsDashboardRequest_Response {
|
|
201
|
+
id?: string | undefined;
|
|
202
|
+
}
|
|
203
|
+
export interface CreateProviderRequest {
|
|
204
|
+
provider?: ProviderInfo | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface CreateProviderRequest_Response {
|
|
207
|
+
id?: string | undefined;
|
|
208
|
+
}
|
|
209
|
+
export interface DataRefreshInfo {
|
|
210
|
+
interval?: bigint | undefined;
|
|
211
|
+
unit?: DataRefresh | undefined;
|
|
212
|
+
}
|
|
213
|
+
export interface DeleteExchangeFilterRequest {
|
|
214
|
+
id?: string | undefined;
|
|
215
|
+
}
|
|
216
|
+
export interface DeleteExchangeFilterResponse {
|
|
217
|
+
}
|
|
218
|
+
export interface DeleteExchangeRequest {
|
|
219
|
+
id?: string | undefined;
|
|
220
|
+
}
|
|
221
|
+
export interface DeleteExchangeResponse {
|
|
222
|
+
}
|
|
223
|
+
export interface DeleteFileRequest {
|
|
224
|
+
fileId?: string | undefined;
|
|
225
|
+
}
|
|
226
|
+
export interface DeleteFileRequest_Response {
|
|
227
|
+
}
|
|
228
|
+
export interface DeleteListingRequest {
|
|
229
|
+
id?: string | undefined;
|
|
230
|
+
}
|
|
231
|
+
export interface DeleteListingRequest_Response {
|
|
232
|
+
}
|
|
233
|
+
export interface DeleteProviderRequest {
|
|
234
|
+
id?: string | undefined;
|
|
235
|
+
}
|
|
236
|
+
export interface DeleteProviderRequest_Response {
|
|
237
|
+
}
|
|
238
|
+
export interface Exchange {
|
|
239
|
+
id?: string | undefined;
|
|
240
|
+
name?: string | undefined;
|
|
241
|
+
comment?: string | undefined;
|
|
242
|
+
filters?: ExchangeFilter[] | undefined;
|
|
243
|
+
createdAt?: bigint | undefined;
|
|
244
|
+
createdBy?: string | undefined;
|
|
245
|
+
updatedAt?: bigint | undefined;
|
|
246
|
+
updatedBy?: string | undefined;
|
|
247
|
+
linkedListings?: ExchangeListing[] | undefined;
|
|
248
|
+
}
|
|
249
|
+
export interface ExchangeFilter {
|
|
250
|
+
id?: string | undefined;
|
|
251
|
+
exchangeId?: string | undefined;
|
|
252
|
+
filterValue?: string | undefined;
|
|
253
|
+
name?: string | undefined;
|
|
254
|
+
createdAt?: bigint | undefined;
|
|
255
|
+
createdBy?: string | undefined;
|
|
256
|
+
updatedAt?: bigint | undefined;
|
|
257
|
+
updatedBy?: string | undefined;
|
|
258
|
+
filterType?: ExchangeFilterType | undefined;
|
|
259
|
+
}
|
|
260
|
+
export interface ExchangeListing {
|
|
261
|
+
id?: string | undefined;
|
|
262
|
+
exchangeId?: string | undefined;
|
|
263
|
+
exchangeName?: string | undefined;
|
|
264
|
+
listingId?: string | undefined;
|
|
265
|
+
listingName?: string | undefined;
|
|
266
|
+
createdAt?: bigint | undefined;
|
|
267
|
+
createdBy?: string | undefined;
|
|
268
|
+
}
|
|
269
|
+
export interface FileInfo {
|
|
270
|
+
id?: string | undefined;
|
|
271
|
+
marketplaceFileType?: MarketplaceFileType | undefined;
|
|
272
|
+
fileParent?: FileParent | undefined;
|
|
273
|
+
mimeType?: string | undefined;
|
|
274
|
+
downloadLink?: string | undefined;
|
|
275
|
+
createdAt?: bigint | undefined;
|
|
276
|
+
updatedAt?: bigint | undefined;
|
|
277
|
+
/** Name displayed to users for applicable files, e.g. embedded notebooks */
|
|
278
|
+
displayName?: string | undefined;
|
|
279
|
+
status?: FileStatus | undefined;
|
|
280
|
+
/** Populated if status is in a failed state with more information on reason for the failure. */
|
|
281
|
+
statusMessage?: string | undefined;
|
|
282
|
+
}
|
|
283
|
+
export interface FileParent {
|
|
284
|
+
/** TODO make the following fields required */
|
|
285
|
+
parentId?: string | undefined;
|
|
286
|
+
fileParentType?: FileParentType | undefined;
|
|
287
|
+
}
|
|
288
|
+
export interface GetAllInstallations {
|
|
289
|
+
pageToken?: string | undefined;
|
|
290
|
+
pageSize?: number | undefined;
|
|
291
|
+
}
|
|
292
|
+
export interface GetAllInstallations_Response {
|
|
293
|
+
installations?: InstallationDetail[] | undefined;
|
|
294
|
+
nextPageToken?: string | undefined;
|
|
295
|
+
}
|
|
296
|
+
export interface GetAllPersonalizationRequestsForConsumer {
|
|
297
|
+
pageToken?: string | undefined;
|
|
298
|
+
pageSize?: number | undefined;
|
|
299
|
+
}
|
|
300
|
+
export interface GetAllPersonalizationRequestsForConsumer_Response {
|
|
301
|
+
personalizationRequests?: PersonalizationRequest[] | undefined;
|
|
302
|
+
nextPageToken?: string | undefined;
|
|
303
|
+
}
|
|
304
|
+
export interface GetExchangeRequest {
|
|
305
|
+
id?: string | undefined;
|
|
306
|
+
}
|
|
307
|
+
export interface GetExchangeResponse {
|
|
308
|
+
exchange?: Exchange | undefined;
|
|
309
|
+
}
|
|
310
|
+
export interface GetFileRequest {
|
|
311
|
+
fileId?: string | undefined;
|
|
312
|
+
}
|
|
313
|
+
export interface GetFileRequest_Response {
|
|
314
|
+
fileInfo?: FileInfo | undefined;
|
|
315
|
+
}
|
|
316
|
+
export interface GetInstallationDetails {
|
|
317
|
+
listingId?: string | undefined;
|
|
318
|
+
pageToken?: string | undefined;
|
|
319
|
+
pageSize?: number | undefined;
|
|
320
|
+
}
|
|
321
|
+
export interface GetInstallationDetails_Response {
|
|
322
|
+
installations?: InstallationDetail[] | undefined;
|
|
323
|
+
nextPageToken?: string | undefined;
|
|
324
|
+
}
|
|
325
|
+
/**
|
|
326
|
+
* this is effectively a static request for now and will return latest version of the dashboard template
|
|
327
|
+
* that exists on server.
|
|
328
|
+
*/
|
|
329
|
+
export interface GetLatestVersionProviderAnalyticsDashboardRequest {
|
|
330
|
+
}
|
|
331
|
+
export interface GetLatestVersionProviderAnalyticsDashboardRequest_Response {
|
|
332
|
+
/** version here is latest logical version of the dashboard template */
|
|
333
|
+
version?: bigint | undefined;
|
|
334
|
+
}
|
|
335
|
+
export interface GetListingContent {
|
|
336
|
+
listingId?: string | undefined;
|
|
337
|
+
pageToken?: string | undefined;
|
|
338
|
+
pageSize?: number | undefined;
|
|
339
|
+
}
|
|
340
|
+
export interface GetListingContent_Response {
|
|
341
|
+
sharedDataObjects?: SharedDataObject[] | undefined;
|
|
342
|
+
nextPageToken?: string | undefined;
|
|
343
|
+
}
|
|
344
|
+
export interface GetListingFulfillments {
|
|
345
|
+
listingId?: string | undefined;
|
|
346
|
+
pageToken?: string | undefined;
|
|
347
|
+
pageSize?: number | undefined;
|
|
348
|
+
}
|
|
349
|
+
export interface GetListingFulfillments_Response {
|
|
350
|
+
fulfillments?: ListingFulfillment[] | undefined;
|
|
351
|
+
nextPageToken?: string | undefined;
|
|
352
|
+
}
|
|
353
|
+
export interface GetListingRequest {
|
|
354
|
+
id?: string | undefined;
|
|
355
|
+
}
|
|
356
|
+
export interface GetListingRequest_Response {
|
|
357
|
+
listing?: Listing | undefined;
|
|
358
|
+
}
|
|
359
|
+
export interface GetListingsRequest {
|
|
360
|
+
pageToken?: string | undefined;
|
|
361
|
+
pageSize?: number | undefined;
|
|
362
|
+
}
|
|
363
|
+
export interface GetListingsRequest_Response {
|
|
364
|
+
listings?: Listing[] | undefined;
|
|
365
|
+
nextPageToken?: string | undefined;
|
|
366
|
+
}
|
|
367
|
+
export interface GetPersonalizationRequestsForConsumer {
|
|
368
|
+
listingId?: string | undefined;
|
|
369
|
+
}
|
|
370
|
+
export interface GetPersonalizationRequestsForConsumer_Response {
|
|
371
|
+
personalizationRequests?: PersonalizationRequest[] | undefined;
|
|
372
|
+
}
|
|
373
|
+
export interface GetPersonalizationRequestsForProviderRequest {
|
|
374
|
+
pageToken?: string | undefined;
|
|
375
|
+
pageSize?: number | undefined;
|
|
376
|
+
}
|
|
377
|
+
export interface GetPersonalizationRequestsForProviderRequest_Response {
|
|
378
|
+
personalizationRequests?: PersonalizationRequest[] | undefined;
|
|
379
|
+
nextPageToken?: string | undefined;
|
|
380
|
+
}
|
|
381
|
+
export interface GetProviderRequest {
|
|
382
|
+
id?: string | undefined;
|
|
383
|
+
}
|
|
384
|
+
export interface GetProviderRequest_Response {
|
|
385
|
+
provider?: ProviderInfo | undefined;
|
|
386
|
+
}
|
|
387
|
+
export interface GetPublishedListingForConsumer {
|
|
388
|
+
id?: string | undefined;
|
|
389
|
+
}
|
|
390
|
+
export interface GetPublishedListingForConsumer_Response {
|
|
391
|
+
listing?: Listing | undefined;
|
|
392
|
+
}
|
|
393
|
+
/** Listing messages */
|
|
394
|
+
export interface GetPublishedListingsForConsumer {
|
|
395
|
+
pageToken?: string | undefined;
|
|
396
|
+
pageSize?: number | undefined;
|
|
397
|
+
/** Matches any of the following asset types */
|
|
398
|
+
assets?: AssetType[] | undefined;
|
|
399
|
+
/** Matches any of the following categories */
|
|
400
|
+
categories?: Category[] | undefined;
|
|
401
|
+
/** Matches listings with this tag */
|
|
402
|
+
tags?: ListingTag | undefined;
|
|
403
|
+
/** Filters each listing based on if it is free. */
|
|
404
|
+
isFree?: boolean | undefined;
|
|
405
|
+
/** Filters each listing based on if it is a private exchange. */
|
|
406
|
+
isPrivateExchange?: boolean | undefined;
|
|
407
|
+
/** Filters each listing based on whether it is a staff pick. */
|
|
408
|
+
isStaffPick?: boolean | undefined;
|
|
409
|
+
/** Matches any of the following provider ids */
|
|
410
|
+
providerIds?: string[] | undefined;
|
|
411
|
+
}
|
|
412
|
+
export interface GetPublishedListingsForConsumer_Response {
|
|
413
|
+
listings?: Listing[] | undefined;
|
|
414
|
+
nextPageToken?: string | undefined;
|
|
415
|
+
}
|
|
416
|
+
export interface GetPublishedProviderForConsumer {
|
|
417
|
+
id?: string | undefined;
|
|
418
|
+
}
|
|
419
|
+
export interface GetPublishedProviderForConsumer_Response {
|
|
420
|
+
provider?: ProviderInfo | undefined;
|
|
421
|
+
}
|
|
422
|
+
export interface InstallListing {
|
|
423
|
+
listingId?: string | undefined;
|
|
424
|
+
shareName?: string | undefined;
|
|
425
|
+
catalogName?: string | undefined;
|
|
426
|
+
/** for git repo installations */
|
|
427
|
+
repoDetail?: RepoInstallation | undefined;
|
|
428
|
+
recipientType?: DeltaSharingRecipientType | undefined;
|
|
429
|
+
acceptedConsumerTerms?: ConsumerTerms | undefined;
|
|
430
|
+
}
|
|
431
|
+
export interface InstallListing_Response {
|
|
432
|
+
installation?: InstallationDetail | undefined;
|
|
433
|
+
}
|
|
434
|
+
export interface InstallationDetail {
|
|
435
|
+
id?: string | undefined;
|
|
436
|
+
listingId?: string | undefined;
|
|
437
|
+
shareName?: string | undefined;
|
|
438
|
+
catalogName?: string | undefined;
|
|
439
|
+
installedOn?: bigint | undefined;
|
|
440
|
+
status?: InstallationStatus | undefined;
|
|
441
|
+
errorMessage?: string | undefined;
|
|
442
|
+
listingName?: string | undefined;
|
|
443
|
+
repoName?: string | undefined;
|
|
444
|
+
repoPath?: string | undefined;
|
|
445
|
+
recipientType?: DeltaSharingRecipientType | undefined;
|
|
446
|
+
tokens?: TokenInfo[] | undefined;
|
|
447
|
+
tokenDetail?: TokenDetail | undefined;
|
|
448
|
+
}
|
|
449
|
+
export interface ListExchangeFiltersRequest {
|
|
450
|
+
exchangeId?: string | undefined;
|
|
451
|
+
pageToken?: string | undefined;
|
|
452
|
+
pageSize?: number | undefined;
|
|
453
|
+
}
|
|
454
|
+
export interface ListExchangeFiltersResponse {
|
|
455
|
+
filters?: ExchangeFilter[] | undefined;
|
|
456
|
+
nextPageToken?: string | undefined;
|
|
457
|
+
}
|
|
458
|
+
export interface ListExchangesForListingRequest {
|
|
459
|
+
listingId?: string | undefined;
|
|
460
|
+
pageToken?: string | undefined;
|
|
461
|
+
pageSize?: number | undefined;
|
|
462
|
+
}
|
|
463
|
+
export interface ListExchangesForListingResponse {
|
|
464
|
+
exchangeListing?: ExchangeListing[] | undefined;
|
|
465
|
+
nextPageToken?: string | undefined;
|
|
466
|
+
}
|
|
467
|
+
export interface ListExchangesRequest {
|
|
468
|
+
pageToken?: string | undefined;
|
|
469
|
+
pageSize?: number | undefined;
|
|
470
|
+
}
|
|
471
|
+
export interface ListExchangesResponse {
|
|
472
|
+
exchanges?: Exchange[] | undefined;
|
|
473
|
+
nextPageToken?: string | undefined;
|
|
474
|
+
}
|
|
475
|
+
export interface ListFilesRequest {
|
|
476
|
+
fileParent?: FileParent | undefined;
|
|
477
|
+
pageToken?: string | undefined;
|
|
478
|
+
pageSize?: number | undefined;
|
|
479
|
+
}
|
|
480
|
+
export interface ListFilesRequest_Response {
|
|
481
|
+
fileInfos?: FileInfo[] | undefined;
|
|
482
|
+
nextPageToken?: string | undefined;
|
|
483
|
+
}
|
|
484
|
+
export interface ListListingsForExchangeRequest {
|
|
485
|
+
exchangeId?: string | undefined;
|
|
486
|
+
pageToken?: string | undefined;
|
|
487
|
+
pageSize?: number | undefined;
|
|
488
|
+
}
|
|
489
|
+
export interface ListListingsForExchangeResponse {
|
|
490
|
+
exchangeListings?: ExchangeListing[] | undefined;
|
|
491
|
+
nextPageToken?: string | undefined;
|
|
492
|
+
}
|
|
493
|
+
export interface ListProviderAnalyticsDashboardRequest {
|
|
494
|
+
}
|
|
495
|
+
export interface ListProviderAnalyticsDashboardRequest_Response {
|
|
496
|
+
id?: string | undefined;
|
|
497
|
+
version?: bigint | undefined;
|
|
498
|
+
/** dashboard_id will be used to open Lakeview dashboard. */
|
|
499
|
+
dashboardId?: string | undefined;
|
|
500
|
+
}
|
|
501
|
+
export interface ListProvidersRequest {
|
|
502
|
+
pageToken?: string | undefined;
|
|
503
|
+
pageSize?: number | undefined;
|
|
504
|
+
}
|
|
505
|
+
export interface ListProvidersRequest_Response {
|
|
506
|
+
providers?: ProviderInfo[] | undefined;
|
|
507
|
+
nextPageToken?: string | undefined;
|
|
508
|
+
}
|
|
509
|
+
export interface ListPublishedProvidersForConsumer {
|
|
510
|
+
pageToken?: string | undefined;
|
|
511
|
+
pageSize?: number | undefined;
|
|
512
|
+
isFeatured?: boolean | undefined;
|
|
513
|
+
}
|
|
514
|
+
export interface ListPublishedProvidersForConsumer_Response {
|
|
515
|
+
providers?: ProviderInfo[] | undefined;
|
|
516
|
+
nextPageToken?: string | undefined;
|
|
517
|
+
}
|
|
518
|
+
export interface Listing {
|
|
519
|
+
id?: string | undefined;
|
|
520
|
+
summary?: ListingSummary | undefined;
|
|
521
|
+
detail?: ListingDetail | undefined;
|
|
522
|
+
}
|
|
523
|
+
export interface ListingDetail {
|
|
524
|
+
description?: string | undefined;
|
|
525
|
+
termsOfService?: string | undefined;
|
|
526
|
+
documentationLink?: string | undefined;
|
|
527
|
+
supportLink?: string | undefined;
|
|
528
|
+
fileIds?: string[] | undefined;
|
|
529
|
+
privacyPolicyLink?: string | undefined;
|
|
530
|
+
embeddedNotebookFileInfos?: FileInfo[] | undefined;
|
|
531
|
+
/** Which geo region the listing data is collected from */
|
|
532
|
+
geographicalCoverage?: string | undefined;
|
|
533
|
+
/** Whether the dataset is free or paid */
|
|
534
|
+
cost?: Cost | undefined;
|
|
535
|
+
/**
|
|
536
|
+
* What the pricing model is (e.g. paid, subscription, paid upfront); should only be present if cost is paid
|
|
537
|
+
* TODO: Not used yet, should deprecate if we will never use it
|
|
538
|
+
*/
|
|
539
|
+
pricingModel?: string | undefined;
|
|
540
|
+
/** How often data is updated */
|
|
541
|
+
updateFrequency?: DataRefreshInfo | undefined;
|
|
542
|
+
/** Smallest unit of time in the dataset */
|
|
543
|
+
collectionGranularity?: DataRefreshInfo | undefined;
|
|
544
|
+
/** The starting date timestamp for when the data spans */
|
|
545
|
+
collectionDateStart?: bigint | undefined;
|
|
546
|
+
/** The ending date timestamp for when the data spans */
|
|
547
|
+
collectionDateEnd?: bigint | undefined;
|
|
548
|
+
/** Where/how the data is sourced */
|
|
549
|
+
dataSource?: string | undefined;
|
|
550
|
+
/** size of the dataset in GB */
|
|
551
|
+
size?: number | undefined;
|
|
552
|
+
/** Type of assets included in the listing. eg. GIT_REPO, DATA_TABLE, MODEL, NOTEBOOK */
|
|
553
|
+
assets?: AssetType[] | undefined;
|
|
554
|
+
/**
|
|
555
|
+
* ID 20, 21 removed don't use
|
|
556
|
+
* License of the data asset - Required for listings with model based assets
|
|
557
|
+
*/
|
|
558
|
+
license?: string | undefined;
|
|
559
|
+
/**
|
|
560
|
+
* Listing tags - Simple key value pair to annotate listings.
|
|
561
|
+
* When should I use tags vs dedicated fields?
|
|
562
|
+
* Using tags avoids the need to add new columns in the database for new annotations.
|
|
563
|
+
* However, this should be used sparingly since tags are stored as key value pair.
|
|
564
|
+
* Use tags only:
|
|
565
|
+
* 1. If the field is optional and won't need to have NOT NULL integrity check
|
|
566
|
+
* 2. The value is fairly fixed, static and low cardinality (eg. enums).
|
|
567
|
+
* 3. The value won't be used in filters or joins with other tables.
|
|
568
|
+
*/
|
|
569
|
+
tags?: ListingTag[] | undefined;
|
|
570
|
+
}
|
|
571
|
+
export interface ListingFulfillment {
|
|
572
|
+
listingId?: string | undefined;
|
|
573
|
+
fulfillmentType?: FulfillmentType | undefined;
|
|
574
|
+
shareInfo?: ShareInfo | undefined;
|
|
575
|
+
repoInfo?: RepoInfo | undefined;
|
|
576
|
+
recipientType?: DeltaSharingRecipientType | undefined;
|
|
577
|
+
}
|
|
578
|
+
export interface ListingSetting {
|
|
579
|
+
visibility?: Visibility | undefined;
|
|
580
|
+
}
|
|
581
|
+
export interface ListingSummary {
|
|
582
|
+
name?: string | undefined;
|
|
583
|
+
subtitle?: string | undefined;
|
|
584
|
+
status?: ListingStatus | undefined;
|
|
585
|
+
share?: ShareInfo | undefined;
|
|
586
|
+
providerRegion?: RegionInfo | undefined;
|
|
587
|
+
setting?: ListingSetting | undefined;
|
|
588
|
+
createdAt?: bigint | undefined;
|
|
589
|
+
createdBy?: string | undefined;
|
|
590
|
+
updatedAt?: bigint | undefined;
|
|
591
|
+
updatedBy?: string | undefined;
|
|
592
|
+
publishedAt?: bigint | undefined;
|
|
593
|
+
publishedBy?: string | undefined;
|
|
594
|
+
categories?: Category[] | undefined;
|
|
595
|
+
listingType?: ListingType | undefined;
|
|
596
|
+
createdById?: bigint | undefined;
|
|
597
|
+
updatedById?: bigint | undefined;
|
|
598
|
+
providerId?: string | undefined;
|
|
599
|
+
exchangeIds?: string[] | undefined;
|
|
600
|
+
/** if a git repo is being created, a listing will be initialized with this field as opposed to a share */
|
|
601
|
+
gitRepo?: RepoInfo | undefined;
|
|
602
|
+
}
|
|
603
|
+
export interface ListingTag {
|
|
604
|
+
/** Tag name (enum) */
|
|
605
|
+
tagName?: ListingTagType | undefined;
|
|
606
|
+
/** String representation of the tag value. Values should be string literals (no complex types) */
|
|
607
|
+
tagValues?: string[] | undefined;
|
|
608
|
+
}
|
|
609
|
+
export interface PersonalizationRequest {
|
|
610
|
+
id?: string | undefined;
|
|
611
|
+
consumerRegion?: RegionInfo | undefined;
|
|
612
|
+
contactInfo?: ContactInfo | undefined;
|
|
613
|
+
comment?: string | undefined;
|
|
614
|
+
intendedUse?: string | undefined;
|
|
615
|
+
status?: PersonalizationRequestStatus | undefined;
|
|
616
|
+
statusMessage?: string | undefined;
|
|
617
|
+
/**
|
|
618
|
+
* Share information is required for data listings
|
|
619
|
+
* but should be empty/ignored for non-data listings (MCP and App).
|
|
620
|
+
*/
|
|
621
|
+
share?: ShareInfo | undefined;
|
|
622
|
+
createdAt?: bigint | undefined;
|
|
623
|
+
listingId?: string | undefined;
|
|
624
|
+
updatedAt?: bigint | undefined;
|
|
625
|
+
metastoreId?: string | undefined;
|
|
626
|
+
listingName?: string | undefined;
|
|
627
|
+
isFromLighthouse?: boolean | undefined;
|
|
628
|
+
providerId?: string | undefined;
|
|
629
|
+
recipientType?: DeltaSharingRecipientType | undefined;
|
|
630
|
+
}
|
|
631
|
+
export interface ProviderInfo {
|
|
632
|
+
id?: string | undefined;
|
|
633
|
+
name?: string | undefined;
|
|
634
|
+
description?: string | undefined;
|
|
635
|
+
iconFilePath?: string | undefined;
|
|
636
|
+
businessContactEmail?: string | undefined;
|
|
637
|
+
supportContactEmail?: string | undefined;
|
|
638
|
+
/** is_featured is accessible by consumers only */
|
|
639
|
+
isFeatured?: boolean | undefined;
|
|
640
|
+
/** published_by is only applicable to data aggregators (e.g. Crux) */
|
|
641
|
+
publishedBy?: string | undefined;
|
|
642
|
+
companyWebsiteLink?: string | undefined;
|
|
643
|
+
iconFileId?: string | undefined;
|
|
644
|
+
termOfServiceLink?: string | undefined;
|
|
645
|
+
privacyPolicyLink?: string | undefined;
|
|
646
|
+
darkModeIconFileId?: string | undefined;
|
|
647
|
+
darkModeIconFilePath?: string | undefined;
|
|
648
|
+
}
|
|
649
|
+
export interface RegionInfo {
|
|
650
|
+
cloud?: string | undefined;
|
|
651
|
+
region?: string | undefined;
|
|
652
|
+
}
|
|
653
|
+
export interface RemoveExchangeForListingRequest {
|
|
654
|
+
id?: string | undefined;
|
|
655
|
+
}
|
|
656
|
+
export interface RemoveExchangeForListingResponse {
|
|
657
|
+
}
|
|
658
|
+
export interface RepoInfo {
|
|
659
|
+
/** the git repo url e.g. https://github.com/databrickslabs/dolly.git */
|
|
660
|
+
gitRepoUrl?: string | undefined;
|
|
661
|
+
}
|
|
662
|
+
export interface RepoInstallation {
|
|
663
|
+
/** the user-specified repo name for their installed git repo listing */
|
|
664
|
+
repoName?: string | undefined;
|
|
665
|
+
/**
|
|
666
|
+
* refers to the full url file path that navigates the user to the repo's entrypoint (e.g. a README.md file, or the repo file view in the unified UI)
|
|
667
|
+
* should just be a relative path
|
|
668
|
+
*/
|
|
669
|
+
repoPath?: string | undefined;
|
|
670
|
+
}
|
|
671
|
+
export interface SearchPublishedListingsForConsumer {
|
|
672
|
+
/** Fuzzy matches query */
|
|
673
|
+
query?: string | undefined;
|
|
674
|
+
isFree?: boolean | undefined;
|
|
675
|
+
isPrivateExchange?: boolean | undefined;
|
|
676
|
+
/** Matches any of the following provider ids */
|
|
677
|
+
providerIds?: string[] | undefined;
|
|
678
|
+
/** Matches any of the following categories */
|
|
679
|
+
categories?: Category[] | undefined;
|
|
680
|
+
/** Matches any of the following asset types */
|
|
681
|
+
assets?: AssetType[] | undefined;
|
|
682
|
+
pageToken?: string | undefined;
|
|
683
|
+
pageSize?: number | undefined;
|
|
684
|
+
}
|
|
685
|
+
export interface SearchPublishedListingsForConsumer_Response {
|
|
686
|
+
listings?: Listing[] | undefined;
|
|
687
|
+
nextPageToken?: string | undefined;
|
|
688
|
+
}
|
|
689
|
+
export interface ShareInfo {
|
|
690
|
+
name?: string | undefined;
|
|
691
|
+
type?: ListingShareType | undefined;
|
|
692
|
+
}
|
|
693
|
+
export interface SharedDataObject {
|
|
694
|
+
/** Name of the shared object */
|
|
695
|
+
name?: string | undefined;
|
|
696
|
+
/** The type of the data object. Could be one of: TABLE, SCHEMA, NOTEBOOK_FILE, MODEL, VOLUME */
|
|
697
|
+
dataObjectType?: string | undefined;
|
|
698
|
+
}
|
|
699
|
+
export interface TokenDetail {
|
|
700
|
+
/**
|
|
701
|
+
* These field names must follow the delta sharing protocol.
|
|
702
|
+
* Original message: RetrieveToken.Response in managed-catalog/api/messages/recipient.proto
|
|
703
|
+
*/
|
|
704
|
+
shareCredentialsVersion?: number | undefined;
|
|
705
|
+
bearerToken?: string | undefined;
|
|
706
|
+
endpoint?: string | undefined;
|
|
707
|
+
expirationTime?: string | undefined;
|
|
708
|
+
}
|
|
709
|
+
export interface TokenInfo {
|
|
710
|
+
/** Unique id of the Recipient Token. */
|
|
711
|
+
id?: string | undefined;
|
|
712
|
+
/** Time at which this Recipient Token was created, in epoch milliseconds. */
|
|
713
|
+
createdAt?: bigint | undefined;
|
|
714
|
+
/** Username of Recipient Token creator. */
|
|
715
|
+
createdBy?: string | undefined;
|
|
716
|
+
/**
|
|
717
|
+
* Full activation url to retrieve the access token.
|
|
718
|
+
* It will be empty if the token is already retrieved.
|
|
719
|
+
*/
|
|
720
|
+
activationUrl?: string | undefined;
|
|
721
|
+
/** Expiration timestamp of the token in epoch milliseconds. */
|
|
722
|
+
expirationTime?: bigint | undefined;
|
|
723
|
+
/** Time at which this Recipient Token was updated, in epoch milliseconds. */
|
|
724
|
+
updatedAt?: bigint | undefined;
|
|
725
|
+
/** Username of Recipient Token updater. */
|
|
726
|
+
updatedBy?: string | undefined;
|
|
727
|
+
}
|
|
728
|
+
export interface UninstallListing {
|
|
729
|
+
listingId?: string | undefined;
|
|
730
|
+
installationId?: string | undefined;
|
|
731
|
+
}
|
|
732
|
+
export interface UninstallListing_Response {
|
|
733
|
+
}
|
|
734
|
+
export interface UpdateExchangeFilterRequest {
|
|
735
|
+
id?: string | undefined;
|
|
736
|
+
filter?: ExchangeFilter | undefined;
|
|
737
|
+
}
|
|
738
|
+
export interface UpdateExchangeFilterResponse {
|
|
739
|
+
filter?: ExchangeFilter | undefined;
|
|
740
|
+
}
|
|
741
|
+
export interface UpdateExchangeRequest {
|
|
742
|
+
id?: string | undefined;
|
|
743
|
+
exchange?: Exchange | undefined;
|
|
744
|
+
}
|
|
745
|
+
export interface UpdateExchangeResponse {
|
|
746
|
+
exchange?: Exchange | undefined;
|
|
747
|
+
}
|
|
748
|
+
export interface UpdateInstallationDetail {
|
|
749
|
+
listingId?: string | undefined;
|
|
750
|
+
installationId?: string | undefined;
|
|
751
|
+
installation?: InstallationDetail | undefined;
|
|
752
|
+
rotateToken?: boolean | undefined;
|
|
753
|
+
}
|
|
754
|
+
export interface UpdateInstallationDetail_Response {
|
|
755
|
+
installation?: InstallationDetail | undefined;
|
|
756
|
+
}
|
|
757
|
+
export interface UpdateListingRequest {
|
|
758
|
+
id?: string | undefined;
|
|
759
|
+
listing?: Listing | undefined;
|
|
760
|
+
}
|
|
761
|
+
export interface UpdateListingRequest_Response {
|
|
762
|
+
listing?: Listing | undefined;
|
|
763
|
+
}
|
|
764
|
+
export interface UpdatePersonalizationRequestStatusRequest {
|
|
765
|
+
listingId?: string | undefined;
|
|
766
|
+
requestId?: string | undefined;
|
|
767
|
+
status?: PersonalizationRequestStatus | undefined;
|
|
768
|
+
reason?: string | undefined;
|
|
769
|
+
share?: ShareInfo | undefined;
|
|
770
|
+
}
|
|
771
|
+
export interface UpdatePersonalizationRequestStatusRequest_Response {
|
|
772
|
+
request?: PersonalizationRequest | undefined;
|
|
773
|
+
}
|
|
774
|
+
export interface UpdateProviderAnalyticsDashboardRequest {
|
|
775
|
+
/** id is immutable property and can't be updated. */
|
|
776
|
+
id?: string | undefined;
|
|
777
|
+
/**
|
|
778
|
+
* this is the version of the dashboard template we want to update our user to
|
|
779
|
+
* current expectation is that it should be equal to latest version of the dashboard template
|
|
780
|
+
*/
|
|
781
|
+
version?: bigint | undefined;
|
|
782
|
+
}
|
|
783
|
+
export interface UpdateProviderAnalyticsDashboardRequest_Response {
|
|
784
|
+
/** id & version should be the same as the request */
|
|
785
|
+
id?: string | undefined;
|
|
786
|
+
version?: bigint | undefined;
|
|
787
|
+
/** this is newly created Lakeview dashboard for the user */
|
|
788
|
+
dashboardId?: string | undefined;
|
|
789
|
+
}
|
|
790
|
+
export interface UpdateProviderRequest {
|
|
791
|
+
id?: string | undefined;
|
|
792
|
+
provider?: ProviderInfo | undefined;
|
|
793
|
+
}
|
|
794
|
+
export interface UpdateProviderRequest_Response {
|
|
795
|
+
provider?: ProviderInfo | undefined;
|
|
796
|
+
}
|
|
797
|
+
export declare const unmarshalAddExchangeForListingResponseSchema: z.ZodType<AddExchangeForListingResponse>;
|
|
798
|
+
export declare const unmarshalBatchGetListingsResponseSchema: z.ZodType<BatchGetListingsResponse>;
|
|
799
|
+
export declare const unmarshalBatchGetProvidersResponseSchema: z.ZodType<BatchGetProvidersResponse>;
|
|
800
|
+
export declare const unmarshalContactInfoSchema: z.ZodType<ContactInfo>;
|
|
801
|
+
export declare const unmarshalCreateExchangeFilterResponseSchema: z.ZodType<CreateExchangeFilterResponse>;
|
|
802
|
+
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>;
|
|
808
|
+
export declare const unmarshalDataRefreshInfoSchema: z.ZodType<DataRefreshInfo>;
|
|
809
|
+
export declare const unmarshalDeleteExchangeFilterResponseSchema: z.ZodType<DeleteExchangeFilterResponse>;
|
|
810
|
+
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>;
|
|
814
|
+
export declare const unmarshalExchangeSchema: z.ZodType<Exchange>;
|
|
815
|
+
export declare const unmarshalExchangeFilterSchema: z.ZodType<ExchangeFilter>;
|
|
816
|
+
export declare const unmarshalExchangeListingSchema: z.ZodType<ExchangeListing>;
|
|
817
|
+
export declare const unmarshalFileInfoSchema: z.ZodType<FileInfo>;
|
|
818
|
+
export declare const unmarshalFileParentSchema: z.ZodType<FileParent>;
|
|
819
|
+
export declare const unmarshalGetAllInstallations_ResponseSchema: z.ZodType<GetAllInstallations_Response>;
|
|
820
|
+
export declare const unmarshalGetAllPersonalizationRequestsForConsumer_ResponseSchema: z.ZodType<GetAllPersonalizationRequestsForConsumer_Response>;
|
|
821
|
+
export declare const unmarshalGetExchangeResponseSchema: z.ZodType<GetExchangeResponse>;
|
|
822
|
+
export declare const unmarshalGetFileRequest_ResponseSchema: z.ZodType<GetFileRequest_Response>;
|
|
823
|
+
export declare const unmarshalGetInstallationDetails_ResponseSchema: z.ZodType<GetInstallationDetails_Response>;
|
|
824
|
+
export declare const unmarshalGetLatestVersionProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<GetLatestVersionProviderAnalyticsDashboardRequest_Response>;
|
|
825
|
+
export declare const unmarshalGetListingContent_ResponseSchema: z.ZodType<GetListingContent_Response>;
|
|
826
|
+
export declare const unmarshalGetListingFulfillments_ResponseSchema: z.ZodType<GetListingFulfillments_Response>;
|
|
827
|
+
export declare const unmarshalGetListingRequest_ResponseSchema: z.ZodType<GetListingRequest_Response>;
|
|
828
|
+
export declare const unmarshalGetListingsRequest_ResponseSchema: z.ZodType<GetListingsRequest_Response>;
|
|
829
|
+
export declare const unmarshalGetPersonalizationRequestsForConsumer_ResponseSchema: z.ZodType<GetPersonalizationRequestsForConsumer_Response>;
|
|
830
|
+
export declare const unmarshalGetPersonalizationRequestsForProviderRequest_ResponseSchema: z.ZodType<GetPersonalizationRequestsForProviderRequest_Response>;
|
|
831
|
+
export declare const unmarshalGetProviderRequest_ResponseSchema: z.ZodType<GetProviderRequest_Response>;
|
|
832
|
+
export declare const unmarshalGetPublishedListingForConsumer_ResponseSchema: z.ZodType<GetPublishedListingForConsumer_Response>;
|
|
833
|
+
export declare const unmarshalGetPublishedListingsForConsumer_ResponseSchema: z.ZodType<GetPublishedListingsForConsumer_Response>;
|
|
834
|
+
export declare const unmarshalGetPublishedProviderForConsumer_ResponseSchema: z.ZodType<GetPublishedProviderForConsumer_Response>;
|
|
835
|
+
export declare const unmarshalInstallListing_ResponseSchema: z.ZodType<InstallListing_Response>;
|
|
836
|
+
export declare const unmarshalInstallationDetailSchema: z.ZodType<InstallationDetail>;
|
|
837
|
+
export declare const unmarshalListExchangeFiltersResponseSchema: z.ZodType<ListExchangeFiltersResponse>;
|
|
838
|
+
export declare const unmarshalListExchangesForListingResponseSchema: z.ZodType<ListExchangesForListingResponse>;
|
|
839
|
+
export declare const unmarshalListExchangesResponseSchema: z.ZodType<ListExchangesResponse>;
|
|
840
|
+
export declare const unmarshalListFilesRequest_ResponseSchema: z.ZodType<ListFilesRequest_Response>;
|
|
841
|
+
export declare const unmarshalListListingsForExchangeResponseSchema: z.ZodType<ListListingsForExchangeResponse>;
|
|
842
|
+
export declare const unmarshalListProviderAnalyticsDashboardRequest_ResponseSchema: z.ZodType<ListProviderAnalyticsDashboardRequest_Response>;
|
|
843
|
+
export declare const unmarshalListProvidersRequest_ResponseSchema: z.ZodType<ListProvidersRequest_Response>;
|
|
844
|
+
export declare const unmarshalListPublishedProvidersForConsumer_ResponseSchema: z.ZodType<ListPublishedProvidersForConsumer_Response>;
|
|
845
|
+
export declare const unmarshalListingSchema: z.ZodType<Listing>;
|
|
846
|
+
export declare const unmarshalListingDetailSchema: z.ZodType<ListingDetail>;
|
|
847
|
+
export declare const unmarshalListingFulfillmentSchema: z.ZodType<ListingFulfillment>;
|
|
848
|
+
export declare const unmarshalListingSettingSchema: z.ZodType<ListingSetting>;
|
|
849
|
+
export declare const unmarshalListingSummarySchema: z.ZodType<ListingSummary>;
|
|
850
|
+
export declare const unmarshalListingTagSchema: z.ZodType<ListingTag>;
|
|
851
|
+
export declare const unmarshalPersonalizationRequestSchema: z.ZodType<PersonalizationRequest>;
|
|
852
|
+
export declare const unmarshalProviderInfoSchema: z.ZodType<ProviderInfo>;
|
|
853
|
+
export declare const unmarshalRegionInfoSchema: z.ZodType<RegionInfo>;
|
|
854
|
+
export declare const unmarshalRemoveExchangeForListingResponseSchema: z.ZodType<RemoveExchangeForListingResponse>;
|
|
855
|
+
export declare const unmarshalRepoInfoSchema: z.ZodType<RepoInfo>;
|
|
856
|
+
export declare const unmarshalSearchPublishedListingsForConsumer_ResponseSchema: z.ZodType<SearchPublishedListingsForConsumer_Response>;
|
|
857
|
+
export declare const unmarshalShareInfoSchema: z.ZodType<ShareInfo>;
|
|
858
|
+
export declare const unmarshalSharedDataObjectSchema: z.ZodType<SharedDataObject>;
|
|
859
|
+
export declare const unmarshalTokenDetailSchema: z.ZodType<TokenDetail>;
|
|
860
|
+
export declare const unmarshalTokenInfoSchema: z.ZodType<TokenInfo>;
|
|
861
|
+
export declare const unmarshalUninstallListing_ResponseSchema: z.ZodType<UninstallListing_Response>;
|
|
862
|
+
export declare const unmarshalUpdateExchangeFilterResponseSchema: z.ZodType<UpdateExchangeFilterResponse>;
|
|
863
|
+
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>;
|
|
869
|
+
export declare const marshalAddExchangeForListingRequestSchema: z.ZodType;
|
|
870
|
+
export declare const marshalConsumerTermsSchema: z.ZodType;
|
|
871
|
+
export declare const marshalCreateExchangeFilterRequestSchema: z.ZodType;
|
|
872
|
+
export declare const marshalCreateExchangeRequestSchema: z.ZodType;
|
|
873
|
+
export declare const marshalCreateFileRequestSchema: z.ZodType;
|
|
874
|
+
export declare const marshalCreateListingRequestSchema: z.ZodType;
|
|
875
|
+
export declare const marshalCreatePersonalizationRequestSchema: z.ZodType;
|
|
876
|
+
export declare const marshalCreateProviderAnalyticsDashboardRequestSchema: z.ZodType;
|
|
877
|
+
export declare const marshalCreateProviderRequestSchema: z.ZodType;
|
|
878
|
+
export declare const marshalDataRefreshInfoSchema: z.ZodType;
|
|
879
|
+
export declare const marshalExchangeSchema: z.ZodType;
|
|
880
|
+
export declare const marshalExchangeFilterSchema: z.ZodType;
|
|
881
|
+
export declare const marshalExchangeListingSchema: z.ZodType;
|
|
882
|
+
export declare const marshalFileInfoSchema: z.ZodType;
|
|
883
|
+
export declare const marshalFileParentSchema: z.ZodType;
|
|
884
|
+
export declare const marshalInstallListingSchema: z.ZodType;
|
|
885
|
+
export declare const marshalInstallationDetailSchema: z.ZodType;
|
|
886
|
+
export declare const marshalListingSchema: z.ZodType;
|
|
887
|
+
export declare const marshalListingDetailSchema: z.ZodType;
|
|
888
|
+
export declare const marshalListingSettingSchema: z.ZodType;
|
|
889
|
+
export declare const marshalListingSummarySchema: z.ZodType;
|
|
890
|
+
export declare const marshalListingTagSchema: z.ZodType;
|
|
891
|
+
export declare const marshalProviderInfoSchema: z.ZodType;
|
|
892
|
+
export declare const marshalRegionInfoSchema: z.ZodType;
|
|
893
|
+
export declare const marshalRepoInfoSchema: z.ZodType;
|
|
894
|
+
export declare const marshalRepoInstallationSchema: z.ZodType;
|
|
895
|
+
export declare const marshalShareInfoSchema: z.ZodType;
|
|
896
|
+
export declare const marshalTokenDetailSchema: z.ZodType;
|
|
897
|
+
export declare const marshalTokenInfoSchema: z.ZodType;
|
|
898
|
+
export declare const marshalUpdateExchangeFilterRequestSchema: z.ZodType;
|
|
899
|
+
export declare const marshalUpdateExchangeRequestSchema: z.ZodType;
|
|
900
|
+
export declare const marshalUpdateInstallationDetailSchema: z.ZodType;
|
|
901
|
+
export declare const marshalUpdateListingRequestSchema: z.ZodType;
|
|
902
|
+
export declare const marshalUpdatePersonalizationRequestStatusRequestSchema: z.ZodType;
|
|
903
|
+
export declare const marshalUpdateProviderAnalyticsDashboardRequestSchema: z.ZodType;
|
|
904
|
+
export declare const marshalUpdateProviderRequestSchema: z.ZodType;
|
|
905
|
+
//# sourceMappingURL=model.d.ts.map
|