@looker/sdk 22.20.1 → 23.2.0
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/CHANGELOG.md +26 -0
- package/README.md +1 -1
- package/lib/3.1/funcs.js +4 -1075
- package/lib/3.1/funcs.js.map +1 -1
- package/lib/3.1/methods.js +3 -720
- package/lib/3.1/methods.js.map +1 -1
- package/lib/3.1/methodsInterface.js +1 -1
- package/lib/3.1/methodsInterface.js.map +1 -1
- package/lib/3.1/models.d.ts +33 -0
- package/lib/3.1/models.js +0 -33
- package/lib/3.1/models.js.map +1 -1
- package/lib/3.1/streams.js +3 -720
- package/lib/3.1/streams.js.map +1 -1
- package/lib/4.0/funcs.d.ts +2 -1
- package/lib/4.0/funcs.js +826 -2102
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +2 -1
- package/lib/4.0/methods.js +553 -1404
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +2 -1
- package/lib/4.0/methodsInterface.js +1 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +95 -0
- package/lib/4.0/models.js +0 -43
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +2 -1
- package/lib/4.0/streams.js +553 -1404
- package/lib/4.0/streams.js.map +1 -1
- package/lib/browserSdk.js +0 -9
- package/lib/browserSdk.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +2 -2
- package/lib/constants.js.map +1 -1
- package/lib/esm/3.1/funcs.js +862 -854
- package/lib/esm/3.1/funcs.js.map +1 -1
- package/lib/esm/3.1/methods.js +152 -858
- package/lib/esm/3.1/methods.js.map +1 -1
- package/lib/esm/3.1/methodsInterface.js.map +1 -1
- package/lib/esm/3.1/models.js +57 -67
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/3.1/streams.js +152 -858
- package/lib/esm/3.1/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1993 -1967
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +864 -1704
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js +72 -87
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +864 -1704
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/browserSdk.js +20 -14
- package/lib/esm/browserSdk.js.map +1 -1
- package/lib/esm/constants.js +10 -2
- package/lib/esm/constants.js.map +1 -1
- package/lib/esm/extensionSdk.js +12 -6
- package/lib/esm/extensionSdk.js.map +1 -1
- package/lib/esm/index.js +141 -17
- package/lib/esm/index.js.map +1 -1
- package/lib/extensionSdk.js +0 -4
- package/lib/extensionSdk.js.map +1 -1
- package/lib/index.js +20 -38
- package/lib/index.js.map +1 -1
- package/package.json +3 -3
package/lib/esm/4.0/models.js
CHANGED
|
@@ -1,21 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.WeekStartDay = exports.UserAttributeFilterTypes = exports.SupportedVisualizationFormattings = exports.SupportedFormattings = exports.SupportedFormats = exports.SupportedDownloadSettings = exports.SupportedActionTypes = exports.SslVersion = exports.SecretType = exports.ResultFormat = exports.PullRequestMode = exports.PermissionType = exports.Name = exports.InvestigativeContentType = exports.Format = exports.FillStyle = exports.DeviceType = exports.DestinationType = exports.DependencyStatus = exports.ComparisonType = exports.Category = exports.Align = void 0;
|
|
7
|
+
var Align;
|
|
8
|
+
exports.Align = Align;
|
|
3
9
|
(function (Align) {
|
|
4
10
|
Align["left"] = "left";
|
|
5
11
|
Align["right"] = "right";
|
|
6
|
-
})(Align || (Align = {}));
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
12
|
+
})(Align || (exports.Align = Align = {}));
|
|
13
|
+
var Category;
|
|
14
|
+
exports.Category = Category;
|
|
10
15
|
(function (Category) {
|
|
11
16
|
Category["parameter"] = "parameter";
|
|
12
17
|
Category["filter"] = "filter";
|
|
13
18
|
Category["measure"] = "measure";
|
|
14
19
|
Category["dimension"] = "dimension";
|
|
15
|
-
})(Category || (Category = {}));
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
20
|
+
})(Category || (exports.Category = Category = {}));
|
|
21
|
+
var ComparisonType;
|
|
22
|
+
exports.ComparisonType = ComparisonType;
|
|
19
23
|
(function (ComparisonType) {
|
|
20
24
|
ComparisonType["EQUAL_TO"] = "EQUAL_TO";
|
|
21
25
|
ComparisonType["GREATER_THAN"] = "GREATER_THAN";
|
|
@@ -25,53 +29,46 @@ export var ComparisonType;
|
|
|
25
29
|
ComparisonType["INCREASES_BY"] = "INCREASES_BY";
|
|
26
30
|
ComparisonType["DECREASES_BY"] = "DECREASES_BY";
|
|
27
31
|
ComparisonType["CHANGES_BY"] = "CHANGES_BY";
|
|
28
|
-
})(ComparisonType || (ComparisonType = {}));
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
+
})(ComparisonType || (exports.ComparisonType = ComparisonType = {}));
|
|
33
|
+
var DependencyStatus;
|
|
34
|
+
exports.DependencyStatus = DependencyStatus;
|
|
32
35
|
(function (DependencyStatus) {
|
|
33
36
|
DependencyStatus["lock_optional"] = "lock_optional";
|
|
34
37
|
DependencyStatus["lock_required"] = "lock_required";
|
|
35
38
|
DependencyStatus["lock_error"] = "lock_error";
|
|
36
39
|
DependencyStatus["install_none"] = "install_none";
|
|
37
|
-
})(DependencyStatus || (DependencyStatus = {}));
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
40
|
+
})(DependencyStatus || (exports.DependencyStatus = DependencyStatus = {}));
|
|
41
|
+
var DestinationType;
|
|
42
|
+
exports.DestinationType = DestinationType;
|
|
41
43
|
(function (DestinationType) {
|
|
42
44
|
DestinationType["EMAIL"] = "EMAIL";
|
|
43
45
|
DestinationType["ACTION_HUB"] = "ACTION_HUB";
|
|
44
|
-
})(DestinationType || (DestinationType = {}));
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
})(DestinationType || (exports.DestinationType = DestinationType = {}));
|
|
47
|
+
var DeviceType;
|
|
48
|
+
exports.DeviceType = DeviceType;
|
|
48
49
|
(function (DeviceType) {
|
|
49
50
|
DeviceType["android"] = "android";
|
|
50
51
|
DeviceType["ios"] = "ios";
|
|
51
|
-
})(DeviceType || (DeviceType = {}));
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
})(DeviceType || (exports.DeviceType = DeviceType = {}));
|
|
53
|
+
var FillStyle;
|
|
54
|
+
exports.FillStyle = FillStyle;
|
|
55
55
|
(function (FillStyle) {
|
|
56
56
|
FillStyle["enumeration"] = "enumeration";
|
|
57
57
|
FillStyle["range"] = "range";
|
|
58
|
-
})(FillStyle || (FillStyle = {}));
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
58
|
+
})(FillStyle || (exports.FillStyle = FillStyle = {}));
|
|
59
|
+
var Format;
|
|
60
|
+
exports.Format = Format;
|
|
62
61
|
(function (Format) {
|
|
63
62
|
Format["topojson"] = "topojson";
|
|
64
63
|
Format["vector_tile_region"] = "vector_tile_region";
|
|
65
|
-
})(Format || (Format = {}));
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
64
|
+
})(Format || (exports.Format = Format = {}));
|
|
65
|
+
var InvestigativeContentType;
|
|
66
|
+
exports.InvestigativeContentType = InvestigativeContentType;
|
|
69
67
|
(function (InvestigativeContentType) {
|
|
70
68
|
InvestigativeContentType["dashboard"] = "dashboard";
|
|
71
|
-
})(InvestigativeContentType || (InvestigativeContentType = {}));
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
69
|
+
})(InvestigativeContentType || (exports.InvestigativeContentType = InvestigativeContentType = {}));
|
|
70
|
+
var Name;
|
|
71
|
+
exports.Name = Name;
|
|
75
72
|
(function (Name) {
|
|
76
73
|
Name["day"] = "day";
|
|
77
74
|
Name["hour"] = "hour";
|
|
@@ -83,26 +80,23 @@ export var Name;
|
|
|
83
80
|
Name["month"] = "month";
|
|
84
81
|
Name["quarter"] = "quarter";
|
|
85
82
|
Name["year"] = "year";
|
|
86
|
-
})(Name || (Name = {}));
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
83
|
+
})(Name || (exports.Name = Name = {}));
|
|
84
|
+
var PermissionType;
|
|
85
|
+
exports.PermissionType = PermissionType;
|
|
90
86
|
(function (PermissionType) {
|
|
91
87
|
PermissionType["view"] = "view";
|
|
92
88
|
PermissionType["edit"] = "edit";
|
|
93
|
-
})(PermissionType || (PermissionType = {}));
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
89
|
+
})(PermissionType || (exports.PermissionType = PermissionType = {}));
|
|
90
|
+
var PullRequestMode;
|
|
91
|
+
exports.PullRequestMode = PullRequestMode;
|
|
97
92
|
(function (PullRequestMode) {
|
|
98
93
|
PullRequestMode["off"] = "off";
|
|
99
94
|
PullRequestMode["links"] = "links";
|
|
100
95
|
PullRequestMode["recommended"] = "recommended";
|
|
101
96
|
PullRequestMode["required"] = "required";
|
|
102
|
-
})(PullRequestMode || (PullRequestMode = {}));
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
97
|
+
})(PullRequestMode || (exports.PullRequestMode = PullRequestMode = {}));
|
|
98
|
+
var ResultFormat;
|
|
99
|
+
exports.ResultFormat = ResultFormat;
|
|
106
100
|
(function (ResultFormat) {
|
|
107
101
|
ResultFormat["inline_json"] = "inline_json";
|
|
108
102
|
ResultFormat["json"] = "json";
|
|
@@ -114,41 +108,36 @@ export var ResultFormat;
|
|
|
114
108
|
ResultFormat["txt"] = "txt";
|
|
115
109
|
ResultFormat["xlsx"] = "xlsx";
|
|
116
110
|
ResultFormat["gsxml"] = "gsxml";
|
|
117
|
-
})(ResultFormat || (ResultFormat = {}));
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
111
|
+
})(ResultFormat || (exports.ResultFormat = ResultFormat = {}));
|
|
112
|
+
var SecretType;
|
|
113
|
+
exports.SecretType = SecretType;
|
|
121
114
|
(function (SecretType) {
|
|
122
115
|
SecretType["SSO"] = "SSO";
|
|
123
116
|
SecretType["JWT"] = "JWT";
|
|
124
|
-
})(SecretType || (SecretType = {}));
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
117
|
+
})(SecretType || (exports.SecretType = SecretType = {}));
|
|
118
|
+
var SslVersion;
|
|
119
|
+
exports.SslVersion = SslVersion;
|
|
128
120
|
(function (SslVersion) {
|
|
129
121
|
SslVersion["TLSv1_1"] = "TLSv1_1";
|
|
130
122
|
SslVersion["SSLv23"] = "SSLv23";
|
|
131
123
|
SslVersion["TLSv1_2"] = "TLSv1_2";
|
|
132
|
-
})(SslVersion || (SslVersion = {}));
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
124
|
+
})(SslVersion || (exports.SslVersion = SslVersion = {}));
|
|
125
|
+
var SupportedActionTypes;
|
|
126
|
+
exports.SupportedActionTypes = SupportedActionTypes;
|
|
136
127
|
(function (SupportedActionTypes) {
|
|
137
128
|
SupportedActionTypes["cell"] = "cell";
|
|
138
129
|
SupportedActionTypes["query"] = "query";
|
|
139
130
|
SupportedActionTypes["dashboard"] = "dashboard";
|
|
140
131
|
SupportedActionTypes["none"] = "none";
|
|
141
|
-
})(SupportedActionTypes || (SupportedActionTypes = {}));
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
132
|
+
})(SupportedActionTypes || (exports.SupportedActionTypes = SupportedActionTypes = {}));
|
|
133
|
+
var SupportedDownloadSettings;
|
|
134
|
+
exports.SupportedDownloadSettings = SupportedDownloadSettings;
|
|
145
135
|
(function (SupportedDownloadSettings) {
|
|
146
136
|
SupportedDownloadSettings["push"] = "push";
|
|
147
137
|
SupportedDownloadSettings["url"] = "url";
|
|
148
|
-
})(SupportedDownloadSettings || (SupportedDownloadSettings = {}));
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
138
|
+
})(SupportedDownloadSettings || (exports.SupportedDownloadSettings = SupportedDownloadSettings = {}));
|
|
139
|
+
var SupportedFormats;
|
|
140
|
+
exports.SupportedFormats = SupportedFormats;
|
|
152
141
|
(function (SupportedFormats) {
|
|
153
142
|
SupportedFormats["txt"] = "txt";
|
|
154
143
|
SupportedFormats["csv"] = "csv";
|
|
@@ -163,24 +152,21 @@ export var SupportedFormats;
|
|
|
163
152
|
SupportedFormats["assembled_pdf"] = "assembled_pdf";
|
|
164
153
|
SupportedFormats["wysiwyg_png"] = "wysiwyg_png";
|
|
165
154
|
SupportedFormats["csv_zip"] = "csv_zip";
|
|
166
|
-
})(SupportedFormats || (SupportedFormats = {}));
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
155
|
+
})(SupportedFormats || (exports.SupportedFormats = SupportedFormats = {}));
|
|
156
|
+
var SupportedFormattings;
|
|
157
|
+
exports.SupportedFormattings = SupportedFormattings;
|
|
170
158
|
(function (SupportedFormattings) {
|
|
171
159
|
SupportedFormattings["formatted"] = "formatted";
|
|
172
160
|
SupportedFormattings["unformatted"] = "unformatted";
|
|
173
|
-
})(SupportedFormattings || (SupportedFormattings = {}));
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
161
|
+
})(SupportedFormattings || (exports.SupportedFormattings = SupportedFormattings = {}));
|
|
162
|
+
var SupportedVisualizationFormattings;
|
|
163
|
+
exports.SupportedVisualizationFormattings = SupportedVisualizationFormattings;
|
|
177
164
|
(function (SupportedVisualizationFormattings) {
|
|
178
165
|
SupportedVisualizationFormattings["apply"] = "apply";
|
|
179
166
|
SupportedVisualizationFormattings["noapply"] = "noapply";
|
|
180
|
-
})(SupportedVisualizationFormattings || (SupportedVisualizationFormattings = {}));
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
167
|
+
})(SupportedVisualizationFormattings || (exports.SupportedVisualizationFormattings = SupportedVisualizationFormattings = {}));
|
|
168
|
+
var UserAttributeFilterTypes;
|
|
169
|
+
exports.UserAttributeFilterTypes = UserAttributeFilterTypes;
|
|
184
170
|
(function (UserAttributeFilterTypes) {
|
|
185
171
|
UserAttributeFilterTypes["advanced_filter_string"] = "advanced_filter_string";
|
|
186
172
|
UserAttributeFilterTypes["advanced_filter_number"] = "advanced_filter_number";
|
|
@@ -191,10 +177,9 @@ export var UserAttributeFilterTypes;
|
|
|
191
177
|
UserAttributeFilterTypes["relative_url"] = "relative_url";
|
|
192
178
|
UserAttributeFilterTypes["yesno"] = "yesno";
|
|
193
179
|
UserAttributeFilterTypes["zipcode"] = "zipcode";
|
|
194
|
-
})(UserAttributeFilterTypes || (UserAttributeFilterTypes = {}));
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
180
|
+
})(UserAttributeFilterTypes || (exports.UserAttributeFilterTypes = UserAttributeFilterTypes = {}));
|
|
181
|
+
var WeekStartDay;
|
|
182
|
+
exports.WeekStartDay = WeekStartDay;
|
|
198
183
|
(function (WeekStartDay) {
|
|
199
184
|
WeekStartDay["monday"] = "monday";
|
|
200
185
|
WeekStartDay["tuesday"] = "tuesday";
|
|
@@ -203,5 +188,5 @@ export var WeekStartDay;
|
|
|
203
188
|
WeekStartDay["friday"] = "friday";
|
|
204
189
|
WeekStartDay["saturday"] = "saturday";
|
|
205
190
|
WeekStartDay["sunday"] = "sunday";
|
|
206
|
-
})(WeekStartDay || (WeekStartDay = {}));
|
|
191
|
+
})(WeekStartDay || (exports.WeekStartDay = WeekStartDay = {}));
|
|
207
192
|
//# sourceMappingURL=models.js.map
|