@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/browserSdk.js
CHANGED
|
@@ -1,31 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
});
|
|
6
|
-
exports.LookerBrowserSDK = exports.BrowserSettings = void 0;
|
|
7
|
-
var _sdkRtl = require("@looker/sdk-rtl");
|
|
8
|
-
var _methods = require("./3.1/methods");
|
|
9
|
-
var _methods2 = require("./4.0/methods");
|
|
10
|
-
var BrowserSettings = () => {
|
|
11
|
-
var settings = (0, _sdkRtl.DefaultSettings)();
|
|
1
|
+
import { DefaultSettings, BrowserSession, BrowserTransport } from '@looker/sdk-rtl';
|
|
2
|
+
import { Looker40SDK } from './4.0/methods';
|
|
3
|
+
export var BrowserSettings = () => {
|
|
4
|
+
var settings = DefaultSettings();
|
|
12
5
|
settings.base_url = "".concat(document.location.hostname, ":19999");
|
|
13
6
|
return settings;
|
|
14
7
|
};
|
|
15
|
-
|
|
16
|
-
class LookerBrowserSDK {
|
|
17
|
-
static init31(settings, transport, session) {
|
|
18
|
-
settings = settings || BrowserSettings();
|
|
19
|
-
transport = transport || new _sdkRtl.BrowserTransport(settings);
|
|
20
|
-
session = session || new _sdkRtl.BrowserSession(settings, transport);
|
|
21
|
-
return new _methods.Looker31SDK(session);
|
|
22
|
-
}
|
|
8
|
+
export class LookerBrowserSDK {
|
|
23
9
|
static init40(settings, transport, session) {
|
|
24
10
|
settings = settings || BrowserSettings();
|
|
25
|
-
transport = transport || new
|
|
26
|
-
session = session || new
|
|
27
|
-
return new
|
|
11
|
+
transport = transport || new BrowserTransport(settings);
|
|
12
|
+
session = session || new BrowserSession(settings, transport);
|
|
13
|
+
return new Looker40SDK(session);
|
|
28
14
|
}
|
|
29
15
|
}
|
|
30
|
-
exports.LookerBrowserSDK = LookerBrowserSDK;
|
|
31
16
|
//# sourceMappingURL=browserSdk.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browserSdk.js","names":["
|
|
1
|
+
{"version":3,"file":"browserSdk.js","names":["DefaultSettings","BrowserSession","BrowserTransport","Looker40SDK","BrowserSettings","settings","base_url","concat","document","location","hostname","LookerBrowserSDK","init40","transport","session"],"sources":["../../src/browserSdk.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\nimport type { IApiSettings, IAuthSession, ITransport } from '@looker/sdk-rtl'\nimport {\n DefaultSettings,\n BrowserSession,\n BrowserTransport,\n} from '@looker/sdk-rtl'\n\nimport { Looker40SDK } from './4.0/methods'\n\nexport const BrowserSettings = (): IApiSettings => {\n const settings = DefaultSettings()\n settings.base_url = `${document.location.hostname}:19999`\n return settings\n}\n\nexport class LookerBrowserSDK {\n /**\n * Creates a [[Looker40SDK]] object.\n *\n * @param settings Defaults to the settings for the Browser\n *\n * @param transport Defaults to a `BrowserTransport` object\n *\n * @param session Defaults to `BrowserSession` which uses OAuth authentication flow and CORS requests\n */\n static init40(\n settings?: IApiSettings,\n transport?: ITransport,\n session?: IAuthSession\n ) {\n settings = settings || BrowserSettings()\n transport = transport || new BrowserTransport(settings)\n session = session || new BrowserSession(settings, transport)\n return new Looker40SDK(session)\n }\n}\n"],"mappings":"AA0BA,SACEA,eAAe,EACfC,cAAc,EACdC,gBAAgB,QACX,iBAAiB;AAExB,SAASC,WAAW,QAAQ,eAAe;AAE3C,OAAO,IAAMC,eAAe,GAAGA,CAAA,KAAoB;EACjD,IAAMC,QAAQ,GAAGL,eAAe,CAAC,CAAC;EAClCK,QAAQ,CAACC,QAAQ,MAAAC,MAAA,CAAMC,QAAQ,CAACC,QAAQ,CAACC,QAAQ,WAAQ;EACzD,OAAOL,QAAQ;AACjB,CAAC;AAED,OAAO,MAAMM,gBAAgB,CAAC;EAU5B,OAAOC,MAAMA,CACXP,QAAuB,EACvBQ,SAAsB,EACtBC,OAAsB,EACtB;IACAT,QAAQ,GAAGA,QAAQ,IAAID,eAAe,CAAC,CAAC;IACxCS,SAAS,GAAGA,SAAS,IAAI,IAAIX,gBAAgB,CAACG,QAAQ,CAAC;IACvDS,OAAO,GAAGA,OAAO,IAAI,IAAIb,cAAc,CAACI,QAAQ,EAAEQ,SAAS,CAAC;IAC5D,OAAO,IAAIV,WAAW,CAACW,OAAO,CAAC;EACjC;AACF"}
|
package/lib/esm/constants.js
CHANGED
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.sdkVersion = exports.environmentPrefix = void 0;
|
|
7
|
-
var sdkVersion = '23.14';
|
|
8
|
-
exports.sdkVersion = sdkVersion;
|
|
9
|
-
var environmentPrefix = 'LOOKERSDK';
|
|
10
|
-
exports.environmentPrefix = environmentPrefix;
|
|
1
|
+
export var sdkVersion = '23.18';
|
|
2
|
+
export var environmentPrefix = 'LOOKERSDK';
|
|
11
3
|
//# sourceMappingURL=constants.js.map
|
package/lib/esm/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","names":["sdkVersion","
|
|
1
|
+
{"version":3,"file":"constants.js","names":["sdkVersion","environmentPrefix"],"sources":["../../src/constants.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\n\nexport const sdkVersion = '23.18'\nexport const environmentPrefix = 'LOOKERSDK'\n"],"mappings":"AA0BA,OAAO,IAAMA,UAAU,GAAG,OAAO;AACjC,OAAO,IAAMC,iBAAiB,GAAG,WAAW"}
|
package/lib/esm/extensionSdk.js
CHANGED
|
@@ -1,17 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.LookerExtensionSDK = void 0;
|
|
7
|
-
var _sdkRtl = require("@looker/sdk-rtl");
|
|
8
|
-
class LookerExtensionSDK {
|
|
1
|
+
import { DefaultSettings, ExtensionSession, ExtensionTransport } from '@looker/sdk-rtl';
|
|
2
|
+
export class LookerExtensionSDK {
|
|
9
3
|
static createClient(hostConnection, type, settings) {
|
|
10
|
-
settings = settings ||
|
|
11
|
-
var transport = new
|
|
12
|
-
var session = new
|
|
4
|
+
settings = settings || DefaultSettings();
|
|
5
|
+
var transport = new ExtensionTransport(settings, hostConnection);
|
|
6
|
+
var session = new ExtensionSession(settings, transport);
|
|
13
7
|
return new type(session);
|
|
14
8
|
}
|
|
15
9
|
}
|
|
16
|
-
exports.LookerExtensionSDK = LookerExtensionSDK;
|
|
17
10
|
//# sourceMappingURL=extensionSdk.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extensionSdk.js","names":["
|
|
1
|
+
{"version":3,"file":"extensionSdk.js","names":["DefaultSettings","ExtensionSession","ExtensionTransport","LookerExtensionSDK","createClient","hostConnection","type","settings","transport","session"],"sources":["../../src/extensionSdk.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\n\nimport type {\n IApiSettings,\n APIMethods,\n IAuthSession,\n IHostConnection,\n} from '@looker/sdk-rtl'\nimport {\n DefaultSettings,\n ExtensionSession,\n ExtensionTransport,\n} from '@looker/sdk-rtl'\n\nexport class LookerExtensionSDK {\n /**\n * Creates a [[LookerSDK]] object.\n *\n * Example:\n * LookerExtensionSDK.createClient(host, Looker40SDK) => constructs a Looker40SDK\n */\n static createClient<T extends APIMethods>(\n hostConnection: IHostConnection,\n type: new (authSession: IAuthSession) => T,\n settings?: IApiSettings\n ): T {\n settings = settings || DefaultSettings()\n const transport = new ExtensionTransport(settings, hostConnection)\n const session = new ExtensionSession(settings, transport)\n // eslint-disable-next-line new-cap\n return new type(session)\n }\n}\n"],"mappings":"AAgCA,SACEA,eAAe,EACfC,gBAAgB,EAChBC,kBAAkB,QACb,iBAAiB;AAExB,OAAO,MAAMC,kBAAkB,CAAC;EAO9B,OAAOC,YAAYA,CACjBC,cAA+B,EAC/BC,IAA0C,EAC1CC,QAAuB,EACpB;IACHA,QAAQ,GAAGA,QAAQ,IAAIP,eAAe,CAAC,CAAC;IACxC,IAAMQ,SAAS,GAAG,IAAIN,kBAAkB,CAACK,QAAQ,EAAEF,cAAc,CAAC;IAClE,IAAMI,OAAO,GAAG,IAAIR,gBAAgB,CAACM,QAAQ,EAAEC,SAAS,CAAC;IAEzD,OAAO,IAAIF,IAAI,CAACG,OAAO,CAAC;EAC1B;AACF"}
|
package/lib/esm/index.js
CHANGED
|
@@ -1,142 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
ILooker31SDK: true,
|
|
11
|
-
Looker31SDK: true,
|
|
12
|
-
Looker31SDKStream: true,
|
|
13
|
-
ILooker40SDK: true,
|
|
14
|
-
Looker40SDK: true,
|
|
15
|
-
Looker40SDKStream: true,
|
|
16
|
-
functionalSdk40: true,
|
|
17
|
-
sdkVersion: true,
|
|
18
|
-
environmentPrefix: true,
|
|
19
|
-
LookerExtensionSDK: true,
|
|
20
|
-
BrowserSettings: true,
|
|
21
|
-
LookerBrowserSDK: true
|
|
22
|
-
};
|
|
23
|
-
Object.defineProperty(exports, "BrowserSettings", {
|
|
24
|
-
enumerable: true,
|
|
25
|
-
get: function get() {
|
|
26
|
-
return _browserSdk.BrowserSettings;
|
|
27
|
-
}
|
|
28
|
-
});
|
|
29
|
-
Object.defineProperty(exports, "ILooker31SDK", {
|
|
30
|
-
enumerable: true,
|
|
31
|
-
get: function get() {
|
|
32
|
-
return _methodsInterface.ILooker31SDK;
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
Object.defineProperty(exports, "ILooker40SDK", {
|
|
36
|
-
enumerable: true,
|
|
37
|
-
get: function get() {
|
|
38
|
-
return _methodsInterface2.ILooker40SDK;
|
|
39
|
-
}
|
|
40
|
-
});
|
|
41
|
-
Object.defineProperty(exports, "Looker31SDK", {
|
|
42
|
-
enumerable: true,
|
|
43
|
-
get: function get() {
|
|
44
|
-
return _methods.Looker31SDK;
|
|
45
|
-
}
|
|
46
|
-
});
|
|
47
|
-
Object.defineProperty(exports, "Looker31SDKStream", {
|
|
48
|
-
enumerable: true,
|
|
49
|
-
get: function get() {
|
|
50
|
-
return _streams.Looker31SDKStream;
|
|
51
|
-
}
|
|
52
|
-
});
|
|
53
|
-
Object.defineProperty(exports, "Looker40SDK", {
|
|
54
|
-
enumerable: true,
|
|
55
|
-
get: function get() {
|
|
56
|
-
return _methods2.Looker40SDK;
|
|
57
|
-
}
|
|
58
|
-
});
|
|
59
|
-
Object.defineProperty(exports, "Looker40SDKStream", {
|
|
60
|
-
enumerable: true,
|
|
61
|
-
get: function get() {
|
|
62
|
-
return _streams2.Looker40SDKStream;
|
|
63
|
-
}
|
|
64
|
-
});
|
|
65
|
-
Object.defineProperty(exports, "LookerBrowserSDK", {
|
|
66
|
-
enumerable: true,
|
|
67
|
-
get: function get() {
|
|
68
|
-
return _browserSdk.LookerBrowserSDK;
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
Object.defineProperty(exports, "LookerExtensionSDK", {
|
|
72
|
-
enumerable: true,
|
|
73
|
-
get: function get() {
|
|
74
|
-
return _extensionSdk.LookerExtensionSDK;
|
|
75
|
-
}
|
|
76
|
-
});
|
|
77
|
-
Object.defineProperty(exports, "environmentPrefix", {
|
|
78
|
-
enumerable: true,
|
|
79
|
-
get: function get() {
|
|
80
|
-
return _constants.environmentPrefix;
|
|
81
|
-
}
|
|
82
|
-
});
|
|
83
|
-
exports.funcs31 = void 0;
|
|
84
|
-
Object.defineProperty(exports, "functionalSdk31", {
|
|
85
|
-
enumerable: true,
|
|
86
|
-
get: function get() {
|
|
87
|
-
return funcs31.functionalSdk31;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
Object.defineProperty(exports, "functionalSdk40", {
|
|
91
|
-
enumerable: true,
|
|
92
|
-
get: function get() {
|
|
93
|
-
return _funcs2.functionalSdk40;
|
|
94
|
-
}
|
|
95
|
-
});
|
|
96
|
-
exports.models31 = void 0;
|
|
97
|
-
Object.defineProperty(exports, "sdkVersion", {
|
|
98
|
-
enumerable: true,
|
|
99
|
-
get: function get() {
|
|
100
|
-
return _constants.sdkVersion;
|
|
101
|
-
}
|
|
102
|
-
});
|
|
103
|
-
var models31 = _interopRequireWildcard(require("./3.1/models"));
|
|
104
|
-
exports.models31 = models31;
|
|
105
|
-
var funcs31 = _interopRequireWildcard(require("./3.1/funcs"));
|
|
106
|
-
exports.funcs31 = funcs31;
|
|
107
|
-
var _methodsInterface = require("./3.1/methodsInterface");
|
|
108
|
-
var _methods = require("./3.1/methods");
|
|
109
|
-
var _streams = require("./3.1/streams");
|
|
110
|
-
var _methodsInterface2 = require("./4.0/methodsInterface");
|
|
111
|
-
var _methods2 = require("./4.0/methods");
|
|
112
|
-
var _streams2 = require("./4.0/streams");
|
|
113
|
-
var _funcs2 = require("./4.0/funcs");
|
|
114
|
-
Object.keys(_funcs2).forEach(function (key) {
|
|
115
|
-
if (key === "default" || key === "__esModule") return;
|
|
116
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
117
|
-
if (key in exports && exports[key] === _funcs2[key]) return;
|
|
118
|
-
Object.defineProperty(exports, key, {
|
|
119
|
-
enumerable: true,
|
|
120
|
-
get: function get() {
|
|
121
|
-
return _funcs2[key];
|
|
122
|
-
}
|
|
123
|
-
});
|
|
124
|
-
});
|
|
125
|
-
var _models2 = require("./4.0/models");
|
|
126
|
-
Object.keys(_models2).forEach(function (key) {
|
|
127
|
-
if (key === "default" || key === "__esModule") return;
|
|
128
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
129
|
-
if (key in exports && exports[key] === _models2[key]) return;
|
|
130
|
-
Object.defineProperty(exports, key, {
|
|
131
|
-
enumerable: true,
|
|
132
|
-
get: function get() {
|
|
133
|
-
return _models2[key];
|
|
134
|
-
}
|
|
135
|
-
});
|
|
136
|
-
});
|
|
137
|
-
var _constants = require("./constants");
|
|
138
|
-
var _extensionSdk = require("./extensionSdk");
|
|
139
|
-
var _browserSdk = require("./browserSdk");
|
|
140
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
141
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
1
|
+
export { ILooker40SDK } from './4.0/methodsInterface';
|
|
2
|
+
export { Looker40SDK } from './4.0/methods';
|
|
3
|
+
export { Looker40SDKStream } from './4.0/streams';
|
|
4
|
+
export * from './4.0/funcs';
|
|
5
|
+
export * from './4.0/models';
|
|
6
|
+
export { sdkVersion, environmentPrefix } from './constants';
|
|
7
|
+
export { LookerExtensionSDK } from './extensionSdk';
|
|
8
|
+
export { BrowserSettings, LookerBrowserSDK } from './browserSdk';
|
|
9
|
+
export { functionalSdk40 } from './4.0/funcs';
|
|
142
10
|
//# sourceMappingURL=index.js.map
|
package/lib/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["
|
|
1
|
+
{"version":3,"file":"index.js","names":["ILooker40SDK","Looker40SDK","Looker40SDKStream","sdkVersion","environmentPrefix","LookerExtensionSDK","BrowserSettings","LookerBrowserSDK","functionalSdk40"],"sources":["../../src/index.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\n\n// Version 23.18\n\n/**\n * Note: functions should be deep-linked from their 4.0/funcs path\n */\n\nexport { ILooker40SDK } from './4.0/methodsInterface'\nexport { Looker40SDK } from './4.0/methods'\nexport { Looker40SDKStream } from './4.0/streams'\n\nexport * from './4.0/funcs'\nexport * from './4.0/models'\n\nexport { sdkVersion, environmentPrefix } from './constants'\nexport { LookerExtensionSDK } from './extensionSdk'\nexport { BrowserSettings, LookerBrowserSDK } from './browserSdk'\n\nexport { functionalSdk40 } from './4.0/funcs'\n"],"mappings":"AAgCA,SAASA,YAAY,QAAQ,wBAAwB;AACrD,SAASC,WAAW,QAAQ,eAAe;AAC3C,SAASC,iBAAiB,QAAQ,eAAe;AAEjD,cAAc,aAAa;AAC3B,cAAc,cAAc;AAE5B,SAASC,UAAU,EAAEC,iBAAiB,QAAQ,aAAa;AAC3D,SAASC,kBAAkB,QAAQ,gBAAgB;AACnD,SAASC,eAAe,EAAEC,gBAAgB,QAAQ,cAAc;AAEhE,SAASC,eAAe,QAAQ,aAAa"}
|
package/lib/extensionSdk.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extensionSdk.js","names":["_sdkRtl","require","LookerExtensionSDK","createClient","hostConnection","type","settings","DefaultSettings","transport","ExtensionTransport","session","ExtensionSession","exports"],"sources":["../src/extensionSdk.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\n\nimport type {\n IApiSettings,\n APIMethods,\n IAuthSession,\n IHostConnection,\n} from '@looker/sdk-rtl'\nimport {\n DefaultSettings,\n ExtensionSession,\n ExtensionTransport,\n} from '@looker/sdk-rtl'\n\nexport class LookerExtensionSDK {\n /**\n * Creates a [[LookerSDK]] object.\n *\n *
|
|
1
|
+
{"version":3,"file":"extensionSdk.js","names":["_sdkRtl","require","LookerExtensionSDK","createClient","hostConnection","type","settings","DefaultSettings","transport","ExtensionTransport","session","ExtensionSession","exports"],"sources":["../src/extensionSdk.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\n\nimport type {\n IApiSettings,\n APIMethods,\n IAuthSession,\n IHostConnection,\n} from '@looker/sdk-rtl'\nimport {\n DefaultSettings,\n ExtensionSession,\n ExtensionTransport,\n} from '@looker/sdk-rtl'\n\nexport class LookerExtensionSDK {\n /**\n * Creates a [[LookerSDK]] object.\n *\n * Example:\n * LookerExtensionSDK.createClient(host, Looker40SDK) => constructs a Looker40SDK\n */\n static createClient<T extends APIMethods>(\n hostConnection: IHostConnection,\n type: new (authSession: IAuthSession) => T,\n settings?: IApiSettings\n ): T {\n settings = settings || DefaultSettings()\n const transport = new ExtensionTransport(settings, hostConnection)\n const session = new ExtensionSession(settings, transport)\n // eslint-disable-next-line new-cap\n return new type(session)\n }\n}\n"],"mappings":";;;;;;AAgCA,IAAAA,OAAA,GAAAC,OAAA;AAMO,MAAMC,kBAAkB,CAAC;EAO9B,OAAOC,YAAYA,CACjBC,cAA+B,EAC/BC,IAA0C,EAC1CC,QAAuB,EACpB;IACHA,QAAQ,GAAGA,QAAQ,IAAI,IAAAC,uBAAe,EAAC,CAAC;IACxC,IAAMC,SAAS,GAAG,IAAIC,0BAAkB,CAACH,QAAQ,EAAEF,cAAc,CAAC;IAClE,IAAMM,OAAO,GAAG,IAAIC,wBAAgB,CAACL,QAAQ,EAAEE,SAAS,CAAC;IAEzD,OAAO,IAAIH,IAAI,CAACK,OAAO,CAAC;EAC1B;AACF;AAACE,OAAA,CAAAV,kBAAA,GAAAA,kBAAA"}
|
package/lib/index.d.ts
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
import * as models31 from './3.1/models';
|
|
2
|
-
import * as funcs31 from './3.1/funcs';
|
|
3
|
-
export { models31 };
|
|
4
|
-
export { funcs31 };
|
|
5
|
-
export { ILooker31SDK } from './3.1/methodsInterface';
|
|
6
|
-
export { Looker31SDK } from './3.1/methods';
|
|
7
|
-
export { Looker31SDKStream } from './3.1/streams';
|
|
8
1
|
export { ILooker40SDK } from './4.0/methodsInterface';
|
|
9
2
|
export { Looker40SDK } from './4.0/methods';
|
|
10
3
|
export { Looker40SDKStream } from './4.0/streams';
|
|
@@ -14,4 +7,3 @@ export { sdkVersion, environmentPrefix } from './constants';
|
|
|
14
7
|
export { LookerExtensionSDK } from './extensionSdk';
|
|
15
8
|
export { BrowserSettings, LookerBrowserSDK } from './browserSdk';
|
|
16
9
|
export { functionalSdk40 } from './4.0/funcs';
|
|
17
|
-
export { functionalSdk31 } from './3.1/funcs';
|
package/lib/index.js
CHANGED
|
@@ -4,12 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
var _exportNames = {
|
|
7
|
-
models31: true,
|
|
8
|
-
functionalSdk31: true,
|
|
9
|
-
funcs31: true,
|
|
10
|
-
ILooker31SDK: true,
|
|
11
|
-
Looker31SDK: true,
|
|
12
|
-
Looker31SDKStream: true,
|
|
13
7
|
ILooker40SDK: true,
|
|
14
8
|
Looker40SDK: true,
|
|
15
9
|
Looker40SDKStream: true,
|
|
@@ -26,40 +20,22 @@ Object.defineProperty(exports, "BrowserSettings", {
|
|
|
26
20
|
return _browserSdk.BrowserSettings;
|
|
27
21
|
}
|
|
28
22
|
});
|
|
29
|
-
Object.defineProperty(exports, "ILooker31SDK", {
|
|
30
|
-
enumerable: true,
|
|
31
|
-
get: function get() {
|
|
32
|
-
return _methodsInterface.ILooker31SDK;
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
23
|
Object.defineProperty(exports, "ILooker40SDK", {
|
|
36
24
|
enumerable: true,
|
|
37
25
|
get: function get() {
|
|
38
|
-
return
|
|
39
|
-
}
|
|
40
|
-
});
|
|
41
|
-
Object.defineProperty(exports, "Looker31SDK", {
|
|
42
|
-
enumerable: true,
|
|
43
|
-
get: function get() {
|
|
44
|
-
return _methods.Looker31SDK;
|
|
45
|
-
}
|
|
46
|
-
});
|
|
47
|
-
Object.defineProperty(exports, "Looker31SDKStream", {
|
|
48
|
-
enumerable: true,
|
|
49
|
-
get: function get() {
|
|
50
|
-
return _streams.Looker31SDKStream;
|
|
26
|
+
return _methodsInterface.ILooker40SDK;
|
|
51
27
|
}
|
|
52
28
|
});
|
|
53
29
|
Object.defineProperty(exports, "Looker40SDK", {
|
|
54
30
|
enumerable: true,
|
|
55
31
|
get: function get() {
|
|
56
|
-
return
|
|
32
|
+
return _methods.Looker40SDK;
|
|
57
33
|
}
|
|
58
34
|
});
|
|
59
35
|
Object.defineProperty(exports, "Looker40SDKStream", {
|
|
60
36
|
enumerable: true,
|
|
61
37
|
get: function get() {
|
|
62
|
-
return
|
|
38
|
+
return _streams.Looker40SDKStream;
|
|
63
39
|
}
|
|
64
40
|
});
|
|
65
41
|
Object.defineProperty(exports, "LookerBrowserSDK", {
|
|
@@ -80,63 +56,46 @@ Object.defineProperty(exports, "environmentPrefix", {
|
|
|
80
56
|
return _constants.environmentPrefix;
|
|
81
57
|
}
|
|
82
58
|
});
|
|
83
|
-
exports.funcs31 = void 0;
|
|
84
|
-
Object.defineProperty(exports, "functionalSdk31", {
|
|
85
|
-
enumerable: true,
|
|
86
|
-
get: function get() {
|
|
87
|
-
return funcs31.functionalSdk31;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
59
|
Object.defineProperty(exports, "functionalSdk40", {
|
|
91
60
|
enumerable: true,
|
|
92
61
|
get: function get() {
|
|
93
|
-
return
|
|
62
|
+
return _funcs.functionalSdk40;
|
|
94
63
|
}
|
|
95
64
|
});
|
|
96
|
-
exports.models31 = void 0;
|
|
97
65
|
Object.defineProperty(exports, "sdkVersion", {
|
|
98
66
|
enumerable: true,
|
|
99
67
|
get: function get() {
|
|
100
68
|
return _constants.sdkVersion;
|
|
101
69
|
}
|
|
102
70
|
});
|
|
103
|
-
var
|
|
104
|
-
|
|
105
|
-
var
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
var _methods = require("./3.1/methods");
|
|
109
|
-
var _streams = require("./3.1/streams");
|
|
110
|
-
var _methodsInterface2 = require("./4.0/methodsInterface");
|
|
111
|
-
var _methods2 = require("./4.0/methods");
|
|
112
|
-
var _streams2 = require("./4.0/streams");
|
|
113
|
-
var _funcs2 = require("./4.0/funcs");
|
|
114
|
-
Object.keys(_funcs2).forEach(function (key) {
|
|
71
|
+
var _methodsInterface = require("./4.0/methodsInterface");
|
|
72
|
+
var _methods = require("./4.0/methods");
|
|
73
|
+
var _streams = require("./4.0/streams");
|
|
74
|
+
var _funcs = require("./4.0/funcs");
|
|
75
|
+
Object.keys(_funcs).forEach(function (key) {
|
|
115
76
|
if (key === "default" || key === "__esModule") return;
|
|
116
77
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
117
|
-
if (key in exports && exports[key] ===
|
|
78
|
+
if (key in exports && exports[key] === _funcs[key]) return;
|
|
118
79
|
Object.defineProperty(exports, key, {
|
|
119
80
|
enumerable: true,
|
|
120
81
|
get: function get() {
|
|
121
|
-
return
|
|
82
|
+
return _funcs[key];
|
|
122
83
|
}
|
|
123
84
|
});
|
|
124
85
|
});
|
|
125
|
-
var
|
|
126
|
-
Object.keys(
|
|
86
|
+
var _models = require("./4.0/models");
|
|
87
|
+
Object.keys(_models).forEach(function (key) {
|
|
127
88
|
if (key === "default" || key === "__esModule") return;
|
|
128
89
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
129
|
-
if (key in exports && exports[key] ===
|
|
90
|
+
if (key in exports && exports[key] === _models[key]) return;
|
|
130
91
|
Object.defineProperty(exports, key, {
|
|
131
92
|
enumerable: true,
|
|
132
93
|
get: function get() {
|
|
133
|
-
return
|
|
94
|
+
return _models[key];
|
|
134
95
|
}
|
|
135
96
|
});
|
|
136
97
|
});
|
|
137
98
|
var _constants = require("./constants");
|
|
138
99
|
var _extensionSdk = require("./extensionSdk");
|
|
139
100
|
var _browserSdk = require("./browserSdk");
|
|
140
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
141
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
142
101
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["
|
|
1
|
+
{"version":3,"file":"index.js","names":["_methodsInterface","require","_methods","_streams","_funcs","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_models","_constants","_extensionSdk","_browserSdk"],"sources":["../src/index.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\n\n// Version 23.18\n\n/**\n * Note: functions should be deep-linked from their 4.0/funcs path\n */\n\nexport { ILooker40SDK } from './4.0/methodsInterface'\nexport { Looker40SDK } from './4.0/methods'\nexport { Looker40SDKStream } from './4.0/streams'\n\nexport * from './4.0/funcs'\nexport * from './4.0/models'\n\nexport { sdkVersion, environmentPrefix } from './constants'\nexport { LookerExtensionSDK } from './extensionSdk'\nexport { BrowserSettings, LookerBrowserSDK } from './browserSdk'\n\nexport { functionalSdk40 } from './4.0/funcs'\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCA,IAAAA,iBAAA,GAAAC,OAAA;AACA,IAAAC,QAAA,GAAAD,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;AAEA,IAAAG,MAAA,GAAAH,OAAA;AAAAI,MAAA,CAAAC,IAAA,CAAAF,MAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAJ,MAAA,CAAAI,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,IAAA;MAAA,OAAAZ,MAAA,CAAAI,GAAA;IAAA;EAAA;AAAA;AACA,IAAAS,OAAA,GAAAhB,OAAA;AAAAI,MAAA,CAAAC,IAAA,CAAAW,OAAA,EAAAV,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAS,OAAA,CAAAT,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,IAAA;MAAA,OAAAC,OAAA,CAAAT,GAAA;IAAA;EAAA;AAAA;AAEA,IAAAU,UAAA,GAAAjB,OAAA;AACA,IAAAkB,aAAA,GAAAlB,OAAA;AACA,IAAAmB,WAAA,GAAAnB,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@looker/sdk",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.18.0",
|
|
4
4
|
"description": "Looker SDK",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"Looker",
|
|
52
52
|
"SDK"
|
|
53
53
|
],
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "008b8386e4019bb33465e513c022a929282b30d1"
|
|
55
55
|
}
|