@looker/sdk 23.14.1 → 23.18.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 +14 -0
- package/README.md +1 -3
- package/lib/4.0/funcs.d.ts +6 -3
- package/lib/4.0/funcs.js +922 -891
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +6 -3
- package/lib/4.0/methods.js +612 -590
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +6 -3
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +18 -3
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +6 -3
- package/lib/4.0/streams.js +612 -590
- package/lib/4.0/streams.js.map +1 -1
- package/lib/browserSdk.d.ts +0 -2
- package/lib/browserSdk.js +2 -9
- package/lib/browserSdk.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1633 -2046
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +915 -900
- 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 +22 -50
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +915 -900
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/browserSdk.js +8 -23
- package/lib/esm/browserSdk.js.map +1 -1
- package/lib/esm/constants.js +2 -10
- package/lib/esm/constants.js.map +1 -1
- package/lib/esm/extensionSdk.js +5 -12
- package/lib/esm/extensionSdk.js.map +1 -1
- package/lib/esm/index.js +9 -141
- package/lib/esm/index.js.map +1 -1
- package/lib/extensionSdk.js.map +1 -1
- package/lib/index.d.ts +0 -8
- package/lib/index.js +15 -56
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/lib/3.1/funcs.d.ts +0 -358
- package/lib/3.1/funcs.js +0 -4025
- package/lib/3.1/funcs.js.map +0 -1
- package/lib/3.1/methods.d.ts +0 -363
- package/lib/3.1/methods.js +0 -2965
- package/lib/3.1/methods.js.map +0 -1
- package/lib/3.1/methodsInterface.d.ts +0 -359
- package/lib/3.1/methodsInterface.js +0 -2
- package/lib/3.1/methodsInterface.js.map +0 -1
- package/lib/3.1/models.d.ts +0 -3263
- package/lib/3.1/models.js +0 -159
- package/lib/3.1/models.js.map +0 -1
- package/lib/3.1/streams.d.ts +0 -363
- package/lib/3.1/streams.js +0 -2965
- package/lib/3.1/streams.js.map +0 -1
- package/lib/esm/3.1/funcs.js +0 -4025
- package/lib/esm/3.1/funcs.js.map +0 -1
- package/lib/esm/3.1/methods.js +0 -2965
- package/lib/esm/3.1/methods.js.map +0 -1
- package/lib/esm/3.1/methodsInterface.js +0 -2
- package/lib/esm/3.1/methodsInterface.js.map +0 -1
- package/lib/esm/3.1/models.js +0 -159
- package/lib/esm/3.1/models.js.map +0 -1
- package/lib/esm/3.1/streams.js +0 -2965
- package/lib/esm/3.1/streams.js.map +0 -1
package/lib/esm/4.0/models.js
CHANGED
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
|
|
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 = function (Align) {
|
|
1
|
+
export var Align = function (Align) {
|
|
8
2
|
Align["left"] = "left";
|
|
9
3
|
Align["right"] = "right";
|
|
10
4
|
return Align;
|
|
11
5
|
}({});
|
|
12
|
-
|
|
13
|
-
var Category = function (Category) {
|
|
6
|
+
export var Category = function (Category) {
|
|
14
7
|
Category["parameter"] = "parameter";
|
|
15
8
|
Category["filter"] = "filter";
|
|
16
9
|
Category["measure"] = "measure";
|
|
17
10
|
Category["dimension"] = "dimension";
|
|
18
11
|
return Category;
|
|
19
12
|
}({});
|
|
20
|
-
|
|
21
|
-
var ComparisonType = function (ComparisonType) {
|
|
13
|
+
export var ComparisonType = function (ComparisonType) {
|
|
22
14
|
ComparisonType["EQUAL_TO"] = "EQUAL_TO";
|
|
23
15
|
ComparisonType["GREATER_THAN"] = "GREATER_THAN";
|
|
24
16
|
ComparisonType["GREATER_THAN_OR_EQUAL_TO"] = "GREATER_THAN_OR_EQUAL_TO";
|
|
@@ -29,45 +21,38 @@ var ComparisonType = function (ComparisonType) {
|
|
|
29
21
|
ComparisonType["CHANGES_BY"] = "CHANGES_BY";
|
|
30
22
|
return ComparisonType;
|
|
31
23
|
}({});
|
|
32
|
-
|
|
33
|
-
var DependencyStatus = function (DependencyStatus) {
|
|
24
|
+
export var DependencyStatus = function (DependencyStatus) {
|
|
34
25
|
DependencyStatus["lock_optional"] = "lock_optional";
|
|
35
26
|
DependencyStatus["lock_required"] = "lock_required";
|
|
36
27
|
DependencyStatus["lock_error"] = "lock_error";
|
|
37
28
|
DependencyStatus["install_none"] = "install_none";
|
|
38
29
|
return DependencyStatus;
|
|
39
30
|
}({});
|
|
40
|
-
|
|
41
|
-
var DestinationType = function (DestinationType) {
|
|
31
|
+
export var DestinationType = function (DestinationType) {
|
|
42
32
|
DestinationType["EMAIL"] = "EMAIL";
|
|
43
33
|
DestinationType["ACTION_HUB"] = "ACTION_HUB";
|
|
44
34
|
return DestinationType;
|
|
45
35
|
}({});
|
|
46
|
-
|
|
47
|
-
var DeviceType = function (DeviceType) {
|
|
36
|
+
export var DeviceType = function (DeviceType) {
|
|
48
37
|
DeviceType["android"] = "android";
|
|
49
38
|
DeviceType["ios"] = "ios";
|
|
50
39
|
return DeviceType;
|
|
51
40
|
}({});
|
|
52
|
-
|
|
53
|
-
var FillStyle = function (FillStyle) {
|
|
41
|
+
export var FillStyle = function (FillStyle) {
|
|
54
42
|
FillStyle["enumeration"] = "enumeration";
|
|
55
43
|
FillStyle["range"] = "range";
|
|
56
44
|
return FillStyle;
|
|
57
45
|
}({});
|
|
58
|
-
|
|
59
|
-
var Format = function (Format) {
|
|
46
|
+
export var Format = function (Format) {
|
|
60
47
|
Format["topojson"] = "topojson";
|
|
61
48
|
Format["vector_tile_region"] = "vector_tile_region";
|
|
62
49
|
return Format;
|
|
63
50
|
}({});
|
|
64
|
-
|
|
65
|
-
var InvestigativeContentType = function (InvestigativeContentType) {
|
|
51
|
+
export var InvestigativeContentType = function (InvestigativeContentType) {
|
|
66
52
|
InvestigativeContentType["dashboard"] = "dashboard";
|
|
67
53
|
return InvestigativeContentType;
|
|
68
54
|
}({});
|
|
69
|
-
|
|
70
|
-
var Name = function (Name) {
|
|
55
|
+
export var Name = function (Name) {
|
|
71
56
|
Name["day"] = "day";
|
|
72
57
|
Name["hour"] = "hour";
|
|
73
58
|
Name["minute"] = "minute";
|
|
@@ -80,22 +65,19 @@ var Name = function (Name) {
|
|
|
80
65
|
Name["year"] = "year";
|
|
81
66
|
return Name;
|
|
82
67
|
}({});
|
|
83
|
-
|
|
84
|
-
var PermissionType = function (PermissionType) {
|
|
68
|
+
export var PermissionType = function (PermissionType) {
|
|
85
69
|
PermissionType["view"] = "view";
|
|
86
70
|
PermissionType["edit"] = "edit";
|
|
87
71
|
return PermissionType;
|
|
88
72
|
}({});
|
|
89
|
-
|
|
90
|
-
var PullRequestMode = function (PullRequestMode) {
|
|
73
|
+
export var PullRequestMode = function (PullRequestMode) {
|
|
91
74
|
PullRequestMode["off"] = "off";
|
|
92
75
|
PullRequestMode["links"] = "links";
|
|
93
76
|
PullRequestMode["recommended"] = "recommended";
|
|
94
77
|
PullRequestMode["required"] = "required";
|
|
95
78
|
return PullRequestMode;
|
|
96
79
|
}({});
|
|
97
|
-
|
|
98
|
-
var ResultFormat = function (ResultFormat) {
|
|
80
|
+
export var ResultFormat = function (ResultFormat) {
|
|
99
81
|
ResultFormat["inline_json"] = "inline_json";
|
|
100
82
|
ResultFormat["json"] = "json";
|
|
101
83
|
ResultFormat["json_detail"] = "json_detail";
|
|
@@ -110,35 +92,30 @@ var ResultFormat = function (ResultFormat) {
|
|
|
110
92
|
ResultFormat["sql"] = "sql";
|
|
111
93
|
return ResultFormat;
|
|
112
94
|
}({});
|
|
113
|
-
|
|
114
|
-
var SecretType = function (SecretType) {
|
|
95
|
+
export var SecretType = function (SecretType) {
|
|
115
96
|
SecretType["SSO"] = "SSO";
|
|
116
97
|
SecretType["JWT"] = "JWT";
|
|
117
98
|
return SecretType;
|
|
118
99
|
}({});
|
|
119
|
-
|
|
120
|
-
var SslVersion = function (SslVersion) {
|
|
100
|
+
export var SslVersion = function (SslVersion) {
|
|
121
101
|
SslVersion["TLSv1_1"] = "TLSv1_1";
|
|
122
102
|
SslVersion["SSLv23"] = "SSLv23";
|
|
123
103
|
SslVersion["TLSv1_2"] = "TLSv1_2";
|
|
124
104
|
return SslVersion;
|
|
125
105
|
}({});
|
|
126
|
-
|
|
127
|
-
var SupportedActionTypes = function (SupportedActionTypes) {
|
|
106
|
+
export var SupportedActionTypes = function (SupportedActionTypes) {
|
|
128
107
|
SupportedActionTypes["cell"] = "cell";
|
|
129
108
|
SupportedActionTypes["query"] = "query";
|
|
130
109
|
SupportedActionTypes["dashboard"] = "dashboard";
|
|
131
110
|
SupportedActionTypes["none"] = "none";
|
|
132
111
|
return SupportedActionTypes;
|
|
133
112
|
}({});
|
|
134
|
-
|
|
135
|
-
var SupportedDownloadSettings = function (SupportedDownloadSettings) {
|
|
113
|
+
export var SupportedDownloadSettings = function (SupportedDownloadSettings) {
|
|
136
114
|
SupportedDownloadSettings["push"] = "push";
|
|
137
115
|
SupportedDownloadSettings["url"] = "url";
|
|
138
116
|
return SupportedDownloadSettings;
|
|
139
117
|
}({});
|
|
140
|
-
|
|
141
|
-
var SupportedFormats = function (SupportedFormats) {
|
|
118
|
+
export var SupportedFormats = function (SupportedFormats) {
|
|
142
119
|
SupportedFormats["txt"] = "txt";
|
|
143
120
|
SupportedFormats["csv"] = "csv";
|
|
144
121
|
SupportedFormats["inline_json"] = "inline_json";
|
|
@@ -154,20 +131,17 @@ var SupportedFormats = function (SupportedFormats) {
|
|
|
154
131
|
SupportedFormats["csv_zip"] = "csv_zip";
|
|
155
132
|
return SupportedFormats;
|
|
156
133
|
}({});
|
|
157
|
-
|
|
158
|
-
var SupportedFormattings = function (SupportedFormattings) {
|
|
134
|
+
export var SupportedFormattings = function (SupportedFormattings) {
|
|
159
135
|
SupportedFormattings["formatted"] = "formatted";
|
|
160
136
|
SupportedFormattings["unformatted"] = "unformatted";
|
|
161
137
|
return SupportedFormattings;
|
|
162
138
|
}({});
|
|
163
|
-
|
|
164
|
-
var SupportedVisualizationFormattings = function (SupportedVisualizationFormattings) {
|
|
139
|
+
export var SupportedVisualizationFormattings = function (SupportedVisualizationFormattings) {
|
|
165
140
|
SupportedVisualizationFormattings["apply"] = "apply";
|
|
166
141
|
SupportedVisualizationFormattings["noapply"] = "noapply";
|
|
167
142
|
return SupportedVisualizationFormattings;
|
|
168
143
|
}({});
|
|
169
|
-
|
|
170
|
-
var UserAttributeFilterTypes = function (UserAttributeFilterTypes) {
|
|
144
|
+
export var UserAttributeFilterTypes = function (UserAttributeFilterTypes) {
|
|
171
145
|
UserAttributeFilterTypes["advanced_filter_string"] = "advanced_filter_string";
|
|
172
146
|
UserAttributeFilterTypes["advanced_filter_number"] = "advanced_filter_number";
|
|
173
147
|
UserAttributeFilterTypes["advanced_filter_datetime"] = "advanced_filter_datetime";
|
|
@@ -179,8 +153,7 @@ var UserAttributeFilterTypes = function (UserAttributeFilterTypes) {
|
|
|
179
153
|
UserAttributeFilterTypes["zipcode"] = "zipcode";
|
|
180
154
|
return UserAttributeFilterTypes;
|
|
181
155
|
}({});
|
|
182
|
-
|
|
183
|
-
var WeekStartDay = function (WeekStartDay) {
|
|
156
|
+
export var WeekStartDay = function (WeekStartDay) {
|
|
184
157
|
WeekStartDay["monday"] = "monday";
|
|
185
158
|
WeekStartDay["tuesday"] = "tuesday";
|
|
186
159
|
WeekStartDay["wednesday"] = "wednesday";
|
|
@@ -190,5 +163,4 @@ var WeekStartDay = function (WeekStartDay) {
|
|
|
190
163
|
WeekStartDay["sunday"] = "sunday";
|
|
191
164
|
return WeekStartDay;
|
|
192
165
|
}({});
|
|
193
|
-
exports.WeekStartDay = WeekStartDay;
|
|
194
166
|
//# sourceMappingURL=models.js.map
|