@mapcreator/api 3.3.5 → 3.3.7
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/Mapcreator.d.ts +6 -0
- package/dist/bundle.browser.js +437 -490
- package/dist/bundle.browser.min.js +1 -1
- package/dist/bundle.browser.min.js.LICENSE.txt +2 -2
- package/dist/bundle.js +445 -498
- package/dist/bundle.min.js +1 -1
- package/dist/bundle.min.js.LICENSE.txt +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/resources/DomainLoginMethod.d.ts +7 -0
- package/dist/resources/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/Mapcreator.js +11 -17
- package/src/index.js +0 -1
- package/src/resources/DomainLoginMethod.js +42 -0
- package/src/resources/index.js +1 -0
- package/src/oauth/CookieFlow.js +0 -103
package/dist/Mapcreator.d.ts
CHANGED
|
@@ -147,6 +147,12 @@ export default class Mapcreator {
|
|
|
147
147
|
* @returns {ResourceProxy<DimensionSet>} - A proxy for accessing the resource
|
|
148
148
|
*/
|
|
149
149
|
get dimensionSets(): any;
|
|
150
|
+
/**
|
|
151
|
+
* Domain login method accessor
|
|
152
|
+
* @see {@link DomainLoginMethod}
|
|
153
|
+
* @returns {ResourceProxy<DomainLoginMethod>} - A proxy for accessing the resource
|
|
154
|
+
*/
|
|
155
|
+
get domainLoginMethods(): any;
|
|
150
156
|
/**
|
|
151
157
|
* Faq accessor
|
|
152
158
|
* @see {@link Faq}
|