@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
package/LICENSE
ADDED
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
Copyright 2026 Databricks, Inc. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Apache License
|
|
4
|
+
Version 2.0, January 2004
|
|
5
|
+
http://www.apache.org/licenses/
|
|
6
|
+
|
|
7
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
8
|
+
|
|
9
|
+
1. Definitions.
|
|
10
|
+
|
|
11
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
12
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
13
|
+
|
|
14
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
15
|
+
the copyright owner that is granting the License.
|
|
16
|
+
|
|
17
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
18
|
+
other entities that control, are controlled by, or are under common
|
|
19
|
+
control with that entity. For the purposes of this definition,
|
|
20
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
21
|
+
direction or management of such entity, whether by contract or
|
|
22
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
23
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
24
|
+
|
|
25
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
26
|
+
exercising permissions granted by this License.
|
|
27
|
+
|
|
28
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
29
|
+
including but not limited to software source code, documentation
|
|
30
|
+
source, and configuration files.
|
|
31
|
+
|
|
32
|
+
"Object" form shall mean any form resulting from mechanical
|
|
33
|
+
transformation or translation of a Source form, including but
|
|
34
|
+
not limited to compiled object code, generated documentation,
|
|
35
|
+
and conversions to other media types.
|
|
36
|
+
|
|
37
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
38
|
+
Object form, made available under the License, as indicated by a
|
|
39
|
+
copyright notice that is included in or attached to the work
|
|
40
|
+
(an example is provided in the Appendix below).
|
|
41
|
+
|
|
42
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
43
|
+
form, that is based on (or derived from) the Work and for which the
|
|
44
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
45
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
46
|
+
of this License, Derivative Works shall not include works that remain
|
|
47
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
48
|
+
the Work and Derivative Works thereof.
|
|
49
|
+
|
|
50
|
+
"Contribution" shall mean any work of authorship, including
|
|
51
|
+
the original version of the Work and any modifications or additions
|
|
52
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
53
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
54
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
55
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
56
|
+
means any form of electronic, verbal, or written communication sent
|
|
57
|
+
to the Licensor or its representatives, including but not limited to
|
|
58
|
+
communication on electronic mailing lists, source code control systems,
|
|
59
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
60
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
61
|
+
excluding communication that is conspicuously marked or otherwise
|
|
62
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
63
|
+
|
|
64
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
65
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
66
|
+
subsequently incorporated within the Work.
|
|
67
|
+
|
|
68
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
69
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
70
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
71
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
72
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
73
|
+
Work and such Derivative Works in Source or Object form.
|
|
74
|
+
|
|
75
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
76
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
77
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
78
|
+
(except as stated in this section) patent license to make, have made,
|
|
79
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
80
|
+
where such license applies only to those patent claims licensable
|
|
81
|
+
by such Contributor that are necessarily infringed by their
|
|
82
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
83
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
84
|
+
institute patent litigation against any entity (including a
|
|
85
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
86
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
87
|
+
or contributory patent infringement, then any patent licenses
|
|
88
|
+
granted to You under this License for that Work shall terminate
|
|
89
|
+
as of the date such litigation is filed.
|
|
90
|
+
|
|
91
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
92
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
93
|
+
modifications, and in Source or Object form, provided that You
|
|
94
|
+
meet the following conditions:
|
|
95
|
+
|
|
96
|
+
(a) You must give any other recipients of the Work or
|
|
97
|
+
Derivative Works a copy of this License; and
|
|
98
|
+
|
|
99
|
+
(b) You must cause any modified files to carry prominent notices
|
|
100
|
+
stating that You changed the files; and
|
|
101
|
+
|
|
102
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
103
|
+
that You distribute, all copyright, patent, trademark, and
|
|
104
|
+
attribution notices from the Source form of the Work,
|
|
105
|
+
excluding those notices that do not pertain to any part of
|
|
106
|
+
the Derivative Works; and
|
|
107
|
+
|
|
108
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
109
|
+
distribution, then any Derivative Works that You distribute must
|
|
110
|
+
include a readable copy of the attribution notices contained
|
|
111
|
+
within such NOTICE file, excluding those notices that do not
|
|
112
|
+
pertain to any part of the Derivative Works, in at least one
|
|
113
|
+
of the following places: within a NOTICE text file distributed
|
|
114
|
+
as part of the Derivative Works; within the Source form or
|
|
115
|
+
documentation, if provided along with the Derivative Works; or,
|
|
116
|
+
within a display generated by the Derivative Works, if and
|
|
117
|
+
wherever such third-party notices normally appear. The contents
|
|
118
|
+
of the NOTICE file are for informational purposes only and
|
|
119
|
+
do not modify the License. You may add Your own attribution
|
|
120
|
+
notices within Derivative Works that You distribute, alongside
|
|
121
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
122
|
+
that such additional attribution notices cannot be construed
|
|
123
|
+
as modifying the License.
|
|
124
|
+
|
|
125
|
+
You may add Your own copyright statement to Your modifications and
|
|
126
|
+
may provide additional or different license terms and conditions
|
|
127
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
128
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
129
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
130
|
+
the conditions stated in this License.
|
|
131
|
+
|
|
132
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
133
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
134
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
135
|
+
this License, without any additional terms or conditions.
|
|
136
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
137
|
+
the terms of any separate license agreement you may have executed
|
|
138
|
+
with Licensor regarding such Contributions.
|
|
139
|
+
|
|
140
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
141
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
142
|
+
except as required for reasonable and customary use in describing the
|
|
143
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
144
|
+
|
|
145
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
146
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
147
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
148
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
149
|
+
implied, including, without limitation, any warranties or conditions
|
|
150
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
151
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
152
|
+
appropriateness of using or redistributing the Work and assume any
|
|
153
|
+
risks associated with Your exercise of permissions under this License.
|
|
154
|
+
|
|
155
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
156
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
157
|
+
unless required by applicable law (such as deliberate and grossly
|
|
158
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
159
|
+
liable to You for damages, including any direct, indirect, special,
|
|
160
|
+
incidental, or consequential damages of any character arising as a
|
|
161
|
+
result of this License or out of the use or inability to use the
|
|
162
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
163
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
164
|
+
other commercial damages or losses), even if such Contributor
|
|
165
|
+
has been advised of the possibility of such damages.
|
|
166
|
+
|
|
167
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
168
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
169
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
170
|
+
or other liability obligations and/or rights consistent with this
|
|
171
|
+
License. However, in accepting such obligations, You may act only
|
|
172
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
173
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
174
|
+
defend, and hold each Contributor harmless for any liability
|
|
175
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
176
|
+
of your accepting any such warranty or additional liability.
|
|
177
|
+
|
|
178
|
+
END OF TERMS AND CONDITIONS
|
|
179
|
+
|
|
180
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
181
|
+
|
|
182
|
+
To apply the Apache License to your work, attach the following
|
|
183
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
184
|
+
replaced with your own identifying information. (Don't include
|
|
185
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
186
|
+
comment syntax for the file format. We also recommend that a
|
|
187
|
+
file or class name and description of purpose be included on the
|
|
188
|
+
same "printed page" as the copyright notice for easier
|
|
189
|
+
identification within third-party archives.
|
|
190
|
+
|
|
191
|
+
Copyright [yyyy] [name of copyright owner]
|
|
192
|
+
|
|
193
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
194
|
+
you may not use this file except in compliance with the License.
|
|
195
|
+
You may obtain a copy of the License at
|
|
196
|
+
|
|
197
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
198
|
+
|
|
199
|
+
Unless required by applicable law or agreed to in writing, software
|
|
200
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
201
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
202
|
+
See the License for the specific language governing permissions and
|
|
203
|
+
limitations under the License.
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import type { CallOptions } from '@databricks/sdk-options/call';
|
|
2
|
+
import type { ClientOptions } from '@databricks/sdk-options/client';
|
|
3
|
+
import type { AddExchangeForListingRequest, AddExchangeForListingResponse, BatchGetListingsRequest, BatchGetListingsResponse, BatchGetProvidersRequest, BatchGetProvidersResponse, CreateExchangeFilterRequest, CreateExchangeFilterResponse, CreateExchangeRequest, CreateExchangeResponse, CreateFileRequest, CreateFileRequest_Response, CreateListingRequest, CreateListingRequest_Response, CreatePersonalizationRequest, CreatePersonalizationRequest_Response, CreateProviderAnalyticsDashboardRequest, CreateProviderAnalyticsDashboardRequest_Response, CreateProviderRequest, CreateProviderRequest_Response, DeleteExchangeFilterRequest, DeleteExchangeFilterResponse, DeleteExchangeRequest, DeleteExchangeResponse, DeleteFileRequest, DeleteFileRequest_Response, DeleteListingRequest, DeleteListingRequest_Response, DeleteProviderRequest, DeleteProviderRequest_Response, Exchange, ExchangeFilter, ExchangeListing, FileInfo, GetAllInstallations, GetAllInstallations_Response, GetAllPersonalizationRequestsForConsumer, GetAllPersonalizationRequestsForConsumer_Response, GetExchangeRequest, GetExchangeResponse, GetFileRequest, GetFileRequest_Response, GetInstallationDetails, GetInstallationDetails_Response, GetLatestVersionProviderAnalyticsDashboardRequest, GetLatestVersionProviderAnalyticsDashboardRequest_Response, GetListingContent, GetListingContent_Response, GetListingFulfillments, GetListingFulfillments_Response, GetListingRequest, GetListingRequest_Response, GetListingsRequest, GetListingsRequest_Response, GetPersonalizationRequestsForConsumer, GetPersonalizationRequestsForConsumer_Response, GetPersonalizationRequestsForProviderRequest, GetPersonalizationRequestsForProviderRequest_Response, GetProviderRequest, GetProviderRequest_Response, GetPublishedListingForConsumer, GetPublishedListingForConsumer_Response, GetPublishedListingsForConsumer, GetPublishedListingsForConsumer_Response, GetPublishedProviderForConsumer, GetPublishedProviderForConsumer_Response, InstallListing, InstallListing_Response, InstallationDetail, ListExchangeFiltersRequest, ListExchangeFiltersResponse, ListExchangesForListingRequest, ListExchangesForListingResponse, ListExchangesRequest, ListExchangesResponse, ListFilesRequest, ListFilesRequest_Response, ListListingsForExchangeRequest, ListListingsForExchangeResponse, ListProviderAnalyticsDashboardRequest, ListProviderAnalyticsDashboardRequest_Response, ListProvidersRequest, ListProvidersRequest_Response, ListPublishedProvidersForConsumer, ListPublishedProvidersForConsumer_Response, Listing, ListingFulfillment, PersonalizationRequest, ProviderInfo, RemoveExchangeForListingRequest, RemoveExchangeForListingResponse, SearchPublishedListingsForConsumer, SearchPublishedListingsForConsumer_Response, SharedDataObject, UninstallListing, UninstallListing_Response, UpdateExchangeFilterRequest, UpdateExchangeFilterResponse, UpdateExchangeRequest, UpdateExchangeResponse, UpdateInstallationDetail, UpdateInstallationDetail_Response, UpdateListingRequest, UpdateListingRequest_Response, UpdatePersonalizationRequestStatusRequest, UpdatePersonalizationRequestStatusRequest_Response, UpdateProviderAnalyticsDashboardRequest, UpdateProviderAnalyticsDashboardRequest_Response, UpdateProviderRequest, UpdateProviderRequest_Response } from './model';
|
|
4
|
+
export declare class MarketplacesClient {
|
|
5
|
+
private readonly host;
|
|
6
|
+
private readonly workspaceId;
|
|
7
|
+
private readonly httpClient;
|
|
8
|
+
private readonly logger;
|
|
9
|
+
private readonly userAgent;
|
|
10
|
+
constructor(options: ClientOptions);
|
|
11
|
+
/** Batch get a published listing in the Databricks Marketplace that the consumer has access to. */
|
|
12
|
+
batchGetListings(req: BatchGetListingsRequest, options?: CallOptions): Promise<BatchGetListingsResponse>;
|
|
13
|
+
/** Batch get a provider in the Databricks Marketplace with at least one visible listing. */
|
|
14
|
+
batchGetProviders(req: BatchGetProvidersRequest, options?: CallOptions): Promise<BatchGetProvidersResponse>;
|
|
15
|
+
/** Create a personalization request for a listing. */
|
|
16
|
+
createPersonalizationRequest(req: CreatePersonalizationRequest, options?: CallOptions): Promise<CreatePersonalizationRequest_Response>;
|
|
17
|
+
/** List all installations across all listings. */
|
|
18
|
+
getAllInstallations(req: GetAllInstallations, options?: CallOptions): Promise<GetAllInstallations_Response>;
|
|
19
|
+
getAllInstallationsIter(req: GetAllInstallations, options?: CallOptions): AsyncGenerator<InstallationDetail>;
|
|
20
|
+
/** List personalization requests for a consumer across all listings. */
|
|
21
|
+
getAllPersonalizationRequestsForConsumer(req: GetAllPersonalizationRequestsForConsumer, options?: CallOptions): Promise<GetAllPersonalizationRequestsForConsumer_Response>;
|
|
22
|
+
getAllPersonalizationRequestsForConsumerIter(req: GetAllPersonalizationRequestsForConsumer, options?: CallOptions): AsyncGenerator<PersonalizationRequest>;
|
|
23
|
+
/** List all installations for a particular listing. */
|
|
24
|
+
getInstallationDetails(req: GetInstallationDetails, options?: CallOptions): Promise<GetInstallationDetails_Response>;
|
|
25
|
+
getInstallationDetailsIter(req: GetInstallationDetails, options?: CallOptions): AsyncGenerator<InstallationDetail>;
|
|
26
|
+
/** Get a high level preview of the metadata of listing installable content. */
|
|
27
|
+
getListingContent(req: GetListingContent, options?: CallOptions): Promise<GetListingContent_Response>;
|
|
28
|
+
getListingContentIter(req: GetListingContent, options?: CallOptions): AsyncGenerator<SharedDataObject>;
|
|
29
|
+
/**
|
|
30
|
+
* Get all listings fulfillments associated with a listing. A _fulfillment_ is a potential installation.
|
|
31
|
+
* Standard installations contain metadata about the attached share or git repo. Only one of these fields will be present.
|
|
32
|
+
* Personalized installations contain metadata about the attached share or git repo, as well as the Delta Sharing recipient type.
|
|
33
|
+
*/
|
|
34
|
+
getListingFulfillments(req: GetListingFulfillments, options?: CallOptions): Promise<GetListingFulfillments_Response>;
|
|
35
|
+
getListingFulfillmentsIter(req: GetListingFulfillments, options?: CallOptions): AsyncGenerator<ListingFulfillment>;
|
|
36
|
+
/** Get the personalization request for a listing. Each consumer can make at *most* one personalization request for a listing. */
|
|
37
|
+
getPersonalizationRequestsForConsumer(req: GetPersonalizationRequestsForConsumer, options?: CallOptions): Promise<GetPersonalizationRequestsForConsumer_Response>;
|
|
38
|
+
/** Get a published listing in the Databricks Marketplace that the consumer has access to. */
|
|
39
|
+
getPublishedListingForConsumer(req: GetPublishedListingForConsumer, options?: CallOptions): Promise<GetPublishedListingForConsumer_Response>;
|
|
40
|
+
/** List all published listings in the Databricks Marketplace that the consumer has access to. */
|
|
41
|
+
getPublishedListingsForConsumer(req: GetPublishedListingsForConsumer, options?: CallOptions): Promise<GetPublishedListingsForConsumer_Response>;
|
|
42
|
+
getPublishedListingsForConsumerIter(req: GetPublishedListingsForConsumer, options?: CallOptions): AsyncGenerator<Listing>;
|
|
43
|
+
/** Get a provider in the Databricks Marketplace with at least one visible listing. */
|
|
44
|
+
getPublishedProviderForConsumer(req: GetPublishedProviderForConsumer, options?: CallOptions): Promise<GetPublishedProviderForConsumer_Response>;
|
|
45
|
+
/** Install payload associated with a Databricks Marketplace listing. */
|
|
46
|
+
installListing(req: InstallListing, options?: CallOptions): Promise<InstallListing_Response>;
|
|
47
|
+
/** List all providers in the Databricks Marketplace with at least one visible listing. */
|
|
48
|
+
listPublishedProvidersForConsumer(req: ListPublishedProvidersForConsumer, options?: CallOptions): Promise<ListPublishedProvidersForConsumer_Response>;
|
|
49
|
+
listPublishedProvidersForConsumerIter(req: ListPublishedProvidersForConsumer, options?: CallOptions): AsyncGenerator<ProviderInfo>;
|
|
50
|
+
/**
|
|
51
|
+
* Search published listings in the Databricks Marketplace that the consumer has access to.
|
|
52
|
+
* This query supports a variety of different search parameters and performs fuzzy matching.
|
|
53
|
+
*/
|
|
54
|
+
searchPublishedListingsForConsumer(req: SearchPublishedListingsForConsumer, options?: CallOptions): Promise<SearchPublishedListingsForConsumer_Response>;
|
|
55
|
+
searchPublishedListingsForConsumerIter(req: SearchPublishedListingsForConsumer, options?: CallOptions): AsyncGenerator<Listing>;
|
|
56
|
+
/** Uninstall an installation associated with a Databricks Marketplace listing. */
|
|
57
|
+
uninstallListing(req: UninstallListing, options?: CallOptions): Promise<UninstallListing_Response>;
|
|
58
|
+
/**
|
|
59
|
+
* This is a update API that will update the part of the fields defined in the installation table as well
|
|
60
|
+
* as interact with external services according to the fields not included in the installation table
|
|
61
|
+
* 1. the token will be rotate if the rotateToken flag is true
|
|
62
|
+
* 2. the token will be forcibly rotate if the rotateToken flag is true and the tokenInfo field is empty
|
|
63
|
+
*/
|
|
64
|
+
updateInstallationDetail(req: UpdateInstallationDetail, options?: CallOptions): Promise<UpdateInstallationDetail_Response>;
|
|
65
|
+
/** Associate an exchange with a listing */
|
|
66
|
+
addExchangeForListing(req: AddExchangeForListingRequest, options?: CallOptions): Promise<AddExchangeForListingResponse>;
|
|
67
|
+
/** Create an exchange */
|
|
68
|
+
createExchange(req: CreateExchangeRequest, options?: CallOptions): Promise<CreateExchangeResponse>;
|
|
69
|
+
/** Add an exchange filter. */
|
|
70
|
+
createExchangeFilter(req: CreateExchangeFilterRequest, options?: CallOptions): Promise<CreateExchangeFilterResponse>;
|
|
71
|
+
/** Create a file. Currently, only provider icons and attached notebooks are supported. */
|
|
72
|
+
createFile(req: CreateFileRequest, options?: CallOptions): Promise<CreateFileRequest_Response>;
|
|
73
|
+
/** Create a new listing */
|
|
74
|
+
createListing(req: CreateListingRequest, options?: CallOptions): Promise<CreateListingRequest_Response>;
|
|
75
|
+
/** Create a provider */
|
|
76
|
+
createProvider(req: CreateProviderRequest, options?: CallOptions): Promise<CreateProviderRequest_Response>;
|
|
77
|
+
/** Create provider analytics dashboard. Returns Marketplace specific `id`. Not to be confused with the Lakeview dashboard id. */
|
|
78
|
+
createProviderAnalyticsDashboard(req: CreateProviderAnalyticsDashboardRequest, options?: CallOptions): Promise<CreateProviderAnalyticsDashboardRequest_Response>;
|
|
79
|
+
/** This removes a listing from marketplace. */
|
|
80
|
+
deleteExchange(req: DeleteExchangeRequest, options?: CallOptions): Promise<DeleteExchangeResponse>;
|
|
81
|
+
/** Delete an exchange filter */
|
|
82
|
+
deleteExchangeFilter(req: DeleteExchangeFilterRequest, options?: CallOptions): Promise<DeleteExchangeFilterResponse>;
|
|
83
|
+
/** Delete a file */
|
|
84
|
+
deleteFile(req: DeleteFileRequest, options?: CallOptions): Promise<DeleteFileRequest_Response>;
|
|
85
|
+
/** Delete a listing */
|
|
86
|
+
deleteListing(req: DeleteListingRequest, options?: CallOptions): Promise<DeleteListingRequest_Response>;
|
|
87
|
+
/** Delete provider */
|
|
88
|
+
deleteProvider(req: DeleteProviderRequest, options?: CallOptions): Promise<DeleteProviderRequest_Response>;
|
|
89
|
+
/** Get an exchange. */
|
|
90
|
+
getExchange(req: GetExchangeRequest, options?: CallOptions): Promise<GetExchangeResponse>;
|
|
91
|
+
/** Get a file */
|
|
92
|
+
getFile(req: GetFileRequest, options?: CallOptions): Promise<GetFileRequest_Response>;
|
|
93
|
+
/** Get latest version of provider analytics dashboard. */
|
|
94
|
+
getLatestVersionProviderAnalyticsDashboard(_req: GetLatestVersionProviderAnalyticsDashboardRequest, options?: CallOptions): Promise<GetLatestVersionProviderAnalyticsDashboardRequest_Response>;
|
|
95
|
+
/** Get a listing */
|
|
96
|
+
getListing(req: GetListingRequest, options?: CallOptions): Promise<GetListingRequest_Response>;
|
|
97
|
+
/** List listings owned by this provider */
|
|
98
|
+
getListings(req: GetListingsRequest, options?: CallOptions): Promise<GetListingsRequest_Response>;
|
|
99
|
+
getListingsIter(req: GetListingsRequest, options?: CallOptions): AsyncGenerator<Listing>;
|
|
100
|
+
/**
|
|
101
|
+
* List personalization requests to this provider.
|
|
102
|
+
* This will return all personalization requests, regardless of which listing they are for.
|
|
103
|
+
*/
|
|
104
|
+
getPersonalizationRequestsForProvider(req: GetPersonalizationRequestsForProviderRequest, options?: CallOptions): Promise<GetPersonalizationRequestsForProviderRequest_Response>;
|
|
105
|
+
getPersonalizationRequestsForProviderIter(req: GetPersonalizationRequestsForProviderRequest, options?: CallOptions): AsyncGenerator<PersonalizationRequest>;
|
|
106
|
+
/** Get provider profile */
|
|
107
|
+
getProvider(req: GetProviderRequest, options?: CallOptions): Promise<GetProviderRequest_Response>;
|
|
108
|
+
/** List exchange filter */
|
|
109
|
+
listExchangeFilters(req: ListExchangeFiltersRequest, options?: CallOptions): Promise<ListExchangeFiltersResponse>;
|
|
110
|
+
listExchangeFiltersIter(req: ListExchangeFiltersRequest, options?: CallOptions): AsyncGenerator<ExchangeFilter>;
|
|
111
|
+
/** List exchanges visible to provider */
|
|
112
|
+
listExchanges(req: ListExchangesRequest, options?: CallOptions): Promise<ListExchangesResponse>;
|
|
113
|
+
listExchangesIter(req: ListExchangesRequest, options?: CallOptions): AsyncGenerator<Exchange>;
|
|
114
|
+
/** List exchanges associated with a listing */
|
|
115
|
+
listExchangesForListing(req: ListExchangesForListingRequest, options?: CallOptions): Promise<ListExchangesForListingResponse>;
|
|
116
|
+
listExchangesForListingIter(req: ListExchangesForListingRequest, options?: CallOptions): AsyncGenerator<ExchangeListing>;
|
|
117
|
+
/** List files attached to a parent entity. */
|
|
118
|
+
listFiles(req: ListFilesRequest, options?: CallOptions): Promise<ListFilesRequest_Response>;
|
|
119
|
+
listFilesIter(req: ListFilesRequest, options?: CallOptions): AsyncGenerator<FileInfo>;
|
|
120
|
+
/** List listings associated with an exchange */
|
|
121
|
+
listListingsForExchange(req: ListListingsForExchangeRequest, options?: CallOptions): Promise<ListListingsForExchangeResponse>;
|
|
122
|
+
listListingsForExchangeIter(req: ListListingsForExchangeRequest, options?: CallOptions): AsyncGenerator<ExchangeListing>;
|
|
123
|
+
/** Get provider analytics dashboard. */
|
|
124
|
+
listProviderAnalyticsDashboard(_req: ListProviderAnalyticsDashboardRequest, options?: CallOptions): Promise<ListProviderAnalyticsDashboardRequest_Response>;
|
|
125
|
+
/** List provider profiles for account. */
|
|
126
|
+
listProviders(req: ListProvidersRequest, options?: CallOptions): Promise<ListProvidersRequest_Response>;
|
|
127
|
+
listProvidersIter(req: ListProvidersRequest, options?: CallOptions): AsyncGenerator<ProviderInfo>;
|
|
128
|
+
/** Disassociate an exchange with a listing */
|
|
129
|
+
removeExchangeForListing(req: RemoveExchangeForListingRequest, options?: CallOptions): Promise<RemoveExchangeForListingResponse>;
|
|
130
|
+
/** Update an exchange */
|
|
131
|
+
updateExchange(req: UpdateExchangeRequest, options?: CallOptions): Promise<UpdateExchangeResponse>;
|
|
132
|
+
/** Update an exchange filter. */
|
|
133
|
+
updateExchangeFilter(req: UpdateExchangeFilterRequest, options?: CallOptions): Promise<UpdateExchangeFilterResponse>;
|
|
134
|
+
/** Update a listing */
|
|
135
|
+
updateListing(req: UpdateListingRequest, options?: CallOptions): Promise<UpdateListingRequest_Response>;
|
|
136
|
+
/** Update personalization request. This method only permits updating the status of the request. */
|
|
137
|
+
updatePersonalizationRequestStatus(req: UpdatePersonalizationRequestStatusRequest, options?: CallOptions): Promise<UpdatePersonalizationRequestStatusRequest_Response>;
|
|
138
|
+
/** Update provider profile */
|
|
139
|
+
updateProvider(req: UpdateProviderRequest, options?: CallOptions): Promise<UpdateProviderRequest_Response>;
|
|
140
|
+
/** Update provider analytics dashboard. */
|
|
141
|
+
updateProviderAnalyticsDashboard(req: UpdateProviderAnalyticsDashboardRequest, options?: CallOptions): Promise<UpdateProviderAnalyticsDashboardRequest_Response>;
|
|
142
|
+
}
|
|
143
|
+
//# sourceMappingURL=client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/v1/client.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,gCAAgC,CAAC;AAYlE,OAAO,KAAK,EACV,4BAA4B,EAC5B,6BAA6B,EAC7B,uBAAuB,EACvB,wBAAwB,EACxB,wBAAwB,EACxB,yBAAyB,EACzB,2BAA2B,EAC3B,4BAA4B,EAC5B,qBAAqB,EACrB,sBAAsB,EACtB,iBAAiB,EACjB,0BAA0B,EAC1B,oBAAoB,EACpB,6BAA6B,EAC7B,4BAA4B,EAC5B,qCAAqC,EACrC,uCAAuC,EACvC,gDAAgD,EAChD,qBAAqB,EACrB,8BAA8B,EAC9B,2BAA2B,EAC3B,4BAA4B,EAC5B,qBAAqB,EACrB,sBAAsB,EACtB,iBAAiB,EACjB,0BAA0B,EAC1B,oBAAoB,EACpB,6BAA6B,EAC7B,qBAAqB,EACrB,8BAA8B,EAC9B,QAAQ,EACR,cAAc,EACd,eAAe,EACf,QAAQ,EACR,mBAAmB,EACnB,4BAA4B,EAC5B,wCAAwC,EACxC,iDAAiD,EACjD,kBAAkB,EAClB,mBAAmB,EACnB,cAAc,EACd,uBAAuB,EACvB,sBAAsB,EACtB,+BAA+B,EAC/B,iDAAiD,EACjD,0DAA0D,EAC1D,iBAAiB,EACjB,0BAA0B,EAC1B,sBAAsB,EACtB,+BAA+B,EAC/B,iBAAiB,EACjB,0BAA0B,EAC1B,kBAAkB,EAClB,2BAA2B,EAC3B,qCAAqC,EACrC,8CAA8C,EAC9C,4CAA4C,EAC5C,qDAAqD,EACrD,kBAAkB,EAClB,2BAA2B,EAC3B,8BAA8B,EAC9B,uCAAuC,EACvC,+BAA+B,EAC/B,wCAAwC,EACxC,+BAA+B,EAC/B,wCAAwC,EACxC,cAAc,EACd,uBAAuB,EACvB,kBAAkB,EAClB,0BAA0B,EAC1B,2BAA2B,EAC3B,8BAA8B,EAC9B,+BAA+B,EAC/B,oBAAoB,EACpB,qBAAqB,EACrB,gBAAgB,EAChB,yBAAyB,EACzB,8BAA8B,EAC9B,+BAA+B,EAC/B,qCAAqC,EACrC,8CAA8C,EAC9C,oBAAoB,EACpB,6BAA6B,EAC7B,iCAAiC,EACjC,0CAA0C,EAC1C,OAAO,EACP,kBAAkB,EAClB,sBAAsB,EACtB,YAAY,EACZ,+BAA+B,EAC/B,gCAAgC,EAChC,kCAAkC,EAClC,2CAA2C,EAC3C,gBAAgB,EAChB,gBAAgB,EAChB,yBAAyB,EACzB,2BAA2B,EAC3B,4BAA4B,EAC5B,qBAAqB,EACrB,sBAAsB,EACtB,wBAAwB,EACxB,iCAAiC,EACjC,oBAAoB,EACpB,6BAA6B,EAC7B,yCAAyC,EACzC,kDAAkD,EAClD,uCAAuC,EACvC,gDAAgD,EAChD,qBAAqB,EACrB,8BAA8B,EAC/B,MAAM,SAAS,CAAC;AA8EjB,qBAAa,kBAAkB;IAC7B,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAS;IAI9B,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAqB;IACjD,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAa;IACxC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;IAIhC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;gBAEvB,OAAO,EAAE,aAAa;IAelC,mGAAmG;IAC7F,gBAAgB,CACpB,GAAG,EAAE,uBAAuB,EAC5B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,wBAAwB,CAAC;IA8BpC,4FAA4F;IACtF,iBAAiB,CACrB,GAAG,EAAE,wBAAwB,EAC7B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,yBAAyB,CAAC;IA8BrC,sDAAsD;IAChD,4BAA4B,CAChC,GAAG,EAAE,4BAA4B,EACjC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,qCAAqC,CAAC;IA4BjD,kDAAkD;IAC5C,mBAAmB,CACvB,GAAG,EAAE,mBAAmB,EACxB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,4BAA4B,CAAC;IAoCjC,uBAAuB,CAC5B,GAAG,EAAE,mBAAmB,EACxB,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,kBAAkB,CAAC;IAcrC,wEAAwE;IAClE,wCAAwC,CAC5C,GAAG,EAAE,wCAAwC,EAC7C,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,iDAAiD,CAAC;IAoCtD,4CAA4C,CACjD,GAAG,EAAE,wCAAwC,EAC7C,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,sBAAsB,CAAC;IAiBzC,uDAAuD;IACjD,sBAAsB,CAC1B,GAAG,EAAE,sBAAsB,EAC3B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,+BAA+B,CAAC;IAoCpC,0BAA0B,CAC/B,GAAG,EAAE,sBAAsB,EAC3B,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,kBAAkB,CAAC;IAcrC,+EAA+E;IACzE,iBAAiB,CACrB,GAAG,EAAE,iBAAiB,EACtB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,0BAA0B,CAAC;IAiC/B,qBAAqB,CAC1B,GAAG,EAAE,iBAAiB,EACtB,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,gBAAgB,CAAC;IAcnC;;;;OAIG;IACG,sBAAsB,CAC1B,GAAG,EAAE,sBAAsB,EAC3B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,+BAA+B,CAAC;IAoCpC,0BAA0B,CAC/B,GAAG,EAAE,sBAAsB,EAC3B,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,kBAAkB,CAAC;IAcrC,iIAAiI;IAC3H,qCAAqC,CACzC,GAAG,EAAE,qCAAqC,EAC1C,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,8CAA8C,CAAC;IA2B1D,6FAA6F;IACvF,8BAA8B,CAClC,GAAG,EAAE,8BAA8B,EACnC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,uCAAuC,CAAC;IA2BnD,iGAAiG;IAC3F,+BAA+B,CACnC,GAAG,EAAE,+BAA+B,EACpC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,wCAAwC,CAAC;IA6D7C,mCAAmC,CACxC,GAAG,EAAE,+BAA+B,EACpC,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,OAAO,CAAC;IAc1B,sFAAsF;IAChF,+BAA+B,CACnC,GAAG,EAAE,+BAA+B,EACpC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,wCAAwC,CAAC;IA2BpD,wEAAwE;IAClE,cAAc,CAClB,GAAG,EAAE,cAAc,EACnB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,uBAAuB,CAAC;IAyBnC,0FAA0F;IACpF,iCAAiC,CACrC,GAAG,EAAE,iCAAiC,EACtC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,0CAA0C,CAAC;IAuC/C,qCAAqC,CAC1C,GAAG,EAAE,iCAAiC,EACtC,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,YAAY,CAAC;IAiB/B;;;OAGG;IACG,kCAAkC,CACtC,GAAG,EAAE,kCAAkC,EACvC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,2CAA2C,CAAC;IAsDhD,sCAAsC,CAC3C,GAAG,EAAE,kCAAkC,EACvC,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,OAAO,CAAC;IAiB1B,kFAAkF;IAC5E,gBAAgB,CACpB,GAAG,EAAE,gBAAgB,EACrB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,yBAAyB,CAAC;IAwBrC;;;;;OAKG;IACG,wBAAwB,CAC5B,GAAG,EAAE,wBAAwB,EAC7B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,iCAAiC,CAAC;IA4B7C,2CAA2C;IACrC,qBAAqB,CACzB,GAAG,EAAE,4BAA4B,EACjC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,6BAA6B,CAAC;IA4BzC,yBAAyB;IACnB,cAAc,CAClB,GAAG,EAAE,qBAAqB,EAC1B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,sBAAsB,CAAC;IAyBlC,8BAA8B;IACxB,oBAAoB,CACxB,GAAG,EAAE,2BAA2B,EAChC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,4BAA4B,CAAC;IA4BxC,0FAA0F;IACpF,UAAU,CACd,GAAG,EAAE,iBAAiB,EACtB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,0BAA0B,CAAC;IAyBtC,2BAA2B;IACrB,aAAa,CACjB,GAAG,EAAE,oBAAoB,EACzB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,6BAA6B,CAAC;IA4BzC,wBAAwB;IAClB,cAAc,CAClB,GAAG,EAAE,qBAAqB,EAC1B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,8BAA8B,CAAC;IA4B1C,iIAAiI;IAC3H,gCAAgC,CACpC,GAAG,EAAE,uCAAuC,EAC5C,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,gDAAgD,CAAC;IA+B5D,+CAA+C;IACzC,cAAc,CAClB,GAAG,EAAE,qBAAqB,EAC1B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,sBAAsB,CAAC;IAwBlC,gCAAgC;IAC1B,oBAAoB,CACxB,GAAG,EAAE,2BAA2B,EAChC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,4BAA4B,CAAC;IA2BxC,oBAAoB;IACd,UAAU,CACd,GAAG,EAAE,iBAAiB,EACtB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,0BAA0B,CAAC;IAwBtC,uBAAuB;IACjB,aAAa,CACjB,GAAG,EAAE,oBAAoB,EACzB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,6BAA6B,CAAC;IA2BzC,sBAAsB;IAChB,cAAc,CAClB,GAAG,EAAE,qBAAqB,EAC1B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,8BAA8B,CAAC;IA2B1C,uBAAuB;IACjB,WAAW,CACf,GAAG,EAAE,kBAAkB,EACvB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,mBAAmB,CAAC;IAwB/B,iBAAiB;IACX,OAAO,CACX,GAAG,EAAE,cAAc,EACnB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,uBAAuB,CAAC;IAwBnC,0DAA0D;IACpD,0CAA0C,CAC9C,IAAI,EAAE,iDAAiD,EACvD,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,0DAA0D,CAAC;IA6BtE,oBAAoB;IACd,UAAU,CACd,GAAG,EAAE,iBAAiB,EACtB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,0BAA0B,CAAC;IAwBtC,2CAA2C;IACrC,WAAW,CACf,GAAG,EAAE,kBAAkB,EACvB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,2BAA2B,CAAC;IAoChC,eAAe,CACpB,GAAG,EAAE,kBAAkB,EACvB,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,OAAO,CAAC;IAc1B;;;OAGG;IACG,qCAAqC,CACzC,GAAG,EAAE,4CAA4C,EACjD,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,qDAAqD,CAAC;IAoC1D,yCAAyC,CAC9C,GAAG,EAAE,4CAA4C,EACjD,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,sBAAsB,CAAC;IAiBzC,2BAA2B;IACrB,WAAW,CACf,GAAG,EAAE,kBAAkB,EACvB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,2BAA2B,CAAC;IA2BvC,2BAA2B;IACrB,mBAAmB,CACvB,GAAG,EAAE,0BAA0B,EAC/B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,2BAA2B,CAAC;IAuChC,uBAAuB,CAC5B,GAAG,EAAE,0BAA0B,EAC/B,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,cAAc,CAAC;IAcjC,yCAAyC;IACnC,aAAa,CACjB,GAAG,EAAE,oBAAoB,EACzB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,qBAAqB,CAAC;IAiC1B,iBAAiB,CACtB,GAAG,EAAE,oBAAoB,EACzB,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,QAAQ,CAAC;IAc3B,+CAA+C;IACzC,uBAAuB,CAC3B,GAAG,EAAE,8BAA8B,EACnC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,+BAA+B,CAAC;IAuCpC,2BAA2B,CAChC,GAAG,EAAE,8BAA8B,EACnC,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,eAAe,CAAC;IAclC,8CAA8C;IACxC,SAAS,CACb,GAAG,EAAE,gBAAgB,EACrB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,yBAAyB,CAAC;IAwC9B,aAAa,CAClB,GAAG,EAAE,gBAAgB,EACrB,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,QAAQ,CAAC;IAc3B,gDAAgD;IAC1C,uBAAuB,CAC3B,GAAG,EAAE,8BAA8B,EACnC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,+BAA+B,CAAC;IAuCpC,2BAA2B,CAChC,GAAG,EAAE,8BAA8B,EACnC,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,eAAe,CAAC;IAclC,wCAAwC;IAClC,8BAA8B,CAClC,IAAI,EAAE,qCAAqC,EAC3C,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,8CAA8C,CAAC;IA2B1D,0CAA0C;IACpC,aAAa,CACjB,GAAG,EAAE,oBAAoB,EACzB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,6BAA6B,CAAC;IAoClC,iBAAiB,CACtB,GAAG,EAAE,oBAAoB,EACzB,OAAO,CAAC,EAAE,WAAW,GACpB,cAAc,CAAC,YAAY,CAAC;IAc/B,8CAA8C;IACxC,wBAAwB,CAC5B,GAAG,EAAE,+BAA+B,EACpC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,gCAAgC,CAAC;IA2B5C,yBAAyB;IACnB,cAAc,CAClB,GAAG,EAAE,qBAAqB,EAC1B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,sBAAsB,CAAC;IAyBlC,iCAAiC;IAC3B,oBAAoB,CACxB,GAAG,EAAE,2BAA2B,EAChC,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,4BAA4B,CAAC;IA4BxC,uBAAuB;IACjB,aAAa,CACjB,GAAG,EAAE,oBAAoB,EACzB,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,6BAA6B,CAAC;IA4BzC,mGAAmG;IAC7F,kCAAkC,CACtC,GAAG,EAAE,yCAAyC,EAC9C,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,kDAAkD,CAAC;IA+B9D,8BAA8B;IACxB,cAAc,CAClB,GAAG,EAAE,qBAAqB,EAC1B,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,8BAA8B,CAAC;IA4B1C,2CAA2C;IACrC,gCAAgC,CACpC,GAAG,EAAE,uCAAuC,EAC5C,OAAO,CAAC,EAAE,WAAW,GACpB,OAAO,CAAC,gDAAgD,CAAC;CA8B7D"}
|