@nodaro/sdk 2.16.0 → 2.17.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/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +51 -6
- package/dist/index.d.ts +51 -6
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -2624,7 +2624,8 @@ var CatalogsResource = class {
|
|
|
2624
2624
|
}
|
|
2625
2625
|
client;
|
|
2626
2626
|
/** Every catalog, projected & pack-composed (honors the deployment's
|
|
2627
|
-
* registered vendored packs). Cached publicly 5 min.
|
|
2627
|
+
* registered vendored packs). Cached publicly 5 min. `data` is absent
|
|
2628
|
+
* when the deployment registered no packs (`curated: false`). */
|
|
2628
2629
|
list(opts = {}) {
|
|
2629
2630
|
const qs = opts.detail ? `?detail=${opts.detail}` : "";
|
|
2630
2631
|
return this.client.request("GET", `/v1/catalogs${qs}`);
|
|
@@ -3643,7 +3644,7 @@ var EditResource = class {
|
|
|
3643
3644
|
return shared.remapTranscriptThroughEdl(edl, transcript);
|
|
3644
3645
|
}
|
|
3645
3646
|
};
|
|
3646
|
-
var SDK_VERSION = "2.
|
|
3647
|
+
var SDK_VERSION = "2.17.0" ;
|
|
3647
3648
|
var CLIENT_HEADER = "X-Nodaro-Client";
|
|
3648
3649
|
var isBrowser = () => typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
3649
3650
|
var NodaroClient = class _NodaroClient {
|