@wix/identity 1.0.135 → 1.0.137
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/build/cjs/index.d.ts +12 -5
- package/build/cjs/index.js +47 -32
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -4
- package/build/cjs/meta.js +47 -28
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +12 -0
- package/build/es/index.mjs +12 -0
- package/build/es/index.mjs.map +1 -0
- package/build/es/meta.d.mts +8 -0
- package/build/es/meta.mjs +12 -0
- package/build/es/meta.mjs.map +1 -0
- package/build/internal/cjs/index.d.ts +12 -5
- package/build/internal/cjs/index.js +47 -32
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +8 -4
- package/build/internal/cjs/meta.js +47 -28
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +12 -0
- package/build/internal/es/index.mjs +12 -0
- package/build/internal/es/index.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +8 -0
- package/build/internal/es/meta.mjs +12 -0
- package/build/internal/es/meta.mjs.map +1 -0
- package/package.json +13 -12
- package/build/es/index.d.ts +0 -5
- package/build/es/index.js +0 -6
- package/build/es/index.js.map +0 -1
- package/build/es/meta.d.ts +0 -4
- package/build/es/meta.js +0 -5
- package/build/es/meta.js.map +0 -1
- package/build/internal/es/index.d.ts +0 -5
- package/build/internal/es/index.js +0 -6
- package/build/internal/es/index.js.map +0 -1
- package/build/internal/es/meta.d.ts +0 -4
- package/build/internal/es/meta.js +0 -5
- package/build/internal/es/meta.js.map +0 -1
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
|
|
3
|
-
import * as
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as auto_sdk_identity_authentication from '@wix/auto_sdk_identity_authentication';
|
|
2
|
+
export { auto_sdk_identity_authentication as authentication };
|
|
3
|
+
import * as auto_sdk_identity_recovery from '@wix/auto_sdk_identity_recovery';
|
|
4
|
+
export { auto_sdk_identity_recovery as recovery };
|
|
5
|
+
import * as auto_sdk_identity_verification from '@wix/auto_sdk_identity_verification';
|
|
6
|
+
export { auto_sdk_identity_verification as verification };
|
|
7
|
+
import * as auto_sdk_identity_oauth from '@wix/auto_sdk_identity_oauth';
|
|
8
|
+
export { auto_sdk_identity_oauth as oauth };
|
|
9
|
+
import '@wix/auto_sdk_identity_authentication/meta';
|
|
10
|
+
import '@wix/auto_sdk_identity_recovery/meta';
|
|
11
|
+
import '@wix/auto_sdk_identity_verification/meta';
|
|
12
|
+
import '@wix/auto_sdk_identity_oauth/meta';
|
package/build/cjs/index.js
CHANGED
|
@@ -1,35 +1,50 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
24
19
|
};
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// index.ts
|
|
31
|
+
var index_exports = {};
|
|
32
|
+
__export(index_exports, {
|
|
33
|
+
authentication: () => authentication,
|
|
34
|
+
oauth: () => oauth,
|
|
35
|
+
recovery: () => recovery,
|
|
36
|
+
verification: () => verification
|
|
37
|
+
});
|
|
38
|
+
module.exports = __toCommonJS(index_exports);
|
|
39
|
+
var authentication = __toESM(require("@wix/auto_sdk_identity_authentication"));
|
|
40
|
+
var recovery = __toESM(require("@wix/auto_sdk_identity_recovery"));
|
|
41
|
+
var verification = __toESM(require("@wix/auto_sdk_identity_verification"));
|
|
42
|
+
var oauth = __toESM(require("@wix/auto_sdk_identity_oauth"));
|
|
43
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
44
|
+
0 && (module.exports = {
|
|
45
|
+
authentication,
|
|
46
|
+
oauth,
|
|
47
|
+
recovery,
|
|
48
|
+
verification
|
|
49
|
+
});
|
|
35
50
|
//# sourceMappingURL=index.js.map
|
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../../index.ts"],"sourcesContent":["import * as authentication from '@wix/auto_sdk_identity_authentication';\nimport * as recovery from '@wix/auto_sdk_identity_recovery';\nimport * as verification from '@wix/auto_sdk_identity_verification';\nimport * as oauth from '@wix/auto_sdk_identity_oauth';\n\nexport { authentication, recovery, verification, oauth };\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAgC;AAChC,eAA0B;AAC1B,mBAA8B;AAC9B,YAAuB;","names":[]}
|
package/build/cjs/meta.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
export
|
|
1
|
+
import * as meta from '@wix/auto_sdk_identity_authentication/meta';
|
|
2
|
+
export { meta as authentication };
|
|
3
|
+
import * as meta$1 from '@wix/auto_sdk_identity_recovery/meta';
|
|
4
|
+
export { meta$1 as recovery };
|
|
5
|
+
import * as meta$2 from '@wix/auto_sdk_identity_verification/meta';
|
|
6
|
+
export { meta$2 as verification };
|
|
7
|
+
import * as meta$3 from '@wix/auto_sdk_identity_oauth/meta';
|
|
8
|
+
export { meta$3 as oauth };
|
package/build/cjs/meta.js
CHANGED
|
@@ -1,31 +1,50 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
24
19
|
};
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// meta.ts
|
|
31
|
+
var meta_exports = {};
|
|
32
|
+
__export(meta_exports, {
|
|
33
|
+
authentication: () => authentication,
|
|
34
|
+
oauth: () => oauth,
|
|
35
|
+
recovery: () => recovery,
|
|
36
|
+
verification: () => verification
|
|
37
|
+
});
|
|
38
|
+
module.exports = __toCommonJS(meta_exports);
|
|
39
|
+
var authentication = __toESM(require("@wix/auto_sdk_identity_authentication/meta"));
|
|
40
|
+
var recovery = __toESM(require("@wix/auto_sdk_identity_recovery/meta"));
|
|
41
|
+
var verification = __toESM(require("@wix/auto_sdk_identity_verification/meta"));
|
|
42
|
+
var oauth = __toESM(require("@wix/auto_sdk_identity_oauth/meta"));
|
|
43
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
44
|
+
0 && (module.exports = {
|
|
45
|
+
authentication,
|
|
46
|
+
oauth,
|
|
47
|
+
recovery,
|
|
48
|
+
verification
|
|
49
|
+
});
|
|
31
50
|
//# sourceMappingURL=meta.js.map
|
package/build/cjs/meta.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../../meta.ts"],"sourcesContent":["export * as authentication from '@wix/auto_sdk_identity_authentication/meta';\nexport * as recovery from '@wix/auto_sdk_identity_recovery/meta';\nexport * as verification from '@wix/auto_sdk_identity_verification/meta';\nexport * as oauth from '@wix/auto_sdk_identity_oauth/meta';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAgC;AAChC,eAA0B;AAC1B,mBAA8B;AAC9B,YAAuB;","names":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as auto_sdk_identity_authentication from '@wix/auto_sdk_identity_authentication';
|
|
2
|
+
export { auto_sdk_identity_authentication as authentication };
|
|
3
|
+
import * as auto_sdk_identity_recovery from '@wix/auto_sdk_identity_recovery';
|
|
4
|
+
export { auto_sdk_identity_recovery as recovery };
|
|
5
|
+
import * as auto_sdk_identity_verification from '@wix/auto_sdk_identity_verification';
|
|
6
|
+
export { auto_sdk_identity_verification as verification };
|
|
7
|
+
import * as auto_sdk_identity_oauth from '@wix/auto_sdk_identity_oauth';
|
|
8
|
+
export { auto_sdk_identity_oauth as oauth };
|
|
9
|
+
import '@wix/auto_sdk_identity_authentication/meta';
|
|
10
|
+
import '@wix/auto_sdk_identity_recovery/meta';
|
|
11
|
+
import '@wix/auto_sdk_identity_verification/meta';
|
|
12
|
+
import '@wix/auto_sdk_identity_oauth/meta';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// index.ts
|
|
2
|
+
import * as authentication from "@wix/auto_sdk_identity_authentication";
|
|
3
|
+
import * as recovery from "@wix/auto_sdk_identity_recovery";
|
|
4
|
+
import * as verification from "@wix/auto_sdk_identity_verification";
|
|
5
|
+
import * as oauth from "@wix/auto_sdk_identity_oauth";
|
|
6
|
+
export {
|
|
7
|
+
authentication,
|
|
8
|
+
oauth,
|
|
9
|
+
recovery,
|
|
10
|
+
verification
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../index.ts"],"sourcesContent":["import * as authentication from '@wix/auto_sdk_identity_authentication';\nimport * as recovery from '@wix/auto_sdk_identity_recovery';\nimport * as verification from '@wix/auto_sdk_identity_verification';\nimport * as oauth from '@wix/auto_sdk_identity_oauth';\n\nexport { authentication, recovery, verification, oauth };\n"],"mappings":";AAAA,YAAY,oBAAoB;AAChC,YAAY,cAAc;AAC1B,YAAY,kBAAkB;AAC9B,YAAY,WAAW;","names":[]}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as meta from '@wix/auto_sdk_identity_authentication/meta';
|
|
2
|
+
export { meta as authentication };
|
|
3
|
+
import * as meta$1 from '@wix/auto_sdk_identity_recovery/meta';
|
|
4
|
+
export { meta$1 as recovery };
|
|
5
|
+
import * as meta$2 from '@wix/auto_sdk_identity_verification/meta';
|
|
6
|
+
export { meta$2 as verification };
|
|
7
|
+
import * as meta$3 from '@wix/auto_sdk_identity_oauth/meta';
|
|
8
|
+
export { meta$3 as oauth };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// meta.ts
|
|
2
|
+
import * as authentication from "@wix/auto_sdk_identity_authentication/meta";
|
|
3
|
+
import * as recovery from "@wix/auto_sdk_identity_recovery/meta";
|
|
4
|
+
import * as verification from "@wix/auto_sdk_identity_verification/meta";
|
|
5
|
+
import * as oauth from "@wix/auto_sdk_identity_oauth/meta";
|
|
6
|
+
export {
|
|
7
|
+
authentication,
|
|
8
|
+
oauth,
|
|
9
|
+
recovery,
|
|
10
|
+
verification
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=meta.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../meta.ts"],"sourcesContent":["export * as authentication from '@wix/auto_sdk_identity_authentication/meta';\nexport * as recovery from '@wix/auto_sdk_identity_recovery/meta';\nexport * as verification from '@wix/auto_sdk_identity_verification/meta';\nexport * as oauth from '@wix/auto_sdk_identity_oauth/meta';\n"],"mappings":";AAAA,YAAY,oBAAoB;AAChC,YAAY,cAAc;AAC1B,YAAY,kBAAkB;AAC9B,YAAY,WAAW;","names":[]}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
|
|
3
|
-
import * as
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as auto_sdk_identity_authentication from '@wix/auto_sdk_identity_authentication';
|
|
2
|
+
export { auto_sdk_identity_authentication as authentication };
|
|
3
|
+
import * as auto_sdk_identity_recovery from '@wix/auto_sdk_identity_recovery';
|
|
4
|
+
export { auto_sdk_identity_recovery as recovery };
|
|
5
|
+
import * as auto_sdk_identity_verification from '@wix/auto_sdk_identity_verification';
|
|
6
|
+
export { auto_sdk_identity_verification as verification };
|
|
7
|
+
import * as auto_sdk_identity_oauth from '@wix/auto_sdk_identity_oauth';
|
|
8
|
+
export { auto_sdk_identity_oauth as oauth };
|
|
9
|
+
import '@wix/auto_sdk_identity_authentication/meta';
|
|
10
|
+
import '@wix/auto_sdk_identity_recovery/meta';
|
|
11
|
+
import '@wix/auto_sdk_identity_verification/meta';
|
|
12
|
+
import '@wix/auto_sdk_identity_oauth/meta';
|
|
@@ -1,35 +1,50 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
24
19
|
};
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// index.ts
|
|
31
|
+
var index_exports = {};
|
|
32
|
+
__export(index_exports, {
|
|
33
|
+
authentication: () => authentication,
|
|
34
|
+
oauth: () => oauth,
|
|
35
|
+
recovery: () => recovery,
|
|
36
|
+
verification: () => verification
|
|
37
|
+
});
|
|
38
|
+
module.exports = __toCommonJS(index_exports);
|
|
39
|
+
var authentication = __toESM(require("@wix/auto_sdk_identity_authentication"));
|
|
40
|
+
var recovery = __toESM(require("@wix/auto_sdk_identity_recovery"));
|
|
41
|
+
var verification = __toESM(require("@wix/auto_sdk_identity_verification"));
|
|
42
|
+
var oauth = __toESM(require("@wix/auto_sdk_identity_oauth"));
|
|
43
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
44
|
+
0 && (module.exports = {
|
|
45
|
+
authentication,
|
|
46
|
+
oauth,
|
|
47
|
+
recovery,
|
|
48
|
+
verification
|
|
49
|
+
});
|
|
35
50
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../../../index.ts"],"sourcesContent":["import * as authentication from '@wix/auto_sdk_identity_authentication';\nimport * as recovery from '@wix/auto_sdk_identity_recovery';\nimport * as verification from '@wix/auto_sdk_identity_verification';\nimport * as oauth from '@wix/auto_sdk_identity_oauth';\n\nexport { authentication, recovery, verification, oauth };\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAgC;AAChC,eAA0B;AAC1B,mBAA8B;AAC9B,YAAuB;","names":[]}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
export
|
|
1
|
+
import * as meta from '@wix/auto_sdk_identity_authentication/meta';
|
|
2
|
+
export { meta as authentication };
|
|
3
|
+
import * as meta$1 from '@wix/auto_sdk_identity_recovery/meta';
|
|
4
|
+
export { meta$1 as recovery };
|
|
5
|
+
import * as meta$2 from '@wix/auto_sdk_identity_verification/meta';
|
|
6
|
+
export { meta$2 as verification };
|
|
7
|
+
import * as meta$3 from '@wix/auto_sdk_identity_oauth/meta';
|
|
8
|
+
export { meta$3 as oauth };
|
|
@@ -1,31 +1,50 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
24
19
|
};
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// meta.ts
|
|
31
|
+
var meta_exports = {};
|
|
32
|
+
__export(meta_exports, {
|
|
33
|
+
authentication: () => authentication,
|
|
34
|
+
oauth: () => oauth,
|
|
35
|
+
recovery: () => recovery,
|
|
36
|
+
verification: () => verification
|
|
37
|
+
});
|
|
38
|
+
module.exports = __toCommonJS(meta_exports);
|
|
39
|
+
var authentication = __toESM(require("@wix/auto_sdk_identity_authentication/meta"));
|
|
40
|
+
var recovery = __toESM(require("@wix/auto_sdk_identity_recovery/meta"));
|
|
41
|
+
var verification = __toESM(require("@wix/auto_sdk_identity_verification/meta"));
|
|
42
|
+
var oauth = __toESM(require("@wix/auto_sdk_identity_oauth/meta"));
|
|
43
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
44
|
+
0 && (module.exports = {
|
|
45
|
+
authentication,
|
|
46
|
+
oauth,
|
|
47
|
+
recovery,
|
|
48
|
+
verification
|
|
49
|
+
});
|
|
31
50
|
//# sourceMappingURL=meta.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../../../meta.ts"],"sourcesContent":["export * as authentication from '@wix/auto_sdk_identity_authentication/meta';\nexport * as recovery from '@wix/auto_sdk_identity_recovery/meta';\nexport * as verification from '@wix/auto_sdk_identity_verification/meta';\nexport * as oauth from '@wix/auto_sdk_identity_oauth/meta';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAgC;AAChC,eAA0B;AAC1B,mBAA8B;AAC9B,YAAuB;","names":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as auto_sdk_identity_authentication from '@wix/auto_sdk_identity_authentication';
|
|
2
|
+
export { auto_sdk_identity_authentication as authentication };
|
|
3
|
+
import * as auto_sdk_identity_recovery from '@wix/auto_sdk_identity_recovery';
|
|
4
|
+
export { auto_sdk_identity_recovery as recovery };
|
|
5
|
+
import * as auto_sdk_identity_verification from '@wix/auto_sdk_identity_verification';
|
|
6
|
+
export { auto_sdk_identity_verification as verification };
|
|
7
|
+
import * as auto_sdk_identity_oauth from '@wix/auto_sdk_identity_oauth';
|
|
8
|
+
export { auto_sdk_identity_oauth as oauth };
|
|
9
|
+
import '@wix/auto_sdk_identity_authentication/meta';
|
|
10
|
+
import '@wix/auto_sdk_identity_recovery/meta';
|
|
11
|
+
import '@wix/auto_sdk_identity_verification/meta';
|
|
12
|
+
import '@wix/auto_sdk_identity_oauth/meta';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// index.ts
|
|
2
|
+
import * as authentication from "@wix/auto_sdk_identity_authentication";
|
|
3
|
+
import * as recovery from "@wix/auto_sdk_identity_recovery";
|
|
4
|
+
import * as verification from "@wix/auto_sdk_identity_verification";
|
|
5
|
+
import * as oauth from "@wix/auto_sdk_identity_oauth";
|
|
6
|
+
export {
|
|
7
|
+
authentication,
|
|
8
|
+
oauth,
|
|
9
|
+
recovery,
|
|
10
|
+
verification
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../index.ts"],"sourcesContent":["import * as authentication from '@wix/auto_sdk_identity_authentication';\nimport * as recovery from '@wix/auto_sdk_identity_recovery';\nimport * as verification from '@wix/auto_sdk_identity_verification';\nimport * as oauth from '@wix/auto_sdk_identity_oauth';\n\nexport { authentication, recovery, verification, oauth };\n"],"mappings":";AAAA,YAAY,oBAAoB;AAChC,YAAY,cAAc;AAC1B,YAAY,kBAAkB;AAC9B,YAAY,WAAW;","names":[]}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as meta from '@wix/auto_sdk_identity_authentication/meta';
|
|
2
|
+
export { meta as authentication };
|
|
3
|
+
import * as meta$1 from '@wix/auto_sdk_identity_recovery/meta';
|
|
4
|
+
export { meta$1 as recovery };
|
|
5
|
+
import * as meta$2 from '@wix/auto_sdk_identity_verification/meta';
|
|
6
|
+
export { meta$2 as verification };
|
|
7
|
+
import * as meta$3 from '@wix/auto_sdk_identity_oauth/meta';
|
|
8
|
+
export { meta$3 as oauth };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// meta.ts
|
|
2
|
+
import * as authentication from "@wix/auto_sdk_identity_authentication/meta";
|
|
3
|
+
import * as recovery from "@wix/auto_sdk_identity_recovery/meta";
|
|
4
|
+
import * as verification from "@wix/auto_sdk_identity_verification/meta";
|
|
5
|
+
import * as oauth from "@wix/auto_sdk_identity_oauth/meta";
|
|
6
|
+
export {
|
|
7
|
+
authentication,
|
|
8
|
+
oauth,
|
|
9
|
+
recovery,
|
|
10
|
+
verification
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=meta.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../meta.ts"],"sourcesContent":["export * as authentication from '@wix/auto_sdk_identity_authentication/meta';\nexport * as recovery from '@wix/auto_sdk_identity_recovery/meta';\nexport * as verification from '@wix/auto_sdk_identity_verification/meta';\nexport * as oauth from '@wix/auto_sdk_identity_oauth/meta';\n"],"mappings":";AAAA,YAAY,oBAAoB;AAChC,YAAY,cAAc;AAC1B,YAAY,kBAAkB;AAC9B,YAAY,WAAW;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/identity",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.137",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
],
|
|
13
13
|
"sideEffects": false,
|
|
14
14
|
"main": "./build/cjs/index.js",
|
|
15
|
-
"types": "./build/
|
|
15
|
+
"types": "./build/cjs/index.d.ts",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"import": "./build/es/index.
|
|
18
|
+
"import": "./build/es/index.mjs",
|
|
19
19
|
"require": "./build/cjs/index.js",
|
|
20
|
-
"types": "./build/es/index.d.
|
|
20
|
+
"types": "./build/es/index.d.mts"
|
|
21
21
|
},
|
|
22
22
|
"./package.json": "./package.json",
|
|
23
23
|
"./meta": {
|
|
24
|
-
"import": "./build/es/meta.
|
|
24
|
+
"import": "./build/es/meta.mjs",
|
|
25
25
|
"require": "./build/cjs/meta.js",
|
|
26
|
-
"types": "./build/es/meta.d.
|
|
26
|
+
"types": "./build/es/meta.d.mts"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
@@ -32,16 +32,17 @@
|
|
|
32
32
|
"service-plugins"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@wix/auto_sdk_identity_authentication": "1.0.
|
|
36
|
-
"@wix/auto_sdk_identity_oauth": "1.0.
|
|
37
|
-
"@wix/auto_sdk_identity_recovery": "1.0.
|
|
38
|
-
"@wix/auto_sdk_identity_verification": "1.0.
|
|
35
|
+
"@wix/auto_sdk_identity_authentication": "1.0.13",
|
|
36
|
+
"@wix/auto_sdk_identity_oauth": "1.0.11",
|
|
37
|
+
"@wix/auto_sdk_identity_recovery": "1.0.13",
|
|
38
|
+
"@wix/auto_sdk_identity_verification": "1.0.14"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
+
"tsup": "^8.4.0",
|
|
41
42
|
"typescript": "^5.3.2"
|
|
42
43
|
},
|
|
43
44
|
"scripts": {
|
|
44
|
-
"build": "
|
|
45
|
+
"build": "tsup",
|
|
45
46
|
"test": ":"
|
|
46
47
|
},
|
|
47
48
|
"wix": {
|
|
@@ -55,5 +56,5 @@
|
|
|
55
56
|
"fqdn": ""
|
|
56
57
|
}
|
|
57
58
|
},
|
|
58
|
-
"falconPackageHash": "
|
|
59
|
+
"falconPackageHash": "e34d4b9efb889d7b0485b59b86ce26c35586f5bff9c15cc58b4edc11"
|
|
59
60
|
}
|
package/build/es/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as authentication from '@wix/auto_sdk_identity_authentication';
|
|
2
|
-
import * as recovery from '@wix/auto_sdk_identity_recovery';
|
|
3
|
-
import * as verification from '@wix/auto_sdk_identity_verification';
|
|
4
|
-
import * as oauth from '@wix/auto_sdk_identity_oauth';
|
|
5
|
-
export { authentication, recovery, verification, oauth };
|
package/build/es/index.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as authentication from '@wix/auto_sdk_identity_authentication';
|
|
2
|
-
import * as recovery from '@wix/auto_sdk_identity_recovery';
|
|
3
|
-
import * as verification from '@wix/auto_sdk_identity_verification';
|
|
4
|
-
import * as oauth from '@wix/auto_sdk_identity_oauth';
|
|
5
|
-
export { authentication, recovery, verification, oauth };
|
|
6
|
-
//# sourceMappingURL=index.js.map
|
package/build/es/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,uCAAuC,CAAC;AACxE,OAAO,KAAK,QAAQ,MAAM,iCAAiC,CAAC;AAC5D,OAAO,KAAK,YAAY,MAAM,qCAAqC,CAAC;AACpE,OAAO,KAAK,KAAK,MAAM,8BAA8B,CAAC;AAEtD,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC"}
|
package/build/es/meta.d.ts
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * as authentication from '@wix/auto_sdk_identity_authentication/meta';
|
|
2
|
-
export * as recovery from '@wix/auto_sdk_identity_recovery/meta';
|
|
3
|
-
export * as verification from '@wix/auto_sdk_identity_verification/meta';
|
|
4
|
-
export * as oauth from '@wix/auto_sdk_identity_oauth/meta';
|
package/build/es/meta.js
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * as authentication from '@wix/auto_sdk_identity_authentication/meta';
|
|
2
|
-
export * as recovery from '@wix/auto_sdk_identity_recovery/meta';
|
|
3
|
-
export * as verification from '@wix/auto_sdk_identity_verification/meta';
|
|
4
|
-
export * as oauth from '@wix/auto_sdk_identity_oauth/meta';
|
|
5
|
-
//# sourceMappingURL=meta.js.map
|
package/build/es/meta.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,4CAA4C,CAAC;AAC7E,OAAO,KAAK,QAAQ,MAAM,sCAAsC,CAAC;AACjE,OAAO,KAAK,YAAY,MAAM,0CAA0C,CAAC;AACzE,OAAO,KAAK,KAAK,MAAM,mCAAmC,CAAC"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as authentication from '@wix/auto_sdk_identity_authentication';
|
|
2
|
-
import * as recovery from '@wix/auto_sdk_identity_recovery';
|
|
3
|
-
import * as verification from '@wix/auto_sdk_identity_verification';
|
|
4
|
-
import * as oauth from '@wix/auto_sdk_identity_oauth';
|
|
5
|
-
export { authentication, recovery, verification, oauth };
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as authentication from '@wix/auto_sdk_identity_authentication';
|
|
2
|
-
import * as recovery from '@wix/auto_sdk_identity_recovery';
|
|
3
|
-
import * as verification from '@wix/auto_sdk_identity_verification';
|
|
4
|
-
import * as oauth from '@wix/auto_sdk_identity_oauth';
|
|
5
|
-
export { authentication, recovery, verification, oauth };
|
|
6
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,uCAAuC,CAAC;AACxE,OAAO,KAAK,QAAQ,MAAM,iCAAiC,CAAC;AAC5D,OAAO,KAAK,YAAY,MAAM,qCAAqC,CAAC;AACpE,OAAO,KAAK,KAAK,MAAM,8BAA8B,CAAC;AAEtD,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC"}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * as authentication from '@wix/auto_sdk_identity_authentication/meta';
|
|
2
|
-
export * as recovery from '@wix/auto_sdk_identity_recovery/meta';
|
|
3
|
-
export * as verification from '@wix/auto_sdk_identity_verification/meta';
|
|
4
|
-
export * as oauth from '@wix/auto_sdk_identity_oauth/meta';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * as authentication from '@wix/auto_sdk_identity_authentication/meta';
|
|
2
|
-
export * as recovery from '@wix/auto_sdk_identity_recovery/meta';
|
|
3
|
-
export * as verification from '@wix/auto_sdk_identity_verification/meta';
|
|
4
|
-
export * as oauth from '@wix/auto_sdk_identity_oauth/meta';
|
|
5
|
-
//# sourceMappingURL=meta.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"meta.js","sourceRoot":"","sources":["../../../meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,4CAA4C,CAAC;AAC7E,OAAO,KAAK,QAAQ,MAAM,sCAAsC,CAAC;AACjE,OAAO,KAAK,YAAY,MAAM,0CAA0C,CAAC;AACzE,OAAO,KAAK,KAAK,MAAM,mCAAmC,CAAC"}
|