diff --git a/.github/persona-brain/memory.json b/.github/persona-brain/memory.json index 8d9ff5ab..ed1a08a5 100644 --- a/.github/persona-brain/memory.json +++ b/.github/persona-brain/memory.json @@ -153,7 +153,7 @@ }, "agent_bulletin_board": { "notion_page_id": "7551273869b3485ca4b0f7f5cc9b8f37", - "last_read_at": "2026-03-20 20:39:38+08:00", + "last_read_at": "2026-03-21 06:16:20+08:00", "pending_cluster_orders": 0, "executed_orders": [ "WO-CLUSTER-001" diff --git a/data/bulletin-board/dashboard.json b/data/bulletin-board/dashboard.json index 50e69cd7..40f273e5 100644 --- a/data/bulletin-board/dashboard.json +++ b/data/bulletin-board/dashboard.json @@ -1,6 +1,6 @@ { "commander": "铸渊", - "timestamp": "2026-03-20 20:39:36+08:00", + "timestamp": "2026-03-21 06:16:24+08:00", "global_view": { "total_soldiers": 60, "healthy": 0, diff --git a/node_modules/crypto-js/CONTRIBUTING.md b/node_modules/crypto-js/CONTRIBUTING.md deleted file mode 100644 index 09bf774a..00000000 --- a/node_modules/crypto-js/CONTRIBUTING.md +++ /dev/null @@ -1,28 +0,0 @@ -# Contribution - -# Git Flow - -The crypto-js project uses [git flow](https://github.com/nvie/gitflow) to manage branches. -Do your changes on the `develop` or even better on a `feature/*` branch. Don't do any changes on the `master` branch. - -# Pull request - -Target your pull request on `develop` branch. Other pull request won't be accepted. - -# How to build - -1. Clone - -2. Run - - ```sh - npm install - ``` - -3. Run - - ```sh - npm run build - ``` - -4. Check `build` folder \ No newline at end of file diff --git a/node_modules/crypto-js/LICENSE b/node_modules/crypto-js/LICENSE deleted file mode 100644 index b0828e52..00000000 --- a/node_modules/crypto-js/LICENSE +++ /dev/null @@ -1,24 +0,0 @@ -# License - -[The MIT License (MIT)](http://opensource.org/licenses/MIT) - -Copyright (c) 2009-2013 Jeff Mott -Copyright (c) 2013-2016 Evan Vosberg - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/crypto-js/README.md b/node_modules/crypto-js/README.md deleted file mode 100644 index 6a9bcdf9..00000000 --- a/node_modules/crypto-js/README.md +++ /dev/null @@ -1,275 +0,0 @@ -# crypto-js - -JavaScript library of crypto standards. - -## Discontinued - -Active development of CryptoJS has been discontinued. This library is no longer maintained. - -Nowadays, NodeJS and modern browsers have a native `Crypto` module. The latest version of CryptoJS already uses the native Crypto module for random number generation, since `Math.random()` is not crypto-safe. Further development of CryptoJS would result in it only being a wrapper of native Crypto. Therefore, development and maintenance has been discontinued, it is time to go for the native `crypto` module. - -## Node.js (Install) - -Requirements: - -- Node.js -- npm (Node.js package manager) - -```bash -npm install crypto-js -``` - -### Usage - -ES6 import for typical API call signing use case: - -```javascript -import sha256 from 'crypto-js/sha256'; -import hmacSHA512 from 'crypto-js/hmac-sha512'; -import Base64 from 'crypto-js/enc-base64'; - -const message, nonce, path, privateKey; // ... -const hashDigest = sha256(nonce + message); -const hmacDigest = Base64.stringify(hmacSHA512(path + hashDigest, privateKey)); -``` - -Modular include: - -```javascript -var AES = require("crypto-js/aes"); -var SHA256 = require("crypto-js/sha256"); -... -console.log(SHA256("Message")); -``` - -Including all libraries, for access to extra methods: - -```javascript -var CryptoJS = require("crypto-js"); -console.log(CryptoJS.HmacSHA1("Message", "Key")); -``` - -## Client (browser) - -Requirements: - -- Node.js -- Bower (package manager for frontend) - -```bash -bower install crypto-js -``` - -### Usage - -Modular include: - -```javascript -require.config({ - packages: [ - { - name: 'crypto-js', - location: 'path-to/bower_components/crypto-js', - main: 'index' - } - ] -}); - -require(["crypto-js/aes", "crypto-js/sha256"], function (AES, SHA256) { - console.log(SHA256("Message")); -}); -``` - -Including all libraries, for access to extra methods: - -```javascript -// Above-mentioned will work or use this simple form -require.config({ - paths: { - 'crypto-js': 'path-to/bower_components/crypto-js/crypto-js' - } -}); - -require(["crypto-js"], function (CryptoJS) { - console.log(CryptoJS.HmacSHA1("Message", "Key")); -}); -``` - -### Usage without RequireJS - -```html - - -``` - -## API - -See: https://cryptojs.gitbook.io/docs/ - -### AES Encryption - -#### Plain text encryption - -```javascript -var CryptoJS = require("crypto-js"); - -// Encrypt -var ciphertext = CryptoJS.AES.encrypt('my message', 'secret key 123').toString(); - -// Decrypt -var bytes = CryptoJS.AES.decrypt(ciphertext, 'secret key 123'); -var originalText = bytes.toString(CryptoJS.enc.Utf8); - -console.log(originalText); // 'my message' -``` - -#### Object encryption - -```javascript -var CryptoJS = require("crypto-js"); - -var data = [{id: 1}, {id: 2}] - -// Encrypt -var ciphertext = CryptoJS.AES.encrypt(JSON.stringify(data), 'secret key 123').toString(); - -// Decrypt -var bytes = CryptoJS.AES.decrypt(ciphertext, 'secret key 123'); -var decryptedData = JSON.parse(bytes.toString(CryptoJS.enc.Utf8)); - -console.log(decryptedData); // [{id: 1}, {id: 2}] -``` - -### List of modules - - -- ```crypto-js/core``` -- ```crypto-js/x64-core``` -- ```crypto-js/lib-typedarrays``` - ---- - -- ```crypto-js/md5``` -- ```crypto-js/sha1``` -- ```crypto-js/sha256``` -- ```crypto-js/sha224``` -- ```crypto-js/sha512``` -- ```crypto-js/sha384``` -- ```crypto-js/sha3``` -- ```crypto-js/ripemd160``` - ---- - -- ```crypto-js/hmac-md5``` -- ```crypto-js/hmac-sha1``` -- ```crypto-js/hmac-sha256``` -- ```crypto-js/hmac-sha224``` -- ```crypto-js/hmac-sha512``` -- ```crypto-js/hmac-sha384``` -- ```crypto-js/hmac-sha3``` -- ```crypto-js/hmac-ripemd160``` - ---- - -- ```crypto-js/pbkdf2``` - ---- - -- ```crypto-js/aes``` -- ```crypto-js/tripledes``` -- ```crypto-js/rc4``` -- ```crypto-js/rabbit``` -- ```crypto-js/rabbit-legacy``` -- ```crypto-js/evpkdf``` - ---- - -- ```crypto-js/format-openssl``` -- ```crypto-js/format-hex``` - ---- - -- ```crypto-js/enc-latin1``` -- ```crypto-js/enc-utf8``` -- ```crypto-js/enc-hex``` -- ```crypto-js/enc-utf16``` -- ```crypto-js/enc-base64``` - ---- - -- ```crypto-js/mode-cfb``` -- ```crypto-js/mode-ctr``` -- ```crypto-js/mode-ctr-gladman``` -- ```crypto-js/mode-ofb``` -- ```crypto-js/mode-ecb``` - ---- - -- ```crypto-js/pad-pkcs7``` -- ```crypto-js/pad-ansix923``` -- ```crypto-js/pad-iso10126``` -- ```crypto-js/pad-iso97971``` -- ```crypto-js/pad-zeropadding``` -- ```crypto-js/pad-nopadding``` - - -## Release notes - -### 4.2.0 - -Change default hash algorithm and iteration's for PBKDF2 to prevent weak security by using the default configuration. - -Custom KDF Hasher - -Blowfish support - -### 4.1.1 - -Fix module order in bundled release. - -Include the browser field in the released package.json. - -### 4.1.0 - -Added url safe variant of base64 encoding. [357](https://github.com/brix/crypto-js/pull/357) - -Avoid webpack to add crypto-browser package. [364](https://github.com/brix/crypto-js/pull/364) - -### 4.0.0 - -This is an update including breaking changes for some environments. - -In this version `Math.random()` has been replaced by the random methods of the native crypto module. - -For this reason CryptoJS might not run in some JavaScript environments without native crypto module. Such as IE 10 or before or React Native. - -### 3.3.0 - -Rollback, `3.3.0` is the same as `3.1.9-1`. - -The move of using native secure crypto module will be shifted to a new `4.x.x` version. As it is a breaking change the impact is too big for a minor release. - -### 3.2.1 - -The usage of the native crypto module has been fixed. The import and access of the native crypto module has been improved. - -### 3.2.0 - -In this version `Math.random()` has been replaced by the random methods of the native crypto module. - -For this reason CryptoJS might does not run in some JavaScript environments without native crypto module. Such as IE 10 or before. - -If it's absolute required to run CryptoJS in such an environment, stay with `3.1.x` version. Encrypting and decrypting stays compatible. But keep in mind `3.1.x` versions still use `Math.random()` which is cryptographically not secure, as it's not random enough. - -This version came along with `CRITICAL` `BUG`. - -DO NOT USE THIS VERSION! Please, go for a newer version! - -### 3.1.x - -The `3.1.x` are based on the original CryptoJS, wrapped in CommonJS modules. - - diff --git a/node_modules/crypto-js/aes.js b/node_modules/crypto-js/aes.js deleted file mode 100644 index 166e3eac..00000000 --- a/node_modules/crypto-js/aes.js +++ /dev/null @@ -1,234 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./enc-base64", "./md5", "./evpkdf", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var BlockCipher = C_lib.BlockCipher; - var C_algo = C.algo; - - // Lookup tables - var SBOX = []; - var INV_SBOX = []; - var SUB_MIX_0 = []; - var SUB_MIX_1 = []; - var SUB_MIX_2 = []; - var SUB_MIX_3 = []; - var INV_SUB_MIX_0 = []; - var INV_SUB_MIX_1 = []; - var INV_SUB_MIX_2 = []; - var INV_SUB_MIX_3 = []; - - // Compute lookup tables - (function () { - // Compute double table - var d = []; - for (var i = 0; i < 256; i++) { - if (i < 128) { - d[i] = i << 1; - } else { - d[i] = (i << 1) ^ 0x11b; - } - } - - // Walk GF(2^8) - var x = 0; - var xi = 0; - for (var i = 0; i < 256; i++) { - // Compute sbox - var sx = xi ^ (xi << 1) ^ (xi << 2) ^ (xi << 3) ^ (xi << 4); - sx = (sx >>> 8) ^ (sx & 0xff) ^ 0x63; - SBOX[x] = sx; - INV_SBOX[sx] = x; - - // Compute multiplication - var x2 = d[x]; - var x4 = d[x2]; - var x8 = d[x4]; - - // Compute sub bytes, mix columns tables - var t = (d[sx] * 0x101) ^ (sx * 0x1010100); - SUB_MIX_0[x] = (t << 24) | (t >>> 8); - SUB_MIX_1[x] = (t << 16) | (t >>> 16); - SUB_MIX_2[x] = (t << 8) | (t >>> 24); - SUB_MIX_3[x] = t; - - // Compute inv sub bytes, inv mix columns tables - var t = (x8 * 0x1010101) ^ (x4 * 0x10001) ^ (x2 * 0x101) ^ (x * 0x1010100); - INV_SUB_MIX_0[sx] = (t << 24) | (t >>> 8); - INV_SUB_MIX_1[sx] = (t << 16) | (t >>> 16); - INV_SUB_MIX_2[sx] = (t << 8) | (t >>> 24); - INV_SUB_MIX_3[sx] = t; - - // Compute next counter - if (!x) { - x = xi = 1; - } else { - x = x2 ^ d[d[d[x8 ^ x2]]]; - xi ^= d[d[xi]]; - } - } - }()); - - // Precomputed Rcon lookup - var RCON = [0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36]; - - /** - * AES block cipher algorithm. - */ - var AES = C_algo.AES = BlockCipher.extend({ - _doReset: function () { - var t; - - // Skip reset of nRounds has been set before and key did not change - if (this._nRounds && this._keyPriorReset === this._key) { - return; - } - - // Shortcuts - var key = this._keyPriorReset = this._key; - var keyWords = key.words; - var keySize = key.sigBytes / 4; - - // Compute number of rounds - var nRounds = this._nRounds = keySize + 6; - - // Compute number of key schedule rows - var ksRows = (nRounds + 1) * 4; - - // Compute key schedule - var keySchedule = this._keySchedule = []; - for (var ksRow = 0; ksRow < ksRows; ksRow++) { - if (ksRow < keySize) { - keySchedule[ksRow] = keyWords[ksRow]; - } else { - t = keySchedule[ksRow - 1]; - - if (!(ksRow % keySize)) { - // Rot word - t = (t << 8) | (t >>> 24); - - // Sub word - t = (SBOX[t >>> 24] << 24) | (SBOX[(t >>> 16) & 0xff] << 16) | (SBOX[(t >>> 8) & 0xff] << 8) | SBOX[t & 0xff]; - - // Mix Rcon - t ^= RCON[(ksRow / keySize) | 0] << 24; - } else if (keySize > 6 && ksRow % keySize == 4) { - // Sub word - t = (SBOX[t >>> 24] << 24) | (SBOX[(t >>> 16) & 0xff] << 16) | (SBOX[(t >>> 8) & 0xff] << 8) | SBOX[t & 0xff]; - } - - keySchedule[ksRow] = keySchedule[ksRow - keySize] ^ t; - } - } - - // Compute inv key schedule - var invKeySchedule = this._invKeySchedule = []; - for (var invKsRow = 0; invKsRow < ksRows; invKsRow++) { - var ksRow = ksRows - invKsRow; - - if (invKsRow % 4) { - var t = keySchedule[ksRow]; - } else { - var t = keySchedule[ksRow - 4]; - } - - if (invKsRow < 4 || ksRow <= 4) { - invKeySchedule[invKsRow] = t; - } else { - invKeySchedule[invKsRow] = INV_SUB_MIX_0[SBOX[t >>> 24]] ^ INV_SUB_MIX_1[SBOX[(t >>> 16) & 0xff]] ^ - INV_SUB_MIX_2[SBOX[(t >>> 8) & 0xff]] ^ INV_SUB_MIX_3[SBOX[t & 0xff]]; - } - } - }, - - encryptBlock: function (M, offset) { - this._doCryptBlock(M, offset, this._keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX); - }, - - decryptBlock: function (M, offset) { - // Swap 2nd and 4th rows - var t = M[offset + 1]; - M[offset + 1] = M[offset + 3]; - M[offset + 3] = t; - - this._doCryptBlock(M, offset, this._invKeySchedule, INV_SUB_MIX_0, INV_SUB_MIX_1, INV_SUB_MIX_2, INV_SUB_MIX_3, INV_SBOX); - - // Inv swap 2nd and 4th rows - var t = M[offset + 1]; - M[offset + 1] = M[offset + 3]; - M[offset + 3] = t; - }, - - _doCryptBlock: function (M, offset, keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX) { - // Shortcut - var nRounds = this._nRounds; - - // Get input, add round key - var s0 = M[offset] ^ keySchedule[0]; - var s1 = M[offset + 1] ^ keySchedule[1]; - var s2 = M[offset + 2] ^ keySchedule[2]; - var s3 = M[offset + 3] ^ keySchedule[3]; - - // Key schedule row counter - var ksRow = 4; - - // Rounds - for (var round = 1; round < nRounds; round++) { - // Shift rows, sub bytes, mix columns, add round key - var t0 = SUB_MIX_0[s0 >>> 24] ^ SUB_MIX_1[(s1 >>> 16) & 0xff] ^ SUB_MIX_2[(s2 >>> 8) & 0xff] ^ SUB_MIX_3[s3 & 0xff] ^ keySchedule[ksRow++]; - var t1 = SUB_MIX_0[s1 >>> 24] ^ SUB_MIX_1[(s2 >>> 16) & 0xff] ^ SUB_MIX_2[(s3 >>> 8) & 0xff] ^ SUB_MIX_3[s0 & 0xff] ^ keySchedule[ksRow++]; - var t2 = SUB_MIX_0[s2 >>> 24] ^ SUB_MIX_1[(s3 >>> 16) & 0xff] ^ SUB_MIX_2[(s0 >>> 8) & 0xff] ^ SUB_MIX_3[s1 & 0xff] ^ keySchedule[ksRow++]; - var t3 = SUB_MIX_0[s3 >>> 24] ^ SUB_MIX_1[(s0 >>> 16) & 0xff] ^ SUB_MIX_2[(s1 >>> 8) & 0xff] ^ SUB_MIX_3[s2 & 0xff] ^ keySchedule[ksRow++]; - - // Update state - s0 = t0; - s1 = t1; - s2 = t2; - s3 = t3; - } - - // Shift rows, sub bytes, add round key - var t0 = ((SBOX[s0 >>> 24] << 24) | (SBOX[(s1 >>> 16) & 0xff] << 16) | (SBOX[(s2 >>> 8) & 0xff] << 8) | SBOX[s3 & 0xff]) ^ keySchedule[ksRow++]; - var t1 = ((SBOX[s1 >>> 24] << 24) | (SBOX[(s2 >>> 16) & 0xff] << 16) | (SBOX[(s3 >>> 8) & 0xff] << 8) | SBOX[s0 & 0xff]) ^ keySchedule[ksRow++]; - var t2 = ((SBOX[s2 >>> 24] << 24) | (SBOX[(s3 >>> 16) & 0xff] << 16) | (SBOX[(s0 >>> 8) & 0xff] << 8) | SBOX[s1 & 0xff]) ^ keySchedule[ksRow++]; - var t3 = ((SBOX[s3 >>> 24] << 24) | (SBOX[(s0 >>> 16) & 0xff] << 16) | (SBOX[(s1 >>> 8) & 0xff] << 8) | SBOX[s2 & 0xff]) ^ keySchedule[ksRow++]; - - // Set output - M[offset] = t0; - M[offset + 1] = t1; - M[offset + 2] = t2; - M[offset + 3] = t3; - }, - - keySize: 256/32 - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.AES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.AES.decrypt(ciphertext, key, cfg); - */ - C.AES = BlockCipher._createHelper(AES); - }()); - - - return CryptoJS.AES; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/blowfish.js b/node_modules/crypto-js/blowfish.js deleted file mode 100644 index 149812ff..00000000 --- a/node_modules/crypto-js/blowfish.js +++ /dev/null @@ -1,471 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./enc-base64", "./md5", "./evpkdf", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var BlockCipher = C_lib.BlockCipher; - var C_algo = C.algo; - - const N = 16; - - //Origin pbox and sbox, derived from PI - const ORIG_P = [ - 0x243F6A88, 0x85A308D3, 0x13198A2E, 0x03707344, - 0xA4093822, 0x299F31D0, 0x082EFA98, 0xEC4E6C89, - 0x452821E6, 0x38D01377, 0xBE5466CF, 0x34E90C6C, - 0xC0AC29B7, 0xC97C50DD, 0x3F84D5B5, 0xB5470917, - 0x9216D5D9, 0x8979FB1B - ]; - - const ORIG_S = [ - [ 0xD1310BA6, 0x98DFB5AC, 0x2FFD72DB, 0xD01ADFB7, - 0xB8E1AFED, 0x6A267E96, 0xBA7C9045, 0xF12C7F99, - 0x24A19947, 0xB3916CF7, 0x0801F2E2, 0x858EFC16, - 0x636920D8, 0x71574E69, 0xA458FEA3, 0xF4933D7E, - 0x0D95748F, 0x728EB658, 0x718BCD58, 0x82154AEE, - 0x7B54A41D, 0xC25A59B5, 0x9C30D539, 0x2AF26013, - 0xC5D1B023, 0x286085F0, 0xCA417918, 0xB8DB38EF, - 0x8E79DCB0, 0x603A180E, 0x6C9E0E8B, 0xB01E8A3E, - 0xD71577C1, 0xBD314B27, 0x78AF2FDA, 0x55605C60, - 0xE65525F3, 0xAA55AB94, 0x57489862, 0x63E81440, - 0x55CA396A, 0x2AAB10B6, 0xB4CC5C34, 0x1141E8CE, - 0xA15486AF, 0x7C72E993, 0xB3EE1411, 0x636FBC2A, - 0x2BA9C55D, 0x741831F6, 0xCE5C3E16, 0x9B87931E, - 0xAFD6BA33, 0x6C24CF5C, 0x7A325381, 0x28958677, - 0x3B8F4898, 0x6B4BB9AF, 0xC4BFE81B, 0x66282193, - 0x61D809CC, 0xFB21A991, 0x487CAC60, 0x5DEC8032, - 0xEF845D5D, 0xE98575B1, 0xDC262302, 0xEB651B88, - 0x23893E81, 0xD396ACC5, 0x0F6D6FF3, 0x83F44239, - 0x2E0B4482, 0xA4842004, 0x69C8F04A, 0x9E1F9B5E, - 0x21C66842, 0xF6E96C9A, 0x670C9C61, 0xABD388F0, - 0x6A51A0D2, 0xD8542F68, 0x960FA728, 0xAB5133A3, - 0x6EEF0B6C, 0x137A3BE4, 0xBA3BF050, 0x7EFB2A98, - 0xA1F1651D, 0x39AF0176, 0x66CA593E, 0x82430E88, - 0x8CEE8619, 0x456F9FB4, 0x7D84A5C3, 0x3B8B5EBE, - 0xE06F75D8, 0x85C12073, 0x401A449F, 0x56C16AA6, - 0x4ED3AA62, 0x363F7706, 0x1BFEDF72, 0x429B023D, - 0x37D0D724, 0xD00A1248, 0xDB0FEAD3, 0x49F1C09B, - 0x075372C9, 0x80991B7B, 0x25D479D8, 0xF6E8DEF7, - 0xE3FE501A, 0xB6794C3B, 0x976CE0BD, 0x04C006BA, - 0xC1A94FB6, 0x409F60C4, 0x5E5C9EC2, 0x196A2463, - 0x68FB6FAF, 0x3E6C53B5, 0x1339B2EB, 0x3B52EC6F, - 0x6DFC511F, 0x9B30952C, 0xCC814544, 0xAF5EBD09, - 0xBEE3D004, 0xDE334AFD, 0x660F2807, 0x192E4BB3, - 0xC0CBA857, 0x45C8740F, 0xD20B5F39, 0xB9D3FBDB, - 0x5579C0BD, 0x1A60320A, 0xD6A100C6, 0x402C7279, - 0x679F25FE, 0xFB1FA3CC, 0x8EA5E9F8, 0xDB3222F8, - 0x3C7516DF, 0xFD616B15, 0x2F501EC8, 0xAD0552AB, - 0x323DB5FA, 0xFD238760, 0x53317B48, 0x3E00DF82, - 0x9E5C57BB, 0xCA6F8CA0, 0x1A87562E, 0xDF1769DB, - 0xD542A8F6, 0x287EFFC3, 0xAC6732C6, 0x8C4F5573, - 0x695B27B0, 0xBBCA58C8, 0xE1FFA35D, 0xB8F011A0, - 0x10FA3D98, 0xFD2183B8, 0x4AFCB56C, 0x2DD1D35B, - 0x9A53E479, 0xB6F84565, 0xD28E49BC, 0x4BFB9790, - 0xE1DDF2DA, 0xA4CB7E33, 0x62FB1341, 0xCEE4C6E8, - 0xEF20CADA, 0x36774C01, 0xD07E9EFE, 0x2BF11FB4, - 0x95DBDA4D, 0xAE909198, 0xEAAD8E71, 0x6B93D5A0, - 0xD08ED1D0, 0xAFC725E0, 0x8E3C5B2F, 0x8E7594B7, - 0x8FF6E2FB, 0xF2122B64, 0x8888B812, 0x900DF01C, - 0x4FAD5EA0, 0x688FC31C, 0xD1CFF191, 0xB3A8C1AD, - 0x2F2F2218, 0xBE0E1777, 0xEA752DFE, 0x8B021FA1, - 0xE5A0CC0F, 0xB56F74E8, 0x18ACF3D6, 0xCE89E299, - 0xB4A84FE0, 0xFD13E0B7, 0x7CC43B81, 0xD2ADA8D9, - 0x165FA266, 0x80957705, 0x93CC7314, 0x211A1477, - 0xE6AD2065, 0x77B5FA86, 0xC75442F5, 0xFB9D35CF, - 0xEBCDAF0C, 0x7B3E89A0, 0xD6411BD3, 0xAE1E7E49, - 0x00250E2D, 0x2071B35E, 0x226800BB, 0x57B8E0AF, - 0x2464369B, 0xF009B91E, 0x5563911D, 0x59DFA6AA, - 0x78C14389, 0xD95A537F, 0x207D5BA2, 0x02E5B9C5, - 0x83260376, 0x6295CFA9, 0x11C81968, 0x4E734A41, - 0xB3472DCA, 0x7B14A94A, 0x1B510052, 0x9A532915, - 0xD60F573F, 0xBC9BC6E4, 0x2B60A476, 0x81E67400, - 0x08BA6FB5, 0x571BE91F, 0xF296EC6B, 0x2A0DD915, - 0xB6636521, 0xE7B9F9B6, 0xFF34052E, 0xC5855664, - 0x53B02D5D, 0xA99F8FA1, 0x08BA4799, 0x6E85076A ], - [ 0x4B7A70E9, 0xB5B32944, 0xDB75092E, 0xC4192623, - 0xAD6EA6B0, 0x49A7DF7D, 0x9CEE60B8, 0x8FEDB266, - 0xECAA8C71, 0x699A17FF, 0x5664526C, 0xC2B19EE1, - 0x193602A5, 0x75094C29, 0xA0591340, 0xE4183A3E, - 0x3F54989A, 0x5B429D65, 0x6B8FE4D6, 0x99F73FD6, - 0xA1D29C07, 0xEFE830F5, 0x4D2D38E6, 0xF0255DC1, - 0x4CDD2086, 0x8470EB26, 0x6382E9C6, 0x021ECC5E, - 0x09686B3F, 0x3EBAEFC9, 0x3C971814, 0x6B6A70A1, - 0x687F3584, 0x52A0E286, 0xB79C5305, 0xAA500737, - 0x3E07841C, 0x7FDEAE5C, 0x8E7D44EC, 0x5716F2B8, - 0xB03ADA37, 0xF0500C0D, 0xF01C1F04, 0x0200B3FF, - 0xAE0CF51A, 0x3CB574B2, 0x25837A58, 0xDC0921BD, - 0xD19113F9, 0x7CA92FF6, 0x94324773, 0x22F54701, - 0x3AE5E581, 0x37C2DADC, 0xC8B57634, 0x9AF3DDA7, - 0xA9446146, 0x0FD0030E, 0xECC8C73E, 0xA4751E41, - 0xE238CD99, 0x3BEA0E2F, 0x3280BBA1, 0x183EB331, - 0x4E548B38, 0x4F6DB908, 0x6F420D03, 0xF60A04BF, - 0x2CB81290, 0x24977C79, 0x5679B072, 0xBCAF89AF, - 0xDE9A771F, 0xD9930810, 0xB38BAE12, 0xDCCF3F2E, - 0x5512721F, 0x2E6B7124, 0x501ADDE6, 0x9F84CD87, - 0x7A584718, 0x7408DA17, 0xBC9F9ABC, 0xE94B7D8C, - 0xEC7AEC3A, 0xDB851DFA, 0x63094366, 0xC464C3D2, - 0xEF1C1847, 0x3215D908, 0xDD433B37, 0x24C2BA16, - 0x12A14D43, 0x2A65C451, 0x50940002, 0x133AE4DD, - 0x71DFF89E, 0x10314E55, 0x81AC77D6, 0x5F11199B, - 0x043556F1, 0xD7A3C76B, 0x3C11183B, 0x5924A509, - 0xF28FE6ED, 0x97F1FBFA, 0x9EBABF2C, 0x1E153C6E, - 0x86E34570, 0xEAE96FB1, 0x860E5E0A, 0x5A3E2AB3, - 0x771FE71C, 0x4E3D06FA, 0x2965DCB9, 0x99E71D0F, - 0x803E89D6, 0x5266C825, 0x2E4CC978, 0x9C10B36A, - 0xC6150EBA, 0x94E2EA78, 0xA5FC3C53, 0x1E0A2DF4, - 0xF2F74EA7, 0x361D2B3D, 0x1939260F, 0x19C27960, - 0x5223A708, 0xF71312B6, 0xEBADFE6E, 0xEAC31F66, - 0xE3BC4595, 0xA67BC883, 0xB17F37D1, 0x018CFF28, - 0xC332DDEF, 0xBE6C5AA5, 0x65582185, 0x68AB9802, - 0xEECEA50F, 0xDB2F953B, 0x2AEF7DAD, 0x5B6E2F84, - 0x1521B628, 0x29076170, 0xECDD4775, 0x619F1510, - 0x13CCA830, 0xEB61BD96, 0x0334FE1E, 0xAA0363CF, - 0xB5735C90, 0x4C70A239, 0xD59E9E0B, 0xCBAADE14, - 0xEECC86BC, 0x60622CA7, 0x9CAB5CAB, 0xB2F3846E, - 0x648B1EAF, 0x19BDF0CA, 0xA02369B9, 0x655ABB50, - 0x40685A32, 0x3C2AB4B3, 0x319EE9D5, 0xC021B8F7, - 0x9B540B19, 0x875FA099, 0x95F7997E, 0x623D7DA8, - 0xF837889A, 0x97E32D77, 0x11ED935F, 0x16681281, - 0x0E358829, 0xC7E61FD6, 0x96DEDFA1, 0x7858BA99, - 0x57F584A5, 0x1B227263, 0x9B83C3FF, 0x1AC24696, - 0xCDB30AEB, 0x532E3054, 0x8FD948E4, 0x6DBC3128, - 0x58EBF2EF, 0x34C6FFEA, 0xFE28ED61, 0xEE7C3C73, - 0x5D4A14D9, 0xE864B7E3, 0x42105D14, 0x203E13E0, - 0x45EEE2B6, 0xA3AAABEA, 0xDB6C4F15, 0xFACB4FD0, - 0xC742F442, 0xEF6ABBB5, 0x654F3B1D, 0x41CD2105, - 0xD81E799E, 0x86854DC7, 0xE44B476A, 0x3D816250, - 0xCF62A1F2, 0x5B8D2646, 0xFC8883A0, 0xC1C7B6A3, - 0x7F1524C3, 0x69CB7492, 0x47848A0B, 0x5692B285, - 0x095BBF00, 0xAD19489D, 0x1462B174, 0x23820E00, - 0x58428D2A, 0x0C55F5EA, 0x1DADF43E, 0x233F7061, - 0x3372F092, 0x8D937E41, 0xD65FECF1, 0x6C223BDB, - 0x7CDE3759, 0xCBEE7460, 0x4085F2A7, 0xCE77326E, - 0xA6078084, 0x19F8509E, 0xE8EFD855, 0x61D99735, - 0xA969A7AA, 0xC50C06C2, 0x5A04ABFC, 0x800BCADC, - 0x9E447A2E, 0xC3453484, 0xFDD56705, 0x0E1E9EC9, - 0xDB73DBD3, 0x105588CD, 0x675FDA79, 0xE3674340, - 0xC5C43465, 0x713E38D8, 0x3D28F89E, 0xF16DFF20, - 0x153E21E7, 0x8FB03D4A, 0xE6E39F2B, 0xDB83ADF7 ], - [ 0xE93D5A68, 0x948140F7, 0xF64C261C, 0x94692934, - 0x411520F7, 0x7602D4F7, 0xBCF46B2E, 0xD4A20068, - 0xD4082471, 0x3320F46A, 0x43B7D4B7, 0x500061AF, - 0x1E39F62E, 0x97244546, 0x14214F74, 0xBF8B8840, - 0x4D95FC1D, 0x96B591AF, 0x70F4DDD3, 0x66A02F45, - 0xBFBC09EC, 0x03BD9785, 0x7FAC6DD0, 0x31CB8504, - 0x96EB27B3, 0x55FD3941, 0xDA2547E6, 0xABCA0A9A, - 0x28507825, 0x530429F4, 0x0A2C86DA, 0xE9B66DFB, - 0x68DC1462, 0xD7486900, 0x680EC0A4, 0x27A18DEE, - 0x4F3FFEA2, 0xE887AD8C, 0xB58CE006, 0x7AF4D6B6, - 0xAACE1E7C, 0xD3375FEC, 0xCE78A399, 0x406B2A42, - 0x20FE9E35, 0xD9F385B9, 0xEE39D7AB, 0x3B124E8B, - 0x1DC9FAF7, 0x4B6D1856, 0x26A36631, 0xEAE397B2, - 0x3A6EFA74, 0xDD5B4332, 0x6841E7F7, 0xCA7820FB, - 0xFB0AF54E, 0xD8FEB397, 0x454056AC, 0xBA489527, - 0x55533A3A, 0x20838D87, 0xFE6BA9B7, 0xD096954B, - 0x55A867BC, 0xA1159A58, 0xCCA92963, 0x99E1DB33, - 0xA62A4A56, 0x3F3125F9, 0x5EF47E1C, 0x9029317C, - 0xFDF8E802, 0x04272F70, 0x80BB155C, 0x05282CE3, - 0x95C11548, 0xE4C66D22, 0x48C1133F, 0xC70F86DC, - 0x07F9C9EE, 0x41041F0F, 0x404779A4, 0x5D886E17, - 0x325F51EB, 0xD59BC0D1, 0xF2BCC18F, 0x41113564, - 0x257B7834, 0x602A9C60, 0xDFF8E8A3, 0x1F636C1B, - 0x0E12B4C2, 0x02E1329E, 0xAF664FD1, 0xCAD18115, - 0x6B2395E0, 0x333E92E1, 0x3B240B62, 0xEEBEB922, - 0x85B2A20E, 0xE6BA0D99, 0xDE720C8C, 0x2DA2F728, - 0xD0127845, 0x95B794FD, 0x647D0862, 0xE7CCF5F0, - 0x5449A36F, 0x877D48FA, 0xC39DFD27, 0xF33E8D1E, - 0x0A476341, 0x992EFF74, 0x3A6F6EAB, 0xF4F8FD37, - 0xA812DC60, 0xA1EBDDF8, 0x991BE14C, 0xDB6E6B0D, - 0xC67B5510, 0x6D672C37, 0x2765D43B, 0xDCD0E804, - 0xF1290DC7, 0xCC00FFA3, 0xB5390F92, 0x690FED0B, - 0x667B9FFB, 0xCEDB7D9C, 0xA091CF0B, 0xD9155EA3, - 0xBB132F88, 0x515BAD24, 0x7B9479BF, 0x763BD6EB, - 0x37392EB3, 0xCC115979, 0x8026E297, 0xF42E312D, - 0x6842ADA7, 0xC66A2B3B, 0x12754CCC, 0x782EF11C, - 0x6A124237, 0xB79251E7, 0x06A1BBE6, 0x4BFB6350, - 0x1A6B1018, 0x11CAEDFA, 0x3D25BDD8, 0xE2E1C3C9, - 0x44421659, 0x0A121386, 0xD90CEC6E, 0xD5ABEA2A, - 0x64AF674E, 0xDA86A85F, 0xBEBFE988, 0x64E4C3FE, - 0x9DBC8057, 0xF0F7C086, 0x60787BF8, 0x6003604D, - 0xD1FD8346, 0xF6381FB0, 0x7745AE04, 0xD736FCCC, - 0x83426B33, 0xF01EAB71, 0xB0804187, 0x3C005E5F, - 0x77A057BE, 0xBDE8AE24, 0x55464299, 0xBF582E61, - 0x4E58F48F, 0xF2DDFDA2, 0xF474EF38, 0x8789BDC2, - 0x5366F9C3, 0xC8B38E74, 0xB475F255, 0x46FCD9B9, - 0x7AEB2661, 0x8B1DDF84, 0x846A0E79, 0x915F95E2, - 0x466E598E, 0x20B45770, 0x8CD55591, 0xC902DE4C, - 0xB90BACE1, 0xBB8205D0, 0x11A86248, 0x7574A99E, - 0xB77F19B6, 0xE0A9DC09, 0x662D09A1, 0xC4324633, - 0xE85A1F02, 0x09F0BE8C, 0x4A99A025, 0x1D6EFE10, - 0x1AB93D1D, 0x0BA5A4DF, 0xA186F20F, 0x2868F169, - 0xDCB7DA83, 0x573906FE, 0xA1E2CE9B, 0x4FCD7F52, - 0x50115E01, 0xA70683FA, 0xA002B5C4, 0x0DE6D027, - 0x9AF88C27, 0x773F8641, 0xC3604C06, 0x61A806B5, - 0xF0177A28, 0xC0F586E0, 0x006058AA, 0x30DC7D62, - 0x11E69ED7, 0x2338EA63, 0x53C2DD94, 0xC2C21634, - 0xBBCBEE56, 0x90BCB6DE, 0xEBFC7DA1, 0xCE591D76, - 0x6F05E409, 0x4B7C0188, 0x39720A3D, 0x7C927C24, - 0x86E3725F, 0x724D9DB9, 0x1AC15BB4, 0xD39EB8FC, - 0xED545578, 0x08FCA5B5, 0xD83D7CD3, 0x4DAD0FC4, - 0x1E50EF5E, 0xB161E6F8, 0xA28514D9, 0x6C51133C, - 0x6FD5C7E7, 0x56E14EC4, 0x362ABFCE, 0xDDC6C837, - 0xD79A3234, 0x92638212, 0x670EFA8E, 0x406000E0 ], - [ 0x3A39CE37, 0xD3FAF5CF, 0xABC27737, 0x5AC52D1B, - 0x5CB0679E, 0x4FA33742, 0xD3822740, 0x99BC9BBE, - 0xD5118E9D, 0xBF0F7315, 0xD62D1C7E, 0xC700C47B, - 0xB78C1B6B, 0x21A19045, 0xB26EB1BE, 0x6A366EB4, - 0x5748AB2F, 0xBC946E79, 0xC6A376D2, 0x6549C2C8, - 0x530FF8EE, 0x468DDE7D, 0xD5730A1D, 0x4CD04DC6, - 0x2939BBDB, 0xA9BA4650, 0xAC9526E8, 0xBE5EE304, - 0xA1FAD5F0, 0x6A2D519A, 0x63EF8CE2, 0x9A86EE22, - 0xC089C2B8, 0x43242EF6, 0xA51E03AA, 0x9CF2D0A4, - 0x83C061BA, 0x9BE96A4D, 0x8FE51550, 0xBA645BD6, - 0x2826A2F9, 0xA73A3AE1, 0x4BA99586, 0xEF5562E9, - 0xC72FEFD3, 0xF752F7DA, 0x3F046F69, 0x77FA0A59, - 0x80E4A915, 0x87B08601, 0x9B09E6AD, 0x3B3EE593, - 0xE990FD5A, 0x9E34D797, 0x2CF0B7D9, 0x022B8B51, - 0x96D5AC3A, 0x017DA67D, 0xD1CF3ED6, 0x7C7D2D28, - 0x1F9F25CF, 0xADF2B89B, 0x5AD6B472, 0x5A88F54C, - 0xE029AC71, 0xE019A5E6, 0x47B0ACFD, 0xED93FA9B, - 0xE8D3C48D, 0x283B57CC, 0xF8D56629, 0x79132E28, - 0x785F0191, 0xED756055, 0xF7960E44, 0xE3D35E8C, - 0x15056DD4, 0x88F46DBA, 0x03A16125, 0x0564F0BD, - 0xC3EB9E15, 0x3C9057A2, 0x97271AEC, 0xA93A072A, - 0x1B3F6D9B, 0x1E6321F5, 0xF59C66FB, 0x26DCF319, - 0x7533D928, 0xB155FDF5, 0x03563482, 0x8ABA3CBB, - 0x28517711, 0xC20AD9F8, 0xABCC5167, 0xCCAD925F, - 0x4DE81751, 0x3830DC8E, 0x379D5862, 0x9320F991, - 0xEA7A90C2, 0xFB3E7BCE, 0x5121CE64, 0x774FBE32, - 0xA8B6E37E, 0xC3293D46, 0x48DE5369, 0x6413E680, - 0xA2AE0810, 0xDD6DB224, 0x69852DFD, 0x09072166, - 0xB39A460A, 0x6445C0DD, 0x586CDECF, 0x1C20C8AE, - 0x5BBEF7DD, 0x1B588D40, 0xCCD2017F, 0x6BB4E3BB, - 0xDDA26A7E, 0x3A59FF45, 0x3E350A44, 0xBCB4CDD5, - 0x72EACEA8, 0xFA6484BB, 0x8D6612AE, 0xBF3C6F47, - 0xD29BE463, 0x542F5D9E, 0xAEC2771B, 0xF64E6370, - 0x740E0D8D, 0xE75B1357, 0xF8721671, 0xAF537D5D, - 0x4040CB08, 0x4EB4E2CC, 0x34D2466A, 0x0115AF84, - 0xE1B00428, 0x95983A1D, 0x06B89FB4, 0xCE6EA048, - 0x6F3F3B82, 0x3520AB82, 0x011A1D4B, 0x277227F8, - 0x611560B1, 0xE7933FDC, 0xBB3A792B, 0x344525BD, - 0xA08839E1, 0x51CE794B, 0x2F32C9B7, 0xA01FBAC9, - 0xE01CC87E, 0xBCC7D1F6, 0xCF0111C3, 0xA1E8AAC7, - 0x1A908749, 0xD44FBD9A, 0xD0DADECB, 0xD50ADA38, - 0x0339C32A, 0xC6913667, 0x8DF9317C, 0xE0B12B4F, - 0xF79E59B7, 0x43F5BB3A, 0xF2D519FF, 0x27D9459C, - 0xBF97222C, 0x15E6FC2A, 0x0F91FC71, 0x9B941525, - 0xFAE59361, 0xCEB69CEB, 0xC2A86459, 0x12BAA8D1, - 0xB6C1075E, 0xE3056A0C, 0x10D25065, 0xCB03A442, - 0xE0EC6E0E, 0x1698DB3B, 0x4C98A0BE, 0x3278E964, - 0x9F1F9532, 0xE0D392DF, 0xD3A0342B, 0x8971F21E, - 0x1B0A7441, 0x4BA3348C, 0xC5BE7120, 0xC37632D8, - 0xDF359F8D, 0x9B992F2E, 0xE60B6F47, 0x0FE3F11D, - 0xE54CDA54, 0x1EDAD891, 0xCE6279CF, 0xCD3E7E6F, - 0x1618B166, 0xFD2C1D05, 0x848FD2C5, 0xF6FB2299, - 0xF523F357, 0xA6327623, 0x93A83531, 0x56CCCD02, - 0xACF08162, 0x5A75EBB5, 0x6E163697, 0x88D273CC, - 0xDE966292, 0x81B949D0, 0x4C50901B, 0x71C65614, - 0xE6C6C7BD, 0x327A140A, 0x45E1D006, 0xC3F27B9A, - 0xC9AA53FD, 0x62A80F00, 0xBB25BFE2, 0x35BDD2F6, - 0x71126905, 0xB2040222, 0xB6CBCF7C, 0xCD769C2B, - 0x53113EC0, 0x1640E3D3, 0x38ABBD60, 0x2547ADF0, - 0xBA38209C, 0xF746CE76, 0x77AFA1C5, 0x20756060, - 0x85CBFE4E, 0x8AE88DD8, 0x7AAAF9B0, 0x4CF9AA7E, - 0x1948C25C, 0x02FB8A8C, 0x01C36AE4, 0xD6EBE1F9, - 0x90D4F869, 0xA65CDEA0, 0x3F09252D, 0xC208E69F, - 0xB74E6132, 0xCE77E25B, 0x578FDFE3, 0x3AC372E6 ] - ]; - - var BLOWFISH_CTX = { - pbox: [], - sbox: [] - } - - function F(ctx, x){ - let a = (x >> 24) & 0xFF; - let b = (x >> 16) & 0xFF; - let c = (x >> 8) & 0xFF; - let d = x & 0xFF; - - let y = ctx.sbox[0][a] + ctx.sbox[1][b]; - y = y ^ ctx.sbox[2][c]; - y = y + ctx.sbox[3][d]; - - return y; - } - - function BlowFish_Encrypt(ctx, left, right){ - let Xl = left; - let Xr = right; - let temp; - - for(let i = 0; i < N; ++i){ - Xl = Xl ^ ctx.pbox[i]; - Xr = F(ctx, Xl) ^ Xr; - - temp = Xl; - Xl = Xr; - Xr = temp; - } - - temp = Xl; - Xl = Xr; - Xr = temp; - - Xr = Xr ^ ctx.pbox[N]; - Xl = Xl ^ ctx.pbox[N + 1]; - - return {left: Xl, right: Xr}; - } - - function BlowFish_Decrypt(ctx, left, right){ - let Xl = left; - let Xr = right; - let temp; - - for(let i = N + 1; i > 1; --i){ - Xl = Xl ^ ctx.pbox[i]; - Xr = F(ctx, Xl) ^ Xr; - - temp = Xl; - Xl = Xr; - Xr = temp; - } - - temp = Xl; - Xl = Xr; - Xr = temp; - - Xr = Xr ^ ctx.pbox[1]; - Xl = Xl ^ ctx.pbox[0]; - - return {left: Xl, right: Xr}; - } - - /** - * Initialization ctx's pbox and sbox. - * - * @param {Object} ctx The object has pbox and sbox. - * @param {Array} key An array of 32-bit words. - * @param {int} keysize The length of the key. - * - * @example - * - * BlowFishInit(BLOWFISH_CTX, key, 128/32); - */ - function BlowFishInit(ctx, key, keysize) - { - for(let Row = 0; Row < 4; Row++) - { - ctx.sbox[Row] = []; - for(let Col = 0; Col < 256; Col++) - { - ctx.sbox[Row][Col] = ORIG_S[Row][Col]; - } - } - - let keyIndex = 0; - for(let index = 0; index < N + 2; index++) - { - ctx.pbox[index] = ORIG_P[index] ^ key[keyIndex]; - keyIndex++; - if(keyIndex >= keysize) - { - keyIndex = 0; - } - } - - let Data1 = 0; - let Data2 = 0; - let res = 0; - for(let i = 0; i < N + 2; i += 2) - { - res = BlowFish_Encrypt(ctx, Data1, Data2); - Data1 = res.left; - Data2 = res.right; - ctx.pbox[i] = Data1; - ctx.pbox[i + 1] = Data2; - } - - for(let i = 0; i < 4; i++) - { - for(let j = 0; j < 256; j += 2) - { - res = BlowFish_Encrypt(ctx, Data1, Data2); - Data1 = res.left; - Data2 = res.right; - ctx.sbox[i][j] = Data1; - ctx.sbox[i][j + 1] = Data2; - } - } - - return true; - } - - /** - * Blowfish block cipher algorithm. - */ - var Blowfish = C_algo.Blowfish = BlockCipher.extend({ - _doReset: function () { - // Skip reset of nRounds has been set before and key did not change - if (this._keyPriorReset === this._key) { - return; - } - - // Shortcuts - var key = this._keyPriorReset = this._key; - var keyWords = key.words; - var keySize = key.sigBytes / 4; - - //Initialization pbox and sbox - BlowFishInit(BLOWFISH_CTX, keyWords, keySize); - }, - - encryptBlock: function (M, offset) { - var res = BlowFish_Encrypt(BLOWFISH_CTX, M[offset], M[offset + 1]); - M[offset] = res.left; - M[offset + 1] = res.right; - }, - - decryptBlock: function (M, offset) { - var res = BlowFish_Decrypt(BLOWFISH_CTX, M[offset], M[offset + 1]); - M[offset] = res.left; - M[offset + 1] = res.right; - }, - - blockSize: 64/32, - - keySize: 128/32, - - ivSize: 64/32 - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.Blowfish.encrypt(message, key, cfg); - * var plaintext = CryptoJS.Blowfish.decrypt(ciphertext, key, cfg); - */ - C.Blowfish = BlockCipher._createHelper(Blowfish); - }()); - - - return CryptoJS.Blowfish; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/bower.json b/node_modules/crypto-js/bower.json deleted file mode 100644 index 4dee617c..00000000 --- a/node_modules/crypto-js/bower.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "crypto-js", - "version": "4.2.0", - "description": "JavaScript library of crypto standards.", - "license": "MIT", - "homepage": "http://github.com/brix/crypto-js", - "repository": { - "type": "git", - "url": "http://github.com/brix/crypto-js.git" - }, - "keywords": [ - "security", - "crypto", - "Hash", - "MD5", - "SHA1", - "SHA-1", - "SHA256", - "SHA-256", - "RC4", - "Rabbit", - "AES", - "DES", - "PBKDF2", - "HMAC", - "OFB", - "CFB", - "CTR", - "CBC", - "Base64", - "Base64url" - ], - "main": "index.js", - "dependencies": {}, - "browser": { - "crypto": false - }, - "ignore": [] -} diff --git a/node_modules/crypto-js/cipher-core.js b/node_modules/crypto-js/cipher-core.js deleted file mode 100644 index 903f4620..00000000 --- a/node_modules/crypto-js/cipher-core.js +++ /dev/null @@ -1,895 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./evpkdf")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./evpkdf"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * Cipher core components. - */ - CryptoJS.lib.Cipher || (function (undefined) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var WordArray = C_lib.WordArray; - var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm; - var C_enc = C.enc; - var Utf8 = C_enc.Utf8; - var Base64 = C_enc.Base64; - var C_algo = C.algo; - var EvpKDF = C_algo.EvpKDF; - - /** - * Abstract base cipher template. - * - * @property {number} keySize This cipher's key size. Default: 4 (128 bits) - * @property {number} ivSize This cipher's IV size. Default: 4 (128 bits) - * @property {number} _ENC_XFORM_MODE A constant representing encryption mode. - * @property {number} _DEC_XFORM_MODE A constant representing decryption mode. - */ - var Cipher = C_lib.Cipher = BufferedBlockAlgorithm.extend({ - /** - * Configuration options. - * - * @property {WordArray} iv The IV to use for this operation. - */ - cfg: Base.extend(), - - /** - * Creates this cipher in encryption mode. - * - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {Cipher} A cipher instance. - * - * @static - * - * @example - * - * var cipher = CryptoJS.algo.AES.createEncryptor(keyWordArray, { iv: ivWordArray }); - */ - createEncryptor: function (key, cfg) { - return this.create(this._ENC_XFORM_MODE, key, cfg); - }, - - /** - * Creates this cipher in decryption mode. - * - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {Cipher} A cipher instance. - * - * @static - * - * @example - * - * var cipher = CryptoJS.algo.AES.createDecryptor(keyWordArray, { iv: ivWordArray }); - */ - createDecryptor: function (key, cfg) { - return this.create(this._DEC_XFORM_MODE, key, cfg); - }, - - /** - * Initializes a newly created cipher. - * - * @param {number} xformMode Either the encryption or decryption transormation mode constant. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @example - * - * var cipher = CryptoJS.algo.AES.create(CryptoJS.algo.AES._ENC_XFORM_MODE, keyWordArray, { iv: ivWordArray }); - */ - init: function (xformMode, key, cfg) { - // Apply config defaults - this.cfg = this.cfg.extend(cfg); - - // Store transform mode and key - this._xformMode = xformMode; - this._key = key; - - // Set initial values - this.reset(); - }, - - /** - * Resets this cipher to its initial state. - * - * @example - * - * cipher.reset(); - */ - reset: function () { - // Reset data buffer - BufferedBlockAlgorithm.reset.call(this); - - // Perform concrete-cipher logic - this._doReset(); - }, - - /** - * Adds data to be encrypted or decrypted. - * - * @param {WordArray|string} dataUpdate The data to encrypt or decrypt. - * - * @return {WordArray} The data after processing. - * - * @example - * - * var encrypted = cipher.process('data'); - * var encrypted = cipher.process(wordArray); - */ - process: function (dataUpdate) { - // Append - this._append(dataUpdate); - - // Process available blocks - return this._process(); - }, - - /** - * Finalizes the encryption or decryption process. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} dataUpdate The final data to encrypt or decrypt. - * - * @return {WordArray} The data after final processing. - * - * @example - * - * var encrypted = cipher.finalize(); - * var encrypted = cipher.finalize('data'); - * var encrypted = cipher.finalize(wordArray); - */ - finalize: function (dataUpdate) { - // Final data update - if (dataUpdate) { - this._append(dataUpdate); - } - - // Perform concrete-cipher logic - var finalProcessedData = this._doFinalize(); - - return finalProcessedData; - }, - - keySize: 128/32, - - ivSize: 128/32, - - _ENC_XFORM_MODE: 1, - - _DEC_XFORM_MODE: 2, - - /** - * Creates shortcut functions to a cipher's object interface. - * - * @param {Cipher} cipher The cipher to create a helper for. - * - * @return {Object} An object with encrypt and decrypt shortcut functions. - * - * @static - * - * @example - * - * var AES = CryptoJS.lib.Cipher._createHelper(CryptoJS.algo.AES); - */ - _createHelper: (function () { - function selectCipherStrategy(key) { - if (typeof key == 'string') { - return PasswordBasedCipher; - } else { - return SerializableCipher; - } - } - - return function (cipher) { - return { - encrypt: function (message, key, cfg) { - return selectCipherStrategy(key).encrypt(cipher, message, key, cfg); - }, - - decrypt: function (ciphertext, key, cfg) { - return selectCipherStrategy(key).decrypt(cipher, ciphertext, key, cfg); - } - }; - }; - }()) - }); - - /** - * Abstract base stream cipher template. - * - * @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 1 (32 bits) - */ - var StreamCipher = C_lib.StreamCipher = Cipher.extend({ - _doFinalize: function () { - // Process partial blocks - var finalProcessedBlocks = this._process(!!'flush'); - - return finalProcessedBlocks; - }, - - blockSize: 1 - }); - - /** - * Mode namespace. - */ - var C_mode = C.mode = {}; - - /** - * Abstract base block cipher mode template. - */ - var BlockCipherMode = C_lib.BlockCipherMode = Base.extend({ - /** - * Creates this mode for encryption. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @static - * - * @example - * - * var mode = CryptoJS.mode.CBC.createEncryptor(cipher, iv.words); - */ - createEncryptor: function (cipher, iv) { - return this.Encryptor.create(cipher, iv); - }, - - /** - * Creates this mode for decryption. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @static - * - * @example - * - * var mode = CryptoJS.mode.CBC.createDecryptor(cipher, iv.words); - */ - createDecryptor: function (cipher, iv) { - return this.Decryptor.create(cipher, iv); - }, - - /** - * Initializes a newly created mode. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @example - * - * var mode = CryptoJS.mode.CBC.Encryptor.create(cipher, iv.words); - */ - init: function (cipher, iv) { - this._cipher = cipher; - this._iv = iv; - } - }); - - /** - * Cipher Block Chaining mode. - */ - var CBC = C_mode.CBC = (function () { - /** - * Abstract base CBC mode. - */ - var CBC = BlockCipherMode.extend(); - - /** - * CBC encryptor. - */ - CBC.Encryptor = CBC.extend({ - /** - * Processes the data block at offset. - * - * @param {Array} words The data words to operate on. - * @param {number} offset The offset where the block starts. - * - * @example - * - * mode.processBlock(data.words, offset); - */ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - - // XOR and encrypt - xorBlock.call(this, words, offset, blockSize); - cipher.encryptBlock(words, offset); - - // Remember this block to use with next block - this._prevBlock = words.slice(offset, offset + blockSize); - } - }); - - /** - * CBC decryptor. - */ - CBC.Decryptor = CBC.extend({ - /** - * Processes the data block at offset. - * - * @param {Array} words The data words to operate on. - * @param {number} offset The offset where the block starts. - * - * @example - * - * mode.processBlock(data.words, offset); - */ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - - // Remember this block to use with next block - var thisBlock = words.slice(offset, offset + blockSize); - - // Decrypt and XOR - cipher.decryptBlock(words, offset); - xorBlock.call(this, words, offset, blockSize); - - // This block becomes the previous block - this._prevBlock = thisBlock; - } - }); - - function xorBlock(words, offset, blockSize) { - var block; - - // Shortcut - var iv = this._iv; - - // Choose mixing block - if (iv) { - block = iv; - - // Remove IV for subsequent blocks - this._iv = undefined; - } else { - block = this._prevBlock; - } - - // XOR blocks - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= block[i]; - } - } - - return CBC; - }()); - - /** - * Padding namespace. - */ - var C_pad = C.pad = {}; - - /** - * PKCS #5/7 padding strategy. - */ - var Pkcs7 = C_pad.Pkcs7 = { - /** - * Pads data using the algorithm defined in PKCS #5/7. - * - * @param {WordArray} data The data to pad. - * @param {number} blockSize The multiple that the data should be padded to. - * - * @static - * - * @example - * - * CryptoJS.pad.Pkcs7.pad(wordArray, 4); - */ - pad: function (data, blockSize) { - // Shortcut - var blockSizeBytes = blockSize * 4; - - // Count padding bytes - var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes; - - // Create padding word - var paddingWord = (nPaddingBytes << 24) | (nPaddingBytes << 16) | (nPaddingBytes << 8) | nPaddingBytes; - - // Create padding - var paddingWords = []; - for (var i = 0; i < nPaddingBytes; i += 4) { - paddingWords.push(paddingWord); - } - var padding = WordArray.create(paddingWords, nPaddingBytes); - - // Add padding - data.concat(padding); - }, - - /** - * Unpads data that had been padded using the algorithm defined in PKCS #5/7. - * - * @param {WordArray} data The data to unpad. - * - * @static - * - * @example - * - * CryptoJS.pad.Pkcs7.unpad(wordArray); - */ - unpad: function (data) { - // Get number of padding bytes from last byte - var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff; - - // Remove padding - data.sigBytes -= nPaddingBytes; - } - }; - - /** - * Abstract base block cipher template. - * - * @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 4 (128 bits) - */ - var BlockCipher = C_lib.BlockCipher = Cipher.extend({ - /** - * Configuration options. - * - * @property {Mode} mode The block mode to use. Default: CBC - * @property {Padding} padding The padding strategy to use. Default: Pkcs7 - */ - cfg: Cipher.cfg.extend({ - mode: CBC, - padding: Pkcs7 - }), - - reset: function () { - var modeCreator; - - // Reset cipher - Cipher.reset.call(this); - - // Shortcuts - var cfg = this.cfg; - var iv = cfg.iv; - var mode = cfg.mode; - - // Reset block mode - if (this._xformMode == this._ENC_XFORM_MODE) { - modeCreator = mode.createEncryptor; - } else /* if (this._xformMode == this._DEC_XFORM_MODE) */ { - modeCreator = mode.createDecryptor; - // Keep at least one block in the buffer for unpadding - this._minBufferSize = 1; - } - - if (this._mode && this._mode.__creator == modeCreator) { - this._mode.init(this, iv && iv.words); - } else { - this._mode = modeCreator.call(mode, this, iv && iv.words); - this._mode.__creator = modeCreator; - } - }, - - _doProcessBlock: function (words, offset) { - this._mode.processBlock(words, offset); - }, - - _doFinalize: function () { - var finalProcessedBlocks; - - // Shortcut - var padding = this.cfg.padding; - - // Finalize - if (this._xformMode == this._ENC_XFORM_MODE) { - // Pad data - padding.pad(this._data, this.blockSize); - - // Process final blocks - finalProcessedBlocks = this._process(!!'flush'); - } else /* if (this._xformMode == this._DEC_XFORM_MODE) */ { - // Process final blocks - finalProcessedBlocks = this._process(!!'flush'); - - // Unpad data - padding.unpad(finalProcessedBlocks); - } - - return finalProcessedBlocks; - }, - - blockSize: 128/32 - }); - - /** - * A collection of cipher parameters. - * - * @property {WordArray} ciphertext The raw ciphertext. - * @property {WordArray} key The key to this ciphertext. - * @property {WordArray} iv The IV used in the ciphering operation. - * @property {WordArray} salt The salt used with a key derivation function. - * @property {Cipher} algorithm The cipher algorithm. - * @property {Mode} mode The block mode used in the ciphering operation. - * @property {Padding} padding The padding scheme used in the ciphering operation. - * @property {number} blockSize The block size of the cipher. - * @property {Format} formatter The default formatting strategy to convert this cipher params object to a string. - */ - var CipherParams = C_lib.CipherParams = Base.extend({ - /** - * Initializes a newly created cipher params object. - * - * @param {Object} cipherParams An object with any of the possible cipher parameters. - * - * @example - * - * var cipherParams = CryptoJS.lib.CipherParams.create({ - * ciphertext: ciphertextWordArray, - * key: keyWordArray, - * iv: ivWordArray, - * salt: saltWordArray, - * algorithm: CryptoJS.algo.AES, - * mode: CryptoJS.mode.CBC, - * padding: CryptoJS.pad.PKCS7, - * blockSize: 4, - * formatter: CryptoJS.format.OpenSSL - * }); - */ - init: function (cipherParams) { - this.mixIn(cipherParams); - }, - - /** - * Converts this cipher params object to a string. - * - * @param {Format} formatter (Optional) The formatting strategy to use. - * - * @return {string} The stringified cipher params. - * - * @throws Error If neither the formatter nor the default formatter is set. - * - * @example - * - * var string = cipherParams + ''; - * var string = cipherParams.toString(); - * var string = cipherParams.toString(CryptoJS.format.OpenSSL); - */ - toString: function (formatter) { - return (formatter || this.formatter).stringify(this); - } - }); - - /** - * Format namespace. - */ - var C_format = C.format = {}; - - /** - * OpenSSL formatting strategy. - */ - var OpenSSLFormatter = C_format.OpenSSL = { - /** - * Converts a cipher params object to an OpenSSL-compatible string. - * - * @param {CipherParams} cipherParams The cipher params object. - * - * @return {string} The OpenSSL-compatible string. - * - * @static - * - * @example - * - * var openSSLString = CryptoJS.format.OpenSSL.stringify(cipherParams); - */ - stringify: function (cipherParams) { - var wordArray; - - // Shortcuts - var ciphertext = cipherParams.ciphertext; - var salt = cipherParams.salt; - - // Format - if (salt) { - wordArray = WordArray.create([0x53616c74, 0x65645f5f]).concat(salt).concat(ciphertext); - } else { - wordArray = ciphertext; - } - - return wordArray.toString(Base64); - }, - - /** - * Converts an OpenSSL-compatible string to a cipher params object. - * - * @param {string} openSSLStr The OpenSSL-compatible string. - * - * @return {CipherParams} The cipher params object. - * - * @static - * - * @example - * - * var cipherParams = CryptoJS.format.OpenSSL.parse(openSSLString); - */ - parse: function (openSSLStr) { - var salt; - - // Parse base64 - var ciphertext = Base64.parse(openSSLStr); - - // Shortcut - var ciphertextWords = ciphertext.words; - - // Test for salt - if (ciphertextWords[0] == 0x53616c74 && ciphertextWords[1] == 0x65645f5f) { - // Extract salt - salt = WordArray.create(ciphertextWords.slice(2, 4)); - - // Remove salt from ciphertext - ciphertextWords.splice(0, 4); - ciphertext.sigBytes -= 16; - } - - return CipherParams.create({ ciphertext: ciphertext, salt: salt }); - } - }; - - /** - * A cipher wrapper that returns ciphertext as a serializable cipher params object. - */ - var SerializableCipher = C_lib.SerializableCipher = Base.extend({ - /** - * Configuration options. - * - * @property {Formatter} format The formatting strategy to convert cipher param objects to and from a string. Default: OpenSSL - */ - cfg: Base.extend({ - format: OpenSSLFormatter - }), - - /** - * Encrypts a message. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {WordArray|string} message The message to encrypt. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {CipherParams} A cipher params object. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key); - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv }); - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - */ - encrypt: function (cipher, message, key, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - - // Encrypt - var encryptor = cipher.createEncryptor(key, cfg); - var ciphertext = encryptor.finalize(message); - - // Shortcut - var cipherCfg = encryptor.cfg; - - // Create and return serializable cipher params - return CipherParams.create({ - ciphertext: ciphertext, - key: key, - iv: cipherCfg.iv, - algorithm: cipher, - mode: cipherCfg.mode, - padding: cipherCfg.padding, - blockSize: cipher.blockSize, - formatter: cfg.format - }); - }, - - /** - * Decrypts serialized ciphertext. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {CipherParams|string} ciphertext The ciphertext to decrypt. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {WordArray} The plaintext. - * - * @static - * - * @example - * - * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - */ - decrypt: function (cipher, ciphertext, key, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - - // Convert string to CipherParams - ciphertext = this._parse(ciphertext, cfg.format); - - // Decrypt - var plaintext = cipher.createDecryptor(key, cfg).finalize(ciphertext.ciphertext); - - return plaintext; - }, - - /** - * Converts serialized ciphertext to CipherParams, - * else assumed CipherParams already and returns ciphertext unchanged. - * - * @param {CipherParams|string} ciphertext The ciphertext. - * @param {Formatter} format The formatting strategy to use to parse serialized ciphertext. - * - * @return {CipherParams} The unserialized ciphertext. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.SerializableCipher._parse(ciphertextStringOrParams, format); - */ - _parse: function (ciphertext, format) { - if (typeof ciphertext == 'string') { - return format.parse(ciphertext, this); - } else { - return ciphertext; - } - } - }); - - /** - * Key derivation function namespace. - */ - var C_kdf = C.kdf = {}; - - /** - * OpenSSL key derivation function. - */ - var OpenSSLKdf = C_kdf.OpenSSL = { - /** - * Derives a key and IV from a password. - * - * @param {string} password The password to derive from. - * @param {number} keySize The size in words of the key to generate. - * @param {number} ivSize The size in words of the IV to generate. - * @param {WordArray|string} salt (Optional) A 64-bit salt to use. If omitted, a salt will be generated randomly. - * - * @return {CipherParams} A cipher params object with the key, IV, and salt. - * - * @static - * - * @example - * - * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32); - * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32, 'saltsalt'); - */ - execute: function (password, keySize, ivSize, salt, hasher) { - // Generate random salt - if (!salt) { - salt = WordArray.random(64/8); - } - - // Derive key and IV - if (!hasher) { - var key = EvpKDF.create({ keySize: keySize + ivSize }).compute(password, salt); - } else { - var key = EvpKDF.create({ keySize: keySize + ivSize, hasher: hasher }).compute(password, salt); - } - - - // Separate key and IV - var iv = WordArray.create(key.words.slice(keySize), ivSize * 4); - key.sigBytes = keySize * 4; - - // Return params - return CipherParams.create({ key: key, iv: iv, salt: salt }); - } - }; - - /** - * A serializable cipher wrapper that derives the key from a password, - * and returns ciphertext as a serializable cipher params object. - */ - var PasswordBasedCipher = C_lib.PasswordBasedCipher = SerializableCipher.extend({ - /** - * Configuration options. - * - * @property {KDF} kdf The key derivation function to use to generate a key and IV from a password. Default: OpenSSL - */ - cfg: SerializableCipher.cfg.extend({ - kdf: OpenSSLKdf - }), - - /** - * Encrypts a message using a password. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {WordArray|string} message The message to encrypt. - * @param {string} password The password. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {CipherParams} A cipher params object. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password'); - * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password', { format: CryptoJS.format.OpenSSL }); - */ - encrypt: function (cipher, message, password, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - - // Derive key and other params - var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, cfg.salt, cfg.hasher); - - // Add IV to config - cfg.iv = derivedParams.iv; - - // Encrypt - var ciphertext = SerializableCipher.encrypt.call(this, cipher, message, derivedParams.key, cfg); - - // Mix in derived params - ciphertext.mixIn(derivedParams); - - return ciphertext; - }, - - /** - * Decrypts serialized ciphertext using a password. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {CipherParams|string} ciphertext The ciphertext to decrypt. - * @param {string} password The password. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {WordArray} The plaintext. - * - * @static - * - * @example - * - * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, 'password', { format: CryptoJS.format.OpenSSL }); - * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, 'password', { format: CryptoJS.format.OpenSSL }); - */ - decrypt: function (cipher, ciphertext, password, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - - // Convert string to CipherParams - ciphertext = this._parse(ciphertext, cfg.format); - - // Derive key and other params - var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, ciphertext.salt, cfg.hasher); - - // Add IV to config - cfg.iv = derivedParams.iv; - - // Decrypt - var plaintext = SerializableCipher.decrypt.call(this, cipher, ciphertext, derivedParams.key, cfg); - - return plaintext; - } - }); - }()); - - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/core.js b/node_modules/crypto-js/core.js deleted file mode 100644 index e3a498bc..00000000 --- a/node_modules/crypto-js/core.js +++ /dev/null @@ -1,807 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(); - } - else if (typeof define === "function" && define.amd) { - // AMD - define([], factory); - } - else { - // Global (browser) - root.CryptoJS = factory(); - } -}(this, function () { - - /*globals window, global, require*/ - - /** - * CryptoJS core components. - */ - var CryptoJS = CryptoJS || (function (Math, undefined) { - - var crypto; - - // Native crypto from window (Browser) - if (typeof window !== 'undefined' && window.crypto) { - crypto = window.crypto; - } - - // Native crypto in web worker (Browser) - if (typeof self !== 'undefined' && self.crypto) { - crypto = self.crypto; - } - - // Native crypto from worker - if (typeof globalThis !== 'undefined' && globalThis.crypto) { - crypto = globalThis.crypto; - } - - // Native (experimental IE 11) crypto from window (Browser) - if (!crypto && typeof window !== 'undefined' && window.msCrypto) { - crypto = window.msCrypto; - } - - // Native crypto from global (NodeJS) - if (!crypto && typeof global !== 'undefined' && global.crypto) { - crypto = global.crypto; - } - - // Native crypto import via require (NodeJS) - if (!crypto && typeof require === 'function') { - try { - crypto = require('crypto'); - } catch (err) {} - } - - /* - * Cryptographically secure pseudorandom number generator - * - * As Math.random() is cryptographically not safe to use - */ - var cryptoSecureRandomInt = function () { - if (crypto) { - // Use getRandomValues method (Browser) - if (typeof crypto.getRandomValues === 'function') { - try { - return crypto.getRandomValues(new Uint32Array(1))[0]; - } catch (err) {} - } - - // Use randomBytes method (NodeJS) - if (typeof crypto.randomBytes === 'function') { - try { - return crypto.randomBytes(4).readInt32LE(); - } catch (err) {} - } - } - - throw new Error('Native crypto module could not be used to get secure random number.'); - }; - - /* - * Local polyfill of Object.create - - */ - var create = Object.create || (function () { - function F() {} - - return function (obj) { - var subtype; - - F.prototype = obj; - - subtype = new F(); - - F.prototype = null; - - return subtype; - }; - }()); - - /** - * CryptoJS namespace. - */ - var C = {}; - - /** - * Library namespace. - */ - var C_lib = C.lib = {}; - - /** - * Base object for prototypal inheritance. - */ - var Base = C_lib.Base = (function () { - - - return { - /** - * Creates a new object that inherits from this object. - * - * @param {Object} overrides Properties to copy into the new object. - * - * @return {Object} The new object. - * - * @static - * - * @example - * - * var MyType = CryptoJS.lib.Base.extend({ - * field: 'value', - * - * method: function () { - * } - * }); - */ - extend: function (overrides) { - // Spawn - var subtype = create(this); - - // Augment - if (overrides) { - subtype.mixIn(overrides); - } - - // Create default initializer - if (!subtype.hasOwnProperty('init') || this.init === subtype.init) { - subtype.init = function () { - subtype.$super.init.apply(this, arguments); - }; - } - - // Initializer's prototype is the subtype object - subtype.init.prototype = subtype; - - // Reference supertype - subtype.$super = this; - - return subtype; - }, - - /** - * Extends this object and runs the init method. - * Arguments to create() will be passed to init(). - * - * @return {Object} The new object. - * - * @static - * - * @example - * - * var instance = MyType.create(); - */ - create: function () { - var instance = this.extend(); - instance.init.apply(instance, arguments); - - return instance; - }, - - /** - * Initializes a newly created object. - * Override this method to add some logic when your objects are created. - * - * @example - * - * var MyType = CryptoJS.lib.Base.extend({ - * init: function () { - * // ... - * } - * }); - */ - init: function () { - }, - - /** - * Copies properties into this object. - * - * @param {Object} properties The properties to mix in. - * - * @example - * - * MyType.mixIn({ - * field: 'value' - * }); - */ - mixIn: function (properties) { - for (var propertyName in properties) { - if (properties.hasOwnProperty(propertyName)) { - this[propertyName] = properties[propertyName]; - } - } - - // IE won't copy toString using the loop above - if (properties.hasOwnProperty('toString')) { - this.toString = properties.toString; - } - }, - - /** - * Creates a copy of this object. - * - * @return {Object} The clone. - * - * @example - * - * var clone = instance.clone(); - */ - clone: function () { - return this.init.prototype.extend(this); - } - }; - }()); - - /** - * An array of 32-bit words. - * - * @property {Array} words The array of 32-bit words. - * @property {number} sigBytes The number of significant bytes in this word array. - */ - var WordArray = C_lib.WordArray = Base.extend({ - /** - * Initializes a newly created word array. - * - * @param {Array} words (Optional) An array of 32-bit words. - * @param {number} sigBytes (Optional) The number of significant bytes in the words. - * - * @example - * - * var wordArray = CryptoJS.lib.WordArray.create(); - * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]); - * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6); - */ - init: function (words, sigBytes) { - words = this.words = words || []; - - if (sigBytes != undefined) { - this.sigBytes = sigBytes; - } else { - this.sigBytes = words.length * 4; - } - }, - - /** - * Converts this word array to a string. - * - * @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex - * - * @return {string} The stringified word array. - * - * @example - * - * var string = wordArray + ''; - * var string = wordArray.toString(); - * var string = wordArray.toString(CryptoJS.enc.Utf8); - */ - toString: function (encoder) { - return (encoder || Hex).stringify(this); - }, - - /** - * Concatenates a word array to this word array. - * - * @param {WordArray} wordArray The word array to append. - * - * @return {WordArray} This word array. - * - * @example - * - * wordArray1.concat(wordArray2); - */ - concat: function (wordArray) { - // Shortcuts - var thisWords = this.words; - var thatWords = wordArray.words; - var thisSigBytes = this.sigBytes; - var thatSigBytes = wordArray.sigBytes; - - // Clamp excess bits - this.clamp(); - - // Concat - if (thisSigBytes % 4) { - // Copy one byte at a time - for (var i = 0; i < thatSigBytes; i++) { - var thatByte = (thatWords[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - thisWords[(thisSigBytes + i) >>> 2] |= thatByte << (24 - ((thisSigBytes + i) % 4) * 8); - } - } else { - // Copy one word at a time - for (var j = 0; j < thatSigBytes; j += 4) { - thisWords[(thisSigBytes + j) >>> 2] = thatWords[j >>> 2]; - } - } - this.sigBytes += thatSigBytes; - - // Chainable - return this; - }, - - /** - * Removes insignificant bits. - * - * @example - * - * wordArray.clamp(); - */ - clamp: function () { - // Shortcuts - var words = this.words; - var sigBytes = this.sigBytes; - - // Clamp - words[sigBytes >>> 2] &= 0xffffffff << (32 - (sigBytes % 4) * 8); - words.length = Math.ceil(sigBytes / 4); - }, - - /** - * Creates a copy of this word array. - * - * @return {WordArray} The clone. - * - * @example - * - * var clone = wordArray.clone(); - */ - clone: function () { - var clone = Base.clone.call(this); - clone.words = this.words.slice(0); - - return clone; - }, - - /** - * Creates a word array filled with random bytes. - * - * @param {number} nBytes The number of random bytes to generate. - * - * @return {WordArray} The random word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.lib.WordArray.random(16); - */ - random: function (nBytes) { - var words = []; - - for (var i = 0; i < nBytes; i += 4) { - words.push(cryptoSecureRandomInt()); - } - - return new WordArray.init(words, nBytes); - } - }); - - /** - * Encoder namespace. - */ - var C_enc = C.enc = {}; - - /** - * Hex encoding strategy. - */ - var Hex = C_enc.Hex = { - /** - * Converts a word array to a hex string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The hex string. - * - * @static - * - * @example - * - * var hexString = CryptoJS.enc.Hex.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - - // Convert - var hexChars = []; - for (var i = 0; i < sigBytes; i++) { - var bite = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - hexChars.push((bite >>> 4).toString(16)); - hexChars.push((bite & 0x0f).toString(16)); - } - - return hexChars.join(''); - }, - - /** - * Converts a hex string to a word array. - * - * @param {string} hexStr The hex string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Hex.parse(hexString); - */ - parse: function (hexStr) { - // Shortcut - var hexStrLength = hexStr.length; - - // Convert - var words = []; - for (var i = 0; i < hexStrLength; i += 2) { - words[i >>> 3] |= parseInt(hexStr.substr(i, 2), 16) << (24 - (i % 8) * 4); - } - - return new WordArray.init(words, hexStrLength / 2); - } - }; - - /** - * Latin1 encoding strategy. - */ - var Latin1 = C_enc.Latin1 = { - /** - * Converts a word array to a Latin1 string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The Latin1 string. - * - * @static - * - * @example - * - * var latin1String = CryptoJS.enc.Latin1.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - - // Convert - var latin1Chars = []; - for (var i = 0; i < sigBytes; i++) { - var bite = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - latin1Chars.push(String.fromCharCode(bite)); - } - - return latin1Chars.join(''); - }, - - /** - * Converts a Latin1 string to a word array. - * - * @param {string} latin1Str The Latin1 string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Latin1.parse(latin1String); - */ - parse: function (latin1Str) { - // Shortcut - var latin1StrLength = latin1Str.length; - - // Convert - var words = []; - for (var i = 0; i < latin1StrLength; i++) { - words[i >>> 2] |= (latin1Str.charCodeAt(i) & 0xff) << (24 - (i % 4) * 8); - } - - return new WordArray.init(words, latin1StrLength); - } - }; - - /** - * UTF-8 encoding strategy. - */ - var Utf8 = C_enc.Utf8 = { - /** - * Converts a word array to a UTF-8 string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-8 string. - * - * @static - * - * @example - * - * var utf8String = CryptoJS.enc.Utf8.stringify(wordArray); - */ - stringify: function (wordArray) { - try { - return decodeURIComponent(escape(Latin1.stringify(wordArray))); - } catch (e) { - throw new Error('Malformed UTF-8 data'); - } - }, - - /** - * Converts a UTF-8 string to a word array. - * - * @param {string} utf8Str The UTF-8 string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf8.parse(utf8String); - */ - parse: function (utf8Str) { - return Latin1.parse(unescape(encodeURIComponent(utf8Str))); - } - }; - - /** - * Abstract buffered block algorithm template. - * - * The property blockSize must be implemented in a concrete subtype. - * - * @property {number} _minBufferSize The number of blocks that should be kept unprocessed in the buffer. Default: 0 - */ - var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm = Base.extend({ - /** - * Resets this block algorithm's data buffer to its initial state. - * - * @example - * - * bufferedBlockAlgorithm.reset(); - */ - reset: function () { - // Initial values - this._data = new WordArray.init(); - this._nDataBytes = 0; - }, - - /** - * Adds new data to this block algorithm's buffer. - * - * @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8. - * - * @example - * - * bufferedBlockAlgorithm._append('data'); - * bufferedBlockAlgorithm._append(wordArray); - */ - _append: function (data) { - // Convert string to WordArray, else assume WordArray already - if (typeof data == 'string') { - data = Utf8.parse(data); - } - - // Append - this._data.concat(data); - this._nDataBytes += data.sigBytes; - }, - - /** - * Processes available data blocks. - * - * This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype. - * - * @param {boolean} doFlush Whether all blocks and partial blocks should be processed. - * - * @return {WordArray} The processed data. - * - * @example - * - * var processedData = bufferedBlockAlgorithm._process(); - * var processedData = bufferedBlockAlgorithm._process(!!'flush'); - */ - _process: function (doFlush) { - var processedWords; - - // Shortcuts - var data = this._data; - var dataWords = data.words; - var dataSigBytes = data.sigBytes; - var blockSize = this.blockSize; - var blockSizeBytes = blockSize * 4; - - // Count blocks ready - var nBlocksReady = dataSigBytes / blockSizeBytes; - if (doFlush) { - // Round up to include partial blocks - nBlocksReady = Math.ceil(nBlocksReady); - } else { - // Round down to include only full blocks, - // less the number of blocks that must remain in the buffer - nBlocksReady = Math.max((nBlocksReady | 0) - this._minBufferSize, 0); - } - - // Count words ready - var nWordsReady = nBlocksReady * blockSize; - - // Count bytes ready - var nBytesReady = Math.min(nWordsReady * 4, dataSigBytes); - - // Process blocks - if (nWordsReady) { - for (var offset = 0; offset < nWordsReady; offset += blockSize) { - // Perform concrete-algorithm logic - this._doProcessBlock(dataWords, offset); - } - - // Remove processed words - processedWords = dataWords.splice(0, nWordsReady); - data.sigBytes -= nBytesReady; - } - - // Return processed words - return new WordArray.init(processedWords, nBytesReady); - }, - - /** - * Creates a copy of this object. - * - * @return {Object} The clone. - * - * @example - * - * var clone = bufferedBlockAlgorithm.clone(); - */ - clone: function () { - var clone = Base.clone.call(this); - clone._data = this._data.clone(); - - return clone; - }, - - _minBufferSize: 0 - }); - - /** - * Abstract hasher template. - * - * @property {number} blockSize The number of 32-bit words this hasher operates on. Default: 16 (512 bits) - */ - var Hasher = C_lib.Hasher = BufferedBlockAlgorithm.extend({ - /** - * Configuration options. - */ - cfg: Base.extend(), - - /** - * Initializes a newly created hasher. - * - * @param {Object} cfg (Optional) The configuration options to use for this hash computation. - * - * @example - * - * var hasher = CryptoJS.algo.SHA256.create(); - */ - init: function (cfg) { - // Apply config defaults - this.cfg = this.cfg.extend(cfg); - - // Set initial values - this.reset(); - }, - - /** - * Resets this hasher to its initial state. - * - * @example - * - * hasher.reset(); - */ - reset: function () { - // Reset data buffer - BufferedBlockAlgorithm.reset.call(this); - - // Perform concrete-hasher logic - this._doReset(); - }, - - /** - * Updates this hasher with a message. - * - * @param {WordArray|string} messageUpdate The message to append. - * - * @return {Hasher} This hasher. - * - * @example - * - * hasher.update('message'); - * hasher.update(wordArray); - */ - update: function (messageUpdate) { - // Append - this._append(messageUpdate); - - // Update the hash - this._process(); - - // Chainable - return this; - }, - - /** - * Finalizes the hash computation. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} messageUpdate (Optional) A final message update. - * - * @return {WordArray} The hash. - * - * @example - * - * var hash = hasher.finalize(); - * var hash = hasher.finalize('message'); - * var hash = hasher.finalize(wordArray); - */ - finalize: function (messageUpdate) { - // Final message update - if (messageUpdate) { - this._append(messageUpdate); - } - - // Perform concrete-hasher logic - var hash = this._doFinalize(); - - return hash; - }, - - blockSize: 512/32, - - /** - * Creates a shortcut function to a hasher's object interface. - * - * @param {Hasher} hasher The hasher to create a helper for. - * - * @return {Function} The shortcut function. - * - * @static - * - * @example - * - * var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256); - */ - _createHelper: function (hasher) { - return function (message, cfg) { - return new hasher.init(cfg).finalize(message); - }; - }, - - /** - * Creates a shortcut function to the HMAC's object interface. - * - * @param {Hasher} hasher The hasher to use in this HMAC helper. - * - * @return {Function} The shortcut function. - * - * @static - * - * @example - * - * var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256); - */ - _createHmacHelper: function (hasher) { - return function (message, key) { - return new C_algo.HMAC.init(hasher, key).finalize(message); - }; - } - }); - - /** - * Algorithm namespace. - */ - var C_algo = C.algo = {}; - - return C; - }(Math)); - - - return CryptoJS; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/crypto-js.js b/node_modules/crypto-js/crypto-js.js deleted file mode 100644 index 958ee533..00000000 --- a/node_modules/crypto-js/crypto-js.js +++ /dev/null @@ -1,6657 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(); - } - else if (typeof define === "function" && define.amd) { - // AMD - define([], factory); - } - else { - // Global (browser) - root.CryptoJS = factory(); - } -}(this, function () { - - /*globals window, global, require*/ - - /** - * CryptoJS core components. - */ - var CryptoJS = CryptoJS || (function (Math, undefined) { - - var crypto; - - // Native crypto from window (Browser) - if (typeof window !== 'undefined' && window.crypto) { - crypto = window.crypto; - } - - // Native crypto in web worker (Browser) - if (typeof self !== 'undefined' && self.crypto) { - crypto = self.crypto; - } - - // Native crypto from worker - if (typeof globalThis !== 'undefined' && globalThis.crypto) { - crypto = globalThis.crypto; - } - - // Native (experimental IE 11) crypto from window (Browser) - if (!crypto && typeof window !== 'undefined' && window.msCrypto) { - crypto = window.msCrypto; - } - - // Native crypto from global (NodeJS) - if (!crypto && typeof global !== 'undefined' && global.crypto) { - crypto = global.crypto; - } - - // Native crypto import via require (NodeJS) - if (!crypto && typeof require === 'function') { - try { - crypto = require('crypto'); - } catch (err) {} - } - - /* - * Cryptographically secure pseudorandom number generator - * - * As Math.random() is cryptographically not safe to use - */ - var cryptoSecureRandomInt = function () { - if (crypto) { - // Use getRandomValues method (Browser) - if (typeof crypto.getRandomValues === 'function') { - try { - return crypto.getRandomValues(new Uint32Array(1))[0]; - } catch (err) {} - } - - // Use randomBytes method (NodeJS) - if (typeof crypto.randomBytes === 'function') { - try { - return crypto.randomBytes(4).readInt32LE(); - } catch (err) {} - } - } - - throw new Error('Native crypto module could not be used to get secure random number.'); - }; - - /* - * Local polyfill of Object.create - - */ - var create = Object.create || (function () { - function F() {} - - return function (obj) { - var subtype; - - F.prototype = obj; - - subtype = new F(); - - F.prototype = null; - - return subtype; - }; - }()); - - /** - * CryptoJS namespace. - */ - var C = {}; - - /** - * Library namespace. - */ - var C_lib = C.lib = {}; - - /** - * Base object for prototypal inheritance. - */ - var Base = C_lib.Base = (function () { - - - return { - /** - * Creates a new object that inherits from this object. - * - * @param {Object} overrides Properties to copy into the new object. - * - * @return {Object} The new object. - * - * @static - * - * @example - * - * var MyType = CryptoJS.lib.Base.extend({ - * field: 'value', - * - * method: function () { - * } - * }); - */ - extend: function (overrides) { - // Spawn - var subtype = create(this); - - // Augment - if (overrides) { - subtype.mixIn(overrides); - } - - // Create default initializer - if (!subtype.hasOwnProperty('init') || this.init === subtype.init) { - subtype.init = function () { - subtype.$super.init.apply(this, arguments); - }; - } - - // Initializer's prototype is the subtype object - subtype.init.prototype = subtype; - - // Reference supertype - subtype.$super = this; - - return subtype; - }, - - /** - * Extends this object and runs the init method. - * Arguments to create() will be passed to init(). - * - * @return {Object} The new object. - * - * @static - * - * @example - * - * var instance = MyType.create(); - */ - create: function () { - var instance = this.extend(); - instance.init.apply(instance, arguments); - - return instance; - }, - - /** - * Initializes a newly created object. - * Override this method to add some logic when your objects are created. - * - * @example - * - * var MyType = CryptoJS.lib.Base.extend({ - * init: function () { - * // ... - * } - * }); - */ - init: function () { - }, - - /** - * Copies properties into this object. - * - * @param {Object} properties The properties to mix in. - * - * @example - * - * MyType.mixIn({ - * field: 'value' - * }); - */ - mixIn: function (properties) { - for (var propertyName in properties) { - if (properties.hasOwnProperty(propertyName)) { - this[propertyName] = properties[propertyName]; - } - } - - // IE won't copy toString using the loop above - if (properties.hasOwnProperty('toString')) { - this.toString = properties.toString; - } - }, - - /** - * Creates a copy of this object. - * - * @return {Object} The clone. - * - * @example - * - * var clone = instance.clone(); - */ - clone: function () { - return this.init.prototype.extend(this); - } - }; - }()); - - /** - * An array of 32-bit words. - * - * @property {Array} words The array of 32-bit words. - * @property {number} sigBytes The number of significant bytes in this word array. - */ - var WordArray = C_lib.WordArray = Base.extend({ - /** - * Initializes a newly created word array. - * - * @param {Array} words (Optional) An array of 32-bit words. - * @param {number} sigBytes (Optional) The number of significant bytes in the words. - * - * @example - * - * var wordArray = CryptoJS.lib.WordArray.create(); - * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]); - * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6); - */ - init: function (words, sigBytes) { - words = this.words = words || []; - - if (sigBytes != undefined) { - this.sigBytes = sigBytes; - } else { - this.sigBytes = words.length * 4; - } - }, - - /** - * Converts this word array to a string. - * - * @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex - * - * @return {string} The stringified word array. - * - * @example - * - * var string = wordArray + ''; - * var string = wordArray.toString(); - * var string = wordArray.toString(CryptoJS.enc.Utf8); - */ - toString: function (encoder) { - return (encoder || Hex).stringify(this); - }, - - /** - * Concatenates a word array to this word array. - * - * @param {WordArray} wordArray The word array to append. - * - * @return {WordArray} This word array. - * - * @example - * - * wordArray1.concat(wordArray2); - */ - concat: function (wordArray) { - // Shortcuts - var thisWords = this.words; - var thatWords = wordArray.words; - var thisSigBytes = this.sigBytes; - var thatSigBytes = wordArray.sigBytes; - - // Clamp excess bits - this.clamp(); - - // Concat - if (thisSigBytes % 4) { - // Copy one byte at a time - for (var i = 0; i < thatSigBytes; i++) { - var thatByte = (thatWords[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - thisWords[(thisSigBytes + i) >>> 2] |= thatByte << (24 - ((thisSigBytes + i) % 4) * 8); - } - } else { - // Copy one word at a time - for (var j = 0; j < thatSigBytes; j += 4) { - thisWords[(thisSigBytes + j) >>> 2] = thatWords[j >>> 2]; - } - } - this.sigBytes += thatSigBytes; - - // Chainable - return this; - }, - - /** - * Removes insignificant bits. - * - * @example - * - * wordArray.clamp(); - */ - clamp: function () { - // Shortcuts - var words = this.words; - var sigBytes = this.sigBytes; - - // Clamp - words[sigBytes >>> 2] &= 0xffffffff << (32 - (sigBytes % 4) * 8); - words.length = Math.ceil(sigBytes / 4); - }, - - /** - * Creates a copy of this word array. - * - * @return {WordArray} The clone. - * - * @example - * - * var clone = wordArray.clone(); - */ - clone: function () { - var clone = Base.clone.call(this); - clone.words = this.words.slice(0); - - return clone; - }, - - /** - * Creates a word array filled with random bytes. - * - * @param {number} nBytes The number of random bytes to generate. - * - * @return {WordArray} The random word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.lib.WordArray.random(16); - */ - random: function (nBytes) { - var words = []; - - for (var i = 0; i < nBytes; i += 4) { - words.push(cryptoSecureRandomInt()); - } - - return new WordArray.init(words, nBytes); - } - }); - - /** - * Encoder namespace. - */ - var C_enc = C.enc = {}; - - /** - * Hex encoding strategy. - */ - var Hex = C_enc.Hex = { - /** - * Converts a word array to a hex string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The hex string. - * - * @static - * - * @example - * - * var hexString = CryptoJS.enc.Hex.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - - // Convert - var hexChars = []; - for (var i = 0; i < sigBytes; i++) { - var bite = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - hexChars.push((bite >>> 4).toString(16)); - hexChars.push((bite & 0x0f).toString(16)); - } - - return hexChars.join(''); - }, - - /** - * Converts a hex string to a word array. - * - * @param {string} hexStr The hex string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Hex.parse(hexString); - */ - parse: function (hexStr) { - // Shortcut - var hexStrLength = hexStr.length; - - // Convert - var words = []; - for (var i = 0; i < hexStrLength; i += 2) { - words[i >>> 3] |= parseInt(hexStr.substr(i, 2), 16) << (24 - (i % 8) * 4); - } - - return new WordArray.init(words, hexStrLength / 2); - } - }; - - /** - * Latin1 encoding strategy. - */ - var Latin1 = C_enc.Latin1 = { - /** - * Converts a word array to a Latin1 string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The Latin1 string. - * - * @static - * - * @example - * - * var latin1String = CryptoJS.enc.Latin1.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - - // Convert - var latin1Chars = []; - for (var i = 0; i < sigBytes; i++) { - var bite = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - latin1Chars.push(String.fromCharCode(bite)); - } - - return latin1Chars.join(''); - }, - - /** - * Converts a Latin1 string to a word array. - * - * @param {string} latin1Str The Latin1 string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Latin1.parse(latin1String); - */ - parse: function (latin1Str) { - // Shortcut - var latin1StrLength = latin1Str.length; - - // Convert - var words = []; - for (var i = 0; i < latin1StrLength; i++) { - words[i >>> 2] |= (latin1Str.charCodeAt(i) & 0xff) << (24 - (i % 4) * 8); - } - - return new WordArray.init(words, latin1StrLength); - } - }; - - /** - * UTF-8 encoding strategy. - */ - var Utf8 = C_enc.Utf8 = { - /** - * Converts a word array to a UTF-8 string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-8 string. - * - * @static - * - * @example - * - * var utf8String = CryptoJS.enc.Utf8.stringify(wordArray); - */ - stringify: function (wordArray) { - try { - return decodeURIComponent(escape(Latin1.stringify(wordArray))); - } catch (e) { - throw new Error('Malformed UTF-8 data'); - } - }, - - /** - * Converts a UTF-8 string to a word array. - * - * @param {string} utf8Str The UTF-8 string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf8.parse(utf8String); - */ - parse: function (utf8Str) { - return Latin1.parse(unescape(encodeURIComponent(utf8Str))); - } - }; - - /** - * Abstract buffered block algorithm template. - * - * The property blockSize must be implemented in a concrete subtype. - * - * @property {number} _minBufferSize The number of blocks that should be kept unprocessed in the buffer. Default: 0 - */ - var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm = Base.extend({ - /** - * Resets this block algorithm's data buffer to its initial state. - * - * @example - * - * bufferedBlockAlgorithm.reset(); - */ - reset: function () { - // Initial values - this._data = new WordArray.init(); - this._nDataBytes = 0; - }, - - /** - * Adds new data to this block algorithm's buffer. - * - * @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8. - * - * @example - * - * bufferedBlockAlgorithm._append('data'); - * bufferedBlockAlgorithm._append(wordArray); - */ - _append: function (data) { - // Convert string to WordArray, else assume WordArray already - if (typeof data == 'string') { - data = Utf8.parse(data); - } - - // Append - this._data.concat(data); - this._nDataBytes += data.sigBytes; - }, - - /** - * Processes available data blocks. - * - * This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype. - * - * @param {boolean} doFlush Whether all blocks and partial blocks should be processed. - * - * @return {WordArray} The processed data. - * - * @example - * - * var processedData = bufferedBlockAlgorithm._process(); - * var processedData = bufferedBlockAlgorithm._process(!!'flush'); - */ - _process: function (doFlush) { - var processedWords; - - // Shortcuts - var data = this._data; - var dataWords = data.words; - var dataSigBytes = data.sigBytes; - var blockSize = this.blockSize; - var blockSizeBytes = blockSize * 4; - - // Count blocks ready - var nBlocksReady = dataSigBytes / blockSizeBytes; - if (doFlush) { - // Round up to include partial blocks - nBlocksReady = Math.ceil(nBlocksReady); - } else { - // Round down to include only full blocks, - // less the number of blocks that must remain in the buffer - nBlocksReady = Math.max((nBlocksReady | 0) - this._minBufferSize, 0); - } - - // Count words ready - var nWordsReady = nBlocksReady * blockSize; - - // Count bytes ready - var nBytesReady = Math.min(nWordsReady * 4, dataSigBytes); - - // Process blocks - if (nWordsReady) { - for (var offset = 0; offset < nWordsReady; offset += blockSize) { - // Perform concrete-algorithm logic - this._doProcessBlock(dataWords, offset); - } - - // Remove processed words - processedWords = dataWords.splice(0, nWordsReady); - data.sigBytes -= nBytesReady; - } - - // Return processed words - return new WordArray.init(processedWords, nBytesReady); - }, - - /** - * Creates a copy of this object. - * - * @return {Object} The clone. - * - * @example - * - * var clone = bufferedBlockAlgorithm.clone(); - */ - clone: function () { - var clone = Base.clone.call(this); - clone._data = this._data.clone(); - - return clone; - }, - - _minBufferSize: 0 - }); - - /** - * Abstract hasher template. - * - * @property {number} blockSize The number of 32-bit words this hasher operates on. Default: 16 (512 bits) - */ - var Hasher = C_lib.Hasher = BufferedBlockAlgorithm.extend({ - /** - * Configuration options. - */ - cfg: Base.extend(), - - /** - * Initializes a newly created hasher. - * - * @param {Object} cfg (Optional) The configuration options to use for this hash computation. - * - * @example - * - * var hasher = CryptoJS.algo.SHA256.create(); - */ - init: function (cfg) { - // Apply config defaults - this.cfg = this.cfg.extend(cfg); - - // Set initial values - this.reset(); - }, - - /** - * Resets this hasher to its initial state. - * - * @example - * - * hasher.reset(); - */ - reset: function () { - // Reset data buffer - BufferedBlockAlgorithm.reset.call(this); - - // Perform concrete-hasher logic - this._doReset(); - }, - - /** - * Updates this hasher with a message. - * - * @param {WordArray|string} messageUpdate The message to append. - * - * @return {Hasher} This hasher. - * - * @example - * - * hasher.update('message'); - * hasher.update(wordArray); - */ - update: function (messageUpdate) { - // Append - this._append(messageUpdate); - - // Update the hash - this._process(); - - // Chainable - return this; - }, - - /** - * Finalizes the hash computation. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} messageUpdate (Optional) A final message update. - * - * @return {WordArray} The hash. - * - * @example - * - * var hash = hasher.finalize(); - * var hash = hasher.finalize('message'); - * var hash = hasher.finalize(wordArray); - */ - finalize: function (messageUpdate) { - // Final message update - if (messageUpdate) { - this._append(messageUpdate); - } - - // Perform concrete-hasher logic - var hash = this._doFinalize(); - - return hash; - }, - - blockSize: 512/32, - - /** - * Creates a shortcut function to a hasher's object interface. - * - * @param {Hasher} hasher The hasher to create a helper for. - * - * @return {Function} The shortcut function. - * - * @static - * - * @example - * - * var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256); - */ - _createHelper: function (hasher) { - return function (message, cfg) { - return new hasher.init(cfg).finalize(message); - }; - }, - - /** - * Creates a shortcut function to the HMAC's object interface. - * - * @param {Hasher} hasher The hasher to use in this HMAC helper. - * - * @return {Function} The shortcut function. - * - * @static - * - * @example - * - * var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256); - */ - _createHmacHelper: function (hasher) { - return function (message, key) { - return new C_algo.HMAC.init(hasher, key).finalize(message); - }; - } - }); - - /** - * Algorithm namespace. - */ - var C_algo = C.algo = {}; - - return C; - }(Math)); - - - (function (undefined) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var X32WordArray = C_lib.WordArray; - - /** - * x64 namespace. - */ - var C_x64 = C.x64 = {}; - - /** - * A 64-bit word. - */ - var X64Word = C_x64.Word = Base.extend({ - /** - * Initializes a newly created 64-bit word. - * - * @param {number} high The high 32 bits. - * @param {number} low The low 32 bits. - * - * @example - * - * var x64Word = CryptoJS.x64.Word.create(0x00010203, 0x04050607); - */ - init: function (high, low) { - this.high = high; - this.low = low; - } - - /** - * Bitwise NOTs this word. - * - * @return {X64Word} A new x64-Word object after negating. - * - * @example - * - * var negated = x64Word.not(); - */ - // not: function () { - // var high = ~this.high; - // var low = ~this.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise ANDs this word with the passed word. - * - * @param {X64Word} word The x64-Word to AND with this word. - * - * @return {X64Word} A new x64-Word object after ANDing. - * - * @example - * - * var anded = x64Word.and(anotherX64Word); - */ - // and: function (word) { - // var high = this.high & word.high; - // var low = this.low & word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise ORs this word with the passed word. - * - * @param {X64Word} word The x64-Word to OR with this word. - * - * @return {X64Word} A new x64-Word object after ORing. - * - * @example - * - * var ored = x64Word.or(anotherX64Word); - */ - // or: function (word) { - // var high = this.high | word.high; - // var low = this.low | word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise XORs this word with the passed word. - * - * @param {X64Word} word The x64-Word to XOR with this word. - * - * @return {X64Word} A new x64-Word object after XORing. - * - * @example - * - * var xored = x64Word.xor(anotherX64Word); - */ - // xor: function (word) { - // var high = this.high ^ word.high; - // var low = this.low ^ word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Shifts this word n bits to the left. - * - * @param {number} n The number of bits to shift. - * - * @return {X64Word} A new x64-Word object after shifting. - * - * @example - * - * var shifted = x64Word.shiftL(25); - */ - // shiftL: function (n) { - // if (n < 32) { - // var high = (this.high << n) | (this.low >>> (32 - n)); - // var low = this.low << n; - // } else { - // var high = this.low << (n - 32); - // var low = 0; - // } - - // return X64Word.create(high, low); - // }, - - /** - * Shifts this word n bits to the right. - * - * @param {number} n The number of bits to shift. - * - * @return {X64Word} A new x64-Word object after shifting. - * - * @example - * - * var shifted = x64Word.shiftR(7); - */ - // shiftR: function (n) { - // if (n < 32) { - // var low = (this.low >>> n) | (this.high << (32 - n)); - // var high = this.high >>> n; - // } else { - // var low = this.high >>> (n - 32); - // var high = 0; - // } - - // return X64Word.create(high, low); - // }, - - /** - * Rotates this word n bits to the left. - * - * @param {number} n The number of bits to rotate. - * - * @return {X64Word} A new x64-Word object after rotating. - * - * @example - * - * var rotated = x64Word.rotL(25); - */ - // rotL: function (n) { - // return this.shiftL(n).or(this.shiftR(64 - n)); - // }, - - /** - * Rotates this word n bits to the right. - * - * @param {number} n The number of bits to rotate. - * - * @return {X64Word} A new x64-Word object after rotating. - * - * @example - * - * var rotated = x64Word.rotR(7); - */ - // rotR: function (n) { - // return this.shiftR(n).or(this.shiftL(64 - n)); - // }, - - /** - * Adds this word with the passed word. - * - * @param {X64Word} word The x64-Word to add with this word. - * - * @return {X64Word} A new x64-Word object after adding. - * - * @example - * - * var added = x64Word.add(anotherX64Word); - */ - // add: function (word) { - // var low = (this.low + word.low) | 0; - // var carry = (low >>> 0) < (this.low >>> 0) ? 1 : 0; - // var high = (this.high + word.high + carry) | 0; - - // return X64Word.create(high, low); - // } - }); - - /** - * An array of 64-bit words. - * - * @property {Array} words The array of CryptoJS.x64.Word objects. - * @property {number} sigBytes The number of significant bytes in this word array. - */ - var X64WordArray = C_x64.WordArray = Base.extend({ - /** - * Initializes a newly created word array. - * - * @param {Array} words (Optional) An array of CryptoJS.x64.Word objects. - * @param {number} sigBytes (Optional) The number of significant bytes in the words. - * - * @example - * - * var wordArray = CryptoJS.x64.WordArray.create(); - * - * var wordArray = CryptoJS.x64.WordArray.create([ - * CryptoJS.x64.Word.create(0x00010203, 0x04050607), - * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f) - * ]); - * - * var wordArray = CryptoJS.x64.WordArray.create([ - * CryptoJS.x64.Word.create(0x00010203, 0x04050607), - * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f) - * ], 10); - */ - init: function (words, sigBytes) { - words = this.words = words || []; - - if (sigBytes != undefined) { - this.sigBytes = sigBytes; - } else { - this.sigBytes = words.length * 8; - } - }, - - /** - * Converts this 64-bit word array to a 32-bit word array. - * - * @return {CryptoJS.lib.WordArray} This word array's data as a 32-bit word array. - * - * @example - * - * var x32WordArray = x64WordArray.toX32(); - */ - toX32: function () { - // Shortcuts - var x64Words = this.words; - var x64WordsLength = x64Words.length; - - // Convert - var x32Words = []; - for (var i = 0; i < x64WordsLength; i++) { - var x64Word = x64Words[i]; - x32Words.push(x64Word.high); - x32Words.push(x64Word.low); - } - - return X32WordArray.create(x32Words, this.sigBytes); - }, - - /** - * Creates a copy of this word array. - * - * @return {X64WordArray} The clone. - * - * @example - * - * var clone = x64WordArray.clone(); - */ - clone: function () { - var clone = Base.clone.call(this); - - // Clone "words" array - var words = clone.words = this.words.slice(0); - - // Clone each X64Word object - var wordsLength = words.length; - for (var i = 0; i < wordsLength; i++) { - words[i] = words[i].clone(); - } - - return clone; - } - }); - }()); - - - (function () { - // Check if typed arrays are supported - if (typeof ArrayBuffer != 'function') { - return; - } - - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - - // Reference original init - var superInit = WordArray.init; - - // Augment WordArray.init to handle typed arrays - var subInit = WordArray.init = function (typedArray) { - // Convert buffers to uint8 - if (typedArray instanceof ArrayBuffer) { - typedArray = new Uint8Array(typedArray); - } - - // Convert other array views to uint8 - if ( - typedArray instanceof Int8Array || - (typeof Uint8ClampedArray !== "undefined" && typedArray instanceof Uint8ClampedArray) || - typedArray instanceof Int16Array || - typedArray instanceof Uint16Array || - typedArray instanceof Int32Array || - typedArray instanceof Uint32Array || - typedArray instanceof Float32Array || - typedArray instanceof Float64Array - ) { - typedArray = new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength); - } - - // Handle Uint8Array - if (typedArray instanceof Uint8Array) { - // Shortcut - var typedArrayByteLength = typedArray.byteLength; - - // Extract bytes - var words = []; - for (var i = 0; i < typedArrayByteLength; i++) { - words[i >>> 2] |= typedArray[i] << (24 - (i % 4) * 8); - } - - // Initialize this word array - superInit.call(this, words, typedArrayByteLength); - } else { - // Else call normal init - superInit.apply(this, arguments); - } - }; - - subInit.prototype = WordArray; - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_enc = C.enc; - - /** - * UTF-16 BE encoding strategy. - */ - var Utf16BE = C_enc.Utf16 = C_enc.Utf16BE = { - /** - * Converts a word array to a UTF-16 BE string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-16 BE string. - * - * @static - * - * @example - * - * var utf16String = CryptoJS.enc.Utf16.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - - // Convert - var utf16Chars = []; - for (var i = 0; i < sigBytes; i += 2) { - var codePoint = (words[i >>> 2] >>> (16 - (i % 4) * 8)) & 0xffff; - utf16Chars.push(String.fromCharCode(codePoint)); - } - - return utf16Chars.join(''); - }, - - /** - * Converts a UTF-16 BE string to a word array. - * - * @param {string} utf16Str The UTF-16 BE string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf16.parse(utf16String); - */ - parse: function (utf16Str) { - // Shortcut - var utf16StrLength = utf16Str.length; - - // Convert - var words = []; - for (var i = 0; i < utf16StrLength; i++) { - words[i >>> 1] |= utf16Str.charCodeAt(i) << (16 - (i % 2) * 16); - } - - return WordArray.create(words, utf16StrLength * 2); - } - }; - - /** - * UTF-16 LE encoding strategy. - */ - C_enc.Utf16LE = { - /** - * Converts a word array to a UTF-16 LE string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-16 LE string. - * - * @static - * - * @example - * - * var utf16Str = CryptoJS.enc.Utf16LE.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - - // Convert - var utf16Chars = []; - for (var i = 0; i < sigBytes; i += 2) { - var codePoint = swapEndian((words[i >>> 2] >>> (16 - (i % 4) * 8)) & 0xffff); - utf16Chars.push(String.fromCharCode(codePoint)); - } - - return utf16Chars.join(''); - }, - - /** - * Converts a UTF-16 LE string to a word array. - * - * @param {string} utf16Str The UTF-16 LE string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf16LE.parse(utf16Str); - */ - parse: function (utf16Str) { - // Shortcut - var utf16StrLength = utf16Str.length; - - // Convert - var words = []; - for (var i = 0; i < utf16StrLength; i++) { - words[i >>> 1] |= swapEndian(utf16Str.charCodeAt(i) << (16 - (i % 2) * 16)); - } - - return WordArray.create(words, utf16StrLength * 2); - } - }; - - function swapEndian(word) { - return ((word << 8) & 0xff00ff00) | ((word >>> 8) & 0x00ff00ff); - } - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_enc = C.enc; - - /** - * Base64 encoding strategy. - */ - var Base64 = C_enc.Base64 = { - /** - * Converts a word array to a Base64 string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The Base64 string. - * - * @static - * - * @example - * - * var base64String = CryptoJS.enc.Base64.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - var map = this._map; - - // Clamp excess bits - wordArray.clamp(); - - // Convert - var base64Chars = []; - for (var i = 0; i < sigBytes; i += 3) { - var byte1 = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - var byte2 = (words[(i + 1) >>> 2] >>> (24 - ((i + 1) % 4) * 8)) & 0xff; - var byte3 = (words[(i + 2) >>> 2] >>> (24 - ((i + 2) % 4) * 8)) & 0xff; - - var triplet = (byte1 << 16) | (byte2 << 8) | byte3; - - for (var j = 0; (j < 4) && (i + j * 0.75 < sigBytes); j++) { - base64Chars.push(map.charAt((triplet >>> (6 * (3 - j))) & 0x3f)); - } - } - - // Add padding - var paddingChar = map.charAt(64); - if (paddingChar) { - while (base64Chars.length % 4) { - base64Chars.push(paddingChar); - } - } - - return base64Chars.join(''); - }, - - /** - * Converts a Base64 string to a word array. - * - * @param {string} base64Str The Base64 string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Base64.parse(base64String); - */ - parse: function (base64Str) { - // Shortcuts - var base64StrLength = base64Str.length; - var map = this._map; - var reverseMap = this._reverseMap; - - if (!reverseMap) { - reverseMap = this._reverseMap = []; - for (var j = 0; j < map.length; j++) { - reverseMap[map.charCodeAt(j)] = j; - } - } - - // Ignore padding - var paddingChar = map.charAt(64); - if (paddingChar) { - var paddingIndex = base64Str.indexOf(paddingChar); - if (paddingIndex !== -1) { - base64StrLength = paddingIndex; - } - } - - // Convert - return parseLoop(base64Str, base64StrLength, reverseMap); - - }, - - _map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=' - }; - - function parseLoop(base64Str, base64StrLength, reverseMap) { - var words = []; - var nBytes = 0; - for (var i = 0; i < base64StrLength; i++) { - if (i % 4) { - var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << ((i % 4) * 2); - var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> (6 - (i % 4) * 2); - var bitsCombined = bits1 | bits2; - words[nBytes >>> 2] |= bitsCombined << (24 - (nBytes % 4) * 8); - nBytes++; - } - } - return WordArray.create(words, nBytes); - } - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_enc = C.enc; - - /** - * Base64url encoding strategy. - */ - var Base64url = C_enc.Base64url = { - /** - * Converts a word array to a Base64url string. - * - * @param {WordArray} wordArray The word array. - * - * @param {boolean} urlSafe Whether to use url safe - * - * @return {string} The Base64url string. - * - * @static - * - * @example - * - * var base64String = CryptoJS.enc.Base64url.stringify(wordArray); - */ - stringify: function (wordArray, urlSafe) { - if (urlSafe === undefined) { - urlSafe = true - } - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - var map = urlSafe ? this._safe_map : this._map; - - // Clamp excess bits - wordArray.clamp(); - - // Convert - var base64Chars = []; - for (var i = 0; i < sigBytes; i += 3) { - var byte1 = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - var byte2 = (words[(i + 1) >>> 2] >>> (24 - ((i + 1) % 4) * 8)) & 0xff; - var byte3 = (words[(i + 2) >>> 2] >>> (24 - ((i + 2) % 4) * 8)) & 0xff; - - var triplet = (byte1 << 16) | (byte2 << 8) | byte3; - - for (var j = 0; (j < 4) && (i + j * 0.75 < sigBytes); j++) { - base64Chars.push(map.charAt((triplet >>> (6 * (3 - j))) & 0x3f)); - } - } - - // Add padding - var paddingChar = map.charAt(64); - if (paddingChar) { - while (base64Chars.length % 4) { - base64Chars.push(paddingChar); - } - } - - return base64Chars.join(''); - }, - - /** - * Converts a Base64url string to a word array. - * - * @param {string} base64Str The Base64url string. - * - * @param {boolean} urlSafe Whether to use url safe - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Base64url.parse(base64String); - */ - parse: function (base64Str, urlSafe) { - if (urlSafe === undefined) { - urlSafe = true - } - - // Shortcuts - var base64StrLength = base64Str.length; - var map = urlSafe ? this._safe_map : this._map; - var reverseMap = this._reverseMap; - - if (!reverseMap) { - reverseMap = this._reverseMap = []; - for (var j = 0; j < map.length; j++) { - reverseMap[map.charCodeAt(j)] = j; - } - } - - // Ignore padding - var paddingChar = map.charAt(64); - if (paddingChar) { - var paddingIndex = base64Str.indexOf(paddingChar); - if (paddingIndex !== -1) { - base64StrLength = paddingIndex; - } - } - - // Convert - return parseLoop(base64Str, base64StrLength, reverseMap); - - }, - - _map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=', - _safe_map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_', - }; - - function parseLoop(base64Str, base64StrLength, reverseMap) { - var words = []; - var nBytes = 0; - for (var i = 0; i < base64StrLength; i++) { - if (i % 4) { - var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << ((i % 4) * 2); - var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> (6 - (i % 4) * 2); - var bitsCombined = bits1 | bits2; - words[nBytes >>> 2] |= bitsCombined << (24 - (nBytes % 4) * 8); - nBytes++; - } - } - return WordArray.create(words, nBytes); - } - }()); - - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Constants table - var T = []; - - // Compute constants - (function () { - for (var i = 0; i < 64; i++) { - T[i] = (Math.abs(Math.sin(i + 1)) * 0x100000000) | 0; - } - }()); - - /** - * MD5 hash algorithm. - */ - var MD5 = C_algo.MD5 = Hasher.extend({ - _doReset: function () { - this._hash = new WordArray.init([ - 0x67452301, 0xefcdab89, - 0x98badcfe, 0x10325476 - ]); - }, - - _doProcessBlock: function (M, offset) { - // Swap endian - for (var i = 0; i < 16; i++) { - // Shortcuts - var offset_i = offset + i; - var M_offset_i = M[offset_i]; - - M[offset_i] = ( - (((M_offset_i << 8) | (M_offset_i >>> 24)) & 0x00ff00ff) | - (((M_offset_i << 24) | (M_offset_i >>> 8)) & 0xff00ff00) - ); - } - - // Shortcuts - var H = this._hash.words; - - var M_offset_0 = M[offset + 0]; - var M_offset_1 = M[offset + 1]; - var M_offset_2 = M[offset + 2]; - var M_offset_3 = M[offset + 3]; - var M_offset_4 = M[offset + 4]; - var M_offset_5 = M[offset + 5]; - var M_offset_6 = M[offset + 6]; - var M_offset_7 = M[offset + 7]; - var M_offset_8 = M[offset + 8]; - var M_offset_9 = M[offset + 9]; - var M_offset_10 = M[offset + 10]; - var M_offset_11 = M[offset + 11]; - var M_offset_12 = M[offset + 12]; - var M_offset_13 = M[offset + 13]; - var M_offset_14 = M[offset + 14]; - var M_offset_15 = M[offset + 15]; - - // Working variables - var a = H[0]; - var b = H[1]; - var c = H[2]; - var d = H[3]; - - // Computation - a = FF(a, b, c, d, M_offset_0, 7, T[0]); - d = FF(d, a, b, c, M_offset_1, 12, T[1]); - c = FF(c, d, a, b, M_offset_2, 17, T[2]); - b = FF(b, c, d, a, M_offset_3, 22, T[3]); - a = FF(a, b, c, d, M_offset_4, 7, T[4]); - d = FF(d, a, b, c, M_offset_5, 12, T[5]); - c = FF(c, d, a, b, M_offset_6, 17, T[6]); - b = FF(b, c, d, a, M_offset_7, 22, T[7]); - a = FF(a, b, c, d, M_offset_8, 7, T[8]); - d = FF(d, a, b, c, M_offset_9, 12, T[9]); - c = FF(c, d, a, b, M_offset_10, 17, T[10]); - b = FF(b, c, d, a, M_offset_11, 22, T[11]); - a = FF(a, b, c, d, M_offset_12, 7, T[12]); - d = FF(d, a, b, c, M_offset_13, 12, T[13]); - c = FF(c, d, a, b, M_offset_14, 17, T[14]); - b = FF(b, c, d, a, M_offset_15, 22, T[15]); - - a = GG(a, b, c, d, M_offset_1, 5, T[16]); - d = GG(d, a, b, c, M_offset_6, 9, T[17]); - c = GG(c, d, a, b, M_offset_11, 14, T[18]); - b = GG(b, c, d, a, M_offset_0, 20, T[19]); - a = GG(a, b, c, d, M_offset_5, 5, T[20]); - d = GG(d, a, b, c, M_offset_10, 9, T[21]); - c = GG(c, d, a, b, M_offset_15, 14, T[22]); - b = GG(b, c, d, a, M_offset_4, 20, T[23]); - a = GG(a, b, c, d, M_offset_9, 5, T[24]); - d = GG(d, a, b, c, M_offset_14, 9, T[25]); - c = GG(c, d, a, b, M_offset_3, 14, T[26]); - b = GG(b, c, d, a, M_offset_8, 20, T[27]); - a = GG(a, b, c, d, M_offset_13, 5, T[28]); - d = GG(d, a, b, c, M_offset_2, 9, T[29]); - c = GG(c, d, a, b, M_offset_7, 14, T[30]); - b = GG(b, c, d, a, M_offset_12, 20, T[31]); - - a = HH(a, b, c, d, M_offset_5, 4, T[32]); - d = HH(d, a, b, c, M_offset_8, 11, T[33]); - c = HH(c, d, a, b, M_offset_11, 16, T[34]); - b = HH(b, c, d, a, M_offset_14, 23, T[35]); - a = HH(a, b, c, d, M_offset_1, 4, T[36]); - d = HH(d, a, b, c, M_offset_4, 11, T[37]); - c = HH(c, d, a, b, M_offset_7, 16, T[38]); - b = HH(b, c, d, a, M_offset_10, 23, T[39]); - a = HH(a, b, c, d, M_offset_13, 4, T[40]); - d = HH(d, a, b, c, M_offset_0, 11, T[41]); - c = HH(c, d, a, b, M_offset_3, 16, T[42]); - b = HH(b, c, d, a, M_offset_6, 23, T[43]); - a = HH(a, b, c, d, M_offset_9, 4, T[44]); - d = HH(d, a, b, c, M_offset_12, 11, T[45]); - c = HH(c, d, a, b, M_offset_15, 16, T[46]); - b = HH(b, c, d, a, M_offset_2, 23, T[47]); - - a = II(a, b, c, d, M_offset_0, 6, T[48]); - d = II(d, a, b, c, M_offset_7, 10, T[49]); - c = II(c, d, a, b, M_offset_14, 15, T[50]); - b = II(b, c, d, a, M_offset_5, 21, T[51]); - a = II(a, b, c, d, M_offset_12, 6, T[52]); - d = II(d, a, b, c, M_offset_3, 10, T[53]); - c = II(c, d, a, b, M_offset_10, 15, T[54]); - b = II(b, c, d, a, M_offset_1, 21, T[55]); - a = II(a, b, c, d, M_offset_8, 6, T[56]); - d = II(d, a, b, c, M_offset_15, 10, T[57]); - c = II(c, d, a, b, M_offset_6, 15, T[58]); - b = II(b, c, d, a, M_offset_13, 21, T[59]); - a = II(a, b, c, d, M_offset_4, 6, T[60]); - d = II(d, a, b, c, M_offset_11, 10, T[61]); - c = II(c, d, a, b, M_offset_2, 15, T[62]); - b = II(b, c, d, a, M_offset_9, 21, T[63]); - - // Intermediate hash value - H[0] = (H[0] + a) | 0; - H[1] = (H[1] + b) | 0; - H[2] = (H[2] + c) | 0; - H[3] = (H[3] + d) | 0; - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - - var nBitsTotalH = Math.floor(nBitsTotal / 0x100000000); - var nBitsTotalL = nBitsTotal; - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = ( - (((nBitsTotalH << 8) | (nBitsTotalH >>> 24)) & 0x00ff00ff) | - (((nBitsTotalH << 24) | (nBitsTotalH >>> 8)) & 0xff00ff00) - ); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = ( - (((nBitsTotalL << 8) | (nBitsTotalL >>> 24)) & 0x00ff00ff) | - (((nBitsTotalL << 24) | (nBitsTotalL >>> 8)) & 0xff00ff00) - ); - - data.sigBytes = (dataWords.length + 1) * 4; - - // Hash final blocks - this._process(); - - // Shortcuts - var hash = this._hash; - var H = hash.words; - - // Swap endian - for (var i = 0; i < 4; i++) { - // Shortcut - var H_i = H[i]; - - H[i] = (((H_i << 8) | (H_i >>> 24)) & 0x00ff00ff) | - (((H_i << 24) | (H_i >>> 8)) & 0xff00ff00); - } - - // Return final computed hash - return hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - } - }); - - function FF(a, b, c, d, x, s, t) { - var n = a + ((b & c) | (~b & d)) + x + t; - return ((n << s) | (n >>> (32 - s))) + b; - } - - function GG(a, b, c, d, x, s, t) { - var n = a + ((b & d) | (c & ~d)) + x + t; - return ((n << s) | (n >>> (32 - s))) + b; - } - - function HH(a, b, c, d, x, s, t) { - var n = a + (b ^ c ^ d) + x + t; - return ((n << s) | (n >>> (32 - s))) + b; - } - - function II(a, b, c, d, x, s, t) { - var n = a + (c ^ (b | ~d)) + x + t; - return ((n << s) | (n >>> (32 - s))) + b; - } - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.MD5('message'); - * var hash = CryptoJS.MD5(wordArray); - */ - C.MD5 = Hasher._createHelper(MD5); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacMD5(message, key); - */ - C.HmacMD5 = Hasher._createHmacHelper(MD5); - }(Math)); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Reusable object - var W = []; - - /** - * SHA-1 hash algorithm. - */ - var SHA1 = C_algo.SHA1 = Hasher.extend({ - _doReset: function () { - this._hash = new WordArray.init([ - 0x67452301, 0xefcdab89, - 0x98badcfe, 0x10325476, - 0xc3d2e1f0 - ]); - }, - - _doProcessBlock: function (M, offset) { - // Shortcut - var H = this._hash.words; - - // Working variables - var a = H[0]; - var b = H[1]; - var c = H[2]; - var d = H[3]; - var e = H[4]; - - // Computation - for (var i = 0; i < 80; i++) { - if (i < 16) { - W[i] = M[offset + i] | 0; - } else { - var n = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]; - W[i] = (n << 1) | (n >>> 31); - } - - var t = ((a << 5) | (a >>> 27)) + e + W[i]; - if (i < 20) { - t += ((b & c) | (~b & d)) + 0x5a827999; - } else if (i < 40) { - t += (b ^ c ^ d) + 0x6ed9eba1; - } else if (i < 60) { - t += ((b & c) | (b & d) | (c & d)) - 0x70e44324; - } else /* if (i < 80) */ { - t += (b ^ c ^ d) - 0x359d3e2a; - } - - e = d; - d = c; - c = (b << 30) | (b >>> 2); - b = a; - a = t; - } - - // Intermediate hash value - H[0] = (H[0] + a) | 0; - H[1] = (H[1] + b) | 0; - H[2] = (H[2] + c) | 0; - H[3] = (H[3] + d) | 0; - H[4] = (H[4] + e) | 0; - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = Math.floor(nBitsTotal / 0x100000000); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = nBitsTotal; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Return final computed hash - return this._hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA1('message'); - * var hash = CryptoJS.SHA1(wordArray); - */ - C.SHA1 = Hasher._createHelper(SHA1); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA1(message, key); - */ - C.HmacSHA1 = Hasher._createHmacHelper(SHA1); - }()); - - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Initialization and round constants tables - var H = []; - var K = []; - - // Compute constants - (function () { - function isPrime(n) { - var sqrtN = Math.sqrt(n); - for (var factor = 2; factor <= sqrtN; factor++) { - if (!(n % factor)) { - return false; - } - } - - return true; - } - - function getFractionalBits(n) { - return ((n - (n | 0)) * 0x100000000) | 0; - } - - var n = 2; - var nPrime = 0; - while (nPrime < 64) { - if (isPrime(n)) { - if (nPrime < 8) { - H[nPrime] = getFractionalBits(Math.pow(n, 1 / 2)); - } - K[nPrime] = getFractionalBits(Math.pow(n, 1 / 3)); - - nPrime++; - } - - n++; - } - }()); - - // Reusable object - var W = []; - - /** - * SHA-256 hash algorithm. - */ - var SHA256 = C_algo.SHA256 = Hasher.extend({ - _doReset: function () { - this._hash = new WordArray.init(H.slice(0)); - }, - - _doProcessBlock: function (M, offset) { - // Shortcut - var H = this._hash.words; - - // Working variables - var a = H[0]; - var b = H[1]; - var c = H[2]; - var d = H[3]; - var e = H[4]; - var f = H[5]; - var g = H[6]; - var h = H[7]; - - // Computation - for (var i = 0; i < 64; i++) { - if (i < 16) { - W[i] = M[offset + i] | 0; - } else { - var gamma0x = W[i - 15]; - var gamma0 = ((gamma0x << 25) | (gamma0x >>> 7)) ^ - ((gamma0x << 14) | (gamma0x >>> 18)) ^ - (gamma0x >>> 3); - - var gamma1x = W[i - 2]; - var gamma1 = ((gamma1x << 15) | (gamma1x >>> 17)) ^ - ((gamma1x << 13) | (gamma1x >>> 19)) ^ - (gamma1x >>> 10); - - W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16]; - } - - var ch = (e & f) ^ (~e & g); - var maj = (a & b) ^ (a & c) ^ (b & c); - - var sigma0 = ((a << 30) | (a >>> 2)) ^ ((a << 19) | (a >>> 13)) ^ ((a << 10) | (a >>> 22)); - var sigma1 = ((e << 26) | (e >>> 6)) ^ ((e << 21) | (e >>> 11)) ^ ((e << 7) | (e >>> 25)); - - var t1 = h + sigma1 + ch + K[i] + W[i]; - var t2 = sigma0 + maj; - - h = g; - g = f; - f = e; - e = (d + t1) | 0; - d = c; - c = b; - b = a; - a = (t1 + t2) | 0; - } - - // Intermediate hash value - H[0] = (H[0] + a) | 0; - H[1] = (H[1] + b) | 0; - H[2] = (H[2] + c) | 0; - H[3] = (H[3] + d) | 0; - H[4] = (H[4] + e) | 0; - H[5] = (H[5] + f) | 0; - H[6] = (H[6] + g) | 0; - H[7] = (H[7] + h) | 0; - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = Math.floor(nBitsTotal / 0x100000000); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = nBitsTotal; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Return final computed hash - return this._hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA256('message'); - * var hash = CryptoJS.SHA256(wordArray); - */ - C.SHA256 = Hasher._createHelper(SHA256); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA256(message, key); - */ - C.HmacSHA256 = Hasher._createHmacHelper(SHA256); - }(Math)); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_algo = C.algo; - var SHA256 = C_algo.SHA256; - - /** - * SHA-224 hash algorithm. - */ - var SHA224 = C_algo.SHA224 = SHA256.extend({ - _doReset: function () { - this._hash = new WordArray.init([ - 0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, - 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4 - ]); - }, - - _doFinalize: function () { - var hash = SHA256._doFinalize.call(this); - - hash.sigBytes -= 4; - - return hash; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA224('message'); - * var hash = CryptoJS.SHA224(wordArray); - */ - C.SHA224 = SHA256._createHelper(SHA224); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA224(message, key); - */ - C.HmacSHA224 = SHA256._createHmacHelper(SHA224); - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Hasher = C_lib.Hasher; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var X64WordArray = C_x64.WordArray; - var C_algo = C.algo; - - function X64Word_create() { - return X64Word.create.apply(X64Word, arguments); - } - - // Constants - var K = [ - X64Word_create(0x428a2f98, 0xd728ae22), X64Word_create(0x71374491, 0x23ef65cd), - X64Word_create(0xb5c0fbcf, 0xec4d3b2f), X64Word_create(0xe9b5dba5, 0x8189dbbc), - X64Word_create(0x3956c25b, 0xf348b538), X64Word_create(0x59f111f1, 0xb605d019), - X64Word_create(0x923f82a4, 0xaf194f9b), X64Word_create(0xab1c5ed5, 0xda6d8118), - X64Word_create(0xd807aa98, 0xa3030242), X64Word_create(0x12835b01, 0x45706fbe), - X64Word_create(0x243185be, 0x4ee4b28c), X64Word_create(0x550c7dc3, 0xd5ffb4e2), - X64Word_create(0x72be5d74, 0xf27b896f), X64Word_create(0x80deb1fe, 0x3b1696b1), - X64Word_create(0x9bdc06a7, 0x25c71235), X64Word_create(0xc19bf174, 0xcf692694), - X64Word_create(0xe49b69c1, 0x9ef14ad2), X64Word_create(0xefbe4786, 0x384f25e3), - X64Word_create(0x0fc19dc6, 0x8b8cd5b5), X64Word_create(0x240ca1cc, 0x77ac9c65), - X64Word_create(0x2de92c6f, 0x592b0275), X64Word_create(0x4a7484aa, 0x6ea6e483), - X64Word_create(0x5cb0a9dc, 0xbd41fbd4), X64Word_create(0x76f988da, 0x831153b5), - X64Word_create(0x983e5152, 0xee66dfab), X64Word_create(0xa831c66d, 0x2db43210), - X64Word_create(0xb00327c8, 0x98fb213f), X64Word_create(0xbf597fc7, 0xbeef0ee4), - X64Word_create(0xc6e00bf3, 0x3da88fc2), X64Word_create(0xd5a79147, 0x930aa725), - X64Word_create(0x06ca6351, 0xe003826f), X64Word_create(0x14292967, 0x0a0e6e70), - X64Word_create(0x27b70a85, 0x46d22ffc), X64Word_create(0x2e1b2138, 0x5c26c926), - X64Word_create(0x4d2c6dfc, 0x5ac42aed), X64Word_create(0x53380d13, 0x9d95b3df), - X64Word_create(0x650a7354, 0x8baf63de), X64Word_create(0x766a0abb, 0x3c77b2a8), - X64Word_create(0x81c2c92e, 0x47edaee6), X64Word_create(0x92722c85, 0x1482353b), - X64Word_create(0xa2bfe8a1, 0x4cf10364), X64Word_create(0xa81a664b, 0xbc423001), - X64Word_create(0xc24b8b70, 0xd0f89791), X64Word_create(0xc76c51a3, 0x0654be30), - X64Word_create(0xd192e819, 0xd6ef5218), X64Word_create(0xd6990624, 0x5565a910), - X64Word_create(0xf40e3585, 0x5771202a), X64Word_create(0x106aa070, 0x32bbd1b8), - X64Word_create(0x19a4c116, 0xb8d2d0c8), X64Word_create(0x1e376c08, 0x5141ab53), - X64Word_create(0x2748774c, 0xdf8eeb99), X64Word_create(0x34b0bcb5, 0xe19b48a8), - X64Word_create(0x391c0cb3, 0xc5c95a63), X64Word_create(0x4ed8aa4a, 0xe3418acb), - X64Word_create(0x5b9cca4f, 0x7763e373), X64Word_create(0x682e6ff3, 0xd6b2b8a3), - X64Word_create(0x748f82ee, 0x5defb2fc), X64Word_create(0x78a5636f, 0x43172f60), - X64Word_create(0x84c87814, 0xa1f0ab72), X64Word_create(0x8cc70208, 0x1a6439ec), - X64Word_create(0x90befffa, 0x23631e28), X64Word_create(0xa4506ceb, 0xde82bde9), - X64Word_create(0xbef9a3f7, 0xb2c67915), X64Word_create(0xc67178f2, 0xe372532b), - X64Word_create(0xca273ece, 0xea26619c), X64Word_create(0xd186b8c7, 0x21c0c207), - X64Word_create(0xeada7dd6, 0xcde0eb1e), X64Word_create(0xf57d4f7f, 0xee6ed178), - X64Word_create(0x06f067aa, 0x72176fba), X64Word_create(0x0a637dc5, 0xa2c898a6), - X64Word_create(0x113f9804, 0xbef90dae), X64Word_create(0x1b710b35, 0x131c471b), - X64Word_create(0x28db77f5, 0x23047d84), X64Word_create(0x32caab7b, 0x40c72493), - X64Word_create(0x3c9ebe0a, 0x15c9bebc), X64Word_create(0x431d67c4, 0x9c100d4c), - X64Word_create(0x4cc5d4be, 0xcb3e42b6), X64Word_create(0x597f299c, 0xfc657e2a), - X64Word_create(0x5fcb6fab, 0x3ad6faec), X64Word_create(0x6c44198c, 0x4a475817) - ]; - - // Reusable objects - var W = []; - (function () { - for (var i = 0; i < 80; i++) { - W[i] = X64Word_create(); - } - }()); - - /** - * SHA-512 hash algorithm. - */ - var SHA512 = C_algo.SHA512 = Hasher.extend({ - _doReset: function () { - this._hash = new X64WordArray.init([ - new X64Word.init(0x6a09e667, 0xf3bcc908), new X64Word.init(0xbb67ae85, 0x84caa73b), - new X64Word.init(0x3c6ef372, 0xfe94f82b), new X64Word.init(0xa54ff53a, 0x5f1d36f1), - new X64Word.init(0x510e527f, 0xade682d1), new X64Word.init(0x9b05688c, 0x2b3e6c1f), - new X64Word.init(0x1f83d9ab, 0xfb41bd6b), new X64Word.init(0x5be0cd19, 0x137e2179) - ]); - }, - - _doProcessBlock: function (M, offset) { - // Shortcuts - var H = this._hash.words; - - var H0 = H[0]; - var H1 = H[1]; - var H2 = H[2]; - var H3 = H[3]; - var H4 = H[4]; - var H5 = H[5]; - var H6 = H[6]; - var H7 = H[7]; - - var H0h = H0.high; - var H0l = H0.low; - var H1h = H1.high; - var H1l = H1.low; - var H2h = H2.high; - var H2l = H2.low; - var H3h = H3.high; - var H3l = H3.low; - var H4h = H4.high; - var H4l = H4.low; - var H5h = H5.high; - var H5l = H5.low; - var H6h = H6.high; - var H6l = H6.low; - var H7h = H7.high; - var H7l = H7.low; - - // Working variables - var ah = H0h; - var al = H0l; - var bh = H1h; - var bl = H1l; - var ch = H2h; - var cl = H2l; - var dh = H3h; - var dl = H3l; - var eh = H4h; - var el = H4l; - var fh = H5h; - var fl = H5l; - var gh = H6h; - var gl = H6l; - var hh = H7h; - var hl = H7l; - - // Rounds - for (var i = 0; i < 80; i++) { - var Wil; - var Wih; - - // Shortcut - var Wi = W[i]; - - // Extend message - if (i < 16) { - Wih = Wi.high = M[offset + i * 2] | 0; - Wil = Wi.low = M[offset + i * 2 + 1] | 0; - } else { - // Gamma0 - var gamma0x = W[i - 15]; - var gamma0xh = gamma0x.high; - var gamma0xl = gamma0x.low; - var gamma0h = ((gamma0xh >>> 1) | (gamma0xl << 31)) ^ ((gamma0xh >>> 8) | (gamma0xl << 24)) ^ (gamma0xh >>> 7); - var gamma0l = ((gamma0xl >>> 1) | (gamma0xh << 31)) ^ ((gamma0xl >>> 8) | (gamma0xh << 24)) ^ ((gamma0xl >>> 7) | (gamma0xh << 25)); - - // Gamma1 - var gamma1x = W[i - 2]; - var gamma1xh = gamma1x.high; - var gamma1xl = gamma1x.low; - var gamma1h = ((gamma1xh >>> 19) | (gamma1xl << 13)) ^ ((gamma1xh << 3) | (gamma1xl >>> 29)) ^ (gamma1xh >>> 6); - var gamma1l = ((gamma1xl >>> 19) | (gamma1xh << 13)) ^ ((gamma1xl << 3) | (gamma1xh >>> 29)) ^ ((gamma1xl >>> 6) | (gamma1xh << 26)); - - // W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16] - var Wi7 = W[i - 7]; - var Wi7h = Wi7.high; - var Wi7l = Wi7.low; - - var Wi16 = W[i - 16]; - var Wi16h = Wi16.high; - var Wi16l = Wi16.low; - - Wil = gamma0l + Wi7l; - Wih = gamma0h + Wi7h + ((Wil >>> 0) < (gamma0l >>> 0) ? 1 : 0); - Wil = Wil + gamma1l; - Wih = Wih + gamma1h + ((Wil >>> 0) < (gamma1l >>> 0) ? 1 : 0); - Wil = Wil + Wi16l; - Wih = Wih + Wi16h + ((Wil >>> 0) < (Wi16l >>> 0) ? 1 : 0); - - Wi.high = Wih; - Wi.low = Wil; - } - - var chh = (eh & fh) ^ (~eh & gh); - var chl = (el & fl) ^ (~el & gl); - var majh = (ah & bh) ^ (ah & ch) ^ (bh & ch); - var majl = (al & bl) ^ (al & cl) ^ (bl & cl); - - var sigma0h = ((ah >>> 28) | (al << 4)) ^ ((ah << 30) | (al >>> 2)) ^ ((ah << 25) | (al >>> 7)); - var sigma0l = ((al >>> 28) | (ah << 4)) ^ ((al << 30) | (ah >>> 2)) ^ ((al << 25) | (ah >>> 7)); - var sigma1h = ((eh >>> 14) | (el << 18)) ^ ((eh >>> 18) | (el << 14)) ^ ((eh << 23) | (el >>> 9)); - var sigma1l = ((el >>> 14) | (eh << 18)) ^ ((el >>> 18) | (eh << 14)) ^ ((el << 23) | (eh >>> 9)); - - // t1 = h + sigma1 + ch + K[i] + W[i] - var Ki = K[i]; - var Kih = Ki.high; - var Kil = Ki.low; - - var t1l = hl + sigma1l; - var t1h = hh + sigma1h + ((t1l >>> 0) < (hl >>> 0) ? 1 : 0); - var t1l = t1l + chl; - var t1h = t1h + chh + ((t1l >>> 0) < (chl >>> 0) ? 1 : 0); - var t1l = t1l + Kil; - var t1h = t1h + Kih + ((t1l >>> 0) < (Kil >>> 0) ? 1 : 0); - var t1l = t1l + Wil; - var t1h = t1h + Wih + ((t1l >>> 0) < (Wil >>> 0) ? 1 : 0); - - // t2 = sigma0 + maj - var t2l = sigma0l + majl; - var t2h = sigma0h + majh + ((t2l >>> 0) < (sigma0l >>> 0) ? 1 : 0); - - // Update working variables - hh = gh; - hl = gl; - gh = fh; - gl = fl; - fh = eh; - fl = el; - el = (dl + t1l) | 0; - eh = (dh + t1h + ((el >>> 0) < (dl >>> 0) ? 1 : 0)) | 0; - dh = ch; - dl = cl; - ch = bh; - cl = bl; - bh = ah; - bl = al; - al = (t1l + t2l) | 0; - ah = (t1h + t2h + ((al >>> 0) < (t1l >>> 0) ? 1 : 0)) | 0; - } - - // Intermediate hash value - H0l = H0.low = (H0l + al); - H0.high = (H0h + ah + ((H0l >>> 0) < (al >>> 0) ? 1 : 0)); - H1l = H1.low = (H1l + bl); - H1.high = (H1h + bh + ((H1l >>> 0) < (bl >>> 0) ? 1 : 0)); - H2l = H2.low = (H2l + cl); - H2.high = (H2h + ch + ((H2l >>> 0) < (cl >>> 0) ? 1 : 0)); - H3l = H3.low = (H3l + dl); - H3.high = (H3h + dh + ((H3l >>> 0) < (dl >>> 0) ? 1 : 0)); - H4l = H4.low = (H4l + el); - H4.high = (H4h + eh + ((H4l >>> 0) < (el >>> 0) ? 1 : 0)); - H5l = H5.low = (H5l + fl); - H5.high = (H5h + fh + ((H5l >>> 0) < (fl >>> 0) ? 1 : 0)); - H6l = H6.low = (H6l + gl); - H6.high = (H6h + gh + ((H6l >>> 0) < (gl >>> 0) ? 1 : 0)); - H7l = H7.low = (H7l + hl); - H7.high = (H7h + hh + ((H7l >>> 0) < (hl >>> 0) ? 1 : 0)); - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - dataWords[(((nBitsLeft + 128) >>> 10) << 5) + 30] = Math.floor(nBitsTotal / 0x100000000); - dataWords[(((nBitsLeft + 128) >>> 10) << 5) + 31] = nBitsTotal; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Convert hash to 32-bit word array before returning - var hash = this._hash.toX32(); - - // Return final computed hash - return hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - }, - - blockSize: 1024/32 - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA512('message'); - * var hash = CryptoJS.SHA512(wordArray); - */ - C.SHA512 = Hasher._createHelper(SHA512); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA512(message, key); - */ - C.HmacSHA512 = Hasher._createHmacHelper(SHA512); - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var X64WordArray = C_x64.WordArray; - var C_algo = C.algo; - var SHA512 = C_algo.SHA512; - - /** - * SHA-384 hash algorithm. - */ - var SHA384 = C_algo.SHA384 = SHA512.extend({ - _doReset: function () { - this._hash = new X64WordArray.init([ - new X64Word.init(0xcbbb9d5d, 0xc1059ed8), new X64Word.init(0x629a292a, 0x367cd507), - new X64Word.init(0x9159015a, 0x3070dd17), new X64Word.init(0x152fecd8, 0xf70e5939), - new X64Word.init(0x67332667, 0xffc00b31), new X64Word.init(0x8eb44a87, 0x68581511), - new X64Word.init(0xdb0c2e0d, 0x64f98fa7), new X64Word.init(0x47b5481d, 0xbefa4fa4) - ]); - }, - - _doFinalize: function () { - var hash = SHA512._doFinalize.call(this); - - hash.sigBytes -= 16; - - return hash; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA384('message'); - * var hash = CryptoJS.SHA384(wordArray); - */ - C.SHA384 = SHA512._createHelper(SHA384); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA384(message, key); - */ - C.HmacSHA384 = SHA512._createHmacHelper(SHA384); - }()); - - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var C_algo = C.algo; - - // Constants tables - var RHO_OFFSETS = []; - var PI_INDEXES = []; - var ROUND_CONSTANTS = []; - - // Compute Constants - (function () { - // Compute rho offset constants - var x = 1, y = 0; - for (var t = 0; t < 24; t++) { - RHO_OFFSETS[x + 5 * y] = ((t + 1) * (t + 2) / 2) % 64; - - var newX = y % 5; - var newY = (2 * x + 3 * y) % 5; - x = newX; - y = newY; - } - - // Compute pi index constants - for (var x = 0; x < 5; x++) { - for (var y = 0; y < 5; y++) { - PI_INDEXES[x + 5 * y] = y + ((2 * x + 3 * y) % 5) * 5; - } - } - - // Compute round constants - var LFSR = 0x01; - for (var i = 0; i < 24; i++) { - var roundConstantMsw = 0; - var roundConstantLsw = 0; - - for (var j = 0; j < 7; j++) { - if (LFSR & 0x01) { - var bitPosition = (1 << j) - 1; - if (bitPosition < 32) { - roundConstantLsw ^= 1 << bitPosition; - } else /* if (bitPosition >= 32) */ { - roundConstantMsw ^= 1 << (bitPosition - 32); - } - } - - // Compute next LFSR - if (LFSR & 0x80) { - // Primitive polynomial over GF(2): x^8 + x^6 + x^5 + x^4 + 1 - LFSR = (LFSR << 1) ^ 0x71; - } else { - LFSR <<= 1; - } - } - - ROUND_CONSTANTS[i] = X64Word.create(roundConstantMsw, roundConstantLsw); - } - }()); - - // Reusable objects for temporary values - var T = []; - (function () { - for (var i = 0; i < 25; i++) { - T[i] = X64Word.create(); - } - }()); - - /** - * SHA-3 hash algorithm. - */ - var SHA3 = C_algo.SHA3 = Hasher.extend({ - /** - * Configuration options. - * - * @property {number} outputLength - * The desired number of bits in the output hash. - * Only values permitted are: 224, 256, 384, 512. - * Default: 512 - */ - cfg: Hasher.cfg.extend({ - outputLength: 512 - }), - - _doReset: function () { - var state = this._state = [] - for (var i = 0; i < 25; i++) { - state[i] = new X64Word.init(); - } - - this.blockSize = (1600 - 2 * this.cfg.outputLength) / 32; - }, - - _doProcessBlock: function (M, offset) { - // Shortcuts - var state = this._state; - var nBlockSizeLanes = this.blockSize / 2; - - // Absorb - for (var i = 0; i < nBlockSizeLanes; i++) { - // Shortcuts - var M2i = M[offset + 2 * i]; - var M2i1 = M[offset + 2 * i + 1]; - - // Swap endian - M2i = ( - (((M2i << 8) | (M2i >>> 24)) & 0x00ff00ff) | - (((M2i << 24) | (M2i >>> 8)) & 0xff00ff00) - ); - M2i1 = ( - (((M2i1 << 8) | (M2i1 >>> 24)) & 0x00ff00ff) | - (((M2i1 << 24) | (M2i1 >>> 8)) & 0xff00ff00) - ); - - // Absorb message into state - var lane = state[i]; - lane.high ^= M2i1; - lane.low ^= M2i; - } - - // Rounds - for (var round = 0; round < 24; round++) { - // Theta - for (var x = 0; x < 5; x++) { - // Mix column lanes - var tMsw = 0, tLsw = 0; - for (var y = 0; y < 5; y++) { - var lane = state[x + 5 * y]; - tMsw ^= lane.high; - tLsw ^= lane.low; - } - - // Temporary values - var Tx = T[x]; - Tx.high = tMsw; - Tx.low = tLsw; - } - for (var x = 0; x < 5; x++) { - // Shortcuts - var Tx4 = T[(x + 4) % 5]; - var Tx1 = T[(x + 1) % 5]; - var Tx1Msw = Tx1.high; - var Tx1Lsw = Tx1.low; - - // Mix surrounding columns - var tMsw = Tx4.high ^ ((Tx1Msw << 1) | (Tx1Lsw >>> 31)); - var tLsw = Tx4.low ^ ((Tx1Lsw << 1) | (Tx1Msw >>> 31)); - for (var y = 0; y < 5; y++) { - var lane = state[x + 5 * y]; - lane.high ^= tMsw; - lane.low ^= tLsw; - } - } - - // Rho Pi - for (var laneIndex = 1; laneIndex < 25; laneIndex++) { - var tMsw; - var tLsw; - - // Shortcuts - var lane = state[laneIndex]; - var laneMsw = lane.high; - var laneLsw = lane.low; - var rhoOffset = RHO_OFFSETS[laneIndex]; - - // Rotate lanes - if (rhoOffset < 32) { - tMsw = (laneMsw << rhoOffset) | (laneLsw >>> (32 - rhoOffset)); - tLsw = (laneLsw << rhoOffset) | (laneMsw >>> (32 - rhoOffset)); - } else /* if (rhoOffset >= 32) */ { - tMsw = (laneLsw << (rhoOffset - 32)) | (laneMsw >>> (64 - rhoOffset)); - tLsw = (laneMsw << (rhoOffset - 32)) | (laneLsw >>> (64 - rhoOffset)); - } - - // Transpose lanes - var TPiLane = T[PI_INDEXES[laneIndex]]; - TPiLane.high = tMsw; - TPiLane.low = tLsw; - } - - // Rho pi at x = y = 0 - var T0 = T[0]; - var state0 = state[0]; - T0.high = state0.high; - T0.low = state0.low; - - // Chi - for (var x = 0; x < 5; x++) { - for (var y = 0; y < 5; y++) { - // Shortcuts - var laneIndex = x + 5 * y; - var lane = state[laneIndex]; - var TLane = T[laneIndex]; - var Tx1Lane = T[((x + 1) % 5) + 5 * y]; - var Tx2Lane = T[((x + 2) % 5) + 5 * y]; - - // Mix rows - lane.high = TLane.high ^ (~Tx1Lane.high & Tx2Lane.high); - lane.low = TLane.low ^ (~Tx1Lane.low & Tx2Lane.low); - } - } - - // Iota - var lane = state[0]; - var roundConstant = ROUND_CONSTANTS[round]; - lane.high ^= roundConstant.high; - lane.low ^= roundConstant.low; - } - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - var blockSizeBits = this.blockSize * 32; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x1 << (24 - nBitsLeft % 32); - dataWords[((Math.ceil((nBitsLeft + 1) / blockSizeBits) * blockSizeBits) >>> 5) - 1] |= 0x80; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Shortcuts - var state = this._state; - var outputLengthBytes = this.cfg.outputLength / 8; - var outputLengthLanes = outputLengthBytes / 8; - - // Squeeze - var hashWords = []; - for (var i = 0; i < outputLengthLanes; i++) { - // Shortcuts - var lane = state[i]; - var laneMsw = lane.high; - var laneLsw = lane.low; - - // Swap endian - laneMsw = ( - (((laneMsw << 8) | (laneMsw >>> 24)) & 0x00ff00ff) | - (((laneMsw << 24) | (laneMsw >>> 8)) & 0xff00ff00) - ); - laneLsw = ( - (((laneLsw << 8) | (laneLsw >>> 24)) & 0x00ff00ff) | - (((laneLsw << 24) | (laneLsw >>> 8)) & 0xff00ff00) - ); - - // Squeeze state to retrieve hash - hashWords.push(laneLsw); - hashWords.push(laneMsw); - } - - // Return final computed hash - return new WordArray.init(hashWords, outputLengthBytes); - }, - - clone: function () { - var clone = Hasher.clone.call(this); - - var state = clone._state = this._state.slice(0); - for (var i = 0; i < 25; i++) { - state[i] = state[i].clone(); - } - - return clone; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA3('message'); - * var hash = CryptoJS.SHA3(wordArray); - */ - C.SHA3 = Hasher._createHelper(SHA3); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA3(message, key); - */ - C.HmacSHA3 = Hasher._createHmacHelper(SHA3); - }(Math)); - - - /** @preserve - (c) 2012 by Cédric Mesnil. All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Constants table - var _zl = WordArray.create([ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, - 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, - 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, - 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13]); - var _zr = WordArray.create([ - 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, - 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, - 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, - 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, - 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11]); - var _sl = WordArray.create([ - 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, - 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12, - 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5, - 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12, - 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6 ]); - var _sr = WordArray.create([ - 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, - 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, - 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, - 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, - 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 ]); - - var _hl = WordArray.create([ 0x00000000, 0x5A827999, 0x6ED9EBA1, 0x8F1BBCDC, 0xA953FD4E]); - var _hr = WordArray.create([ 0x50A28BE6, 0x5C4DD124, 0x6D703EF3, 0x7A6D76E9, 0x00000000]); - - /** - * RIPEMD160 hash algorithm. - */ - var RIPEMD160 = C_algo.RIPEMD160 = Hasher.extend({ - _doReset: function () { - this._hash = WordArray.create([0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0]); - }, - - _doProcessBlock: function (M, offset) { - - // Swap endian - for (var i = 0; i < 16; i++) { - // Shortcuts - var offset_i = offset + i; - var M_offset_i = M[offset_i]; - - // Swap - M[offset_i] = ( - (((M_offset_i << 8) | (M_offset_i >>> 24)) & 0x00ff00ff) | - (((M_offset_i << 24) | (M_offset_i >>> 8)) & 0xff00ff00) - ); - } - // Shortcut - var H = this._hash.words; - var hl = _hl.words; - var hr = _hr.words; - var zl = _zl.words; - var zr = _zr.words; - var sl = _sl.words; - var sr = _sr.words; - - // Working variables - var al, bl, cl, dl, el; - var ar, br, cr, dr, er; - - ar = al = H[0]; - br = bl = H[1]; - cr = cl = H[2]; - dr = dl = H[3]; - er = el = H[4]; - // Computation - var t; - for (var i = 0; i < 80; i += 1) { - t = (al + M[offset+zl[i]])|0; - if (i<16){ - t += f1(bl,cl,dl) + hl[0]; - } else if (i<32) { - t += f2(bl,cl,dl) + hl[1]; - } else if (i<48) { - t += f3(bl,cl,dl) + hl[2]; - } else if (i<64) { - t += f4(bl,cl,dl) + hl[3]; - } else {// if (i<80) { - t += f5(bl,cl,dl) + hl[4]; - } - t = t|0; - t = rotl(t,sl[i]); - t = (t+el)|0; - al = el; - el = dl; - dl = rotl(cl, 10); - cl = bl; - bl = t; - - t = (ar + M[offset+zr[i]])|0; - if (i<16){ - t += f5(br,cr,dr) + hr[0]; - } else if (i<32) { - t += f4(br,cr,dr) + hr[1]; - } else if (i<48) { - t += f3(br,cr,dr) + hr[2]; - } else if (i<64) { - t += f2(br,cr,dr) + hr[3]; - } else {// if (i<80) { - t += f1(br,cr,dr) + hr[4]; - } - t = t|0; - t = rotl(t,sr[i]) ; - t = (t+er)|0; - ar = er; - er = dr; - dr = rotl(cr, 10); - cr = br; - br = t; - } - // Intermediate hash value - t = (H[1] + cl + dr)|0; - H[1] = (H[2] + dl + er)|0; - H[2] = (H[3] + el + ar)|0; - H[3] = (H[4] + al + br)|0; - H[4] = (H[0] + bl + cr)|0; - H[0] = t; - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = ( - (((nBitsTotal << 8) | (nBitsTotal >>> 24)) & 0x00ff00ff) | - (((nBitsTotal << 24) | (nBitsTotal >>> 8)) & 0xff00ff00) - ); - data.sigBytes = (dataWords.length + 1) * 4; - - // Hash final blocks - this._process(); - - // Shortcuts - var hash = this._hash; - var H = hash.words; - - // Swap endian - for (var i = 0; i < 5; i++) { - // Shortcut - var H_i = H[i]; - - // Swap - H[i] = (((H_i << 8) | (H_i >>> 24)) & 0x00ff00ff) | - (((H_i << 24) | (H_i >>> 8)) & 0xff00ff00); - } - - // Return final computed hash - return hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - } - }); - - - function f1(x, y, z) { - return ((x) ^ (y) ^ (z)); - - } - - function f2(x, y, z) { - return (((x)&(y)) | ((~x)&(z))); - } - - function f3(x, y, z) { - return (((x) | (~(y))) ^ (z)); - } - - function f4(x, y, z) { - return (((x) & (z)) | ((y)&(~(z)))); - } - - function f5(x, y, z) { - return ((x) ^ ((y) |(~(z)))); - - } - - function rotl(x,n) { - return (x<>>(32-n)); - } - - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.RIPEMD160('message'); - * var hash = CryptoJS.RIPEMD160(wordArray); - */ - C.RIPEMD160 = Hasher._createHelper(RIPEMD160); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacRIPEMD160(message, key); - */ - C.HmacRIPEMD160 = Hasher._createHmacHelper(RIPEMD160); - }(Math)); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var C_enc = C.enc; - var Utf8 = C_enc.Utf8; - var C_algo = C.algo; - - /** - * HMAC algorithm. - */ - var HMAC = C_algo.HMAC = Base.extend({ - /** - * Initializes a newly created HMAC. - * - * @param {Hasher} hasher The hash algorithm to use. - * @param {WordArray|string} key The secret key. - * - * @example - * - * var hmacHasher = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, key); - */ - init: function (hasher, key) { - // Init hasher - hasher = this._hasher = new hasher.init(); - - // Convert string to WordArray, else assume WordArray already - if (typeof key == 'string') { - key = Utf8.parse(key); - } - - // Shortcuts - var hasherBlockSize = hasher.blockSize; - var hasherBlockSizeBytes = hasherBlockSize * 4; - - // Allow arbitrary length keys - if (key.sigBytes > hasherBlockSizeBytes) { - key = hasher.finalize(key); - } - - // Clamp excess bits - key.clamp(); - - // Clone key for inner and outer pads - var oKey = this._oKey = key.clone(); - var iKey = this._iKey = key.clone(); - - // Shortcuts - var oKeyWords = oKey.words; - var iKeyWords = iKey.words; - - // XOR keys with pad constants - for (var i = 0; i < hasherBlockSize; i++) { - oKeyWords[i] ^= 0x5c5c5c5c; - iKeyWords[i] ^= 0x36363636; - } - oKey.sigBytes = iKey.sigBytes = hasherBlockSizeBytes; - - // Set initial values - this.reset(); - }, - - /** - * Resets this HMAC to its initial state. - * - * @example - * - * hmacHasher.reset(); - */ - reset: function () { - // Shortcut - var hasher = this._hasher; - - // Reset - hasher.reset(); - hasher.update(this._iKey); - }, - - /** - * Updates this HMAC with a message. - * - * @param {WordArray|string} messageUpdate The message to append. - * - * @return {HMAC} This HMAC instance. - * - * @example - * - * hmacHasher.update('message'); - * hmacHasher.update(wordArray); - */ - update: function (messageUpdate) { - this._hasher.update(messageUpdate); - - // Chainable - return this; - }, - - /** - * Finalizes the HMAC computation. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} messageUpdate (Optional) A final message update. - * - * @return {WordArray} The HMAC. - * - * @example - * - * var hmac = hmacHasher.finalize(); - * var hmac = hmacHasher.finalize('message'); - * var hmac = hmacHasher.finalize(wordArray); - */ - finalize: function (messageUpdate) { - // Shortcut - var hasher = this._hasher; - - // Compute HMAC - var innerHash = hasher.finalize(messageUpdate); - hasher.reset(); - var hmac = hasher.finalize(this._oKey.clone().concat(innerHash)); - - return hmac; - } - }); - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var WordArray = C_lib.WordArray; - var C_algo = C.algo; - var SHA256 = C_algo.SHA256; - var HMAC = C_algo.HMAC; - - /** - * Password-Based Key Derivation Function 2 algorithm. - */ - var PBKDF2 = C_algo.PBKDF2 = Base.extend({ - /** - * Configuration options. - * - * @property {number} keySize The key size in words to generate. Default: 4 (128 bits) - * @property {Hasher} hasher The hasher to use. Default: SHA256 - * @property {number} iterations The number of iterations to perform. Default: 250000 - */ - cfg: Base.extend({ - keySize: 128/32, - hasher: SHA256, - iterations: 250000 - }), - - /** - * Initializes a newly created key derivation function. - * - * @param {Object} cfg (Optional) The configuration options to use for the derivation. - * - * @example - * - * var kdf = CryptoJS.algo.PBKDF2.create(); - * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8 }); - * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8, iterations: 1000 }); - */ - init: function (cfg) { - this.cfg = this.cfg.extend(cfg); - }, - - /** - * Computes the Password-Based Key Derivation Function 2. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * - * @return {WordArray} The derived key. - * - * @example - * - * var key = kdf.compute(password, salt); - */ - compute: function (password, salt) { - // Shortcut - var cfg = this.cfg; - - // Init HMAC - var hmac = HMAC.create(cfg.hasher, password); - - // Initial values - var derivedKey = WordArray.create(); - var blockIndex = WordArray.create([0x00000001]); - - // Shortcuts - var derivedKeyWords = derivedKey.words; - var blockIndexWords = blockIndex.words; - var keySize = cfg.keySize; - var iterations = cfg.iterations; - - // Generate key - while (derivedKeyWords.length < keySize) { - var block = hmac.update(salt).finalize(blockIndex); - hmac.reset(); - - // Shortcuts - var blockWords = block.words; - var blockWordsLength = blockWords.length; - - // Iterations - var intermediate = block; - for (var i = 1; i < iterations; i++) { - intermediate = hmac.finalize(intermediate); - hmac.reset(); - - // Shortcut - var intermediateWords = intermediate.words; - - // XOR intermediate with block - for (var j = 0; j < blockWordsLength; j++) { - blockWords[j] ^= intermediateWords[j]; - } - } - - derivedKey.concat(block); - blockIndexWords[0]++; - } - derivedKey.sigBytes = keySize * 4; - - return derivedKey; - } - }); - - /** - * Computes the Password-Based Key Derivation Function 2. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * @param {Object} cfg (Optional) The configuration options to use for this computation. - * - * @return {WordArray} The derived key. - * - * @static - * - * @example - * - * var key = CryptoJS.PBKDF2(password, salt); - * var key = CryptoJS.PBKDF2(password, salt, { keySize: 8 }); - * var key = CryptoJS.PBKDF2(password, salt, { keySize: 8, iterations: 1000 }); - */ - C.PBKDF2 = function (password, salt, cfg) { - return PBKDF2.create(cfg).compute(password, salt); - }; - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var WordArray = C_lib.WordArray; - var C_algo = C.algo; - var MD5 = C_algo.MD5; - - /** - * This key derivation function is meant to conform with EVP_BytesToKey. - * www.openssl.org/docs/crypto/EVP_BytesToKey.html - */ - var EvpKDF = C_algo.EvpKDF = Base.extend({ - /** - * Configuration options. - * - * @property {number} keySize The key size in words to generate. Default: 4 (128 bits) - * @property {Hasher} hasher The hash algorithm to use. Default: MD5 - * @property {number} iterations The number of iterations to perform. Default: 1 - */ - cfg: Base.extend({ - keySize: 128/32, - hasher: MD5, - iterations: 1 - }), - - /** - * Initializes a newly created key derivation function. - * - * @param {Object} cfg (Optional) The configuration options to use for the derivation. - * - * @example - * - * var kdf = CryptoJS.algo.EvpKDF.create(); - * var kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8 }); - * var kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8, iterations: 1000 }); - */ - init: function (cfg) { - this.cfg = this.cfg.extend(cfg); - }, - - /** - * Derives a key from a password. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * - * @return {WordArray} The derived key. - * - * @example - * - * var key = kdf.compute(password, salt); - */ - compute: function (password, salt) { - var block; - - // Shortcut - var cfg = this.cfg; - - // Init hasher - var hasher = cfg.hasher.create(); - - // Initial values - var derivedKey = WordArray.create(); - - // Shortcuts - var derivedKeyWords = derivedKey.words; - var keySize = cfg.keySize; - var iterations = cfg.iterations; - - // Generate key - while (derivedKeyWords.length < keySize) { - if (block) { - hasher.update(block); - } - block = hasher.update(password).finalize(salt); - hasher.reset(); - - // Iterations - for (var i = 1; i < iterations; i++) { - block = hasher.finalize(block); - hasher.reset(); - } - - derivedKey.concat(block); - } - derivedKey.sigBytes = keySize * 4; - - return derivedKey; - } - }); - - /** - * Derives a key from a password. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * @param {Object} cfg (Optional) The configuration options to use for this computation. - * - * @return {WordArray} The derived key. - * - * @static - * - * @example - * - * var key = CryptoJS.EvpKDF(password, salt); - * var key = CryptoJS.EvpKDF(password, salt, { keySize: 8 }); - * var key = CryptoJS.EvpKDF(password, salt, { keySize: 8, iterations: 1000 }); - */ - C.EvpKDF = function (password, salt, cfg) { - return EvpKDF.create(cfg).compute(password, salt); - }; - }()); - - - /** - * Cipher core components. - */ - CryptoJS.lib.Cipher || (function (undefined) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var WordArray = C_lib.WordArray; - var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm; - var C_enc = C.enc; - var Utf8 = C_enc.Utf8; - var Base64 = C_enc.Base64; - var C_algo = C.algo; - var EvpKDF = C_algo.EvpKDF; - - /** - * Abstract base cipher template. - * - * @property {number} keySize This cipher's key size. Default: 4 (128 bits) - * @property {number} ivSize This cipher's IV size. Default: 4 (128 bits) - * @property {number} _ENC_XFORM_MODE A constant representing encryption mode. - * @property {number} _DEC_XFORM_MODE A constant representing decryption mode. - */ - var Cipher = C_lib.Cipher = BufferedBlockAlgorithm.extend({ - /** - * Configuration options. - * - * @property {WordArray} iv The IV to use for this operation. - */ - cfg: Base.extend(), - - /** - * Creates this cipher in encryption mode. - * - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {Cipher} A cipher instance. - * - * @static - * - * @example - * - * var cipher = CryptoJS.algo.AES.createEncryptor(keyWordArray, { iv: ivWordArray }); - */ - createEncryptor: function (key, cfg) { - return this.create(this._ENC_XFORM_MODE, key, cfg); - }, - - /** - * Creates this cipher in decryption mode. - * - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {Cipher} A cipher instance. - * - * @static - * - * @example - * - * var cipher = CryptoJS.algo.AES.createDecryptor(keyWordArray, { iv: ivWordArray }); - */ - createDecryptor: function (key, cfg) { - return this.create(this._DEC_XFORM_MODE, key, cfg); - }, - - /** - * Initializes a newly created cipher. - * - * @param {number} xformMode Either the encryption or decryption transormation mode constant. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @example - * - * var cipher = CryptoJS.algo.AES.create(CryptoJS.algo.AES._ENC_XFORM_MODE, keyWordArray, { iv: ivWordArray }); - */ - init: function (xformMode, key, cfg) { - // Apply config defaults - this.cfg = this.cfg.extend(cfg); - - // Store transform mode and key - this._xformMode = xformMode; - this._key = key; - - // Set initial values - this.reset(); - }, - - /** - * Resets this cipher to its initial state. - * - * @example - * - * cipher.reset(); - */ - reset: function () { - // Reset data buffer - BufferedBlockAlgorithm.reset.call(this); - - // Perform concrete-cipher logic - this._doReset(); - }, - - /** - * Adds data to be encrypted or decrypted. - * - * @param {WordArray|string} dataUpdate The data to encrypt or decrypt. - * - * @return {WordArray} The data after processing. - * - * @example - * - * var encrypted = cipher.process('data'); - * var encrypted = cipher.process(wordArray); - */ - process: function (dataUpdate) { - // Append - this._append(dataUpdate); - - // Process available blocks - return this._process(); - }, - - /** - * Finalizes the encryption or decryption process. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} dataUpdate The final data to encrypt or decrypt. - * - * @return {WordArray} The data after final processing. - * - * @example - * - * var encrypted = cipher.finalize(); - * var encrypted = cipher.finalize('data'); - * var encrypted = cipher.finalize(wordArray); - */ - finalize: function (dataUpdate) { - // Final data update - if (dataUpdate) { - this._append(dataUpdate); - } - - // Perform concrete-cipher logic - var finalProcessedData = this._doFinalize(); - - return finalProcessedData; - }, - - keySize: 128/32, - - ivSize: 128/32, - - _ENC_XFORM_MODE: 1, - - _DEC_XFORM_MODE: 2, - - /** - * Creates shortcut functions to a cipher's object interface. - * - * @param {Cipher} cipher The cipher to create a helper for. - * - * @return {Object} An object with encrypt and decrypt shortcut functions. - * - * @static - * - * @example - * - * var AES = CryptoJS.lib.Cipher._createHelper(CryptoJS.algo.AES); - */ - _createHelper: (function () { - function selectCipherStrategy(key) { - if (typeof key == 'string') { - return PasswordBasedCipher; - } else { - return SerializableCipher; - } - } - - return function (cipher) { - return { - encrypt: function (message, key, cfg) { - return selectCipherStrategy(key).encrypt(cipher, message, key, cfg); - }, - - decrypt: function (ciphertext, key, cfg) { - return selectCipherStrategy(key).decrypt(cipher, ciphertext, key, cfg); - } - }; - }; - }()) - }); - - /** - * Abstract base stream cipher template. - * - * @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 1 (32 bits) - */ - var StreamCipher = C_lib.StreamCipher = Cipher.extend({ - _doFinalize: function () { - // Process partial blocks - var finalProcessedBlocks = this._process(!!'flush'); - - return finalProcessedBlocks; - }, - - blockSize: 1 - }); - - /** - * Mode namespace. - */ - var C_mode = C.mode = {}; - - /** - * Abstract base block cipher mode template. - */ - var BlockCipherMode = C_lib.BlockCipherMode = Base.extend({ - /** - * Creates this mode for encryption. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @static - * - * @example - * - * var mode = CryptoJS.mode.CBC.createEncryptor(cipher, iv.words); - */ - createEncryptor: function (cipher, iv) { - return this.Encryptor.create(cipher, iv); - }, - - /** - * Creates this mode for decryption. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @static - * - * @example - * - * var mode = CryptoJS.mode.CBC.createDecryptor(cipher, iv.words); - */ - createDecryptor: function (cipher, iv) { - return this.Decryptor.create(cipher, iv); - }, - - /** - * Initializes a newly created mode. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @example - * - * var mode = CryptoJS.mode.CBC.Encryptor.create(cipher, iv.words); - */ - init: function (cipher, iv) { - this._cipher = cipher; - this._iv = iv; - } - }); - - /** - * Cipher Block Chaining mode. - */ - var CBC = C_mode.CBC = (function () { - /** - * Abstract base CBC mode. - */ - var CBC = BlockCipherMode.extend(); - - /** - * CBC encryptor. - */ - CBC.Encryptor = CBC.extend({ - /** - * Processes the data block at offset. - * - * @param {Array} words The data words to operate on. - * @param {number} offset The offset where the block starts. - * - * @example - * - * mode.processBlock(data.words, offset); - */ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - - // XOR and encrypt - xorBlock.call(this, words, offset, blockSize); - cipher.encryptBlock(words, offset); - - // Remember this block to use with next block - this._prevBlock = words.slice(offset, offset + blockSize); - } - }); - - /** - * CBC decryptor. - */ - CBC.Decryptor = CBC.extend({ - /** - * Processes the data block at offset. - * - * @param {Array} words The data words to operate on. - * @param {number} offset The offset where the block starts. - * - * @example - * - * mode.processBlock(data.words, offset); - */ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - - // Remember this block to use with next block - var thisBlock = words.slice(offset, offset + blockSize); - - // Decrypt and XOR - cipher.decryptBlock(words, offset); - xorBlock.call(this, words, offset, blockSize); - - // This block becomes the previous block - this._prevBlock = thisBlock; - } - }); - - function xorBlock(words, offset, blockSize) { - var block; - - // Shortcut - var iv = this._iv; - - // Choose mixing block - if (iv) { - block = iv; - - // Remove IV for subsequent blocks - this._iv = undefined; - } else { - block = this._prevBlock; - } - - // XOR blocks - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= block[i]; - } - } - - return CBC; - }()); - - /** - * Padding namespace. - */ - var C_pad = C.pad = {}; - - /** - * PKCS #5/7 padding strategy. - */ - var Pkcs7 = C_pad.Pkcs7 = { - /** - * Pads data using the algorithm defined in PKCS #5/7. - * - * @param {WordArray} data The data to pad. - * @param {number} blockSize The multiple that the data should be padded to. - * - * @static - * - * @example - * - * CryptoJS.pad.Pkcs7.pad(wordArray, 4); - */ - pad: function (data, blockSize) { - // Shortcut - var blockSizeBytes = blockSize * 4; - - // Count padding bytes - var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes; - - // Create padding word - var paddingWord = (nPaddingBytes << 24) | (nPaddingBytes << 16) | (nPaddingBytes << 8) | nPaddingBytes; - - // Create padding - var paddingWords = []; - for (var i = 0; i < nPaddingBytes; i += 4) { - paddingWords.push(paddingWord); - } - var padding = WordArray.create(paddingWords, nPaddingBytes); - - // Add padding - data.concat(padding); - }, - - /** - * Unpads data that had been padded using the algorithm defined in PKCS #5/7. - * - * @param {WordArray} data The data to unpad. - * - * @static - * - * @example - * - * CryptoJS.pad.Pkcs7.unpad(wordArray); - */ - unpad: function (data) { - // Get number of padding bytes from last byte - var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff; - - // Remove padding - data.sigBytes -= nPaddingBytes; - } - }; - - /** - * Abstract base block cipher template. - * - * @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 4 (128 bits) - */ - var BlockCipher = C_lib.BlockCipher = Cipher.extend({ - /** - * Configuration options. - * - * @property {Mode} mode The block mode to use. Default: CBC - * @property {Padding} padding The padding strategy to use. Default: Pkcs7 - */ - cfg: Cipher.cfg.extend({ - mode: CBC, - padding: Pkcs7 - }), - - reset: function () { - var modeCreator; - - // Reset cipher - Cipher.reset.call(this); - - // Shortcuts - var cfg = this.cfg; - var iv = cfg.iv; - var mode = cfg.mode; - - // Reset block mode - if (this._xformMode == this._ENC_XFORM_MODE) { - modeCreator = mode.createEncryptor; - } else /* if (this._xformMode == this._DEC_XFORM_MODE) */ { - modeCreator = mode.createDecryptor; - // Keep at least one block in the buffer for unpadding - this._minBufferSize = 1; - } - - if (this._mode && this._mode.__creator == modeCreator) { - this._mode.init(this, iv && iv.words); - } else { - this._mode = modeCreator.call(mode, this, iv && iv.words); - this._mode.__creator = modeCreator; - } - }, - - _doProcessBlock: function (words, offset) { - this._mode.processBlock(words, offset); - }, - - _doFinalize: function () { - var finalProcessedBlocks; - - // Shortcut - var padding = this.cfg.padding; - - // Finalize - if (this._xformMode == this._ENC_XFORM_MODE) { - // Pad data - padding.pad(this._data, this.blockSize); - - // Process final blocks - finalProcessedBlocks = this._process(!!'flush'); - } else /* if (this._xformMode == this._DEC_XFORM_MODE) */ { - // Process final blocks - finalProcessedBlocks = this._process(!!'flush'); - - // Unpad data - padding.unpad(finalProcessedBlocks); - } - - return finalProcessedBlocks; - }, - - blockSize: 128/32 - }); - - /** - * A collection of cipher parameters. - * - * @property {WordArray} ciphertext The raw ciphertext. - * @property {WordArray} key The key to this ciphertext. - * @property {WordArray} iv The IV used in the ciphering operation. - * @property {WordArray} salt The salt used with a key derivation function. - * @property {Cipher} algorithm The cipher algorithm. - * @property {Mode} mode The block mode used in the ciphering operation. - * @property {Padding} padding The padding scheme used in the ciphering operation. - * @property {number} blockSize The block size of the cipher. - * @property {Format} formatter The default formatting strategy to convert this cipher params object to a string. - */ - var CipherParams = C_lib.CipherParams = Base.extend({ - /** - * Initializes a newly created cipher params object. - * - * @param {Object} cipherParams An object with any of the possible cipher parameters. - * - * @example - * - * var cipherParams = CryptoJS.lib.CipherParams.create({ - * ciphertext: ciphertextWordArray, - * key: keyWordArray, - * iv: ivWordArray, - * salt: saltWordArray, - * algorithm: CryptoJS.algo.AES, - * mode: CryptoJS.mode.CBC, - * padding: CryptoJS.pad.PKCS7, - * blockSize: 4, - * formatter: CryptoJS.format.OpenSSL - * }); - */ - init: function (cipherParams) { - this.mixIn(cipherParams); - }, - - /** - * Converts this cipher params object to a string. - * - * @param {Format} formatter (Optional) The formatting strategy to use. - * - * @return {string} The stringified cipher params. - * - * @throws Error If neither the formatter nor the default formatter is set. - * - * @example - * - * var string = cipherParams + ''; - * var string = cipherParams.toString(); - * var string = cipherParams.toString(CryptoJS.format.OpenSSL); - */ - toString: function (formatter) { - return (formatter || this.formatter).stringify(this); - } - }); - - /** - * Format namespace. - */ - var C_format = C.format = {}; - - /** - * OpenSSL formatting strategy. - */ - var OpenSSLFormatter = C_format.OpenSSL = { - /** - * Converts a cipher params object to an OpenSSL-compatible string. - * - * @param {CipherParams} cipherParams The cipher params object. - * - * @return {string} The OpenSSL-compatible string. - * - * @static - * - * @example - * - * var openSSLString = CryptoJS.format.OpenSSL.stringify(cipherParams); - */ - stringify: function (cipherParams) { - var wordArray; - - // Shortcuts - var ciphertext = cipherParams.ciphertext; - var salt = cipherParams.salt; - - // Format - if (salt) { - wordArray = WordArray.create([0x53616c74, 0x65645f5f]).concat(salt).concat(ciphertext); - } else { - wordArray = ciphertext; - } - - return wordArray.toString(Base64); - }, - - /** - * Converts an OpenSSL-compatible string to a cipher params object. - * - * @param {string} openSSLStr The OpenSSL-compatible string. - * - * @return {CipherParams} The cipher params object. - * - * @static - * - * @example - * - * var cipherParams = CryptoJS.format.OpenSSL.parse(openSSLString); - */ - parse: function (openSSLStr) { - var salt; - - // Parse base64 - var ciphertext = Base64.parse(openSSLStr); - - // Shortcut - var ciphertextWords = ciphertext.words; - - // Test for salt - if (ciphertextWords[0] == 0x53616c74 && ciphertextWords[1] == 0x65645f5f) { - // Extract salt - salt = WordArray.create(ciphertextWords.slice(2, 4)); - - // Remove salt from ciphertext - ciphertextWords.splice(0, 4); - ciphertext.sigBytes -= 16; - } - - return CipherParams.create({ ciphertext: ciphertext, salt: salt }); - } - }; - - /** - * A cipher wrapper that returns ciphertext as a serializable cipher params object. - */ - var SerializableCipher = C_lib.SerializableCipher = Base.extend({ - /** - * Configuration options. - * - * @property {Formatter} format The formatting strategy to convert cipher param objects to and from a string. Default: OpenSSL - */ - cfg: Base.extend({ - format: OpenSSLFormatter - }), - - /** - * Encrypts a message. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {WordArray|string} message The message to encrypt. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {CipherParams} A cipher params object. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key); - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv }); - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - */ - encrypt: function (cipher, message, key, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - - // Encrypt - var encryptor = cipher.createEncryptor(key, cfg); - var ciphertext = encryptor.finalize(message); - - // Shortcut - var cipherCfg = encryptor.cfg; - - // Create and return serializable cipher params - return CipherParams.create({ - ciphertext: ciphertext, - key: key, - iv: cipherCfg.iv, - algorithm: cipher, - mode: cipherCfg.mode, - padding: cipherCfg.padding, - blockSize: cipher.blockSize, - formatter: cfg.format - }); - }, - - /** - * Decrypts serialized ciphertext. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {CipherParams|string} ciphertext The ciphertext to decrypt. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {WordArray} The plaintext. - * - * @static - * - * @example - * - * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - */ - decrypt: function (cipher, ciphertext, key, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - - // Convert string to CipherParams - ciphertext = this._parse(ciphertext, cfg.format); - - // Decrypt - var plaintext = cipher.createDecryptor(key, cfg).finalize(ciphertext.ciphertext); - - return plaintext; - }, - - /** - * Converts serialized ciphertext to CipherParams, - * else assumed CipherParams already and returns ciphertext unchanged. - * - * @param {CipherParams|string} ciphertext The ciphertext. - * @param {Formatter} format The formatting strategy to use to parse serialized ciphertext. - * - * @return {CipherParams} The unserialized ciphertext. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.SerializableCipher._parse(ciphertextStringOrParams, format); - */ - _parse: function (ciphertext, format) { - if (typeof ciphertext == 'string') { - return format.parse(ciphertext, this); - } else { - return ciphertext; - } - } - }); - - /** - * Key derivation function namespace. - */ - var C_kdf = C.kdf = {}; - - /** - * OpenSSL key derivation function. - */ - var OpenSSLKdf = C_kdf.OpenSSL = { - /** - * Derives a key and IV from a password. - * - * @param {string} password The password to derive from. - * @param {number} keySize The size in words of the key to generate. - * @param {number} ivSize The size in words of the IV to generate. - * @param {WordArray|string} salt (Optional) A 64-bit salt to use. If omitted, a salt will be generated randomly. - * - * @return {CipherParams} A cipher params object with the key, IV, and salt. - * - * @static - * - * @example - * - * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32); - * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32, 'saltsalt'); - */ - execute: function (password, keySize, ivSize, salt, hasher) { - // Generate random salt - if (!salt) { - salt = WordArray.random(64/8); - } - - // Derive key and IV - if (!hasher) { - var key = EvpKDF.create({ keySize: keySize + ivSize }).compute(password, salt); - } else { - var key = EvpKDF.create({ keySize: keySize + ivSize, hasher: hasher }).compute(password, salt); - } - - - // Separate key and IV - var iv = WordArray.create(key.words.slice(keySize), ivSize * 4); - key.sigBytes = keySize * 4; - - // Return params - return CipherParams.create({ key: key, iv: iv, salt: salt }); - } - }; - - /** - * A serializable cipher wrapper that derives the key from a password, - * and returns ciphertext as a serializable cipher params object. - */ - var PasswordBasedCipher = C_lib.PasswordBasedCipher = SerializableCipher.extend({ - /** - * Configuration options. - * - * @property {KDF} kdf The key derivation function to use to generate a key and IV from a password. Default: OpenSSL - */ - cfg: SerializableCipher.cfg.extend({ - kdf: OpenSSLKdf - }), - - /** - * Encrypts a message using a password. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {WordArray|string} message The message to encrypt. - * @param {string} password The password. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {CipherParams} A cipher params object. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password'); - * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password', { format: CryptoJS.format.OpenSSL }); - */ - encrypt: function (cipher, message, password, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - - // Derive key and other params - var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, cfg.salt, cfg.hasher); - - // Add IV to config - cfg.iv = derivedParams.iv; - - // Encrypt - var ciphertext = SerializableCipher.encrypt.call(this, cipher, message, derivedParams.key, cfg); - - // Mix in derived params - ciphertext.mixIn(derivedParams); - - return ciphertext; - }, - - /** - * Decrypts serialized ciphertext using a password. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {CipherParams|string} ciphertext The ciphertext to decrypt. - * @param {string} password The password. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {WordArray} The plaintext. - * - * @static - * - * @example - * - * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, 'password', { format: CryptoJS.format.OpenSSL }); - * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, 'password', { format: CryptoJS.format.OpenSSL }); - */ - decrypt: function (cipher, ciphertext, password, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - - // Convert string to CipherParams - ciphertext = this._parse(ciphertext, cfg.format); - - // Derive key and other params - var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, ciphertext.salt, cfg.hasher); - - // Add IV to config - cfg.iv = derivedParams.iv; - - // Decrypt - var plaintext = SerializableCipher.decrypt.call(this, cipher, ciphertext, derivedParams.key, cfg); - - return plaintext; - } - }); - }()); - - - /** - * Cipher Feedback block mode. - */ - CryptoJS.mode.CFB = (function () { - var CFB = CryptoJS.lib.BlockCipherMode.extend(); - - CFB.Encryptor = CFB.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - - generateKeystreamAndEncrypt.call(this, words, offset, blockSize, cipher); - - // Remember this block to use with next block - this._prevBlock = words.slice(offset, offset + blockSize); - } - }); - - CFB.Decryptor = CFB.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - - // Remember this block to use with next block - var thisBlock = words.slice(offset, offset + blockSize); - - generateKeystreamAndEncrypt.call(this, words, offset, blockSize, cipher); - - // This block becomes the previous block - this._prevBlock = thisBlock; - } - }); - - function generateKeystreamAndEncrypt(words, offset, blockSize, cipher) { - var keystream; - - // Shortcut - var iv = this._iv; - - // Generate keystream - if (iv) { - keystream = iv.slice(0); - - // Remove IV for subsequent blocks - this._iv = undefined; - } else { - keystream = this._prevBlock; - } - cipher.encryptBlock(keystream, 0); - - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - - return CFB; - }()); - - - /** - * Counter block mode. - */ - CryptoJS.mode.CTR = (function () { - var CTR = CryptoJS.lib.BlockCipherMode.extend(); - - var Encryptor = CTR.Encryptor = CTR.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher - var blockSize = cipher.blockSize; - var iv = this._iv; - var counter = this._counter; - - // Generate keystream - if (iv) { - counter = this._counter = iv.slice(0); - - // Remove IV for subsequent blocks - this._iv = undefined; - } - var keystream = counter.slice(0); - cipher.encryptBlock(keystream, 0); - - // Increment counter - counter[blockSize - 1] = (counter[blockSize - 1] + 1) | 0 - - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - }); - - CTR.Decryptor = Encryptor; - - return CTR; - }()); - - - /** @preserve - * Counter block mode compatible with Dr Brian Gladman fileenc.c - * derived from CryptoJS.mode.CTR - * Jan Hruby jhruby.web@gmail.com - */ - CryptoJS.mode.CTRGladman = (function () { - var CTRGladman = CryptoJS.lib.BlockCipherMode.extend(); - - function incWord(word) - { - if (((word >> 24) & 0xff) === 0xff) { //overflow - var b1 = (word >> 16)&0xff; - var b2 = (word >> 8)&0xff; - var b3 = word & 0xff; - - if (b1 === 0xff) // overflow b1 - { - b1 = 0; - if (b2 === 0xff) - { - b2 = 0; - if (b3 === 0xff) - { - b3 = 0; - } - else - { - ++b3; - } - } - else - { - ++b2; - } - } - else - { - ++b1; - } - - word = 0; - word += (b1 << 16); - word += (b2 << 8); - word += b3; - } - else - { - word += (0x01 << 24); - } - return word; - } - - function incCounter(counter) - { - if ((counter[0] = incWord(counter[0])) === 0) - { - // encr_data in fileenc.c from Dr Brian Gladman's counts only with DWORD j < 8 - counter[1] = incWord(counter[1]); - } - return counter; - } - - var Encryptor = CTRGladman.Encryptor = CTRGladman.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher - var blockSize = cipher.blockSize; - var iv = this._iv; - var counter = this._counter; - - // Generate keystream - if (iv) { - counter = this._counter = iv.slice(0); - - // Remove IV for subsequent blocks - this._iv = undefined; - } - - incCounter(counter); - - var keystream = counter.slice(0); - cipher.encryptBlock(keystream, 0); - - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - }); - - CTRGladman.Decryptor = Encryptor; - - return CTRGladman; - }()); - - - - - /** - * Output Feedback block mode. - */ - CryptoJS.mode.OFB = (function () { - var OFB = CryptoJS.lib.BlockCipherMode.extend(); - - var Encryptor = OFB.Encryptor = OFB.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher - var blockSize = cipher.blockSize; - var iv = this._iv; - var keystream = this._keystream; - - // Generate keystream - if (iv) { - keystream = this._keystream = iv.slice(0); - - // Remove IV for subsequent blocks - this._iv = undefined; - } - cipher.encryptBlock(keystream, 0); - - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - }); - - OFB.Decryptor = Encryptor; - - return OFB; - }()); - - - /** - * Electronic Codebook block mode. - */ - CryptoJS.mode.ECB = (function () { - var ECB = CryptoJS.lib.BlockCipherMode.extend(); - - ECB.Encryptor = ECB.extend({ - processBlock: function (words, offset) { - this._cipher.encryptBlock(words, offset); - } - }); - - ECB.Decryptor = ECB.extend({ - processBlock: function (words, offset) { - this._cipher.decryptBlock(words, offset); - } - }); - - return ECB; - }()); - - - /** - * ANSI X.923 padding strategy. - */ - CryptoJS.pad.AnsiX923 = { - pad: function (data, blockSize) { - // Shortcuts - var dataSigBytes = data.sigBytes; - var blockSizeBytes = blockSize * 4; - - // Count padding bytes - var nPaddingBytes = blockSizeBytes - dataSigBytes % blockSizeBytes; - - // Compute last byte position - var lastBytePos = dataSigBytes + nPaddingBytes - 1; - - // Pad - data.clamp(); - data.words[lastBytePos >>> 2] |= nPaddingBytes << (24 - (lastBytePos % 4) * 8); - data.sigBytes += nPaddingBytes; - }, - - unpad: function (data) { - // Get number of padding bytes from last byte - var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff; - - // Remove padding - data.sigBytes -= nPaddingBytes; - } - }; - - - /** - * ISO 10126 padding strategy. - */ - CryptoJS.pad.Iso10126 = { - pad: function (data, blockSize) { - // Shortcut - var blockSizeBytes = blockSize * 4; - - // Count padding bytes - var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes; - - // Pad - data.concat(CryptoJS.lib.WordArray.random(nPaddingBytes - 1)). - concat(CryptoJS.lib.WordArray.create([nPaddingBytes << 24], 1)); - }, - - unpad: function (data) { - // Get number of padding bytes from last byte - var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff; - - // Remove padding - data.sigBytes -= nPaddingBytes; - } - }; - - - /** - * ISO/IEC 9797-1 Padding Method 2. - */ - CryptoJS.pad.Iso97971 = { - pad: function (data, blockSize) { - // Add 0x80 byte - data.concat(CryptoJS.lib.WordArray.create([0x80000000], 1)); - - // Zero pad the rest - CryptoJS.pad.ZeroPadding.pad(data, blockSize); - }, - - unpad: function (data) { - // Remove zero padding - CryptoJS.pad.ZeroPadding.unpad(data); - - // Remove one more byte -- the 0x80 byte - data.sigBytes--; - } - }; - - - /** - * Zero padding strategy. - */ - CryptoJS.pad.ZeroPadding = { - pad: function (data, blockSize) { - // Shortcut - var blockSizeBytes = blockSize * 4; - - // Pad - data.clamp(); - data.sigBytes += blockSizeBytes - ((data.sigBytes % blockSizeBytes) || blockSizeBytes); - }, - - unpad: function (data) { - // Shortcut - var dataWords = data.words; - - // Unpad - var i = data.sigBytes - 1; - for (var i = data.sigBytes - 1; i >= 0; i--) { - if (((dataWords[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff)) { - data.sigBytes = i + 1; - break; - } - } - } - }; - - - /** - * A noop padding strategy. - */ - CryptoJS.pad.NoPadding = { - pad: function () { - }, - - unpad: function () { - } - }; - - - (function (undefined) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var CipherParams = C_lib.CipherParams; - var C_enc = C.enc; - var Hex = C_enc.Hex; - var C_format = C.format; - - var HexFormatter = C_format.Hex = { - /** - * Converts the ciphertext of a cipher params object to a hexadecimally encoded string. - * - * @param {CipherParams} cipherParams The cipher params object. - * - * @return {string} The hexadecimally encoded string. - * - * @static - * - * @example - * - * var hexString = CryptoJS.format.Hex.stringify(cipherParams); - */ - stringify: function (cipherParams) { - return cipherParams.ciphertext.toString(Hex); - }, - - /** - * Converts a hexadecimally encoded ciphertext string to a cipher params object. - * - * @param {string} input The hexadecimally encoded string. - * - * @return {CipherParams} The cipher params object. - * - * @static - * - * @example - * - * var cipherParams = CryptoJS.format.Hex.parse(hexString); - */ - parse: function (input) { - var ciphertext = Hex.parse(input); - return CipherParams.create({ ciphertext: ciphertext }); - } - }; - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var BlockCipher = C_lib.BlockCipher; - var C_algo = C.algo; - - // Lookup tables - var SBOX = []; - var INV_SBOX = []; - var SUB_MIX_0 = []; - var SUB_MIX_1 = []; - var SUB_MIX_2 = []; - var SUB_MIX_3 = []; - var INV_SUB_MIX_0 = []; - var INV_SUB_MIX_1 = []; - var INV_SUB_MIX_2 = []; - var INV_SUB_MIX_3 = []; - - // Compute lookup tables - (function () { - // Compute double table - var d = []; - for (var i = 0; i < 256; i++) { - if (i < 128) { - d[i] = i << 1; - } else { - d[i] = (i << 1) ^ 0x11b; - } - } - - // Walk GF(2^8) - var x = 0; - var xi = 0; - for (var i = 0; i < 256; i++) { - // Compute sbox - var sx = xi ^ (xi << 1) ^ (xi << 2) ^ (xi << 3) ^ (xi << 4); - sx = (sx >>> 8) ^ (sx & 0xff) ^ 0x63; - SBOX[x] = sx; - INV_SBOX[sx] = x; - - // Compute multiplication - var x2 = d[x]; - var x4 = d[x2]; - var x8 = d[x4]; - - // Compute sub bytes, mix columns tables - var t = (d[sx] * 0x101) ^ (sx * 0x1010100); - SUB_MIX_0[x] = (t << 24) | (t >>> 8); - SUB_MIX_1[x] = (t << 16) | (t >>> 16); - SUB_MIX_2[x] = (t << 8) | (t >>> 24); - SUB_MIX_3[x] = t; - - // Compute inv sub bytes, inv mix columns tables - var t = (x8 * 0x1010101) ^ (x4 * 0x10001) ^ (x2 * 0x101) ^ (x * 0x1010100); - INV_SUB_MIX_0[sx] = (t << 24) | (t >>> 8); - INV_SUB_MIX_1[sx] = (t << 16) | (t >>> 16); - INV_SUB_MIX_2[sx] = (t << 8) | (t >>> 24); - INV_SUB_MIX_3[sx] = t; - - // Compute next counter - if (!x) { - x = xi = 1; - } else { - x = x2 ^ d[d[d[x8 ^ x2]]]; - xi ^= d[d[xi]]; - } - } - }()); - - // Precomputed Rcon lookup - var RCON = [0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36]; - - /** - * AES block cipher algorithm. - */ - var AES = C_algo.AES = BlockCipher.extend({ - _doReset: function () { - var t; - - // Skip reset of nRounds has been set before and key did not change - if (this._nRounds && this._keyPriorReset === this._key) { - return; - } - - // Shortcuts - var key = this._keyPriorReset = this._key; - var keyWords = key.words; - var keySize = key.sigBytes / 4; - - // Compute number of rounds - var nRounds = this._nRounds = keySize + 6; - - // Compute number of key schedule rows - var ksRows = (nRounds + 1) * 4; - - // Compute key schedule - var keySchedule = this._keySchedule = []; - for (var ksRow = 0; ksRow < ksRows; ksRow++) { - if (ksRow < keySize) { - keySchedule[ksRow] = keyWords[ksRow]; - } else { - t = keySchedule[ksRow - 1]; - - if (!(ksRow % keySize)) { - // Rot word - t = (t << 8) | (t >>> 24); - - // Sub word - t = (SBOX[t >>> 24] << 24) | (SBOX[(t >>> 16) & 0xff] << 16) | (SBOX[(t >>> 8) & 0xff] << 8) | SBOX[t & 0xff]; - - // Mix Rcon - t ^= RCON[(ksRow / keySize) | 0] << 24; - } else if (keySize > 6 && ksRow % keySize == 4) { - // Sub word - t = (SBOX[t >>> 24] << 24) | (SBOX[(t >>> 16) & 0xff] << 16) | (SBOX[(t >>> 8) & 0xff] << 8) | SBOX[t & 0xff]; - } - - keySchedule[ksRow] = keySchedule[ksRow - keySize] ^ t; - } - } - - // Compute inv key schedule - var invKeySchedule = this._invKeySchedule = []; - for (var invKsRow = 0; invKsRow < ksRows; invKsRow++) { - var ksRow = ksRows - invKsRow; - - if (invKsRow % 4) { - var t = keySchedule[ksRow]; - } else { - var t = keySchedule[ksRow - 4]; - } - - if (invKsRow < 4 || ksRow <= 4) { - invKeySchedule[invKsRow] = t; - } else { - invKeySchedule[invKsRow] = INV_SUB_MIX_0[SBOX[t >>> 24]] ^ INV_SUB_MIX_1[SBOX[(t >>> 16) & 0xff]] ^ - INV_SUB_MIX_2[SBOX[(t >>> 8) & 0xff]] ^ INV_SUB_MIX_3[SBOX[t & 0xff]]; - } - } - }, - - encryptBlock: function (M, offset) { - this._doCryptBlock(M, offset, this._keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX); - }, - - decryptBlock: function (M, offset) { - // Swap 2nd and 4th rows - var t = M[offset + 1]; - M[offset + 1] = M[offset + 3]; - M[offset + 3] = t; - - this._doCryptBlock(M, offset, this._invKeySchedule, INV_SUB_MIX_0, INV_SUB_MIX_1, INV_SUB_MIX_2, INV_SUB_MIX_3, INV_SBOX); - - // Inv swap 2nd and 4th rows - var t = M[offset + 1]; - M[offset + 1] = M[offset + 3]; - M[offset + 3] = t; - }, - - _doCryptBlock: function (M, offset, keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX) { - // Shortcut - var nRounds = this._nRounds; - - // Get input, add round key - var s0 = M[offset] ^ keySchedule[0]; - var s1 = M[offset + 1] ^ keySchedule[1]; - var s2 = M[offset + 2] ^ keySchedule[2]; - var s3 = M[offset + 3] ^ keySchedule[3]; - - // Key schedule row counter - var ksRow = 4; - - // Rounds - for (var round = 1; round < nRounds; round++) { - // Shift rows, sub bytes, mix columns, add round key - var t0 = SUB_MIX_0[s0 >>> 24] ^ SUB_MIX_1[(s1 >>> 16) & 0xff] ^ SUB_MIX_2[(s2 >>> 8) & 0xff] ^ SUB_MIX_3[s3 & 0xff] ^ keySchedule[ksRow++]; - var t1 = SUB_MIX_0[s1 >>> 24] ^ SUB_MIX_1[(s2 >>> 16) & 0xff] ^ SUB_MIX_2[(s3 >>> 8) & 0xff] ^ SUB_MIX_3[s0 & 0xff] ^ keySchedule[ksRow++]; - var t2 = SUB_MIX_0[s2 >>> 24] ^ SUB_MIX_1[(s3 >>> 16) & 0xff] ^ SUB_MIX_2[(s0 >>> 8) & 0xff] ^ SUB_MIX_3[s1 & 0xff] ^ keySchedule[ksRow++]; - var t3 = SUB_MIX_0[s3 >>> 24] ^ SUB_MIX_1[(s0 >>> 16) & 0xff] ^ SUB_MIX_2[(s1 >>> 8) & 0xff] ^ SUB_MIX_3[s2 & 0xff] ^ keySchedule[ksRow++]; - - // Update state - s0 = t0; - s1 = t1; - s2 = t2; - s3 = t3; - } - - // Shift rows, sub bytes, add round key - var t0 = ((SBOX[s0 >>> 24] << 24) | (SBOX[(s1 >>> 16) & 0xff] << 16) | (SBOX[(s2 >>> 8) & 0xff] << 8) | SBOX[s3 & 0xff]) ^ keySchedule[ksRow++]; - var t1 = ((SBOX[s1 >>> 24] << 24) | (SBOX[(s2 >>> 16) & 0xff] << 16) | (SBOX[(s3 >>> 8) & 0xff] << 8) | SBOX[s0 & 0xff]) ^ keySchedule[ksRow++]; - var t2 = ((SBOX[s2 >>> 24] << 24) | (SBOX[(s3 >>> 16) & 0xff] << 16) | (SBOX[(s0 >>> 8) & 0xff] << 8) | SBOX[s1 & 0xff]) ^ keySchedule[ksRow++]; - var t3 = ((SBOX[s3 >>> 24] << 24) | (SBOX[(s0 >>> 16) & 0xff] << 16) | (SBOX[(s1 >>> 8) & 0xff] << 8) | SBOX[s2 & 0xff]) ^ keySchedule[ksRow++]; - - // Set output - M[offset] = t0; - M[offset + 1] = t1; - M[offset + 2] = t2; - M[offset + 3] = t3; - }, - - keySize: 256/32 - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.AES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.AES.decrypt(ciphertext, key, cfg); - */ - C.AES = BlockCipher._createHelper(AES); - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var BlockCipher = C_lib.BlockCipher; - var C_algo = C.algo; - - // Permuted Choice 1 constants - var PC1 = [ - 57, 49, 41, 33, 25, 17, 9, 1, - 58, 50, 42, 34, 26, 18, 10, 2, - 59, 51, 43, 35, 27, 19, 11, 3, - 60, 52, 44, 36, 63, 55, 47, 39, - 31, 23, 15, 7, 62, 54, 46, 38, - 30, 22, 14, 6, 61, 53, 45, 37, - 29, 21, 13, 5, 28, 20, 12, 4 - ]; - - // Permuted Choice 2 constants - var PC2 = [ - 14, 17, 11, 24, 1, 5, - 3, 28, 15, 6, 21, 10, - 23, 19, 12, 4, 26, 8, - 16, 7, 27, 20, 13, 2, - 41, 52, 31, 37, 47, 55, - 30, 40, 51, 45, 33, 48, - 44, 49, 39, 56, 34, 53, - 46, 42, 50, 36, 29, 32 - ]; - - // Cumulative bit shift constants - var BIT_SHIFTS = [1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28]; - - // SBOXes and round permutation constants - var SBOX_P = [ - { - 0x0: 0x808200, - 0x10000000: 0x8000, - 0x20000000: 0x808002, - 0x30000000: 0x2, - 0x40000000: 0x200, - 0x50000000: 0x808202, - 0x60000000: 0x800202, - 0x70000000: 0x800000, - 0x80000000: 0x202, - 0x90000000: 0x800200, - 0xa0000000: 0x8200, - 0xb0000000: 0x808000, - 0xc0000000: 0x8002, - 0xd0000000: 0x800002, - 0xe0000000: 0x0, - 0xf0000000: 0x8202, - 0x8000000: 0x0, - 0x18000000: 0x808202, - 0x28000000: 0x8202, - 0x38000000: 0x8000, - 0x48000000: 0x808200, - 0x58000000: 0x200, - 0x68000000: 0x808002, - 0x78000000: 0x2, - 0x88000000: 0x800200, - 0x98000000: 0x8200, - 0xa8000000: 0x808000, - 0xb8000000: 0x800202, - 0xc8000000: 0x800002, - 0xd8000000: 0x8002, - 0xe8000000: 0x202, - 0xf8000000: 0x800000, - 0x1: 0x8000, - 0x10000001: 0x2, - 0x20000001: 0x808200, - 0x30000001: 0x800000, - 0x40000001: 0x808002, - 0x50000001: 0x8200, - 0x60000001: 0x200, - 0x70000001: 0x800202, - 0x80000001: 0x808202, - 0x90000001: 0x808000, - 0xa0000001: 0x800002, - 0xb0000001: 0x8202, - 0xc0000001: 0x202, - 0xd0000001: 0x800200, - 0xe0000001: 0x8002, - 0xf0000001: 0x0, - 0x8000001: 0x808202, - 0x18000001: 0x808000, - 0x28000001: 0x800000, - 0x38000001: 0x200, - 0x48000001: 0x8000, - 0x58000001: 0x800002, - 0x68000001: 0x2, - 0x78000001: 0x8202, - 0x88000001: 0x8002, - 0x98000001: 0x800202, - 0xa8000001: 0x202, - 0xb8000001: 0x808200, - 0xc8000001: 0x800200, - 0xd8000001: 0x0, - 0xe8000001: 0x8200, - 0xf8000001: 0x808002 - }, - { - 0x0: 0x40084010, - 0x1000000: 0x4000, - 0x2000000: 0x80000, - 0x3000000: 0x40080010, - 0x4000000: 0x40000010, - 0x5000000: 0x40084000, - 0x6000000: 0x40004000, - 0x7000000: 0x10, - 0x8000000: 0x84000, - 0x9000000: 0x40004010, - 0xa000000: 0x40000000, - 0xb000000: 0x84010, - 0xc000000: 0x80010, - 0xd000000: 0x0, - 0xe000000: 0x4010, - 0xf000000: 0x40080000, - 0x800000: 0x40004000, - 0x1800000: 0x84010, - 0x2800000: 0x10, - 0x3800000: 0x40004010, - 0x4800000: 0x40084010, - 0x5800000: 0x40000000, - 0x6800000: 0x80000, - 0x7800000: 0x40080010, - 0x8800000: 0x80010, - 0x9800000: 0x0, - 0xa800000: 0x4000, - 0xb800000: 0x40080000, - 0xc800000: 0x40000010, - 0xd800000: 0x84000, - 0xe800000: 0x40084000, - 0xf800000: 0x4010, - 0x10000000: 0x0, - 0x11000000: 0x40080010, - 0x12000000: 0x40004010, - 0x13000000: 0x40084000, - 0x14000000: 0x40080000, - 0x15000000: 0x10, - 0x16000000: 0x84010, - 0x17000000: 0x4000, - 0x18000000: 0x4010, - 0x19000000: 0x80000, - 0x1a000000: 0x80010, - 0x1b000000: 0x40000010, - 0x1c000000: 0x84000, - 0x1d000000: 0x40004000, - 0x1e000000: 0x40000000, - 0x1f000000: 0x40084010, - 0x10800000: 0x84010, - 0x11800000: 0x80000, - 0x12800000: 0x40080000, - 0x13800000: 0x4000, - 0x14800000: 0x40004000, - 0x15800000: 0x40084010, - 0x16800000: 0x10, - 0x17800000: 0x40000000, - 0x18800000: 0x40084000, - 0x19800000: 0x40000010, - 0x1a800000: 0x40004010, - 0x1b800000: 0x80010, - 0x1c800000: 0x0, - 0x1d800000: 0x4010, - 0x1e800000: 0x40080010, - 0x1f800000: 0x84000 - }, - { - 0x0: 0x104, - 0x100000: 0x0, - 0x200000: 0x4000100, - 0x300000: 0x10104, - 0x400000: 0x10004, - 0x500000: 0x4000004, - 0x600000: 0x4010104, - 0x700000: 0x4010000, - 0x800000: 0x4000000, - 0x900000: 0x4010100, - 0xa00000: 0x10100, - 0xb00000: 0x4010004, - 0xc00000: 0x4000104, - 0xd00000: 0x10000, - 0xe00000: 0x4, - 0xf00000: 0x100, - 0x80000: 0x4010100, - 0x180000: 0x4010004, - 0x280000: 0x0, - 0x380000: 0x4000100, - 0x480000: 0x4000004, - 0x580000: 0x10000, - 0x680000: 0x10004, - 0x780000: 0x104, - 0x880000: 0x4, - 0x980000: 0x100, - 0xa80000: 0x4010000, - 0xb80000: 0x10104, - 0xc80000: 0x10100, - 0xd80000: 0x4000104, - 0xe80000: 0x4010104, - 0xf80000: 0x4000000, - 0x1000000: 0x4010100, - 0x1100000: 0x10004, - 0x1200000: 0x10000, - 0x1300000: 0x4000100, - 0x1400000: 0x100, - 0x1500000: 0x4010104, - 0x1600000: 0x4000004, - 0x1700000: 0x0, - 0x1800000: 0x4000104, - 0x1900000: 0x4000000, - 0x1a00000: 0x4, - 0x1b00000: 0x10100, - 0x1c00000: 0x4010000, - 0x1d00000: 0x104, - 0x1e00000: 0x10104, - 0x1f00000: 0x4010004, - 0x1080000: 0x4000000, - 0x1180000: 0x104, - 0x1280000: 0x4010100, - 0x1380000: 0x0, - 0x1480000: 0x10004, - 0x1580000: 0x4000100, - 0x1680000: 0x100, - 0x1780000: 0x4010004, - 0x1880000: 0x10000, - 0x1980000: 0x4010104, - 0x1a80000: 0x10104, - 0x1b80000: 0x4000004, - 0x1c80000: 0x4000104, - 0x1d80000: 0x4010000, - 0x1e80000: 0x4, - 0x1f80000: 0x10100 - }, - { - 0x0: 0x80401000, - 0x10000: 0x80001040, - 0x20000: 0x401040, - 0x30000: 0x80400000, - 0x40000: 0x0, - 0x50000: 0x401000, - 0x60000: 0x80000040, - 0x70000: 0x400040, - 0x80000: 0x80000000, - 0x90000: 0x400000, - 0xa0000: 0x40, - 0xb0000: 0x80001000, - 0xc0000: 0x80400040, - 0xd0000: 0x1040, - 0xe0000: 0x1000, - 0xf0000: 0x80401040, - 0x8000: 0x80001040, - 0x18000: 0x40, - 0x28000: 0x80400040, - 0x38000: 0x80001000, - 0x48000: 0x401000, - 0x58000: 0x80401040, - 0x68000: 0x0, - 0x78000: 0x80400000, - 0x88000: 0x1000, - 0x98000: 0x80401000, - 0xa8000: 0x400000, - 0xb8000: 0x1040, - 0xc8000: 0x80000000, - 0xd8000: 0x400040, - 0xe8000: 0x401040, - 0xf8000: 0x80000040, - 0x100000: 0x400040, - 0x110000: 0x401000, - 0x120000: 0x80000040, - 0x130000: 0x0, - 0x140000: 0x1040, - 0x150000: 0x80400040, - 0x160000: 0x80401000, - 0x170000: 0x80001040, - 0x180000: 0x80401040, - 0x190000: 0x80000000, - 0x1a0000: 0x80400000, - 0x1b0000: 0x401040, - 0x1c0000: 0x80001000, - 0x1d0000: 0x400000, - 0x1e0000: 0x40, - 0x1f0000: 0x1000, - 0x108000: 0x80400000, - 0x118000: 0x80401040, - 0x128000: 0x0, - 0x138000: 0x401000, - 0x148000: 0x400040, - 0x158000: 0x80000000, - 0x168000: 0x80001040, - 0x178000: 0x40, - 0x188000: 0x80000040, - 0x198000: 0x1000, - 0x1a8000: 0x80001000, - 0x1b8000: 0x80400040, - 0x1c8000: 0x1040, - 0x1d8000: 0x80401000, - 0x1e8000: 0x400000, - 0x1f8000: 0x401040 - }, - { - 0x0: 0x80, - 0x1000: 0x1040000, - 0x2000: 0x40000, - 0x3000: 0x20000000, - 0x4000: 0x20040080, - 0x5000: 0x1000080, - 0x6000: 0x21000080, - 0x7000: 0x40080, - 0x8000: 0x1000000, - 0x9000: 0x20040000, - 0xa000: 0x20000080, - 0xb000: 0x21040080, - 0xc000: 0x21040000, - 0xd000: 0x0, - 0xe000: 0x1040080, - 0xf000: 0x21000000, - 0x800: 0x1040080, - 0x1800: 0x21000080, - 0x2800: 0x80, - 0x3800: 0x1040000, - 0x4800: 0x40000, - 0x5800: 0x20040080, - 0x6800: 0x21040000, - 0x7800: 0x20000000, - 0x8800: 0x20040000, - 0x9800: 0x0, - 0xa800: 0x21040080, - 0xb800: 0x1000080, - 0xc800: 0x20000080, - 0xd800: 0x21000000, - 0xe800: 0x1000000, - 0xf800: 0x40080, - 0x10000: 0x40000, - 0x11000: 0x80, - 0x12000: 0x20000000, - 0x13000: 0x21000080, - 0x14000: 0x1000080, - 0x15000: 0x21040000, - 0x16000: 0x20040080, - 0x17000: 0x1000000, - 0x18000: 0x21040080, - 0x19000: 0x21000000, - 0x1a000: 0x1040000, - 0x1b000: 0x20040000, - 0x1c000: 0x40080, - 0x1d000: 0x20000080, - 0x1e000: 0x0, - 0x1f000: 0x1040080, - 0x10800: 0x21000080, - 0x11800: 0x1000000, - 0x12800: 0x1040000, - 0x13800: 0x20040080, - 0x14800: 0x20000000, - 0x15800: 0x1040080, - 0x16800: 0x80, - 0x17800: 0x21040000, - 0x18800: 0x40080, - 0x19800: 0x21040080, - 0x1a800: 0x0, - 0x1b800: 0x21000000, - 0x1c800: 0x1000080, - 0x1d800: 0x40000, - 0x1e800: 0x20040000, - 0x1f800: 0x20000080 - }, - { - 0x0: 0x10000008, - 0x100: 0x2000, - 0x200: 0x10200000, - 0x300: 0x10202008, - 0x400: 0x10002000, - 0x500: 0x200000, - 0x600: 0x200008, - 0x700: 0x10000000, - 0x800: 0x0, - 0x900: 0x10002008, - 0xa00: 0x202000, - 0xb00: 0x8, - 0xc00: 0x10200008, - 0xd00: 0x202008, - 0xe00: 0x2008, - 0xf00: 0x10202000, - 0x80: 0x10200000, - 0x180: 0x10202008, - 0x280: 0x8, - 0x380: 0x200000, - 0x480: 0x202008, - 0x580: 0x10000008, - 0x680: 0x10002000, - 0x780: 0x2008, - 0x880: 0x200008, - 0x980: 0x2000, - 0xa80: 0x10002008, - 0xb80: 0x10200008, - 0xc80: 0x0, - 0xd80: 0x10202000, - 0xe80: 0x202000, - 0xf80: 0x10000000, - 0x1000: 0x10002000, - 0x1100: 0x10200008, - 0x1200: 0x10202008, - 0x1300: 0x2008, - 0x1400: 0x200000, - 0x1500: 0x10000000, - 0x1600: 0x10000008, - 0x1700: 0x202000, - 0x1800: 0x202008, - 0x1900: 0x0, - 0x1a00: 0x8, - 0x1b00: 0x10200000, - 0x1c00: 0x2000, - 0x1d00: 0x10002008, - 0x1e00: 0x10202000, - 0x1f00: 0x200008, - 0x1080: 0x8, - 0x1180: 0x202000, - 0x1280: 0x200000, - 0x1380: 0x10000008, - 0x1480: 0x10002000, - 0x1580: 0x2008, - 0x1680: 0x10202008, - 0x1780: 0x10200000, - 0x1880: 0x10202000, - 0x1980: 0x10200008, - 0x1a80: 0x2000, - 0x1b80: 0x202008, - 0x1c80: 0x200008, - 0x1d80: 0x0, - 0x1e80: 0x10000000, - 0x1f80: 0x10002008 - }, - { - 0x0: 0x100000, - 0x10: 0x2000401, - 0x20: 0x400, - 0x30: 0x100401, - 0x40: 0x2100401, - 0x50: 0x0, - 0x60: 0x1, - 0x70: 0x2100001, - 0x80: 0x2000400, - 0x90: 0x100001, - 0xa0: 0x2000001, - 0xb0: 0x2100400, - 0xc0: 0x2100000, - 0xd0: 0x401, - 0xe0: 0x100400, - 0xf0: 0x2000000, - 0x8: 0x2100001, - 0x18: 0x0, - 0x28: 0x2000401, - 0x38: 0x2100400, - 0x48: 0x100000, - 0x58: 0x2000001, - 0x68: 0x2000000, - 0x78: 0x401, - 0x88: 0x100401, - 0x98: 0x2000400, - 0xa8: 0x2100000, - 0xb8: 0x100001, - 0xc8: 0x400, - 0xd8: 0x2100401, - 0xe8: 0x1, - 0xf8: 0x100400, - 0x100: 0x2000000, - 0x110: 0x100000, - 0x120: 0x2000401, - 0x130: 0x2100001, - 0x140: 0x100001, - 0x150: 0x2000400, - 0x160: 0x2100400, - 0x170: 0x100401, - 0x180: 0x401, - 0x190: 0x2100401, - 0x1a0: 0x100400, - 0x1b0: 0x1, - 0x1c0: 0x0, - 0x1d0: 0x2100000, - 0x1e0: 0x2000001, - 0x1f0: 0x400, - 0x108: 0x100400, - 0x118: 0x2000401, - 0x128: 0x2100001, - 0x138: 0x1, - 0x148: 0x2000000, - 0x158: 0x100000, - 0x168: 0x401, - 0x178: 0x2100400, - 0x188: 0x2000001, - 0x198: 0x2100000, - 0x1a8: 0x0, - 0x1b8: 0x2100401, - 0x1c8: 0x100401, - 0x1d8: 0x400, - 0x1e8: 0x2000400, - 0x1f8: 0x100001 - }, - { - 0x0: 0x8000820, - 0x1: 0x20000, - 0x2: 0x8000000, - 0x3: 0x20, - 0x4: 0x20020, - 0x5: 0x8020820, - 0x6: 0x8020800, - 0x7: 0x800, - 0x8: 0x8020000, - 0x9: 0x8000800, - 0xa: 0x20800, - 0xb: 0x8020020, - 0xc: 0x820, - 0xd: 0x0, - 0xe: 0x8000020, - 0xf: 0x20820, - 0x80000000: 0x800, - 0x80000001: 0x8020820, - 0x80000002: 0x8000820, - 0x80000003: 0x8000000, - 0x80000004: 0x8020000, - 0x80000005: 0x20800, - 0x80000006: 0x20820, - 0x80000007: 0x20, - 0x80000008: 0x8000020, - 0x80000009: 0x820, - 0x8000000a: 0x20020, - 0x8000000b: 0x8020800, - 0x8000000c: 0x0, - 0x8000000d: 0x8020020, - 0x8000000e: 0x8000800, - 0x8000000f: 0x20000, - 0x10: 0x20820, - 0x11: 0x8020800, - 0x12: 0x20, - 0x13: 0x800, - 0x14: 0x8000800, - 0x15: 0x8000020, - 0x16: 0x8020020, - 0x17: 0x20000, - 0x18: 0x0, - 0x19: 0x20020, - 0x1a: 0x8020000, - 0x1b: 0x8000820, - 0x1c: 0x8020820, - 0x1d: 0x20800, - 0x1e: 0x820, - 0x1f: 0x8000000, - 0x80000010: 0x20000, - 0x80000011: 0x800, - 0x80000012: 0x8020020, - 0x80000013: 0x20820, - 0x80000014: 0x20, - 0x80000015: 0x8020000, - 0x80000016: 0x8000000, - 0x80000017: 0x8000820, - 0x80000018: 0x8020820, - 0x80000019: 0x8000020, - 0x8000001a: 0x8000800, - 0x8000001b: 0x0, - 0x8000001c: 0x20800, - 0x8000001d: 0x820, - 0x8000001e: 0x20020, - 0x8000001f: 0x8020800 - } - ]; - - // Masks that select the SBOX input - var SBOX_MASK = [ - 0xf8000001, 0x1f800000, 0x01f80000, 0x001f8000, - 0x0001f800, 0x00001f80, 0x000001f8, 0x8000001f - ]; - - /** - * DES block cipher algorithm. - */ - var DES = C_algo.DES = BlockCipher.extend({ - _doReset: function () { - // Shortcuts - var key = this._key; - var keyWords = key.words; - - // Select 56 bits according to PC1 - var keyBits = []; - for (var i = 0; i < 56; i++) { - var keyBitPos = PC1[i] - 1; - keyBits[i] = (keyWords[keyBitPos >>> 5] >>> (31 - keyBitPos % 32)) & 1; - } - - // Assemble 16 subkeys - var subKeys = this._subKeys = []; - for (var nSubKey = 0; nSubKey < 16; nSubKey++) { - // Create subkey - var subKey = subKeys[nSubKey] = []; - - // Shortcut - var bitShift = BIT_SHIFTS[nSubKey]; - - // Select 48 bits according to PC2 - for (var i = 0; i < 24; i++) { - // Select from the left 28 key bits - subKey[(i / 6) | 0] |= keyBits[((PC2[i] - 1) + bitShift) % 28] << (31 - i % 6); - - // Select from the right 28 key bits - subKey[4 + ((i / 6) | 0)] |= keyBits[28 + (((PC2[i + 24] - 1) + bitShift) % 28)] << (31 - i % 6); - } - - // Since each subkey is applied to an expanded 32-bit input, - // the subkey can be broken into 8 values scaled to 32-bits, - // which allows the key to be used without expansion - subKey[0] = (subKey[0] << 1) | (subKey[0] >>> 31); - for (var i = 1; i < 7; i++) { - subKey[i] = subKey[i] >>> ((i - 1) * 4 + 3); - } - subKey[7] = (subKey[7] << 5) | (subKey[7] >>> 27); - } - - // Compute inverse subkeys - var invSubKeys = this._invSubKeys = []; - for (var i = 0; i < 16; i++) { - invSubKeys[i] = subKeys[15 - i]; - } - }, - - encryptBlock: function (M, offset) { - this._doCryptBlock(M, offset, this._subKeys); - }, - - decryptBlock: function (M, offset) { - this._doCryptBlock(M, offset, this._invSubKeys); - }, - - _doCryptBlock: function (M, offset, subKeys) { - // Get input - this._lBlock = M[offset]; - this._rBlock = M[offset + 1]; - - // Initial permutation - exchangeLR.call(this, 4, 0x0f0f0f0f); - exchangeLR.call(this, 16, 0x0000ffff); - exchangeRL.call(this, 2, 0x33333333); - exchangeRL.call(this, 8, 0x00ff00ff); - exchangeLR.call(this, 1, 0x55555555); - - // Rounds - for (var round = 0; round < 16; round++) { - // Shortcuts - var subKey = subKeys[round]; - var lBlock = this._lBlock; - var rBlock = this._rBlock; - - // Feistel function - var f = 0; - for (var i = 0; i < 8; i++) { - f |= SBOX_P[i][((rBlock ^ subKey[i]) & SBOX_MASK[i]) >>> 0]; - } - this._lBlock = rBlock; - this._rBlock = lBlock ^ f; - } - - // Undo swap from last round - var t = this._lBlock; - this._lBlock = this._rBlock; - this._rBlock = t; - - // Final permutation - exchangeLR.call(this, 1, 0x55555555); - exchangeRL.call(this, 8, 0x00ff00ff); - exchangeRL.call(this, 2, 0x33333333); - exchangeLR.call(this, 16, 0x0000ffff); - exchangeLR.call(this, 4, 0x0f0f0f0f); - - // Set output - M[offset] = this._lBlock; - M[offset + 1] = this._rBlock; - }, - - keySize: 64/32, - - ivSize: 64/32, - - blockSize: 64/32 - }); - - // Swap bits across the left and right words - function exchangeLR(offset, mask) { - var t = ((this._lBlock >>> offset) ^ this._rBlock) & mask; - this._rBlock ^= t; - this._lBlock ^= t << offset; - } - - function exchangeRL(offset, mask) { - var t = ((this._rBlock >>> offset) ^ this._lBlock) & mask; - this._lBlock ^= t; - this._rBlock ^= t << offset; - } - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.DES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.DES.decrypt(ciphertext, key, cfg); - */ - C.DES = BlockCipher._createHelper(DES); - - /** - * Triple-DES block cipher algorithm. - */ - var TripleDES = C_algo.TripleDES = BlockCipher.extend({ - _doReset: function () { - // Shortcuts - var key = this._key; - var keyWords = key.words; - // Make sure the key length is valid (64, 128 or >= 192 bit) - if (keyWords.length !== 2 && keyWords.length !== 4 && keyWords.length < 6) { - throw new Error('Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.'); - } - - // Extend the key according to the keying options defined in 3DES standard - var key1 = keyWords.slice(0, 2); - var key2 = keyWords.length < 4 ? keyWords.slice(0, 2) : keyWords.slice(2, 4); - var key3 = keyWords.length < 6 ? keyWords.slice(0, 2) : keyWords.slice(4, 6); - - // Create DES instances - this._des1 = DES.createEncryptor(WordArray.create(key1)); - this._des2 = DES.createEncryptor(WordArray.create(key2)); - this._des3 = DES.createEncryptor(WordArray.create(key3)); - }, - - encryptBlock: function (M, offset) { - this._des1.encryptBlock(M, offset); - this._des2.decryptBlock(M, offset); - this._des3.encryptBlock(M, offset); - }, - - decryptBlock: function (M, offset) { - this._des3.decryptBlock(M, offset); - this._des2.encryptBlock(M, offset); - this._des1.decryptBlock(M, offset); - }, - - keySize: 192/32, - - ivSize: 64/32, - - blockSize: 64/32 - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.TripleDES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.TripleDES.decrypt(ciphertext, key, cfg); - */ - C.TripleDES = BlockCipher._createHelper(TripleDES); - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var StreamCipher = C_lib.StreamCipher; - var C_algo = C.algo; - - /** - * RC4 stream cipher algorithm. - */ - var RC4 = C_algo.RC4 = StreamCipher.extend({ - _doReset: function () { - // Shortcuts - var key = this._key; - var keyWords = key.words; - var keySigBytes = key.sigBytes; - - // Init sbox - var S = this._S = []; - for (var i = 0; i < 256; i++) { - S[i] = i; - } - - // Key setup - for (var i = 0, j = 0; i < 256; i++) { - var keyByteIndex = i % keySigBytes; - var keyByte = (keyWords[keyByteIndex >>> 2] >>> (24 - (keyByteIndex % 4) * 8)) & 0xff; - - j = (j + S[i] + keyByte) % 256; - - // Swap - var t = S[i]; - S[i] = S[j]; - S[j] = t; - } - - // Counters - this._i = this._j = 0; - }, - - _doProcessBlock: function (M, offset) { - M[offset] ^= generateKeystreamWord.call(this); - }, - - keySize: 256/32, - - ivSize: 0 - }); - - function generateKeystreamWord() { - // Shortcuts - var S = this._S; - var i = this._i; - var j = this._j; - - // Generate keystream word - var keystreamWord = 0; - for (var n = 0; n < 4; n++) { - i = (i + 1) % 256; - j = (j + S[i]) % 256; - - // Swap - var t = S[i]; - S[i] = S[j]; - S[j] = t; - - keystreamWord |= S[(S[i] + S[j]) % 256] << (24 - n * 8); - } - - // Update counters - this._i = i; - this._j = j; - - return keystreamWord; - } - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.RC4.encrypt(message, key, cfg); - * var plaintext = CryptoJS.RC4.decrypt(ciphertext, key, cfg); - */ - C.RC4 = StreamCipher._createHelper(RC4); - - /** - * Modified RC4 stream cipher algorithm. - */ - var RC4Drop = C_algo.RC4Drop = RC4.extend({ - /** - * Configuration options. - * - * @property {number} drop The number of keystream words to drop. Default 192 - */ - cfg: RC4.cfg.extend({ - drop: 192 - }), - - _doReset: function () { - RC4._doReset.call(this); - - // Drop - for (var i = this.cfg.drop; i > 0; i--) { - generateKeystreamWord.call(this); - } - } - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.RC4Drop.encrypt(message, key, cfg); - * var plaintext = CryptoJS.RC4Drop.decrypt(ciphertext, key, cfg); - */ - C.RC4Drop = StreamCipher._createHelper(RC4Drop); - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var StreamCipher = C_lib.StreamCipher; - var C_algo = C.algo; - - // Reusable objects - var S = []; - var C_ = []; - var G = []; - - /** - * Rabbit stream cipher algorithm - */ - var Rabbit = C_algo.Rabbit = StreamCipher.extend({ - _doReset: function () { - // Shortcuts - var K = this._key.words; - var iv = this.cfg.iv; - - // Swap endian - for (var i = 0; i < 4; i++) { - K[i] = (((K[i] << 8) | (K[i] >>> 24)) & 0x00ff00ff) | - (((K[i] << 24) | (K[i] >>> 8)) & 0xff00ff00); - } - - // Generate initial state values - var X = this._X = [ - K[0], (K[3] << 16) | (K[2] >>> 16), - K[1], (K[0] << 16) | (K[3] >>> 16), - K[2], (K[1] << 16) | (K[0] >>> 16), - K[3], (K[2] << 16) | (K[1] >>> 16) - ]; - - // Generate initial counter values - var C = this._C = [ - (K[2] << 16) | (K[2] >>> 16), (K[0] & 0xffff0000) | (K[1] & 0x0000ffff), - (K[3] << 16) | (K[3] >>> 16), (K[1] & 0xffff0000) | (K[2] & 0x0000ffff), - (K[0] << 16) | (K[0] >>> 16), (K[2] & 0xffff0000) | (K[3] & 0x0000ffff), - (K[1] << 16) | (K[1] >>> 16), (K[3] & 0xffff0000) | (K[0] & 0x0000ffff) - ]; - - // Carry bit - this._b = 0; - - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); - } - - // Modify the counters - for (var i = 0; i < 8; i++) { - C[i] ^= X[(i + 4) & 7]; - } - - // IV setup - if (iv) { - // Shortcuts - var IV = iv.words; - var IV_0 = IV[0]; - var IV_1 = IV[1]; - - // Generate four subvectors - var i0 = (((IV_0 << 8) | (IV_0 >>> 24)) & 0x00ff00ff) | (((IV_0 << 24) | (IV_0 >>> 8)) & 0xff00ff00); - var i2 = (((IV_1 << 8) | (IV_1 >>> 24)) & 0x00ff00ff) | (((IV_1 << 24) | (IV_1 >>> 8)) & 0xff00ff00); - var i1 = (i0 >>> 16) | (i2 & 0xffff0000); - var i3 = (i2 << 16) | (i0 & 0x0000ffff); - - // Modify counter values - C[0] ^= i0; - C[1] ^= i1; - C[2] ^= i2; - C[3] ^= i3; - C[4] ^= i0; - C[5] ^= i1; - C[6] ^= i2; - C[7] ^= i3; - - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); - } - } - }, - - _doProcessBlock: function (M, offset) { - // Shortcut - var X = this._X; - - // Iterate the system - nextState.call(this); - - // Generate four keystream words - S[0] = X[0] ^ (X[5] >>> 16) ^ (X[3] << 16); - S[1] = X[2] ^ (X[7] >>> 16) ^ (X[5] << 16); - S[2] = X[4] ^ (X[1] >>> 16) ^ (X[7] << 16); - S[3] = X[6] ^ (X[3] >>> 16) ^ (X[1] << 16); - - for (var i = 0; i < 4; i++) { - // Swap endian - S[i] = (((S[i] << 8) | (S[i] >>> 24)) & 0x00ff00ff) | - (((S[i] << 24) | (S[i] >>> 8)) & 0xff00ff00); - - // Encrypt - M[offset + i] ^= S[i]; - } - }, - - blockSize: 128/32, - - ivSize: 64/32 - }); - - function nextState() { - // Shortcuts - var X = this._X; - var C = this._C; - - // Save old counter values - for (var i = 0; i < 8; i++) { - C_[i] = C[i]; - } - - // Calculate new counter values - C[0] = (C[0] + 0x4d34d34d + this._b) | 0; - C[1] = (C[1] + 0xd34d34d3 + ((C[0] >>> 0) < (C_[0] >>> 0) ? 1 : 0)) | 0; - C[2] = (C[2] + 0x34d34d34 + ((C[1] >>> 0) < (C_[1] >>> 0) ? 1 : 0)) | 0; - C[3] = (C[3] + 0x4d34d34d + ((C[2] >>> 0) < (C_[2] >>> 0) ? 1 : 0)) | 0; - C[4] = (C[4] + 0xd34d34d3 + ((C[3] >>> 0) < (C_[3] >>> 0) ? 1 : 0)) | 0; - C[5] = (C[5] + 0x34d34d34 + ((C[4] >>> 0) < (C_[4] >>> 0) ? 1 : 0)) | 0; - C[6] = (C[6] + 0x4d34d34d + ((C[5] >>> 0) < (C_[5] >>> 0) ? 1 : 0)) | 0; - C[7] = (C[7] + 0xd34d34d3 + ((C[6] >>> 0) < (C_[6] >>> 0) ? 1 : 0)) | 0; - this._b = (C[7] >>> 0) < (C_[7] >>> 0) ? 1 : 0; - - // Calculate the g-values - for (var i = 0; i < 8; i++) { - var gx = X[i] + C[i]; - - // Construct high and low argument for squaring - var ga = gx & 0xffff; - var gb = gx >>> 16; - - // Calculate high and low result of squaring - var gh = ((((ga * ga) >>> 17) + ga * gb) >>> 15) + gb * gb; - var gl = (((gx & 0xffff0000) * gx) | 0) + (((gx & 0x0000ffff) * gx) | 0); - - // High XOR low - G[i] = gh ^ gl; - } - - // Calculate new state values - X[0] = (G[0] + ((G[7] << 16) | (G[7] >>> 16)) + ((G[6] << 16) | (G[6] >>> 16))) | 0; - X[1] = (G[1] + ((G[0] << 8) | (G[0] >>> 24)) + G[7]) | 0; - X[2] = (G[2] + ((G[1] << 16) | (G[1] >>> 16)) + ((G[0] << 16) | (G[0] >>> 16))) | 0; - X[3] = (G[3] + ((G[2] << 8) | (G[2] >>> 24)) + G[1]) | 0; - X[4] = (G[4] + ((G[3] << 16) | (G[3] >>> 16)) + ((G[2] << 16) | (G[2] >>> 16))) | 0; - X[5] = (G[5] + ((G[4] << 8) | (G[4] >>> 24)) + G[3]) | 0; - X[6] = (G[6] + ((G[5] << 16) | (G[5] >>> 16)) + ((G[4] << 16) | (G[4] >>> 16))) | 0; - X[7] = (G[7] + ((G[6] << 8) | (G[6] >>> 24)) + G[5]) | 0; - } - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.Rabbit.encrypt(message, key, cfg); - * var plaintext = CryptoJS.Rabbit.decrypt(ciphertext, key, cfg); - */ - C.Rabbit = StreamCipher._createHelper(Rabbit); - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var StreamCipher = C_lib.StreamCipher; - var C_algo = C.algo; - - // Reusable objects - var S = []; - var C_ = []; - var G = []; - - /** - * Rabbit stream cipher algorithm. - * - * This is a legacy version that neglected to convert the key to little-endian. - * This error doesn't affect the cipher's security, - * but it does affect its compatibility with other implementations. - */ - var RabbitLegacy = C_algo.RabbitLegacy = StreamCipher.extend({ - _doReset: function () { - // Shortcuts - var K = this._key.words; - var iv = this.cfg.iv; - - // Generate initial state values - var X = this._X = [ - K[0], (K[3] << 16) | (K[2] >>> 16), - K[1], (K[0] << 16) | (K[3] >>> 16), - K[2], (K[1] << 16) | (K[0] >>> 16), - K[3], (K[2] << 16) | (K[1] >>> 16) - ]; - - // Generate initial counter values - var C = this._C = [ - (K[2] << 16) | (K[2] >>> 16), (K[0] & 0xffff0000) | (K[1] & 0x0000ffff), - (K[3] << 16) | (K[3] >>> 16), (K[1] & 0xffff0000) | (K[2] & 0x0000ffff), - (K[0] << 16) | (K[0] >>> 16), (K[2] & 0xffff0000) | (K[3] & 0x0000ffff), - (K[1] << 16) | (K[1] >>> 16), (K[3] & 0xffff0000) | (K[0] & 0x0000ffff) - ]; - - // Carry bit - this._b = 0; - - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); - } - - // Modify the counters - for (var i = 0; i < 8; i++) { - C[i] ^= X[(i + 4) & 7]; - } - - // IV setup - if (iv) { - // Shortcuts - var IV = iv.words; - var IV_0 = IV[0]; - var IV_1 = IV[1]; - - // Generate four subvectors - var i0 = (((IV_0 << 8) | (IV_0 >>> 24)) & 0x00ff00ff) | (((IV_0 << 24) | (IV_0 >>> 8)) & 0xff00ff00); - var i2 = (((IV_1 << 8) | (IV_1 >>> 24)) & 0x00ff00ff) | (((IV_1 << 24) | (IV_1 >>> 8)) & 0xff00ff00); - var i1 = (i0 >>> 16) | (i2 & 0xffff0000); - var i3 = (i2 << 16) | (i0 & 0x0000ffff); - - // Modify counter values - C[0] ^= i0; - C[1] ^= i1; - C[2] ^= i2; - C[3] ^= i3; - C[4] ^= i0; - C[5] ^= i1; - C[6] ^= i2; - C[7] ^= i3; - - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); - } - } - }, - - _doProcessBlock: function (M, offset) { - // Shortcut - var X = this._X; - - // Iterate the system - nextState.call(this); - - // Generate four keystream words - S[0] = X[0] ^ (X[5] >>> 16) ^ (X[3] << 16); - S[1] = X[2] ^ (X[7] >>> 16) ^ (X[5] << 16); - S[2] = X[4] ^ (X[1] >>> 16) ^ (X[7] << 16); - S[3] = X[6] ^ (X[3] >>> 16) ^ (X[1] << 16); - - for (var i = 0; i < 4; i++) { - // Swap endian - S[i] = (((S[i] << 8) | (S[i] >>> 24)) & 0x00ff00ff) | - (((S[i] << 24) | (S[i] >>> 8)) & 0xff00ff00); - - // Encrypt - M[offset + i] ^= S[i]; - } - }, - - blockSize: 128/32, - - ivSize: 64/32 - }); - - function nextState() { - // Shortcuts - var X = this._X; - var C = this._C; - - // Save old counter values - for (var i = 0; i < 8; i++) { - C_[i] = C[i]; - } - - // Calculate new counter values - C[0] = (C[0] + 0x4d34d34d + this._b) | 0; - C[1] = (C[1] + 0xd34d34d3 + ((C[0] >>> 0) < (C_[0] >>> 0) ? 1 : 0)) | 0; - C[2] = (C[2] + 0x34d34d34 + ((C[1] >>> 0) < (C_[1] >>> 0) ? 1 : 0)) | 0; - C[3] = (C[3] + 0x4d34d34d + ((C[2] >>> 0) < (C_[2] >>> 0) ? 1 : 0)) | 0; - C[4] = (C[4] + 0xd34d34d3 + ((C[3] >>> 0) < (C_[3] >>> 0) ? 1 : 0)) | 0; - C[5] = (C[5] + 0x34d34d34 + ((C[4] >>> 0) < (C_[4] >>> 0) ? 1 : 0)) | 0; - C[6] = (C[6] + 0x4d34d34d + ((C[5] >>> 0) < (C_[5] >>> 0) ? 1 : 0)) | 0; - C[7] = (C[7] + 0xd34d34d3 + ((C[6] >>> 0) < (C_[6] >>> 0) ? 1 : 0)) | 0; - this._b = (C[7] >>> 0) < (C_[7] >>> 0) ? 1 : 0; - - // Calculate the g-values - for (var i = 0; i < 8; i++) { - var gx = X[i] + C[i]; - - // Construct high and low argument for squaring - var ga = gx & 0xffff; - var gb = gx >>> 16; - - // Calculate high and low result of squaring - var gh = ((((ga * ga) >>> 17) + ga * gb) >>> 15) + gb * gb; - var gl = (((gx & 0xffff0000) * gx) | 0) + (((gx & 0x0000ffff) * gx) | 0); - - // High XOR low - G[i] = gh ^ gl; - } - - // Calculate new state values - X[0] = (G[0] + ((G[7] << 16) | (G[7] >>> 16)) + ((G[6] << 16) | (G[6] >>> 16))) | 0; - X[1] = (G[1] + ((G[0] << 8) | (G[0] >>> 24)) + G[7]) | 0; - X[2] = (G[2] + ((G[1] << 16) | (G[1] >>> 16)) + ((G[0] << 16) | (G[0] >>> 16))) | 0; - X[3] = (G[3] + ((G[2] << 8) | (G[2] >>> 24)) + G[1]) | 0; - X[4] = (G[4] + ((G[3] << 16) | (G[3] >>> 16)) + ((G[2] << 16) | (G[2] >>> 16))) | 0; - X[5] = (G[5] + ((G[4] << 8) | (G[4] >>> 24)) + G[3]) | 0; - X[6] = (G[6] + ((G[5] << 16) | (G[5] >>> 16)) + ((G[4] << 16) | (G[4] >>> 16))) | 0; - X[7] = (G[7] + ((G[6] << 8) | (G[6] >>> 24)) + G[5]) | 0; - } - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.RabbitLegacy.encrypt(message, key, cfg); - * var plaintext = CryptoJS.RabbitLegacy.decrypt(ciphertext, key, cfg); - */ - C.RabbitLegacy = StreamCipher._createHelper(RabbitLegacy); - }()); - - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var BlockCipher = C_lib.BlockCipher; - var C_algo = C.algo; - - const N = 16; - - //Origin pbox and sbox, derived from PI - const ORIG_P = [ - 0x243F6A88, 0x85A308D3, 0x13198A2E, 0x03707344, - 0xA4093822, 0x299F31D0, 0x082EFA98, 0xEC4E6C89, - 0x452821E6, 0x38D01377, 0xBE5466CF, 0x34E90C6C, - 0xC0AC29B7, 0xC97C50DD, 0x3F84D5B5, 0xB5470917, - 0x9216D5D9, 0x8979FB1B - ]; - - const ORIG_S = [ - [ 0xD1310BA6, 0x98DFB5AC, 0x2FFD72DB, 0xD01ADFB7, - 0xB8E1AFED, 0x6A267E96, 0xBA7C9045, 0xF12C7F99, - 0x24A19947, 0xB3916CF7, 0x0801F2E2, 0x858EFC16, - 0x636920D8, 0x71574E69, 0xA458FEA3, 0xF4933D7E, - 0x0D95748F, 0x728EB658, 0x718BCD58, 0x82154AEE, - 0x7B54A41D, 0xC25A59B5, 0x9C30D539, 0x2AF26013, - 0xC5D1B023, 0x286085F0, 0xCA417918, 0xB8DB38EF, - 0x8E79DCB0, 0x603A180E, 0x6C9E0E8B, 0xB01E8A3E, - 0xD71577C1, 0xBD314B27, 0x78AF2FDA, 0x55605C60, - 0xE65525F3, 0xAA55AB94, 0x57489862, 0x63E81440, - 0x55CA396A, 0x2AAB10B6, 0xB4CC5C34, 0x1141E8CE, - 0xA15486AF, 0x7C72E993, 0xB3EE1411, 0x636FBC2A, - 0x2BA9C55D, 0x741831F6, 0xCE5C3E16, 0x9B87931E, - 0xAFD6BA33, 0x6C24CF5C, 0x7A325381, 0x28958677, - 0x3B8F4898, 0x6B4BB9AF, 0xC4BFE81B, 0x66282193, - 0x61D809CC, 0xFB21A991, 0x487CAC60, 0x5DEC8032, - 0xEF845D5D, 0xE98575B1, 0xDC262302, 0xEB651B88, - 0x23893E81, 0xD396ACC5, 0x0F6D6FF3, 0x83F44239, - 0x2E0B4482, 0xA4842004, 0x69C8F04A, 0x9E1F9B5E, - 0x21C66842, 0xF6E96C9A, 0x670C9C61, 0xABD388F0, - 0x6A51A0D2, 0xD8542F68, 0x960FA728, 0xAB5133A3, - 0x6EEF0B6C, 0x137A3BE4, 0xBA3BF050, 0x7EFB2A98, - 0xA1F1651D, 0x39AF0176, 0x66CA593E, 0x82430E88, - 0x8CEE8619, 0x456F9FB4, 0x7D84A5C3, 0x3B8B5EBE, - 0xE06F75D8, 0x85C12073, 0x401A449F, 0x56C16AA6, - 0x4ED3AA62, 0x363F7706, 0x1BFEDF72, 0x429B023D, - 0x37D0D724, 0xD00A1248, 0xDB0FEAD3, 0x49F1C09B, - 0x075372C9, 0x80991B7B, 0x25D479D8, 0xF6E8DEF7, - 0xE3FE501A, 0xB6794C3B, 0x976CE0BD, 0x04C006BA, - 0xC1A94FB6, 0x409F60C4, 0x5E5C9EC2, 0x196A2463, - 0x68FB6FAF, 0x3E6C53B5, 0x1339B2EB, 0x3B52EC6F, - 0x6DFC511F, 0x9B30952C, 0xCC814544, 0xAF5EBD09, - 0xBEE3D004, 0xDE334AFD, 0x660F2807, 0x192E4BB3, - 0xC0CBA857, 0x45C8740F, 0xD20B5F39, 0xB9D3FBDB, - 0x5579C0BD, 0x1A60320A, 0xD6A100C6, 0x402C7279, - 0x679F25FE, 0xFB1FA3CC, 0x8EA5E9F8, 0xDB3222F8, - 0x3C7516DF, 0xFD616B15, 0x2F501EC8, 0xAD0552AB, - 0x323DB5FA, 0xFD238760, 0x53317B48, 0x3E00DF82, - 0x9E5C57BB, 0xCA6F8CA0, 0x1A87562E, 0xDF1769DB, - 0xD542A8F6, 0x287EFFC3, 0xAC6732C6, 0x8C4F5573, - 0x695B27B0, 0xBBCA58C8, 0xE1FFA35D, 0xB8F011A0, - 0x10FA3D98, 0xFD2183B8, 0x4AFCB56C, 0x2DD1D35B, - 0x9A53E479, 0xB6F84565, 0xD28E49BC, 0x4BFB9790, - 0xE1DDF2DA, 0xA4CB7E33, 0x62FB1341, 0xCEE4C6E8, - 0xEF20CADA, 0x36774C01, 0xD07E9EFE, 0x2BF11FB4, - 0x95DBDA4D, 0xAE909198, 0xEAAD8E71, 0x6B93D5A0, - 0xD08ED1D0, 0xAFC725E0, 0x8E3C5B2F, 0x8E7594B7, - 0x8FF6E2FB, 0xF2122B64, 0x8888B812, 0x900DF01C, - 0x4FAD5EA0, 0x688FC31C, 0xD1CFF191, 0xB3A8C1AD, - 0x2F2F2218, 0xBE0E1777, 0xEA752DFE, 0x8B021FA1, - 0xE5A0CC0F, 0xB56F74E8, 0x18ACF3D6, 0xCE89E299, - 0xB4A84FE0, 0xFD13E0B7, 0x7CC43B81, 0xD2ADA8D9, - 0x165FA266, 0x80957705, 0x93CC7314, 0x211A1477, - 0xE6AD2065, 0x77B5FA86, 0xC75442F5, 0xFB9D35CF, - 0xEBCDAF0C, 0x7B3E89A0, 0xD6411BD3, 0xAE1E7E49, - 0x00250E2D, 0x2071B35E, 0x226800BB, 0x57B8E0AF, - 0x2464369B, 0xF009B91E, 0x5563911D, 0x59DFA6AA, - 0x78C14389, 0xD95A537F, 0x207D5BA2, 0x02E5B9C5, - 0x83260376, 0x6295CFA9, 0x11C81968, 0x4E734A41, - 0xB3472DCA, 0x7B14A94A, 0x1B510052, 0x9A532915, - 0xD60F573F, 0xBC9BC6E4, 0x2B60A476, 0x81E67400, - 0x08BA6FB5, 0x571BE91F, 0xF296EC6B, 0x2A0DD915, - 0xB6636521, 0xE7B9F9B6, 0xFF34052E, 0xC5855664, - 0x53B02D5D, 0xA99F8FA1, 0x08BA4799, 0x6E85076A ], - [ 0x4B7A70E9, 0xB5B32944, 0xDB75092E, 0xC4192623, - 0xAD6EA6B0, 0x49A7DF7D, 0x9CEE60B8, 0x8FEDB266, - 0xECAA8C71, 0x699A17FF, 0x5664526C, 0xC2B19EE1, - 0x193602A5, 0x75094C29, 0xA0591340, 0xE4183A3E, - 0x3F54989A, 0x5B429D65, 0x6B8FE4D6, 0x99F73FD6, - 0xA1D29C07, 0xEFE830F5, 0x4D2D38E6, 0xF0255DC1, - 0x4CDD2086, 0x8470EB26, 0x6382E9C6, 0x021ECC5E, - 0x09686B3F, 0x3EBAEFC9, 0x3C971814, 0x6B6A70A1, - 0x687F3584, 0x52A0E286, 0xB79C5305, 0xAA500737, - 0x3E07841C, 0x7FDEAE5C, 0x8E7D44EC, 0x5716F2B8, - 0xB03ADA37, 0xF0500C0D, 0xF01C1F04, 0x0200B3FF, - 0xAE0CF51A, 0x3CB574B2, 0x25837A58, 0xDC0921BD, - 0xD19113F9, 0x7CA92FF6, 0x94324773, 0x22F54701, - 0x3AE5E581, 0x37C2DADC, 0xC8B57634, 0x9AF3DDA7, - 0xA9446146, 0x0FD0030E, 0xECC8C73E, 0xA4751E41, - 0xE238CD99, 0x3BEA0E2F, 0x3280BBA1, 0x183EB331, - 0x4E548B38, 0x4F6DB908, 0x6F420D03, 0xF60A04BF, - 0x2CB81290, 0x24977C79, 0x5679B072, 0xBCAF89AF, - 0xDE9A771F, 0xD9930810, 0xB38BAE12, 0xDCCF3F2E, - 0x5512721F, 0x2E6B7124, 0x501ADDE6, 0x9F84CD87, - 0x7A584718, 0x7408DA17, 0xBC9F9ABC, 0xE94B7D8C, - 0xEC7AEC3A, 0xDB851DFA, 0x63094366, 0xC464C3D2, - 0xEF1C1847, 0x3215D908, 0xDD433B37, 0x24C2BA16, - 0x12A14D43, 0x2A65C451, 0x50940002, 0x133AE4DD, - 0x71DFF89E, 0x10314E55, 0x81AC77D6, 0x5F11199B, - 0x043556F1, 0xD7A3C76B, 0x3C11183B, 0x5924A509, - 0xF28FE6ED, 0x97F1FBFA, 0x9EBABF2C, 0x1E153C6E, - 0x86E34570, 0xEAE96FB1, 0x860E5E0A, 0x5A3E2AB3, - 0x771FE71C, 0x4E3D06FA, 0x2965DCB9, 0x99E71D0F, - 0x803E89D6, 0x5266C825, 0x2E4CC978, 0x9C10B36A, - 0xC6150EBA, 0x94E2EA78, 0xA5FC3C53, 0x1E0A2DF4, - 0xF2F74EA7, 0x361D2B3D, 0x1939260F, 0x19C27960, - 0x5223A708, 0xF71312B6, 0xEBADFE6E, 0xEAC31F66, - 0xE3BC4595, 0xA67BC883, 0xB17F37D1, 0x018CFF28, - 0xC332DDEF, 0xBE6C5AA5, 0x65582185, 0x68AB9802, - 0xEECEA50F, 0xDB2F953B, 0x2AEF7DAD, 0x5B6E2F84, - 0x1521B628, 0x29076170, 0xECDD4775, 0x619F1510, - 0x13CCA830, 0xEB61BD96, 0x0334FE1E, 0xAA0363CF, - 0xB5735C90, 0x4C70A239, 0xD59E9E0B, 0xCBAADE14, - 0xEECC86BC, 0x60622CA7, 0x9CAB5CAB, 0xB2F3846E, - 0x648B1EAF, 0x19BDF0CA, 0xA02369B9, 0x655ABB50, - 0x40685A32, 0x3C2AB4B3, 0x319EE9D5, 0xC021B8F7, - 0x9B540B19, 0x875FA099, 0x95F7997E, 0x623D7DA8, - 0xF837889A, 0x97E32D77, 0x11ED935F, 0x16681281, - 0x0E358829, 0xC7E61FD6, 0x96DEDFA1, 0x7858BA99, - 0x57F584A5, 0x1B227263, 0x9B83C3FF, 0x1AC24696, - 0xCDB30AEB, 0x532E3054, 0x8FD948E4, 0x6DBC3128, - 0x58EBF2EF, 0x34C6FFEA, 0xFE28ED61, 0xEE7C3C73, - 0x5D4A14D9, 0xE864B7E3, 0x42105D14, 0x203E13E0, - 0x45EEE2B6, 0xA3AAABEA, 0xDB6C4F15, 0xFACB4FD0, - 0xC742F442, 0xEF6ABBB5, 0x654F3B1D, 0x41CD2105, - 0xD81E799E, 0x86854DC7, 0xE44B476A, 0x3D816250, - 0xCF62A1F2, 0x5B8D2646, 0xFC8883A0, 0xC1C7B6A3, - 0x7F1524C3, 0x69CB7492, 0x47848A0B, 0x5692B285, - 0x095BBF00, 0xAD19489D, 0x1462B174, 0x23820E00, - 0x58428D2A, 0x0C55F5EA, 0x1DADF43E, 0x233F7061, - 0x3372F092, 0x8D937E41, 0xD65FECF1, 0x6C223BDB, - 0x7CDE3759, 0xCBEE7460, 0x4085F2A7, 0xCE77326E, - 0xA6078084, 0x19F8509E, 0xE8EFD855, 0x61D99735, - 0xA969A7AA, 0xC50C06C2, 0x5A04ABFC, 0x800BCADC, - 0x9E447A2E, 0xC3453484, 0xFDD56705, 0x0E1E9EC9, - 0xDB73DBD3, 0x105588CD, 0x675FDA79, 0xE3674340, - 0xC5C43465, 0x713E38D8, 0x3D28F89E, 0xF16DFF20, - 0x153E21E7, 0x8FB03D4A, 0xE6E39F2B, 0xDB83ADF7 ], - [ 0xE93D5A68, 0x948140F7, 0xF64C261C, 0x94692934, - 0x411520F7, 0x7602D4F7, 0xBCF46B2E, 0xD4A20068, - 0xD4082471, 0x3320F46A, 0x43B7D4B7, 0x500061AF, - 0x1E39F62E, 0x97244546, 0x14214F74, 0xBF8B8840, - 0x4D95FC1D, 0x96B591AF, 0x70F4DDD3, 0x66A02F45, - 0xBFBC09EC, 0x03BD9785, 0x7FAC6DD0, 0x31CB8504, - 0x96EB27B3, 0x55FD3941, 0xDA2547E6, 0xABCA0A9A, - 0x28507825, 0x530429F4, 0x0A2C86DA, 0xE9B66DFB, - 0x68DC1462, 0xD7486900, 0x680EC0A4, 0x27A18DEE, - 0x4F3FFEA2, 0xE887AD8C, 0xB58CE006, 0x7AF4D6B6, - 0xAACE1E7C, 0xD3375FEC, 0xCE78A399, 0x406B2A42, - 0x20FE9E35, 0xD9F385B9, 0xEE39D7AB, 0x3B124E8B, - 0x1DC9FAF7, 0x4B6D1856, 0x26A36631, 0xEAE397B2, - 0x3A6EFA74, 0xDD5B4332, 0x6841E7F7, 0xCA7820FB, - 0xFB0AF54E, 0xD8FEB397, 0x454056AC, 0xBA489527, - 0x55533A3A, 0x20838D87, 0xFE6BA9B7, 0xD096954B, - 0x55A867BC, 0xA1159A58, 0xCCA92963, 0x99E1DB33, - 0xA62A4A56, 0x3F3125F9, 0x5EF47E1C, 0x9029317C, - 0xFDF8E802, 0x04272F70, 0x80BB155C, 0x05282CE3, - 0x95C11548, 0xE4C66D22, 0x48C1133F, 0xC70F86DC, - 0x07F9C9EE, 0x41041F0F, 0x404779A4, 0x5D886E17, - 0x325F51EB, 0xD59BC0D1, 0xF2BCC18F, 0x41113564, - 0x257B7834, 0x602A9C60, 0xDFF8E8A3, 0x1F636C1B, - 0x0E12B4C2, 0x02E1329E, 0xAF664FD1, 0xCAD18115, - 0x6B2395E0, 0x333E92E1, 0x3B240B62, 0xEEBEB922, - 0x85B2A20E, 0xE6BA0D99, 0xDE720C8C, 0x2DA2F728, - 0xD0127845, 0x95B794FD, 0x647D0862, 0xE7CCF5F0, - 0x5449A36F, 0x877D48FA, 0xC39DFD27, 0xF33E8D1E, - 0x0A476341, 0x992EFF74, 0x3A6F6EAB, 0xF4F8FD37, - 0xA812DC60, 0xA1EBDDF8, 0x991BE14C, 0xDB6E6B0D, - 0xC67B5510, 0x6D672C37, 0x2765D43B, 0xDCD0E804, - 0xF1290DC7, 0xCC00FFA3, 0xB5390F92, 0x690FED0B, - 0x667B9FFB, 0xCEDB7D9C, 0xA091CF0B, 0xD9155EA3, - 0xBB132F88, 0x515BAD24, 0x7B9479BF, 0x763BD6EB, - 0x37392EB3, 0xCC115979, 0x8026E297, 0xF42E312D, - 0x6842ADA7, 0xC66A2B3B, 0x12754CCC, 0x782EF11C, - 0x6A124237, 0xB79251E7, 0x06A1BBE6, 0x4BFB6350, - 0x1A6B1018, 0x11CAEDFA, 0x3D25BDD8, 0xE2E1C3C9, - 0x44421659, 0x0A121386, 0xD90CEC6E, 0xD5ABEA2A, - 0x64AF674E, 0xDA86A85F, 0xBEBFE988, 0x64E4C3FE, - 0x9DBC8057, 0xF0F7C086, 0x60787BF8, 0x6003604D, - 0xD1FD8346, 0xF6381FB0, 0x7745AE04, 0xD736FCCC, - 0x83426B33, 0xF01EAB71, 0xB0804187, 0x3C005E5F, - 0x77A057BE, 0xBDE8AE24, 0x55464299, 0xBF582E61, - 0x4E58F48F, 0xF2DDFDA2, 0xF474EF38, 0x8789BDC2, - 0x5366F9C3, 0xC8B38E74, 0xB475F255, 0x46FCD9B9, - 0x7AEB2661, 0x8B1DDF84, 0x846A0E79, 0x915F95E2, - 0x466E598E, 0x20B45770, 0x8CD55591, 0xC902DE4C, - 0xB90BACE1, 0xBB8205D0, 0x11A86248, 0x7574A99E, - 0xB77F19B6, 0xE0A9DC09, 0x662D09A1, 0xC4324633, - 0xE85A1F02, 0x09F0BE8C, 0x4A99A025, 0x1D6EFE10, - 0x1AB93D1D, 0x0BA5A4DF, 0xA186F20F, 0x2868F169, - 0xDCB7DA83, 0x573906FE, 0xA1E2CE9B, 0x4FCD7F52, - 0x50115E01, 0xA70683FA, 0xA002B5C4, 0x0DE6D027, - 0x9AF88C27, 0x773F8641, 0xC3604C06, 0x61A806B5, - 0xF0177A28, 0xC0F586E0, 0x006058AA, 0x30DC7D62, - 0x11E69ED7, 0x2338EA63, 0x53C2DD94, 0xC2C21634, - 0xBBCBEE56, 0x90BCB6DE, 0xEBFC7DA1, 0xCE591D76, - 0x6F05E409, 0x4B7C0188, 0x39720A3D, 0x7C927C24, - 0x86E3725F, 0x724D9DB9, 0x1AC15BB4, 0xD39EB8FC, - 0xED545578, 0x08FCA5B5, 0xD83D7CD3, 0x4DAD0FC4, - 0x1E50EF5E, 0xB161E6F8, 0xA28514D9, 0x6C51133C, - 0x6FD5C7E7, 0x56E14EC4, 0x362ABFCE, 0xDDC6C837, - 0xD79A3234, 0x92638212, 0x670EFA8E, 0x406000E0 ], - [ 0x3A39CE37, 0xD3FAF5CF, 0xABC27737, 0x5AC52D1B, - 0x5CB0679E, 0x4FA33742, 0xD3822740, 0x99BC9BBE, - 0xD5118E9D, 0xBF0F7315, 0xD62D1C7E, 0xC700C47B, - 0xB78C1B6B, 0x21A19045, 0xB26EB1BE, 0x6A366EB4, - 0x5748AB2F, 0xBC946E79, 0xC6A376D2, 0x6549C2C8, - 0x530FF8EE, 0x468DDE7D, 0xD5730A1D, 0x4CD04DC6, - 0x2939BBDB, 0xA9BA4650, 0xAC9526E8, 0xBE5EE304, - 0xA1FAD5F0, 0x6A2D519A, 0x63EF8CE2, 0x9A86EE22, - 0xC089C2B8, 0x43242EF6, 0xA51E03AA, 0x9CF2D0A4, - 0x83C061BA, 0x9BE96A4D, 0x8FE51550, 0xBA645BD6, - 0x2826A2F9, 0xA73A3AE1, 0x4BA99586, 0xEF5562E9, - 0xC72FEFD3, 0xF752F7DA, 0x3F046F69, 0x77FA0A59, - 0x80E4A915, 0x87B08601, 0x9B09E6AD, 0x3B3EE593, - 0xE990FD5A, 0x9E34D797, 0x2CF0B7D9, 0x022B8B51, - 0x96D5AC3A, 0x017DA67D, 0xD1CF3ED6, 0x7C7D2D28, - 0x1F9F25CF, 0xADF2B89B, 0x5AD6B472, 0x5A88F54C, - 0xE029AC71, 0xE019A5E6, 0x47B0ACFD, 0xED93FA9B, - 0xE8D3C48D, 0x283B57CC, 0xF8D56629, 0x79132E28, - 0x785F0191, 0xED756055, 0xF7960E44, 0xE3D35E8C, - 0x15056DD4, 0x88F46DBA, 0x03A16125, 0x0564F0BD, - 0xC3EB9E15, 0x3C9057A2, 0x97271AEC, 0xA93A072A, - 0x1B3F6D9B, 0x1E6321F5, 0xF59C66FB, 0x26DCF319, - 0x7533D928, 0xB155FDF5, 0x03563482, 0x8ABA3CBB, - 0x28517711, 0xC20AD9F8, 0xABCC5167, 0xCCAD925F, - 0x4DE81751, 0x3830DC8E, 0x379D5862, 0x9320F991, - 0xEA7A90C2, 0xFB3E7BCE, 0x5121CE64, 0x774FBE32, - 0xA8B6E37E, 0xC3293D46, 0x48DE5369, 0x6413E680, - 0xA2AE0810, 0xDD6DB224, 0x69852DFD, 0x09072166, - 0xB39A460A, 0x6445C0DD, 0x586CDECF, 0x1C20C8AE, - 0x5BBEF7DD, 0x1B588D40, 0xCCD2017F, 0x6BB4E3BB, - 0xDDA26A7E, 0x3A59FF45, 0x3E350A44, 0xBCB4CDD5, - 0x72EACEA8, 0xFA6484BB, 0x8D6612AE, 0xBF3C6F47, - 0xD29BE463, 0x542F5D9E, 0xAEC2771B, 0xF64E6370, - 0x740E0D8D, 0xE75B1357, 0xF8721671, 0xAF537D5D, - 0x4040CB08, 0x4EB4E2CC, 0x34D2466A, 0x0115AF84, - 0xE1B00428, 0x95983A1D, 0x06B89FB4, 0xCE6EA048, - 0x6F3F3B82, 0x3520AB82, 0x011A1D4B, 0x277227F8, - 0x611560B1, 0xE7933FDC, 0xBB3A792B, 0x344525BD, - 0xA08839E1, 0x51CE794B, 0x2F32C9B7, 0xA01FBAC9, - 0xE01CC87E, 0xBCC7D1F6, 0xCF0111C3, 0xA1E8AAC7, - 0x1A908749, 0xD44FBD9A, 0xD0DADECB, 0xD50ADA38, - 0x0339C32A, 0xC6913667, 0x8DF9317C, 0xE0B12B4F, - 0xF79E59B7, 0x43F5BB3A, 0xF2D519FF, 0x27D9459C, - 0xBF97222C, 0x15E6FC2A, 0x0F91FC71, 0x9B941525, - 0xFAE59361, 0xCEB69CEB, 0xC2A86459, 0x12BAA8D1, - 0xB6C1075E, 0xE3056A0C, 0x10D25065, 0xCB03A442, - 0xE0EC6E0E, 0x1698DB3B, 0x4C98A0BE, 0x3278E964, - 0x9F1F9532, 0xE0D392DF, 0xD3A0342B, 0x8971F21E, - 0x1B0A7441, 0x4BA3348C, 0xC5BE7120, 0xC37632D8, - 0xDF359F8D, 0x9B992F2E, 0xE60B6F47, 0x0FE3F11D, - 0xE54CDA54, 0x1EDAD891, 0xCE6279CF, 0xCD3E7E6F, - 0x1618B166, 0xFD2C1D05, 0x848FD2C5, 0xF6FB2299, - 0xF523F357, 0xA6327623, 0x93A83531, 0x56CCCD02, - 0xACF08162, 0x5A75EBB5, 0x6E163697, 0x88D273CC, - 0xDE966292, 0x81B949D0, 0x4C50901B, 0x71C65614, - 0xE6C6C7BD, 0x327A140A, 0x45E1D006, 0xC3F27B9A, - 0xC9AA53FD, 0x62A80F00, 0xBB25BFE2, 0x35BDD2F6, - 0x71126905, 0xB2040222, 0xB6CBCF7C, 0xCD769C2B, - 0x53113EC0, 0x1640E3D3, 0x38ABBD60, 0x2547ADF0, - 0xBA38209C, 0xF746CE76, 0x77AFA1C5, 0x20756060, - 0x85CBFE4E, 0x8AE88DD8, 0x7AAAF9B0, 0x4CF9AA7E, - 0x1948C25C, 0x02FB8A8C, 0x01C36AE4, 0xD6EBE1F9, - 0x90D4F869, 0xA65CDEA0, 0x3F09252D, 0xC208E69F, - 0xB74E6132, 0xCE77E25B, 0x578FDFE3, 0x3AC372E6 ] - ]; - - var BLOWFISH_CTX = { - pbox: [], - sbox: [] - } - - function F(ctx, x){ - let a = (x >> 24) & 0xFF; - let b = (x >> 16) & 0xFF; - let c = (x >> 8) & 0xFF; - let d = x & 0xFF; - - let y = ctx.sbox[0][a] + ctx.sbox[1][b]; - y = y ^ ctx.sbox[2][c]; - y = y + ctx.sbox[3][d]; - - return y; - } - - function BlowFish_Encrypt(ctx, left, right){ - let Xl = left; - let Xr = right; - let temp; - - for(let i = 0; i < N; ++i){ - Xl = Xl ^ ctx.pbox[i]; - Xr = F(ctx, Xl) ^ Xr; - - temp = Xl; - Xl = Xr; - Xr = temp; - } - - temp = Xl; - Xl = Xr; - Xr = temp; - - Xr = Xr ^ ctx.pbox[N]; - Xl = Xl ^ ctx.pbox[N + 1]; - - return {left: Xl, right: Xr}; - } - - function BlowFish_Decrypt(ctx, left, right){ - let Xl = left; - let Xr = right; - let temp; - - for(let i = N + 1; i > 1; --i){ - Xl = Xl ^ ctx.pbox[i]; - Xr = F(ctx, Xl) ^ Xr; - - temp = Xl; - Xl = Xr; - Xr = temp; - } - - temp = Xl; - Xl = Xr; - Xr = temp; - - Xr = Xr ^ ctx.pbox[1]; - Xl = Xl ^ ctx.pbox[0]; - - return {left: Xl, right: Xr}; - } - - /** - * Initialization ctx's pbox and sbox. - * - * @param {Object} ctx The object has pbox and sbox. - * @param {Array} key An array of 32-bit words. - * @param {int} keysize The length of the key. - * - * @example - * - * BlowFishInit(BLOWFISH_CTX, key, 128/32); - */ - function BlowFishInit(ctx, key, keysize) - { - for(let Row = 0; Row < 4; Row++) - { - ctx.sbox[Row] = []; - for(let Col = 0; Col < 256; Col++) - { - ctx.sbox[Row][Col] = ORIG_S[Row][Col]; - } - } - - let keyIndex = 0; - for(let index = 0; index < N + 2; index++) - { - ctx.pbox[index] = ORIG_P[index] ^ key[keyIndex]; - keyIndex++; - if(keyIndex >= keysize) - { - keyIndex = 0; - } - } - - let Data1 = 0; - let Data2 = 0; - let res = 0; - for(let i = 0; i < N + 2; i += 2) - { - res = BlowFish_Encrypt(ctx, Data1, Data2); - Data1 = res.left; - Data2 = res.right; - ctx.pbox[i] = Data1; - ctx.pbox[i + 1] = Data2; - } - - for(let i = 0; i < 4; i++) - { - for(let j = 0; j < 256; j += 2) - { - res = BlowFish_Encrypt(ctx, Data1, Data2); - Data1 = res.left; - Data2 = res.right; - ctx.sbox[i][j] = Data1; - ctx.sbox[i][j + 1] = Data2; - } - } - - return true; - } - - /** - * Blowfish block cipher algorithm. - */ - var Blowfish = C_algo.Blowfish = BlockCipher.extend({ - _doReset: function () { - // Skip reset of nRounds has been set before and key did not change - if (this._keyPriorReset === this._key) { - return; - } - - // Shortcuts - var key = this._keyPriorReset = this._key; - var keyWords = key.words; - var keySize = key.sigBytes / 4; - - //Initialization pbox and sbox - BlowFishInit(BLOWFISH_CTX, keyWords, keySize); - }, - - encryptBlock: function (M, offset) { - var res = BlowFish_Encrypt(BLOWFISH_CTX, M[offset], M[offset + 1]); - M[offset] = res.left; - M[offset + 1] = res.right; - }, - - decryptBlock: function (M, offset) { - var res = BlowFish_Decrypt(BLOWFISH_CTX, M[offset], M[offset + 1]); - M[offset] = res.left; - M[offset + 1] = res.right; - }, - - blockSize: 64/32, - - keySize: 128/32, - - ivSize: 64/32 - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.Blowfish.encrypt(message, key, cfg); - * var plaintext = CryptoJS.Blowfish.decrypt(ciphertext, key, cfg); - */ - C.Blowfish = BlockCipher._createHelper(Blowfish); - }()); - - - return CryptoJS; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/docs/QuickStartGuide.wiki b/node_modules/crypto-js/docs/QuickStartGuide.wiki deleted file mode 100644 index 6b201997..00000000 --- a/node_modules/crypto-js/docs/QuickStartGuide.wiki +++ /dev/null @@ -1,470 +0,0 @@ - - ----- - -= Quick-start Guide = - -== Hashers == - -=== The Hasher Algorithms === - -==== MD5 ==== - -MD5 is a widely used hash function. It's been used in a variety of security applications and is also commonly used to check the integrity of files. Though, MD5 is not collision resistant, and it isn't suitable for applications like SSL certificates or digital signatures that rely on this property. - -{{{ - - -}}} - -==== SHA-1 ==== - -The SHA hash functions were designed by the National Security Agency (NSA). SHA-1 is the most established of the existing SHA hash functions, and it's used in a variety of security applications and protocols. Though, SHA-1's collision resistance has been weakening as new attacks are discovered or improved. - -{{{ - - -}}} - -==== SHA-2 ==== - -SHA-256 is one of the four variants in the SHA-2 set. It isn't as widely used as SHA-1, though it appears to provide much better security. - -{{{ - - -}}} - -SHA-512 is largely identical to SHA-256 but operates on 64-bit words rather than 32. - -{{{ - - -}}} - -CryptoJS also supports SHA-224 and SHA-384, which are largely identical but truncated versions of SHA-256 and SHA-512 respectively. - -==== SHA-3 ==== - -SHA-3 is the winner of a five-year competition to select a new cryptographic hash algorithm where 64 competing designs were evaluated. - -{{{ - - -}}} - -SHA-3 can be configured to output hash lengths of one of 224, 256, 384, or 512 bits. The default is 512 bits. - -{{{ - - -}}} - -==== RIPEMD-160 ==== - -{{{ - - -}}} - -=== The Hasher Input === - -The hash algorithms accept either strings or instances of CryptoJS.lib.WordArray. A WordArray object represents an array of 32-bit words. When you pass a string, it's automatically converted to a WordArray encoded as UTF-8. - -=== The Hasher Output === - -The hash you get back isn't a string yet. It's a WordArray object. When you use a WordArray object in a string context, it's automatically converted to a hex string. - -{{{ - - -}}} - -You can convert a WordArray object to other formats by explicitly calling the toString method and passing an encoder. - -{{{ - - - -}}} - -=== Progressive Hashing === - -{{{ - - -}}} - -== HMAC == - -Keyed-hash message authentication codes (HMAC) is a mechanism for message authentication using cryptographic hash functions. - -HMAC can be used in combination with any iterated cryptographic hash function. - -{{{ - - - - - -}}} - -=== Progressive HMAC Hashing === - -{{{ - - -}}} - -== PBKDF2 == - -PBKDF2 is a password-based key derivation function. In many applications of cryptography, user security is ultimately dependent on a password, and because a password usually can't be used directly as a cryptographic key, some processing is required. - -A salt provides a large set of keys for any given password, and an iteration count increases the cost of producing keys from a password, thereby also increasing the difficulty of attack. - -{{{ - - -}}} - -== Ciphers == - -=== The Cipher Algorithms === - -==== AES ==== - -The Advanced Encryption Standard (AES) is a U.S. Federal Information Processing Standard (FIPS). It was selected after a 5-year process where 15 competing designs were evaluated. - -{{{ - - -}}} - -CryptoJS supports AES-128, AES-192, and AES-256. It will pick the variant by the size of the key you pass in. If you use a passphrase, then it will generate a 256-bit key. - -==== DES, Triple DES ==== - -DES is a previously dominant algorithm for encryption, and was published as an official Federal Information Processing Standard (FIPS). DES is now considered to be insecure due to the small key size. - -{{{ - - -}}} - -Triple DES applies DES three times to each block to increase the key size. The algorithm is believed to be secure in this form. - -{{{ - - -}}} - -==== Rabbit ==== - -Rabbit is a high-performance stream cipher and a finalist in the eSTREAM Portfolio. It is one of the four designs selected after a 3 1/2-year process where 22 designs were evaluated. - -{{{ - - -}}} - -==== RC4, RC4Drop ==== - -RC4 is a widely-used stream cipher. It's used in popular protocols such as SSL and WEP. Although remarkable for its simplicity and speed, the algorithm's history doesn't inspire confidence in its security. - -{{{ - - -}}} - -It was discovered that the first few bytes of keystream are strongly non-random and leak information about the key. We can defend against this attack by discarding the initial portion of the keystream. This modified algorithm is traditionally called RC4-drop. - -By default, 192 words (768 bytes) are dropped, but you can configure the algorithm to drop any number of words. - -{{{ - - -}}} - -=== Custom Key and IV === - -{{{ - - -}}} - -=== Block Modes and Padding === - -{{{ - - - - -}}} - -CryptoJS supports the following modes: - - * CBC (the default) - * CFB - * CTR - * OFB - * ECB - -And CryptoJS supports the following padding schemes: - - * Pkcs7 (the default) - * Iso97971 - * AnsiX923 - * Iso10126 - * ZeroPadding - * NoPadding - -=== The Cipher Input === - -For the plaintext message, the cipher algorithms accept either strings or instances of CryptoJS.lib.WordArray. - -For the key, when you pass a string, it's treated as a passphrase and used to derive an actual key and IV. Or you can pass a WordArray that represents the actual key. If you pass the actual key, you must also pass the actual IV. - -For the ciphertext, the cipher algorithms accept either strings or instances of CryptoJS.lib.CipherParams. A CipherParams object represents a collection of parameters such as the IV, a salt, and the raw ciphertext itself. When you pass a string, it's automatically converted to a CipherParams object according to a configurable format strategy. - -=== The Cipher Output === - -The plaintext you get back after decryption is a WordArray object. See Hashers' Output for more detail. - -The ciphertext you get back after encryption isn't a string yet. It's a CipherParams object. A CipherParams object gives you access to all the parameters used during encryption. When you use a CipherParams object in a string context, it's automatically converted to a string according to a format strategy. The default is an OpenSSL-compatible format. - -{{{ - - -}}} - -You can define your own formats in order to be compatible with other crypto implementations. A format is an object with two methods—stringify and parse—that converts between CipherParams objects and ciphertext strings. - -Here's how you might write a JSON formatter: - -{{{ - - -}}} - -=== Progressive Ciphering === - -{{{ - - -}}} - -=== Interoperability === - -==== With OpenSSL ==== - -Encrypt with OpenSSL: - -{{{ -openssl enc -aes-256-cbc -in infile -out outfile -pass pass:"Secret Passphrase" -e -base64 -}}} - -Decrypt with CryptoJS: - -{{{ - - -}}} - -== Encoders == - -CryptoJS can convert from encoding formats such as Base64, Latin1 or Hex to WordArray objects and vica versa. - -{{{ - - - - -}}} \ No newline at end of file diff --git a/node_modules/crypto-js/enc-base64.js b/node_modules/crypto-js/enc-base64.js deleted file mode 100644 index 0ffcd53c..00000000 --- a/node_modules/crypto-js/enc-base64.js +++ /dev/null @@ -1,136 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_enc = C.enc; - - /** - * Base64 encoding strategy. - */ - var Base64 = C_enc.Base64 = { - /** - * Converts a word array to a Base64 string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The Base64 string. - * - * @static - * - * @example - * - * var base64String = CryptoJS.enc.Base64.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - var map = this._map; - - // Clamp excess bits - wordArray.clamp(); - - // Convert - var base64Chars = []; - for (var i = 0; i < sigBytes; i += 3) { - var byte1 = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - var byte2 = (words[(i + 1) >>> 2] >>> (24 - ((i + 1) % 4) * 8)) & 0xff; - var byte3 = (words[(i + 2) >>> 2] >>> (24 - ((i + 2) % 4) * 8)) & 0xff; - - var triplet = (byte1 << 16) | (byte2 << 8) | byte3; - - for (var j = 0; (j < 4) && (i + j * 0.75 < sigBytes); j++) { - base64Chars.push(map.charAt((triplet >>> (6 * (3 - j))) & 0x3f)); - } - } - - // Add padding - var paddingChar = map.charAt(64); - if (paddingChar) { - while (base64Chars.length % 4) { - base64Chars.push(paddingChar); - } - } - - return base64Chars.join(''); - }, - - /** - * Converts a Base64 string to a word array. - * - * @param {string} base64Str The Base64 string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Base64.parse(base64String); - */ - parse: function (base64Str) { - // Shortcuts - var base64StrLength = base64Str.length; - var map = this._map; - var reverseMap = this._reverseMap; - - if (!reverseMap) { - reverseMap = this._reverseMap = []; - for (var j = 0; j < map.length; j++) { - reverseMap[map.charCodeAt(j)] = j; - } - } - - // Ignore padding - var paddingChar = map.charAt(64); - if (paddingChar) { - var paddingIndex = base64Str.indexOf(paddingChar); - if (paddingIndex !== -1) { - base64StrLength = paddingIndex; - } - } - - // Convert - return parseLoop(base64Str, base64StrLength, reverseMap); - - }, - - _map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=' - }; - - function parseLoop(base64Str, base64StrLength, reverseMap) { - var words = []; - var nBytes = 0; - for (var i = 0; i < base64StrLength; i++) { - if (i % 4) { - var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << ((i % 4) * 2); - var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> (6 - (i % 4) * 2); - var bitsCombined = bits1 | bits2; - words[nBytes >>> 2] |= bitsCombined << (24 - (nBytes % 4) * 8); - nBytes++; - } - } - return WordArray.create(words, nBytes); - } - }()); - - - return CryptoJS.enc.Base64; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/enc-base64url.js b/node_modules/crypto-js/enc-base64url.js deleted file mode 100644 index af682e33..00000000 --- a/node_modules/crypto-js/enc-base64url.js +++ /dev/null @@ -1,148 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_enc = C.enc; - - /** - * Base64url encoding strategy. - */ - var Base64url = C_enc.Base64url = { - /** - * Converts a word array to a Base64url string. - * - * @param {WordArray} wordArray The word array. - * - * @param {boolean} urlSafe Whether to use url safe - * - * @return {string} The Base64url string. - * - * @static - * - * @example - * - * var base64String = CryptoJS.enc.Base64url.stringify(wordArray); - */ - stringify: function (wordArray, urlSafe) { - if (urlSafe === undefined) { - urlSafe = true - } - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - var map = urlSafe ? this._safe_map : this._map; - - // Clamp excess bits - wordArray.clamp(); - - // Convert - var base64Chars = []; - for (var i = 0; i < sigBytes; i += 3) { - var byte1 = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff; - var byte2 = (words[(i + 1) >>> 2] >>> (24 - ((i + 1) % 4) * 8)) & 0xff; - var byte3 = (words[(i + 2) >>> 2] >>> (24 - ((i + 2) % 4) * 8)) & 0xff; - - var triplet = (byte1 << 16) | (byte2 << 8) | byte3; - - for (var j = 0; (j < 4) && (i + j * 0.75 < sigBytes); j++) { - base64Chars.push(map.charAt((triplet >>> (6 * (3 - j))) & 0x3f)); - } - } - - // Add padding - var paddingChar = map.charAt(64); - if (paddingChar) { - while (base64Chars.length % 4) { - base64Chars.push(paddingChar); - } - } - - return base64Chars.join(''); - }, - - /** - * Converts a Base64url string to a word array. - * - * @param {string} base64Str The Base64url string. - * - * @param {boolean} urlSafe Whether to use url safe - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Base64url.parse(base64String); - */ - parse: function (base64Str, urlSafe) { - if (urlSafe === undefined) { - urlSafe = true - } - - // Shortcuts - var base64StrLength = base64Str.length; - var map = urlSafe ? this._safe_map : this._map; - var reverseMap = this._reverseMap; - - if (!reverseMap) { - reverseMap = this._reverseMap = []; - for (var j = 0; j < map.length; j++) { - reverseMap[map.charCodeAt(j)] = j; - } - } - - // Ignore padding - var paddingChar = map.charAt(64); - if (paddingChar) { - var paddingIndex = base64Str.indexOf(paddingChar); - if (paddingIndex !== -1) { - base64StrLength = paddingIndex; - } - } - - // Convert - return parseLoop(base64Str, base64StrLength, reverseMap); - - }, - - _map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=', - _safe_map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_', - }; - - function parseLoop(base64Str, base64StrLength, reverseMap) { - var words = []; - var nBytes = 0; - for (var i = 0; i < base64StrLength; i++) { - if (i % 4) { - var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << ((i % 4) * 2); - var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> (6 - (i % 4) * 2); - var bitsCombined = bits1 | bits2; - words[nBytes >>> 2] |= bitsCombined << (24 - (nBytes % 4) * 8); - nBytes++; - } - } - return WordArray.create(words, nBytes); - } - }()); - - - return CryptoJS.enc.Base64url; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/enc-hex.js b/node_modules/crypto-js/enc-hex.js deleted file mode 100644 index 88161ff5..00000000 --- a/node_modules/crypto-js/enc-hex.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.enc.Hex; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/enc-latin1.js b/node_modules/crypto-js/enc-latin1.js deleted file mode 100644 index ade56dcd..00000000 --- a/node_modules/crypto-js/enc-latin1.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.enc.Latin1; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/enc-utf16.js b/node_modules/crypto-js/enc-utf16.js deleted file mode 100644 index 7de62457..00000000 --- a/node_modules/crypto-js/enc-utf16.js +++ /dev/null @@ -1,149 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_enc = C.enc; - - /** - * UTF-16 BE encoding strategy. - */ - var Utf16BE = C_enc.Utf16 = C_enc.Utf16BE = { - /** - * Converts a word array to a UTF-16 BE string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-16 BE string. - * - * @static - * - * @example - * - * var utf16String = CryptoJS.enc.Utf16.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - - // Convert - var utf16Chars = []; - for (var i = 0; i < sigBytes; i += 2) { - var codePoint = (words[i >>> 2] >>> (16 - (i % 4) * 8)) & 0xffff; - utf16Chars.push(String.fromCharCode(codePoint)); - } - - return utf16Chars.join(''); - }, - - /** - * Converts a UTF-16 BE string to a word array. - * - * @param {string} utf16Str The UTF-16 BE string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf16.parse(utf16String); - */ - parse: function (utf16Str) { - // Shortcut - var utf16StrLength = utf16Str.length; - - // Convert - var words = []; - for (var i = 0; i < utf16StrLength; i++) { - words[i >>> 1] |= utf16Str.charCodeAt(i) << (16 - (i % 2) * 16); - } - - return WordArray.create(words, utf16StrLength * 2); - } - }; - - /** - * UTF-16 LE encoding strategy. - */ - C_enc.Utf16LE = { - /** - * Converts a word array to a UTF-16 LE string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-16 LE string. - * - * @static - * - * @example - * - * var utf16Str = CryptoJS.enc.Utf16LE.stringify(wordArray); - */ - stringify: function (wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - - // Convert - var utf16Chars = []; - for (var i = 0; i < sigBytes; i += 2) { - var codePoint = swapEndian((words[i >>> 2] >>> (16 - (i % 4) * 8)) & 0xffff); - utf16Chars.push(String.fromCharCode(codePoint)); - } - - return utf16Chars.join(''); - }, - - /** - * Converts a UTF-16 LE string to a word array. - * - * @param {string} utf16Str The UTF-16 LE string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf16LE.parse(utf16Str); - */ - parse: function (utf16Str) { - // Shortcut - var utf16StrLength = utf16Str.length; - - // Convert - var words = []; - for (var i = 0; i < utf16StrLength; i++) { - words[i >>> 1] |= swapEndian(utf16Str.charCodeAt(i) << (16 - (i % 2) * 16)); - } - - return WordArray.create(words, utf16StrLength * 2); - } - }; - - function swapEndian(word) { - return ((word << 8) & 0xff00ff00) | ((word >>> 8) & 0x00ff00ff); - } - }()); - - - return CryptoJS.enc.Utf16; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/enc-utf8.js b/node_modules/crypto-js/enc-utf8.js deleted file mode 100644 index e7a251d8..00000000 --- a/node_modules/crypto-js/enc-utf8.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.enc.Utf8; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/evpkdf.js b/node_modules/crypto-js/evpkdf.js deleted file mode 100644 index 578974aa..00000000 --- a/node_modules/crypto-js/evpkdf.js +++ /dev/null @@ -1,134 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./sha1"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./sha1", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var WordArray = C_lib.WordArray; - var C_algo = C.algo; - var MD5 = C_algo.MD5; - - /** - * This key derivation function is meant to conform with EVP_BytesToKey. - * www.openssl.org/docs/crypto/EVP_BytesToKey.html - */ - var EvpKDF = C_algo.EvpKDF = Base.extend({ - /** - * Configuration options. - * - * @property {number} keySize The key size in words to generate. Default: 4 (128 bits) - * @property {Hasher} hasher The hash algorithm to use. Default: MD5 - * @property {number} iterations The number of iterations to perform. Default: 1 - */ - cfg: Base.extend({ - keySize: 128/32, - hasher: MD5, - iterations: 1 - }), - - /** - * Initializes a newly created key derivation function. - * - * @param {Object} cfg (Optional) The configuration options to use for the derivation. - * - * @example - * - * var kdf = CryptoJS.algo.EvpKDF.create(); - * var kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8 }); - * var kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8, iterations: 1000 }); - */ - init: function (cfg) { - this.cfg = this.cfg.extend(cfg); - }, - - /** - * Derives a key from a password. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * - * @return {WordArray} The derived key. - * - * @example - * - * var key = kdf.compute(password, salt); - */ - compute: function (password, salt) { - var block; - - // Shortcut - var cfg = this.cfg; - - // Init hasher - var hasher = cfg.hasher.create(); - - // Initial values - var derivedKey = WordArray.create(); - - // Shortcuts - var derivedKeyWords = derivedKey.words; - var keySize = cfg.keySize; - var iterations = cfg.iterations; - - // Generate key - while (derivedKeyWords.length < keySize) { - if (block) { - hasher.update(block); - } - block = hasher.update(password).finalize(salt); - hasher.reset(); - - // Iterations - for (var i = 1; i < iterations; i++) { - block = hasher.finalize(block); - hasher.reset(); - } - - derivedKey.concat(block); - } - derivedKey.sigBytes = keySize * 4; - - return derivedKey; - } - }); - - /** - * Derives a key from a password. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * @param {Object} cfg (Optional) The configuration options to use for this computation. - * - * @return {WordArray} The derived key. - * - * @static - * - * @example - * - * var key = CryptoJS.EvpKDF(password, salt); - * var key = CryptoJS.EvpKDF(password, salt, { keySize: 8 }); - * var key = CryptoJS.EvpKDF(password, salt, { keySize: 8, iterations: 1000 }); - */ - C.EvpKDF = function (password, salt, cfg) { - return EvpKDF.create(cfg).compute(password, salt); - }; - }()); - - - return CryptoJS.EvpKDF; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/format-hex.js b/node_modules/crypto-js/format-hex.js deleted file mode 100644 index 2e9a861f..00000000 --- a/node_modules/crypto-js/format-hex.js +++ /dev/null @@ -1,66 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function (undefined) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var CipherParams = C_lib.CipherParams; - var C_enc = C.enc; - var Hex = C_enc.Hex; - var C_format = C.format; - - var HexFormatter = C_format.Hex = { - /** - * Converts the ciphertext of a cipher params object to a hexadecimally encoded string. - * - * @param {CipherParams} cipherParams The cipher params object. - * - * @return {string} The hexadecimally encoded string. - * - * @static - * - * @example - * - * var hexString = CryptoJS.format.Hex.stringify(cipherParams); - */ - stringify: function (cipherParams) { - return cipherParams.ciphertext.toString(Hex); - }, - - /** - * Converts a hexadecimally encoded ciphertext string to a cipher params object. - * - * @param {string} input The hexadecimally encoded string. - * - * @return {CipherParams} The cipher params object. - * - * @static - * - * @example - * - * var cipherParams = CryptoJS.format.Hex.parse(hexString); - */ - parse: function (input) { - var ciphertext = Hex.parse(input); - return CipherParams.create({ ciphertext: ciphertext }); - } - }; - }()); - - - return CryptoJS.format.Hex; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/format-openssl.js b/node_modules/crypto-js/format-openssl.js deleted file mode 100644 index 3373edc6..00000000 --- a/node_modules/crypto-js/format-openssl.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.format.OpenSSL; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac-md5.js b/node_modules/crypto-js/hmac-md5.js deleted file mode 100644 index ad7a90ad..00000000 --- a/node_modules/crypto-js/hmac-md5.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./md5"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./md5", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.HmacMD5; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac-ripemd160.js b/node_modules/crypto-js/hmac-ripemd160.js deleted file mode 100644 index 73d55a77..00000000 --- a/node_modules/crypto-js/hmac-ripemd160.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./ripemd160"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./ripemd160", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.HmacRIPEMD160; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac-sha1.js b/node_modules/crypto-js/hmac-sha1.js deleted file mode 100644 index 0b570cbc..00000000 --- a/node_modules/crypto-js/hmac-sha1.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./sha1"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./sha1", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.HmacSHA1; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac-sha224.js b/node_modules/crypto-js/hmac-sha224.js deleted file mode 100644 index 3778863a..00000000 --- a/node_modules/crypto-js/hmac-sha224.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./sha256"), require("./sha224"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./sha256", "./sha224", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.HmacSHA224; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac-sha256.js b/node_modules/crypto-js/hmac-sha256.js deleted file mode 100644 index 33b0c9fe..00000000 --- a/node_modules/crypto-js/hmac-sha256.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./sha256"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./sha256", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.HmacSHA256; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac-sha3.js b/node_modules/crypto-js/hmac-sha3.js deleted file mode 100644 index 12488049..00000000 --- a/node_modules/crypto-js/hmac-sha3.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha3"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./x64-core", "./sha3", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.HmacSHA3; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac-sha384.js b/node_modules/crypto-js/hmac-sha384.js deleted file mode 100644 index 0036e2b8..00000000 --- a/node_modules/crypto-js/hmac-sha384.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha512"), require("./sha384"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./x64-core", "./sha512", "./sha384", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.HmacSHA384; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac-sha512.js b/node_modules/crypto-js/hmac-sha512.js deleted file mode 100644 index c1005b6a..00000000 --- a/node_modules/crypto-js/hmac-sha512.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha512"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./x64-core", "./sha512", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.HmacSHA512; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/hmac.js b/node_modules/crypto-js/hmac.js deleted file mode 100644 index 8c098511..00000000 --- a/node_modules/crypto-js/hmac.js +++ /dev/null @@ -1,143 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var C_enc = C.enc; - var Utf8 = C_enc.Utf8; - var C_algo = C.algo; - - /** - * HMAC algorithm. - */ - var HMAC = C_algo.HMAC = Base.extend({ - /** - * Initializes a newly created HMAC. - * - * @param {Hasher} hasher The hash algorithm to use. - * @param {WordArray|string} key The secret key. - * - * @example - * - * var hmacHasher = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, key); - */ - init: function (hasher, key) { - // Init hasher - hasher = this._hasher = new hasher.init(); - - // Convert string to WordArray, else assume WordArray already - if (typeof key == 'string') { - key = Utf8.parse(key); - } - - // Shortcuts - var hasherBlockSize = hasher.blockSize; - var hasherBlockSizeBytes = hasherBlockSize * 4; - - // Allow arbitrary length keys - if (key.sigBytes > hasherBlockSizeBytes) { - key = hasher.finalize(key); - } - - // Clamp excess bits - key.clamp(); - - // Clone key for inner and outer pads - var oKey = this._oKey = key.clone(); - var iKey = this._iKey = key.clone(); - - // Shortcuts - var oKeyWords = oKey.words; - var iKeyWords = iKey.words; - - // XOR keys with pad constants - for (var i = 0; i < hasherBlockSize; i++) { - oKeyWords[i] ^= 0x5c5c5c5c; - iKeyWords[i] ^= 0x36363636; - } - oKey.sigBytes = iKey.sigBytes = hasherBlockSizeBytes; - - // Set initial values - this.reset(); - }, - - /** - * Resets this HMAC to its initial state. - * - * @example - * - * hmacHasher.reset(); - */ - reset: function () { - // Shortcut - var hasher = this._hasher; - - // Reset - hasher.reset(); - hasher.update(this._iKey); - }, - - /** - * Updates this HMAC with a message. - * - * @param {WordArray|string} messageUpdate The message to append. - * - * @return {HMAC} This HMAC instance. - * - * @example - * - * hmacHasher.update('message'); - * hmacHasher.update(wordArray); - */ - update: function (messageUpdate) { - this._hasher.update(messageUpdate); - - // Chainable - return this; - }, - - /** - * Finalizes the HMAC computation. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} messageUpdate (Optional) A final message update. - * - * @return {WordArray} The HMAC. - * - * @example - * - * var hmac = hmacHasher.finalize(); - * var hmac = hmacHasher.finalize('message'); - * var hmac = hmacHasher.finalize(wordArray); - */ - finalize: function (messageUpdate) { - // Shortcut - var hasher = this._hasher; - - // Compute HMAC - var innerHash = hasher.finalize(messageUpdate); - hasher.reset(); - var hmac = hasher.finalize(this._oKey.clone().concat(innerHash)); - - return hmac; - } - }); - }()); - - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/index.js b/node_modules/crypto-js/index.js deleted file mode 100644 index b6966462..00000000 --- a/node_modules/crypto-js/index.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./x64-core"), require("./lib-typedarrays"), require("./enc-utf16"), require("./enc-base64"), require("./enc-base64url"), require("./md5"), require("./sha1"), require("./sha256"), require("./sha224"), require("./sha512"), require("./sha384"), require("./sha3"), require("./ripemd160"), require("./hmac"), require("./pbkdf2"), require("./evpkdf"), require("./cipher-core"), require("./mode-cfb"), require("./mode-ctr"), require("./mode-ctr-gladman"), require("./mode-ofb"), require("./mode-ecb"), require("./pad-ansix923"), require("./pad-iso10126"), require("./pad-iso97971"), require("./pad-zeropadding"), require("./pad-nopadding"), require("./format-hex"), require("./aes"), require("./tripledes"), require("./rc4"), require("./rabbit"), require("./rabbit-legacy"), require("./blowfish")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./x64-core", "./lib-typedarrays", "./enc-utf16", "./enc-base64", "./enc-base64url", "./md5", "./sha1", "./sha256", "./sha224", "./sha512", "./sha384", "./sha3", "./ripemd160", "./hmac", "./pbkdf2", "./evpkdf", "./cipher-core", "./mode-cfb", "./mode-ctr", "./mode-ctr-gladman", "./mode-ofb", "./mode-ecb", "./pad-ansix923", "./pad-iso10126", "./pad-iso97971", "./pad-zeropadding", "./pad-nopadding", "./format-hex", "./aes", "./tripledes", "./rc4", "./rabbit", "./rabbit-legacy", "./blowfish"], factory); - } - else { - // Global (browser) - root.CryptoJS = factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/lib-typedarrays.js b/node_modules/crypto-js/lib-typedarrays.js deleted file mode 100644 index 264b2107..00000000 --- a/node_modules/crypto-js/lib-typedarrays.js +++ /dev/null @@ -1,76 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Check if typed arrays are supported - if (typeof ArrayBuffer != 'function') { - return; - } - - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - - // Reference original init - var superInit = WordArray.init; - - // Augment WordArray.init to handle typed arrays - var subInit = WordArray.init = function (typedArray) { - // Convert buffers to uint8 - if (typedArray instanceof ArrayBuffer) { - typedArray = new Uint8Array(typedArray); - } - - // Convert other array views to uint8 - if ( - typedArray instanceof Int8Array || - (typeof Uint8ClampedArray !== "undefined" && typedArray instanceof Uint8ClampedArray) || - typedArray instanceof Int16Array || - typedArray instanceof Uint16Array || - typedArray instanceof Int32Array || - typedArray instanceof Uint32Array || - typedArray instanceof Float32Array || - typedArray instanceof Float64Array - ) { - typedArray = new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength); - } - - // Handle Uint8Array - if (typedArray instanceof Uint8Array) { - // Shortcut - var typedArrayByteLength = typedArray.byteLength; - - // Extract bytes - var words = []; - for (var i = 0; i < typedArrayByteLength; i++) { - words[i >>> 2] |= typedArray[i] << (24 - (i % 4) * 8); - } - - // Initialize this word array - superInit.call(this, words, typedArrayByteLength); - } else { - // Else call normal init - superInit.apply(this, arguments); - } - }; - - subInit.prototype = WordArray; - }()); - - - return CryptoJS.lib.WordArray; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/md5.js b/node_modules/crypto-js/md5.js deleted file mode 100644 index 72fce03a..00000000 --- a/node_modules/crypto-js/md5.js +++ /dev/null @@ -1,268 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Constants table - var T = []; - - // Compute constants - (function () { - for (var i = 0; i < 64; i++) { - T[i] = (Math.abs(Math.sin(i + 1)) * 0x100000000) | 0; - } - }()); - - /** - * MD5 hash algorithm. - */ - var MD5 = C_algo.MD5 = Hasher.extend({ - _doReset: function () { - this._hash = new WordArray.init([ - 0x67452301, 0xefcdab89, - 0x98badcfe, 0x10325476 - ]); - }, - - _doProcessBlock: function (M, offset) { - // Swap endian - for (var i = 0; i < 16; i++) { - // Shortcuts - var offset_i = offset + i; - var M_offset_i = M[offset_i]; - - M[offset_i] = ( - (((M_offset_i << 8) | (M_offset_i >>> 24)) & 0x00ff00ff) | - (((M_offset_i << 24) | (M_offset_i >>> 8)) & 0xff00ff00) - ); - } - - // Shortcuts - var H = this._hash.words; - - var M_offset_0 = M[offset + 0]; - var M_offset_1 = M[offset + 1]; - var M_offset_2 = M[offset + 2]; - var M_offset_3 = M[offset + 3]; - var M_offset_4 = M[offset + 4]; - var M_offset_5 = M[offset + 5]; - var M_offset_6 = M[offset + 6]; - var M_offset_7 = M[offset + 7]; - var M_offset_8 = M[offset + 8]; - var M_offset_9 = M[offset + 9]; - var M_offset_10 = M[offset + 10]; - var M_offset_11 = M[offset + 11]; - var M_offset_12 = M[offset + 12]; - var M_offset_13 = M[offset + 13]; - var M_offset_14 = M[offset + 14]; - var M_offset_15 = M[offset + 15]; - - // Working variables - var a = H[0]; - var b = H[1]; - var c = H[2]; - var d = H[3]; - - // Computation - a = FF(a, b, c, d, M_offset_0, 7, T[0]); - d = FF(d, a, b, c, M_offset_1, 12, T[1]); - c = FF(c, d, a, b, M_offset_2, 17, T[2]); - b = FF(b, c, d, a, M_offset_3, 22, T[3]); - a = FF(a, b, c, d, M_offset_4, 7, T[4]); - d = FF(d, a, b, c, M_offset_5, 12, T[5]); - c = FF(c, d, a, b, M_offset_6, 17, T[6]); - b = FF(b, c, d, a, M_offset_7, 22, T[7]); - a = FF(a, b, c, d, M_offset_8, 7, T[8]); - d = FF(d, a, b, c, M_offset_9, 12, T[9]); - c = FF(c, d, a, b, M_offset_10, 17, T[10]); - b = FF(b, c, d, a, M_offset_11, 22, T[11]); - a = FF(a, b, c, d, M_offset_12, 7, T[12]); - d = FF(d, a, b, c, M_offset_13, 12, T[13]); - c = FF(c, d, a, b, M_offset_14, 17, T[14]); - b = FF(b, c, d, a, M_offset_15, 22, T[15]); - - a = GG(a, b, c, d, M_offset_1, 5, T[16]); - d = GG(d, a, b, c, M_offset_6, 9, T[17]); - c = GG(c, d, a, b, M_offset_11, 14, T[18]); - b = GG(b, c, d, a, M_offset_0, 20, T[19]); - a = GG(a, b, c, d, M_offset_5, 5, T[20]); - d = GG(d, a, b, c, M_offset_10, 9, T[21]); - c = GG(c, d, a, b, M_offset_15, 14, T[22]); - b = GG(b, c, d, a, M_offset_4, 20, T[23]); - a = GG(a, b, c, d, M_offset_9, 5, T[24]); - d = GG(d, a, b, c, M_offset_14, 9, T[25]); - c = GG(c, d, a, b, M_offset_3, 14, T[26]); - b = GG(b, c, d, a, M_offset_8, 20, T[27]); - a = GG(a, b, c, d, M_offset_13, 5, T[28]); - d = GG(d, a, b, c, M_offset_2, 9, T[29]); - c = GG(c, d, a, b, M_offset_7, 14, T[30]); - b = GG(b, c, d, a, M_offset_12, 20, T[31]); - - a = HH(a, b, c, d, M_offset_5, 4, T[32]); - d = HH(d, a, b, c, M_offset_8, 11, T[33]); - c = HH(c, d, a, b, M_offset_11, 16, T[34]); - b = HH(b, c, d, a, M_offset_14, 23, T[35]); - a = HH(a, b, c, d, M_offset_1, 4, T[36]); - d = HH(d, a, b, c, M_offset_4, 11, T[37]); - c = HH(c, d, a, b, M_offset_7, 16, T[38]); - b = HH(b, c, d, a, M_offset_10, 23, T[39]); - a = HH(a, b, c, d, M_offset_13, 4, T[40]); - d = HH(d, a, b, c, M_offset_0, 11, T[41]); - c = HH(c, d, a, b, M_offset_3, 16, T[42]); - b = HH(b, c, d, a, M_offset_6, 23, T[43]); - a = HH(a, b, c, d, M_offset_9, 4, T[44]); - d = HH(d, a, b, c, M_offset_12, 11, T[45]); - c = HH(c, d, a, b, M_offset_15, 16, T[46]); - b = HH(b, c, d, a, M_offset_2, 23, T[47]); - - a = II(a, b, c, d, M_offset_0, 6, T[48]); - d = II(d, a, b, c, M_offset_7, 10, T[49]); - c = II(c, d, a, b, M_offset_14, 15, T[50]); - b = II(b, c, d, a, M_offset_5, 21, T[51]); - a = II(a, b, c, d, M_offset_12, 6, T[52]); - d = II(d, a, b, c, M_offset_3, 10, T[53]); - c = II(c, d, a, b, M_offset_10, 15, T[54]); - b = II(b, c, d, a, M_offset_1, 21, T[55]); - a = II(a, b, c, d, M_offset_8, 6, T[56]); - d = II(d, a, b, c, M_offset_15, 10, T[57]); - c = II(c, d, a, b, M_offset_6, 15, T[58]); - b = II(b, c, d, a, M_offset_13, 21, T[59]); - a = II(a, b, c, d, M_offset_4, 6, T[60]); - d = II(d, a, b, c, M_offset_11, 10, T[61]); - c = II(c, d, a, b, M_offset_2, 15, T[62]); - b = II(b, c, d, a, M_offset_9, 21, T[63]); - - // Intermediate hash value - H[0] = (H[0] + a) | 0; - H[1] = (H[1] + b) | 0; - H[2] = (H[2] + c) | 0; - H[3] = (H[3] + d) | 0; - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - - var nBitsTotalH = Math.floor(nBitsTotal / 0x100000000); - var nBitsTotalL = nBitsTotal; - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = ( - (((nBitsTotalH << 8) | (nBitsTotalH >>> 24)) & 0x00ff00ff) | - (((nBitsTotalH << 24) | (nBitsTotalH >>> 8)) & 0xff00ff00) - ); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = ( - (((nBitsTotalL << 8) | (nBitsTotalL >>> 24)) & 0x00ff00ff) | - (((nBitsTotalL << 24) | (nBitsTotalL >>> 8)) & 0xff00ff00) - ); - - data.sigBytes = (dataWords.length + 1) * 4; - - // Hash final blocks - this._process(); - - // Shortcuts - var hash = this._hash; - var H = hash.words; - - // Swap endian - for (var i = 0; i < 4; i++) { - // Shortcut - var H_i = H[i]; - - H[i] = (((H_i << 8) | (H_i >>> 24)) & 0x00ff00ff) | - (((H_i << 24) | (H_i >>> 8)) & 0xff00ff00); - } - - // Return final computed hash - return hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - } - }); - - function FF(a, b, c, d, x, s, t) { - var n = a + ((b & c) | (~b & d)) + x + t; - return ((n << s) | (n >>> (32 - s))) + b; - } - - function GG(a, b, c, d, x, s, t) { - var n = a + ((b & d) | (c & ~d)) + x + t; - return ((n << s) | (n >>> (32 - s))) + b; - } - - function HH(a, b, c, d, x, s, t) { - var n = a + (b ^ c ^ d) + x + t; - return ((n << s) | (n >>> (32 - s))) + b; - } - - function II(a, b, c, d, x, s, t) { - var n = a + (c ^ (b | ~d)) + x + t; - return ((n << s) | (n >>> (32 - s))) + b; - } - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.MD5('message'); - * var hash = CryptoJS.MD5(wordArray); - */ - C.MD5 = Hasher._createHelper(MD5); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacMD5(message, key); - */ - C.HmacMD5 = Hasher._createHmacHelper(MD5); - }(Math)); - - - return CryptoJS.MD5; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/mode-cfb.js b/node_modules/crypto-js/mode-cfb.js deleted file mode 100644 index 444c9cb9..00000000 --- a/node_modules/crypto-js/mode-cfb.js +++ /dev/null @@ -1,80 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * Cipher Feedback block mode. - */ - CryptoJS.mode.CFB = (function () { - var CFB = CryptoJS.lib.BlockCipherMode.extend(); - - CFB.Encryptor = CFB.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - - generateKeystreamAndEncrypt.call(this, words, offset, blockSize, cipher); - - // Remember this block to use with next block - this._prevBlock = words.slice(offset, offset + blockSize); - } - }); - - CFB.Decryptor = CFB.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - - // Remember this block to use with next block - var thisBlock = words.slice(offset, offset + blockSize); - - generateKeystreamAndEncrypt.call(this, words, offset, blockSize, cipher); - - // This block becomes the previous block - this._prevBlock = thisBlock; - } - }); - - function generateKeystreamAndEncrypt(words, offset, blockSize, cipher) { - var keystream; - - // Shortcut - var iv = this._iv; - - // Generate keystream - if (iv) { - keystream = iv.slice(0); - - // Remove IV for subsequent blocks - this._iv = undefined; - } else { - keystream = this._prevBlock; - } - cipher.encryptBlock(keystream, 0); - - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - - return CFB; - }()); - - - return CryptoJS.mode.CFB; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/mode-ctr-gladman.js b/node_modules/crypto-js/mode-ctr-gladman.js deleted file mode 100644 index bbc56876..00000000 --- a/node_modules/crypto-js/mode-ctr-gladman.js +++ /dev/null @@ -1,116 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** @preserve - * Counter block mode compatible with Dr Brian Gladman fileenc.c - * derived from CryptoJS.mode.CTR - * Jan Hruby jhruby.web@gmail.com - */ - CryptoJS.mode.CTRGladman = (function () { - var CTRGladman = CryptoJS.lib.BlockCipherMode.extend(); - - function incWord(word) - { - if (((word >> 24) & 0xff) === 0xff) { //overflow - var b1 = (word >> 16)&0xff; - var b2 = (word >> 8)&0xff; - var b3 = word & 0xff; - - if (b1 === 0xff) // overflow b1 - { - b1 = 0; - if (b2 === 0xff) - { - b2 = 0; - if (b3 === 0xff) - { - b3 = 0; - } - else - { - ++b3; - } - } - else - { - ++b2; - } - } - else - { - ++b1; - } - - word = 0; - word += (b1 << 16); - word += (b2 << 8); - word += b3; - } - else - { - word += (0x01 << 24); - } - return word; - } - - function incCounter(counter) - { - if ((counter[0] = incWord(counter[0])) === 0) - { - // encr_data in fileenc.c from Dr Brian Gladman's counts only with DWORD j < 8 - counter[1] = incWord(counter[1]); - } - return counter; - } - - var Encryptor = CTRGladman.Encryptor = CTRGladman.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher - var blockSize = cipher.blockSize; - var iv = this._iv; - var counter = this._counter; - - // Generate keystream - if (iv) { - counter = this._counter = iv.slice(0); - - // Remove IV for subsequent blocks - this._iv = undefined; - } - - incCounter(counter); - - var keystream = counter.slice(0); - cipher.encryptBlock(keystream, 0); - - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - }); - - CTRGladman.Decryptor = Encryptor; - - return CTRGladman; - }()); - - - - - return CryptoJS.mode.CTRGladman; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/mode-ctr.js b/node_modules/crypto-js/mode-ctr.js deleted file mode 100644 index c3d470a6..00000000 --- a/node_modules/crypto-js/mode-ctr.js +++ /dev/null @@ -1,58 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * Counter block mode. - */ - CryptoJS.mode.CTR = (function () { - var CTR = CryptoJS.lib.BlockCipherMode.extend(); - - var Encryptor = CTR.Encryptor = CTR.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher - var blockSize = cipher.blockSize; - var iv = this._iv; - var counter = this._counter; - - // Generate keystream - if (iv) { - counter = this._counter = iv.slice(0); - - // Remove IV for subsequent blocks - this._iv = undefined; - } - var keystream = counter.slice(0); - cipher.encryptBlock(keystream, 0); - - // Increment counter - counter[blockSize - 1] = (counter[blockSize - 1] + 1) | 0 - - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - }); - - CTR.Decryptor = Encryptor; - - return CTR; - }()); - - - return CryptoJS.mode.CTR; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/mode-ecb.js b/node_modules/crypto-js/mode-ecb.js deleted file mode 100644 index ff069217..00000000 --- a/node_modules/crypto-js/mode-ecb.js +++ /dev/null @@ -1,40 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * Electronic Codebook block mode. - */ - CryptoJS.mode.ECB = (function () { - var ECB = CryptoJS.lib.BlockCipherMode.extend(); - - ECB.Encryptor = ECB.extend({ - processBlock: function (words, offset) { - this._cipher.encryptBlock(words, offset); - } - }); - - ECB.Decryptor = ECB.extend({ - processBlock: function (words, offset) { - this._cipher.decryptBlock(words, offset); - } - }); - - return ECB; - }()); - - - return CryptoJS.mode.ECB; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/mode-ofb.js b/node_modules/crypto-js/mode-ofb.js deleted file mode 100644 index c01314c2..00000000 --- a/node_modules/crypto-js/mode-ofb.js +++ /dev/null @@ -1,54 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * Output Feedback block mode. - */ - CryptoJS.mode.OFB = (function () { - var OFB = CryptoJS.lib.BlockCipherMode.extend(); - - var Encryptor = OFB.Encryptor = OFB.extend({ - processBlock: function (words, offset) { - // Shortcuts - var cipher = this._cipher - var blockSize = cipher.blockSize; - var iv = this._iv; - var keystream = this._keystream; - - // Generate keystream - if (iv) { - keystream = this._keystream = iv.slice(0); - - // Remove IV for subsequent blocks - this._iv = undefined; - } - cipher.encryptBlock(keystream, 0); - - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - }); - - OFB.Decryptor = Encryptor; - - return OFB; - }()); - - - return CryptoJS.mode.OFB; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/package.json b/node_modules/crypto-js/package.json deleted file mode 100644 index 4b9a8e28..00000000 --- a/node_modules/crypto-js/package.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "name": "crypto-js", - "version": "4.2.0", - "description": "JavaScript library of crypto standards.", - "license": "MIT", - "author": { - "name": "Evan Vosberg", - "url": "http://github.com/evanvosberg" - }, - "homepage": "http://github.com/brix/crypto-js", - "repository": { - "type": "git", - "url": "http://github.com/brix/crypto-js.git" - }, - "keywords": [ - "security", - "crypto", - "Hash", - "MD5", - "SHA1", - "SHA-1", - "SHA256", - "SHA-256", - "RC4", - "Rabbit", - "AES", - "DES", - "PBKDF2", - "HMAC", - "OFB", - "CFB", - "CTR", - "CBC", - "Base64", - "Base64url" - ], - "main": "index.js", - "dependencies": {}, - "browser": { - "crypto": false - } -} diff --git a/node_modules/crypto-js/pad-ansix923.js b/node_modules/crypto-js/pad-ansix923.js deleted file mode 100644 index f01f21e4..00000000 --- a/node_modules/crypto-js/pad-ansix923.js +++ /dev/null @@ -1,49 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * ANSI X.923 padding strategy. - */ - CryptoJS.pad.AnsiX923 = { - pad: function (data, blockSize) { - // Shortcuts - var dataSigBytes = data.sigBytes; - var blockSizeBytes = blockSize * 4; - - // Count padding bytes - var nPaddingBytes = blockSizeBytes - dataSigBytes % blockSizeBytes; - - // Compute last byte position - var lastBytePos = dataSigBytes + nPaddingBytes - 1; - - // Pad - data.clamp(); - data.words[lastBytePos >>> 2] |= nPaddingBytes << (24 - (lastBytePos % 4) * 8); - data.sigBytes += nPaddingBytes; - }, - - unpad: function (data) { - // Get number of padding bytes from last byte - var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff; - - // Remove padding - data.sigBytes -= nPaddingBytes; - } - }; - - - return CryptoJS.pad.Ansix923; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/pad-iso10126.js b/node_modules/crypto-js/pad-iso10126.js deleted file mode 100644 index 6e2aefd8..00000000 --- a/node_modules/crypto-js/pad-iso10126.js +++ /dev/null @@ -1,44 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * ISO 10126 padding strategy. - */ - CryptoJS.pad.Iso10126 = { - pad: function (data, blockSize) { - // Shortcut - var blockSizeBytes = blockSize * 4; - - // Count padding bytes - var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes; - - // Pad - data.concat(CryptoJS.lib.WordArray.random(nPaddingBytes - 1)). - concat(CryptoJS.lib.WordArray.create([nPaddingBytes << 24], 1)); - }, - - unpad: function (data) { - // Get number of padding bytes from last byte - var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff; - - // Remove padding - data.sigBytes -= nPaddingBytes; - } - }; - - - return CryptoJS.pad.Iso10126; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/pad-iso97971.js b/node_modules/crypto-js/pad-iso97971.js deleted file mode 100644 index 41049b45..00000000 --- a/node_modules/crypto-js/pad-iso97971.js +++ /dev/null @@ -1,40 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * ISO/IEC 9797-1 Padding Method 2. - */ - CryptoJS.pad.Iso97971 = { - pad: function (data, blockSize) { - // Add 0x80 byte - data.concat(CryptoJS.lib.WordArray.create([0x80000000], 1)); - - // Zero pad the rest - CryptoJS.pad.ZeroPadding.pad(data, blockSize); - }, - - unpad: function (data) { - // Remove zero padding - CryptoJS.pad.ZeroPadding.unpad(data); - - // Remove one more byte -- the 0x80 byte - data.sigBytes--; - } - }; - - - return CryptoJS.pad.Iso97971; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/pad-nopadding.js b/node_modules/crypto-js/pad-nopadding.js deleted file mode 100644 index c7787c94..00000000 --- a/node_modules/crypto-js/pad-nopadding.js +++ /dev/null @@ -1,30 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * A noop padding strategy. - */ - CryptoJS.pad.NoPadding = { - pad: function () { - }, - - unpad: function () { - } - }; - - - return CryptoJS.pad.NoPadding; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/pad-pkcs7.js b/node_modules/crypto-js/pad-pkcs7.js deleted file mode 100644 index 35551685..00000000 --- a/node_modules/crypto-js/pad-pkcs7.js +++ /dev/null @@ -1,18 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - return CryptoJS.pad.Pkcs7; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/pad-zeropadding.js b/node_modules/crypto-js/pad-zeropadding.js deleted file mode 100644 index a1a459ef..00000000 --- a/node_modules/crypto-js/pad-zeropadding.js +++ /dev/null @@ -1,47 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** - * Zero padding strategy. - */ - CryptoJS.pad.ZeroPadding = { - pad: function (data, blockSize) { - // Shortcut - var blockSizeBytes = blockSize * 4; - - // Pad - data.clamp(); - data.sigBytes += blockSizeBytes - ((data.sigBytes % blockSizeBytes) || blockSizeBytes); - }, - - unpad: function (data) { - // Shortcut - var dataWords = data.words; - - // Unpad - var i = data.sigBytes - 1; - for (var i = data.sigBytes - 1; i >= 0; i--) { - if (((dataWords[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff)) { - data.sigBytes = i + 1; - break; - } - } - } - }; - - - return CryptoJS.pad.ZeroPadding; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/pbkdf2.js b/node_modules/crypto-js/pbkdf2.js deleted file mode 100644 index 6850934c..00000000 --- a/node_modules/crypto-js/pbkdf2.js +++ /dev/null @@ -1,145 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./sha256"), require("./hmac")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./sha256", "./hmac"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var WordArray = C_lib.WordArray; - var C_algo = C.algo; - var SHA256 = C_algo.SHA256; - var HMAC = C_algo.HMAC; - - /** - * Password-Based Key Derivation Function 2 algorithm. - */ - var PBKDF2 = C_algo.PBKDF2 = Base.extend({ - /** - * Configuration options. - * - * @property {number} keySize The key size in words to generate. Default: 4 (128 bits) - * @property {Hasher} hasher The hasher to use. Default: SHA256 - * @property {number} iterations The number of iterations to perform. Default: 250000 - */ - cfg: Base.extend({ - keySize: 128/32, - hasher: SHA256, - iterations: 250000 - }), - - /** - * Initializes a newly created key derivation function. - * - * @param {Object} cfg (Optional) The configuration options to use for the derivation. - * - * @example - * - * var kdf = CryptoJS.algo.PBKDF2.create(); - * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8 }); - * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8, iterations: 1000 }); - */ - init: function (cfg) { - this.cfg = this.cfg.extend(cfg); - }, - - /** - * Computes the Password-Based Key Derivation Function 2. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * - * @return {WordArray} The derived key. - * - * @example - * - * var key = kdf.compute(password, salt); - */ - compute: function (password, salt) { - // Shortcut - var cfg = this.cfg; - - // Init HMAC - var hmac = HMAC.create(cfg.hasher, password); - - // Initial values - var derivedKey = WordArray.create(); - var blockIndex = WordArray.create([0x00000001]); - - // Shortcuts - var derivedKeyWords = derivedKey.words; - var blockIndexWords = blockIndex.words; - var keySize = cfg.keySize; - var iterations = cfg.iterations; - - // Generate key - while (derivedKeyWords.length < keySize) { - var block = hmac.update(salt).finalize(blockIndex); - hmac.reset(); - - // Shortcuts - var blockWords = block.words; - var blockWordsLength = blockWords.length; - - // Iterations - var intermediate = block; - for (var i = 1; i < iterations; i++) { - intermediate = hmac.finalize(intermediate); - hmac.reset(); - - // Shortcut - var intermediateWords = intermediate.words; - - // XOR intermediate with block - for (var j = 0; j < blockWordsLength; j++) { - blockWords[j] ^= intermediateWords[j]; - } - } - - derivedKey.concat(block); - blockIndexWords[0]++; - } - derivedKey.sigBytes = keySize * 4; - - return derivedKey; - } - }); - - /** - * Computes the Password-Based Key Derivation Function 2. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * @param {Object} cfg (Optional) The configuration options to use for this computation. - * - * @return {WordArray} The derived key. - * - * @static - * - * @example - * - * var key = CryptoJS.PBKDF2(password, salt); - * var key = CryptoJS.PBKDF2(password, salt, { keySize: 8 }); - * var key = CryptoJS.PBKDF2(password, salt, { keySize: 8, iterations: 1000 }); - */ - C.PBKDF2 = function (password, salt, cfg) { - return PBKDF2.create(cfg).compute(password, salt); - }; - }()); - - - return CryptoJS.PBKDF2; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/rabbit-legacy.js b/node_modules/crypto-js/rabbit-legacy.js deleted file mode 100644 index e118b6b6..00000000 --- a/node_modules/crypto-js/rabbit-legacy.js +++ /dev/null @@ -1,190 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./enc-base64", "./md5", "./evpkdf", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var StreamCipher = C_lib.StreamCipher; - var C_algo = C.algo; - - // Reusable objects - var S = []; - var C_ = []; - var G = []; - - /** - * Rabbit stream cipher algorithm. - * - * This is a legacy version that neglected to convert the key to little-endian. - * This error doesn't affect the cipher's security, - * but it does affect its compatibility with other implementations. - */ - var RabbitLegacy = C_algo.RabbitLegacy = StreamCipher.extend({ - _doReset: function () { - // Shortcuts - var K = this._key.words; - var iv = this.cfg.iv; - - // Generate initial state values - var X = this._X = [ - K[0], (K[3] << 16) | (K[2] >>> 16), - K[1], (K[0] << 16) | (K[3] >>> 16), - K[2], (K[1] << 16) | (K[0] >>> 16), - K[3], (K[2] << 16) | (K[1] >>> 16) - ]; - - // Generate initial counter values - var C = this._C = [ - (K[2] << 16) | (K[2] >>> 16), (K[0] & 0xffff0000) | (K[1] & 0x0000ffff), - (K[3] << 16) | (K[3] >>> 16), (K[1] & 0xffff0000) | (K[2] & 0x0000ffff), - (K[0] << 16) | (K[0] >>> 16), (K[2] & 0xffff0000) | (K[3] & 0x0000ffff), - (K[1] << 16) | (K[1] >>> 16), (K[3] & 0xffff0000) | (K[0] & 0x0000ffff) - ]; - - // Carry bit - this._b = 0; - - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); - } - - // Modify the counters - for (var i = 0; i < 8; i++) { - C[i] ^= X[(i + 4) & 7]; - } - - // IV setup - if (iv) { - // Shortcuts - var IV = iv.words; - var IV_0 = IV[0]; - var IV_1 = IV[1]; - - // Generate four subvectors - var i0 = (((IV_0 << 8) | (IV_0 >>> 24)) & 0x00ff00ff) | (((IV_0 << 24) | (IV_0 >>> 8)) & 0xff00ff00); - var i2 = (((IV_1 << 8) | (IV_1 >>> 24)) & 0x00ff00ff) | (((IV_1 << 24) | (IV_1 >>> 8)) & 0xff00ff00); - var i1 = (i0 >>> 16) | (i2 & 0xffff0000); - var i3 = (i2 << 16) | (i0 & 0x0000ffff); - - // Modify counter values - C[0] ^= i0; - C[1] ^= i1; - C[2] ^= i2; - C[3] ^= i3; - C[4] ^= i0; - C[5] ^= i1; - C[6] ^= i2; - C[7] ^= i3; - - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); - } - } - }, - - _doProcessBlock: function (M, offset) { - // Shortcut - var X = this._X; - - // Iterate the system - nextState.call(this); - - // Generate four keystream words - S[0] = X[0] ^ (X[5] >>> 16) ^ (X[3] << 16); - S[1] = X[2] ^ (X[7] >>> 16) ^ (X[5] << 16); - S[2] = X[4] ^ (X[1] >>> 16) ^ (X[7] << 16); - S[3] = X[6] ^ (X[3] >>> 16) ^ (X[1] << 16); - - for (var i = 0; i < 4; i++) { - // Swap endian - S[i] = (((S[i] << 8) | (S[i] >>> 24)) & 0x00ff00ff) | - (((S[i] << 24) | (S[i] >>> 8)) & 0xff00ff00); - - // Encrypt - M[offset + i] ^= S[i]; - } - }, - - blockSize: 128/32, - - ivSize: 64/32 - }); - - function nextState() { - // Shortcuts - var X = this._X; - var C = this._C; - - // Save old counter values - for (var i = 0; i < 8; i++) { - C_[i] = C[i]; - } - - // Calculate new counter values - C[0] = (C[0] + 0x4d34d34d + this._b) | 0; - C[1] = (C[1] + 0xd34d34d3 + ((C[0] >>> 0) < (C_[0] >>> 0) ? 1 : 0)) | 0; - C[2] = (C[2] + 0x34d34d34 + ((C[1] >>> 0) < (C_[1] >>> 0) ? 1 : 0)) | 0; - C[3] = (C[3] + 0x4d34d34d + ((C[2] >>> 0) < (C_[2] >>> 0) ? 1 : 0)) | 0; - C[4] = (C[4] + 0xd34d34d3 + ((C[3] >>> 0) < (C_[3] >>> 0) ? 1 : 0)) | 0; - C[5] = (C[5] + 0x34d34d34 + ((C[4] >>> 0) < (C_[4] >>> 0) ? 1 : 0)) | 0; - C[6] = (C[6] + 0x4d34d34d + ((C[5] >>> 0) < (C_[5] >>> 0) ? 1 : 0)) | 0; - C[7] = (C[7] + 0xd34d34d3 + ((C[6] >>> 0) < (C_[6] >>> 0) ? 1 : 0)) | 0; - this._b = (C[7] >>> 0) < (C_[7] >>> 0) ? 1 : 0; - - // Calculate the g-values - for (var i = 0; i < 8; i++) { - var gx = X[i] + C[i]; - - // Construct high and low argument for squaring - var ga = gx & 0xffff; - var gb = gx >>> 16; - - // Calculate high and low result of squaring - var gh = ((((ga * ga) >>> 17) + ga * gb) >>> 15) + gb * gb; - var gl = (((gx & 0xffff0000) * gx) | 0) + (((gx & 0x0000ffff) * gx) | 0); - - // High XOR low - G[i] = gh ^ gl; - } - - // Calculate new state values - X[0] = (G[0] + ((G[7] << 16) | (G[7] >>> 16)) + ((G[6] << 16) | (G[6] >>> 16))) | 0; - X[1] = (G[1] + ((G[0] << 8) | (G[0] >>> 24)) + G[7]) | 0; - X[2] = (G[2] + ((G[1] << 16) | (G[1] >>> 16)) + ((G[0] << 16) | (G[0] >>> 16))) | 0; - X[3] = (G[3] + ((G[2] << 8) | (G[2] >>> 24)) + G[1]) | 0; - X[4] = (G[4] + ((G[3] << 16) | (G[3] >>> 16)) + ((G[2] << 16) | (G[2] >>> 16))) | 0; - X[5] = (G[5] + ((G[4] << 8) | (G[4] >>> 24)) + G[3]) | 0; - X[6] = (G[6] + ((G[5] << 16) | (G[5] >>> 16)) + ((G[4] << 16) | (G[4] >>> 16))) | 0; - X[7] = (G[7] + ((G[6] << 8) | (G[6] >>> 24)) + G[5]) | 0; - } - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.RabbitLegacy.encrypt(message, key, cfg); - * var plaintext = CryptoJS.RabbitLegacy.decrypt(ciphertext, key, cfg); - */ - C.RabbitLegacy = StreamCipher._createHelper(RabbitLegacy); - }()); - - - return CryptoJS.RabbitLegacy; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/rabbit.js b/node_modules/crypto-js/rabbit.js deleted file mode 100644 index 1b068336..00000000 --- a/node_modules/crypto-js/rabbit.js +++ /dev/null @@ -1,192 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./enc-base64", "./md5", "./evpkdf", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var StreamCipher = C_lib.StreamCipher; - var C_algo = C.algo; - - // Reusable objects - var S = []; - var C_ = []; - var G = []; - - /** - * Rabbit stream cipher algorithm - */ - var Rabbit = C_algo.Rabbit = StreamCipher.extend({ - _doReset: function () { - // Shortcuts - var K = this._key.words; - var iv = this.cfg.iv; - - // Swap endian - for (var i = 0; i < 4; i++) { - K[i] = (((K[i] << 8) | (K[i] >>> 24)) & 0x00ff00ff) | - (((K[i] << 24) | (K[i] >>> 8)) & 0xff00ff00); - } - - // Generate initial state values - var X = this._X = [ - K[0], (K[3] << 16) | (K[2] >>> 16), - K[1], (K[0] << 16) | (K[3] >>> 16), - K[2], (K[1] << 16) | (K[0] >>> 16), - K[3], (K[2] << 16) | (K[1] >>> 16) - ]; - - // Generate initial counter values - var C = this._C = [ - (K[2] << 16) | (K[2] >>> 16), (K[0] & 0xffff0000) | (K[1] & 0x0000ffff), - (K[3] << 16) | (K[3] >>> 16), (K[1] & 0xffff0000) | (K[2] & 0x0000ffff), - (K[0] << 16) | (K[0] >>> 16), (K[2] & 0xffff0000) | (K[3] & 0x0000ffff), - (K[1] << 16) | (K[1] >>> 16), (K[3] & 0xffff0000) | (K[0] & 0x0000ffff) - ]; - - // Carry bit - this._b = 0; - - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); - } - - // Modify the counters - for (var i = 0; i < 8; i++) { - C[i] ^= X[(i + 4) & 7]; - } - - // IV setup - if (iv) { - // Shortcuts - var IV = iv.words; - var IV_0 = IV[0]; - var IV_1 = IV[1]; - - // Generate four subvectors - var i0 = (((IV_0 << 8) | (IV_0 >>> 24)) & 0x00ff00ff) | (((IV_0 << 24) | (IV_0 >>> 8)) & 0xff00ff00); - var i2 = (((IV_1 << 8) | (IV_1 >>> 24)) & 0x00ff00ff) | (((IV_1 << 24) | (IV_1 >>> 8)) & 0xff00ff00); - var i1 = (i0 >>> 16) | (i2 & 0xffff0000); - var i3 = (i2 << 16) | (i0 & 0x0000ffff); - - // Modify counter values - C[0] ^= i0; - C[1] ^= i1; - C[2] ^= i2; - C[3] ^= i3; - C[4] ^= i0; - C[5] ^= i1; - C[6] ^= i2; - C[7] ^= i3; - - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); - } - } - }, - - _doProcessBlock: function (M, offset) { - // Shortcut - var X = this._X; - - // Iterate the system - nextState.call(this); - - // Generate four keystream words - S[0] = X[0] ^ (X[5] >>> 16) ^ (X[3] << 16); - S[1] = X[2] ^ (X[7] >>> 16) ^ (X[5] << 16); - S[2] = X[4] ^ (X[1] >>> 16) ^ (X[7] << 16); - S[3] = X[6] ^ (X[3] >>> 16) ^ (X[1] << 16); - - for (var i = 0; i < 4; i++) { - // Swap endian - S[i] = (((S[i] << 8) | (S[i] >>> 24)) & 0x00ff00ff) | - (((S[i] << 24) | (S[i] >>> 8)) & 0xff00ff00); - - // Encrypt - M[offset + i] ^= S[i]; - } - }, - - blockSize: 128/32, - - ivSize: 64/32 - }); - - function nextState() { - // Shortcuts - var X = this._X; - var C = this._C; - - // Save old counter values - for (var i = 0; i < 8; i++) { - C_[i] = C[i]; - } - - // Calculate new counter values - C[0] = (C[0] + 0x4d34d34d + this._b) | 0; - C[1] = (C[1] + 0xd34d34d3 + ((C[0] >>> 0) < (C_[0] >>> 0) ? 1 : 0)) | 0; - C[2] = (C[2] + 0x34d34d34 + ((C[1] >>> 0) < (C_[1] >>> 0) ? 1 : 0)) | 0; - C[3] = (C[3] + 0x4d34d34d + ((C[2] >>> 0) < (C_[2] >>> 0) ? 1 : 0)) | 0; - C[4] = (C[4] + 0xd34d34d3 + ((C[3] >>> 0) < (C_[3] >>> 0) ? 1 : 0)) | 0; - C[5] = (C[5] + 0x34d34d34 + ((C[4] >>> 0) < (C_[4] >>> 0) ? 1 : 0)) | 0; - C[6] = (C[6] + 0x4d34d34d + ((C[5] >>> 0) < (C_[5] >>> 0) ? 1 : 0)) | 0; - C[7] = (C[7] + 0xd34d34d3 + ((C[6] >>> 0) < (C_[6] >>> 0) ? 1 : 0)) | 0; - this._b = (C[7] >>> 0) < (C_[7] >>> 0) ? 1 : 0; - - // Calculate the g-values - for (var i = 0; i < 8; i++) { - var gx = X[i] + C[i]; - - // Construct high and low argument for squaring - var ga = gx & 0xffff; - var gb = gx >>> 16; - - // Calculate high and low result of squaring - var gh = ((((ga * ga) >>> 17) + ga * gb) >>> 15) + gb * gb; - var gl = (((gx & 0xffff0000) * gx) | 0) + (((gx & 0x0000ffff) * gx) | 0); - - // High XOR low - G[i] = gh ^ gl; - } - - // Calculate new state values - X[0] = (G[0] + ((G[7] << 16) | (G[7] >>> 16)) + ((G[6] << 16) | (G[6] >>> 16))) | 0; - X[1] = (G[1] + ((G[0] << 8) | (G[0] >>> 24)) + G[7]) | 0; - X[2] = (G[2] + ((G[1] << 16) | (G[1] >>> 16)) + ((G[0] << 16) | (G[0] >>> 16))) | 0; - X[3] = (G[3] + ((G[2] << 8) | (G[2] >>> 24)) + G[1]) | 0; - X[4] = (G[4] + ((G[3] << 16) | (G[3] >>> 16)) + ((G[2] << 16) | (G[2] >>> 16))) | 0; - X[5] = (G[5] + ((G[4] << 8) | (G[4] >>> 24)) + G[3]) | 0; - X[6] = (G[6] + ((G[5] << 16) | (G[5] >>> 16)) + ((G[4] << 16) | (G[4] >>> 16))) | 0; - X[7] = (G[7] + ((G[6] << 8) | (G[6] >>> 24)) + G[5]) | 0; - } - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.Rabbit.encrypt(message, key, cfg); - * var plaintext = CryptoJS.Rabbit.decrypt(ciphertext, key, cfg); - */ - C.Rabbit = StreamCipher._createHelper(Rabbit); - }()); - - - return CryptoJS.Rabbit; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/rc4.js b/node_modules/crypto-js/rc4.js deleted file mode 100644 index 0e4bdff5..00000000 --- a/node_modules/crypto-js/rc4.js +++ /dev/null @@ -1,139 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./enc-base64", "./md5", "./evpkdf", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var StreamCipher = C_lib.StreamCipher; - var C_algo = C.algo; - - /** - * RC4 stream cipher algorithm. - */ - var RC4 = C_algo.RC4 = StreamCipher.extend({ - _doReset: function () { - // Shortcuts - var key = this._key; - var keyWords = key.words; - var keySigBytes = key.sigBytes; - - // Init sbox - var S = this._S = []; - for (var i = 0; i < 256; i++) { - S[i] = i; - } - - // Key setup - for (var i = 0, j = 0; i < 256; i++) { - var keyByteIndex = i % keySigBytes; - var keyByte = (keyWords[keyByteIndex >>> 2] >>> (24 - (keyByteIndex % 4) * 8)) & 0xff; - - j = (j + S[i] + keyByte) % 256; - - // Swap - var t = S[i]; - S[i] = S[j]; - S[j] = t; - } - - // Counters - this._i = this._j = 0; - }, - - _doProcessBlock: function (M, offset) { - M[offset] ^= generateKeystreamWord.call(this); - }, - - keySize: 256/32, - - ivSize: 0 - }); - - function generateKeystreamWord() { - // Shortcuts - var S = this._S; - var i = this._i; - var j = this._j; - - // Generate keystream word - var keystreamWord = 0; - for (var n = 0; n < 4; n++) { - i = (i + 1) % 256; - j = (j + S[i]) % 256; - - // Swap - var t = S[i]; - S[i] = S[j]; - S[j] = t; - - keystreamWord |= S[(S[i] + S[j]) % 256] << (24 - n * 8); - } - - // Update counters - this._i = i; - this._j = j; - - return keystreamWord; - } - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.RC4.encrypt(message, key, cfg); - * var plaintext = CryptoJS.RC4.decrypt(ciphertext, key, cfg); - */ - C.RC4 = StreamCipher._createHelper(RC4); - - /** - * Modified RC4 stream cipher algorithm. - */ - var RC4Drop = C_algo.RC4Drop = RC4.extend({ - /** - * Configuration options. - * - * @property {number} drop The number of keystream words to drop. Default 192 - */ - cfg: RC4.cfg.extend({ - drop: 192 - }), - - _doReset: function () { - RC4._doReset.call(this); - - // Drop - for (var i = this.cfg.drop; i > 0; i--) { - generateKeystreamWord.call(this); - } - } - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.RC4Drop.encrypt(message, key, cfg); - * var plaintext = CryptoJS.RC4Drop.decrypt(ciphertext, key, cfg); - */ - C.RC4Drop = StreamCipher._createHelper(RC4Drop); - }()); - - - return CryptoJS.RC4; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/ripemd160.js b/node_modules/crypto-js/ripemd160.js deleted file mode 100644 index 24feb47c..00000000 --- a/node_modules/crypto-js/ripemd160.js +++ /dev/null @@ -1,267 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - /** @preserve - (c) 2012 by Cédric Mesnil. All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Constants table - var _zl = WordArray.create([ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, - 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, - 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, - 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13]); - var _zr = WordArray.create([ - 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, - 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, - 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, - 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, - 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11]); - var _sl = WordArray.create([ - 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, - 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12, - 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5, - 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12, - 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6 ]); - var _sr = WordArray.create([ - 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, - 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, - 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, - 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, - 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11 ]); - - var _hl = WordArray.create([ 0x00000000, 0x5A827999, 0x6ED9EBA1, 0x8F1BBCDC, 0xA953FD4E]); - var _hr = WordArray.create([ 0x50A28BE6, 0x5C4DD124, 0x6D703EF3, 0x7A6D76E9, 0x00000000]); - - /** - * RIPEMD160 hash algorithm. - */ - var RIPEMD160 = C_algo.RIPEMD160 = Hasher.extend({ - _doReset: function () { - this._hash = WordArray.create([0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0]); - }, - - _doProcessBlock: function (M, offset) { - - // Swap endian - for (var i = 0; i < 16; i++) { - // Shortcuts - var offset_i = offset + i; - var M_offset_i = M[offset_i]; - - // Swap - M[offset_i] = ( - (((M_offset_i << 8) | (M_offset_i >>> 24)) & 0x00ff00ff) | - (((M_offset_i << 24) | (M_offset_i >>> 8)) & 0xff00ff00) - ); - } - // Shortcut - var H = this._hash.words; - var hl = _hl.words; - var hr = _hr.words; - var zl = _zl.words; - var zr = _zr.words; - var sl = _sl.words; - var sr = _sr.words; - - // Working variables - var al, bl, cl, dl, el; - var ar, br, cr, dr, er; - - ar = al = H[0]; - br = bl = H[1]; - cr = cl = H[2]; - dr = dl = H[3]; - er = el = H[4]; - // Computation - var t; - for (var i = 0; i < 80; i += 1) { - t = (al + M[offset+zl[i]])|0; - if (i<16){ - t += f1(bl,cl,dl) + hl[0]; - } else if (i<32) { - t += f2(bl,cl,dl) + hl[1]; - } else if (i<48) { - t += f3(bl,cl,dl) + hl[2]; - } else if (i<64) { - t += f4(bl,cl,dl) + hl[3]; - } else {// if (i<80) { - t += f5(bl,cl,dl) + hl[4]; - } - t = t|0; - t = rotl(t,sl[i]); - t = (t+el)|0; - al = el; - el = dl; - dl = rotl(cl, 10); - cl = bl; - bl = t; - - t = (ar + M[offset+zr[i]])|0; - if (i<16){ - t += f5(br,cr,dr) + hr[0]; - } else if (i<32) { - t += f4(br,cr,dr) + hr[1]; - } else if (i<48) { - t += f3(br,cr,dr) + hr[2]; - } else if (i<64) { - t += f2(br,cr,dr) + hr[3]; - } else {// if (i<80) { - t += f1(br,cr,dr) + hr[4]; - } - t = t|0; - t = rotl(t,sr[i]) ; - t = (t+er)|0; - ar = er; - er = dr; - dr = rotl(cr, 10); - cr = br; - br = t; - } - // Intermediate hash value - t = (H[1] + cl + dr)|0; - H[1] = (H[2] + dl + er)|0; - H[2] = (H[3] + el + ar)|0; - H[3] = (H[4] + al + br)|0; - H[4] = (H[0] + bl + cr)|0; - H[0] = t; - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = ( - (((nBitsTotal << 8) | (nBitsTotal >>> 24)) & 0x00ff00ff) | - (((nBitsTotal << 24) | (nBitsTotal >>> 8)) & 0xff00ff00) - ); - data.sigBytes = (dataWords.length + 1) * 4; - - // Hash final blocks - this._process(); - - // Shortcuts - var hash = this._hash; - var H = hash.words; - - // Swap endian - for (var i = 0; i < 5; i++) { - // Shortcut - var H_i = H[i]; - - // Swap - H[i] = (((H_i << 8) | (H_i >>> 24)) & 0x00ff00ff) | - (((H_i << 24) | (H_i >>> 8)) & 0xff00ff00); - } - - // Return final computed hash - return hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - } - }); - - - function f1(x, y, z) { - return ((x) ^ (y) ^ (z)); - - } - - function f2(x, y, z) { - return (((x)&(y)) | ((~x)&(z))); - } - - function f3(x, y, z) { - return (((x) | (~(y))) ^ (z)); - } - - function f4(x, y, z) { - return (((x) & (z)) | ((y)&(~(z)))); - } - - function f5(x, y, z) { - return ((x) ^ ((y) |(~(z)))); - - } - - function rotl(x,n) { - return (x<>>(32-n)); - } - - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.RIPEMD160('message'); - * var hash = CryptoJS.RIPEMD160(wordArray); - */ - C.RIPEMD160 = Hasher._createHelper(RIPEMD160); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacRIPEMD160(message, key); - */ - C.HmacRIPEMD160 = Hasher._createHmacHelper(RIPEMD160); - }(Math)); - - - return CryptoJS.RIPEMD160; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/sha1.js b/node_modules/crypto-js/sha1.js deleted file mode 100644 index 66911496..00000000 --- a/node_modules/crypto-js/sha1.js +++ /dev/null @@ -1,150 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Reusable object - var W = []; - - /** - * SHA-1 hash algorithm. - */ - var SHA1 = C_algo.SHA1 = Hasher.extend({ - _doReset: function () { - this._hash = new WordArray.init([ - 0x67452301, 0xefcdab89, - 0x98badcfe, 0x10325476, - 0xc3d2e1f0 - ]); - }, - - _doProcessBlock: function (M, offset) { - // Shortcut - var H = this._hash.words; - - // Working variables - var a = H[0]; - var b = H[1]; - var c = H[2]; - var d = H[3]; - var e = H[4]; - - // Computation - for (var i = 0; i < 80; i++) { - if (i < 16) { - W[i] = M[offset + i] | 0; - } else { - var n = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]; - W[i] = (n << 1) | (n >>> 31); - } - - var t = ((a << 5) | (a >>> 27)) + e + W[i]; - if (i < 20) { - t += ((b & c) | (~b & d)) + 0x5a827999; - } else if (i < 40) { - t += (b ^ c ^ d) + 0x6ed9eba1; - } else if (i < 60) { - t += ((b & c) | (b & d) | (c & d)) - 0x70e44324; - } else /* if (i < 80) */ { - t += (b ^ c ^ d) - 0x359d3e2a; - } - - e = d; - d = c; - c = (b << 30) | (b >>> 2); - b = a; - a = t; - } - - // Intermediate hash value - H[0] = (H[0] + a) | 0; - H[1] = (H[1] + b) | 0; - H[2] = (H[2] + c) | 0; - H[3] = (H[3] + d) | 0; - H[4] = (H[4] + e) | 0; - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = Math.floor(nBitsTotal / 0x100000000); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = nBitsTotal; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Return final computed hash - return this._hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA1('message'); - * var hash = CryptoJS.SHA1(wordArray); - */ - C.SHA1 = Hasher._createHelper(SHA1); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA1(message, key); - */ - C.HmacSHA1 = Hasher._createHmacHelper(SHA1); - }()); - - - return CryptoJS.SHA1; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/sha224.js b/node_modules/crypto-js/sha224.js deleted file mode 100644 index d8ce9885..00000000 --- a/node_modules/crypto-js/sha224.js +++ /dev/null @@ -1,80 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./sha256")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./sha256"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_algo = C.algo; - var SHA256 = C_algo.SHA256; - - /** - * SHA-224 hash algorithm. - */ - var SHA224 = C_algo.SHA224 = SHA256.extend({ - _doReset: function () { - this._hash = new WordArray.init([ - 0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, - 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4 - ]); - }, - - _doFinalize: function () { - var hash = SHA256._doFinalize.call(this); - - hash.sigBytes -= 4; - - return hash; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA224('message'); - * var hash = CryptoJS.SHA224(wordArray); - */ - C.SHA224 = SHA256._createHelper(SHA224); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA224(message, key); - */ - C.HmacSHA224 = SHA256._createHmacHelper(SHA224); - }()); - - - return CryptoJS.SHA224; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/sha256.js b/node_modules/crypto-js/sha256.js deleted file mode 100644 index de2d7fca..00000000 --- a/node_modules/crypto-js/sha256.js +++ /dev/null @@ -1,199 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Initialization and round constants tables - var H = []; - var K = []; - - // Compute constants - (function () { - function isPrime(n) { - var sqrtN = Math.sqrt(n); - for (var factor = 2; factor <= sqrtN; factor++) { - if (!(n % factor)) { - return false; - } - } - - return true; - } - - function getFractionalBits(n) { - return ((n - (n | 0)) * 0x100000000) | 0; - } - - var n = 2; - var nPrime = 0; - while (nPrime < 64) { - if (isPrime(n)) { - if (nPrime < 8) { - H[nPrime] = getFractionalBits(Math.pow(n, 1 / 2)); - } - K[nPrime] = getFractionalBits(Math.pow(n, 1 / 3)); - - nPrime++; - } - - n++; - } - }()); - - // Reusable object - var W = []; - - /** - * SHA-256 hash algorithm. - */ - var SHA256 = C_algo.SHA256 = Hasher.extend({ - _doReset: function () { - this._hash = new WordArray.init(H.slice(0)); - }, - - _doProcessBlock: function (M, offset) { - // Shortcut - var H = this._hash.words; - - // Working variables - var a = H[0]; - var b = H[1]; - var c = H[2]; - var d = H[3]; - var e = H[4]; - var f = H[5]; - var g = H[6]; - var h = H[7]; - - // Computation - for (var i = 0; i < 64; i++) { - if (i < 16) { - W[i] = M[offset + i] | 0; - } else { - var gamma0x = W[i - 15]; - var gamma0 = ((gamma0x << 25) | (gamma0x >>> 7)) ^ - ((gamma0x << 14) | (gamma0x >>> 18)) ^ - (gamma0x >>> 3); - - var gamma1x = W[i - 2]; - var gamma1 = ((gamma1x << 15) | (gamma1x >>> 17)) ^ - ((gamma1x << 13) | (gamma1x >>> 19)) ^ - (gamma1x >>> 10); - - W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16]; - } - - var ch = (e & f) ^ (~e & g); - var maj = (a & b) ^ (a & c) ^ (b & c); - - var sigma0 = ((a << 30) | (a >>> 2)) ^ ((a << 19) | (a >>> 13)) ^ ((a << 10) | (a >>> 22)); - var sigma1 = ((e << 26) | (e >>> 6)) ^ ((e << 21) | (e >>> 11)) ^ ((e << 7) | (e >>> 25)); - - var t1 = h + sigma1 + ch + K[i] + W[i]; - var t2 = sigma0 + maj; - - h = g; - g = f; - f = e; - e = (d + t1) | 0; - d = c; - c = b; - b = a; - a = (t1 + t2) | 0; - } - - // Intermediate hash value - H[0] = (H[0] + a) | 0; - H[1] = (H[1] + b) | 0; - H[2] = (H[2] + c) | 0; - H[3] = (H[3] + d) | 0; - H[4] = (H[4] + e) | 0; - H[5] = (H[5] + f) | 0; - H[6] = (H[6] + g) | 0; - H[7] = (H[7] + h) | 0; - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = Math.floor(nBitsTotal / 0x100000000); - dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = nBitsTotal; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Return final computed hash - return this._hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA256('message'); - * var hash = CryptoJS.SHA256(wordArray); - */ - C.SHA256 = Hasher._createHelper(SHA256); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA256(message, key); - */ - C.HmacSHA256 = Hasher._createHmacHelper(SHA256); - }(Math)); - - - return CryptoJS.SHA256; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/sha3.js b/node_modules/crypto-js/sha3.js deleted file mode 100644 index 34ad86c9..00000000 --- a/node_modules/crypto-js/sha3.js +++ /dev/null @@ -1,326 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./x64-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./x64-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var C_algo = C.algo; - - // Constants tables - var RHO_OFFSETS = []; - var PI_INDEXES = []; - var ROUND_CONSTANTS = []; - - // Compute Constants - (function () { - // Compute rho offset constants - var x = 1, y = 0; - for (var t = 0; t < 24; t++) { - RHO_OFFSETS[x + 5 * y] = ((t + 1) * (t + 2) / 2) % 64; - - var newX = y % 5; - var newY = (2 * x + 3 * y) % 5; - x = newX; - y = newY; - } - - // Compute pi index constants - for (var x = 0; x < 5; x++) { - for (var y = 0; y < 5; y++) { - PI_INDEXES[x + 5 * y] = y + ((2 * x + 3 * y) % 5) * 5; - } - } - - // Compute round constants - var LFSR = 0x01; - for (var i = 0; i < 24; i++) { - var roundConstantMsw = 0; - var roundConstantLsw = 0; - - for (var j = 0; j < 7; j++) { - if (LFSR & 0x01) { - var bitPosition = (1 << j) - 1; - if (bitPosition < 32) { - roundConstantLsw ^= 1 << bitPosition; - } else /* if (bitPosition >= 32) */ { - roundConstantMsw ^= 1 << (bitPosition - 32); - } - } - - // Compute next LFSR - if (LFSR & 0x80) { - // Primitive polynomial over GF(2): x^8 + x^6 + x^5 + x^4 + 1 - LFSR = (LFSR << 1) ^ 0x71; - } else { - LFSR <<= 1; - } - } - - ROUND_CONSTANTS[i] = X64Word.create(roundConstantMsw, roundConstantLsw); - } - }()); - - // Reusable objects for temporary values - var T = []; - (function () { - for (var i = 0; i < 25; i++) { - T[i] = X64Word.create(); - } - }()); - - /** - * SHA-3 hash algorithm. - */ - var SHA3 = C_algo.SHA3 = Hasher.extend({ - /** - * Configuration options. - * - * @property {number} outputLength - * The desired number of bits in the output hash. - * Only values permitted are: 224, 256, 384, 512. - * Default: 512 - */ - cfg: Hasher.cfg.extend({ - outputLength: 512 - }), - - _doReset: function () { - var state = this._state = [] - for (var i = 0; i < 25; i++) { - state[i] = new X64Word.init(); - } - - this.blockSize = (1600 - 2 * this.cfg.outputLength) / 32; - }, - - _doProcessBlock: function (M, offset) { - // Shortcuts - var state = this._state; - var nBlockSizeLanes = this.blockSize / 2; - - // Absorb - for (var i = 0; i < nBlockSizeLanes; i++) { - // Shortcuts - var M2i = M[offset + 2 * i]; - var M2i1 = M[offset + 2 * i + 1]; - - // Swap endian - M2i = ( - (((M2i << 8) | (M2i >>> 24)) & 0x00ff00ff) | - (((M2i << 24) | (M2i >>> 8)) & 0xff00ff00) - ); - M2i1 = ( - (((M2i1 << 8) | (M2i1 >>> 24)) & 0x00ff00ff) | - (((M2i1 << 24) | (M2i1 >>> 8)) & 0xff00ff00) - ); - - // Absorb message into state - var lane = state[i]; - lane.high ^= M2i1; - lane.low ^= M2i; - } - - // Rounds - for (var round = 0; round < 24; round++) { - // Theta - for (var x = 0; x < 5; x++) { - // Mix column lanes - var tMsw = 0, tLsw = 0; - for (var y = 0; y < 5; y++) { - var lane = state[x + 5 * y]; - tMsw ^= lane.high; - tLsw ^= lane.low; - } - - // Temporary values - var Tx = T[x]; - Tx.high = tMsw; - Tx.low = tLsw; - } - for (var x = 0; x < 5; x++) { - // Shortcuts - var Tx4 = T[(x + 4) % 5]; - var Tx1 = T[(x + 1) % 5]; - var Tx1Msw = Tx1.high; - var Tx1Lsw = Tx1.low; - - // Mix surrounding columns - var tMsw = Tx4.high ^ ((Tx1Msw << 1) | (Tx1Lsw >>> 31)); - var tLsw = Tx4.low ^ ((Tx1Lsw << 1) | (Tx1Msw >>> 31)); - for (var y = 0; y < 5; y++) { - var lane = state[x + 5 * y]; - lane.high ^= tMsw; - lane.low ^= tLsw; - } - } - - // Rho Pi - for (var laneIndex = 1; laneIndex < 25; laneIndex++) { - var tMsw; - var tLsw; - - // Shortcuts - var lane = state[laneIndex]; - var laneMsw = lane.high; - var laneLsw = lane.low; - var rhoOffset = RHO_OFFSETS[laneIndex]; - - // Rotate lanes - if (rhoOffset < 32) { - tMsw = (laneMsw << rhoOffset) | (laneLsw >>> (32 - rhoOffset)); - tLsw = (laneLsw << rhoOffset) | (laneMsw >>> (32 - rhoOffset)); - } else /* if (rhoOffset >= 32) */ { - tMsw = (laneLsw << (rhoOffset - 32)) | (laneMsw >>> (64 - rhoOffset)); - tLsw = (laneMsw << (rhoOffset - 32)) | (laneLsw >>> (64 - rhoOffset)); - } - - // Transpose lanes - var TPiLane = T[PI_INDEXES[laneIndex]]; - TPiLane.high = tMsw; - TPiLane.low = tLsw; - } - - // Rho pi at x = y = 0 - var T0 = T[0]; - var state0 = state[0]; - T0.high = state0.high; - T0.low = state0.low; - - // Chi - for (var x = 0; x < 5; x++) { - for (var y = 0; y < 5; y++) { - // Shortcuts - var laneIndex = x + 5 * y; - var lane = state[laneIndex]; - var TLane = T[laneIndex]; - var Tx1Lane = T[((x + 1) % 5) + 5 * y]; - var Tx2Lane = T[((x + 2) % 5) + 5 * y]; - - // Mix rows - lane.high = TLane.high ^ (~Tx1Lane.high & Tx2Lane.high); - lane.low = TLane.low ^ (~Tx1Lane.low & Tx2Lane.low); - } - } - - // Iota - var lane = state[0]; - var roundConstant = ROUND_CONSTANTS[round]; - lane.high ^= roundConstant.high; - lane.low ^= roundConstant.low; - } - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - var blockSizeBits = this.blockSize * 32; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x1 << (24 - nBitsLeft % 32); - dataWords[((Math.ceil((nBitsLeft + 1) / blockSizeBits) * blockSizeBits) >>> 5) - 1] |= 0x80; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Shortcuts - var state = this._state; - var outputLengthBytes = this.cfg.outputLength / 8; - var outputLengthLanes = outputLengthBytes / 8; - - // Squeeze - var hashWords = []; - for (var i = 0; i < outputLengthLanes; i++) { - // Shortcuts - var lane = state[i]; - var laneMsw = lane.high; - var laneLsw = lane.low; - - // Swap endian - laneMsw = ( - (((laneMsw << 8) | (laneMsw >>> 24)) & 0x00ff00ff) | - (((laneMsw << 24) | (laneMsw >>> 8)) & 0xff00ff00) - ); - laneLsw = ( - (((laneLsw << 8) | (laneLsw >>> 24)) & 0x00ff00ff) | - (((laneLsw << 24) | (laneLsw >>> 8)) & 0xff00ff00) - ); - - // Squeeze state to retrieve hash - hashWords.push(laneLsw); - hashWords.push(laneMsw); - } - - // Return final computed hash - return new WordArray.init(hashWords, outputLengthBytes); - }, - - clone: function () { - var clone = Hasher.clone.call(this); - - var state = clone._state = this._state.slice(0); - for (var i = 0; i < 25; i++) { - state[i] = state[i].clone(); - } - - return clone; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA3('message'); - * var hash = CryptoJS.SHA3(wordArray); - */ - C.SHA3 = Hasher._createHelper(SHA3); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA3(message, key); - */ - C.HmacSHA3 = Hasher._createHmacHelper(SHA3); - }(Math)); - - - return CryptoJS.SHA3; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/sha384.js b/node_modules/crypto-js/sha384.js deleted file mode 100644 index a0b95bf6..00000000 --- a/node_modules/crypto-js/sha384.js +++ /dev/null @@ -1,83 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha512")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./x64-core", "./sha512"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var X64WordArray = C_x64.WordArray; - var C_algo = C.algo; - var SHA512 = C_algo.SHA512; - - /** - * SHA-384 hash algorithm. - */ - var SHA384 = C_algo.SHA384 = SHA512.extend({ - _doReset: function () { - this._hash = new X64WordArray.init([ - new X64Word.init(0xcbbb9d5d, 0xc1059ed8), new X64Word.init(0x629a292a, 0x367cd507), - new X64Word.init(0x9159015a, 0x3070dd17), new X64Word.init(0x152fecd8, 0xf70e5939), - new X64Word.init(0x67332667, 0xffc00b31), new X64Word.init(0x8eb44a87, 0x68581511), - new X64Word.init(0xdb0c2e0d, 0x64f98fa7), new X64Word.init(0x47b5481d, 0xbefa4fa4) - ]); - }, - - _doFinalize: function () { - var hash = SHA512._doFinalize.call(this); - - hash.sigBytes -= 16; - - return hash; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA384('message'); - * var hash = CryptoJS.SHA384(wordArray); - */ - C.SHA384 = SHA512._createHelper(SHA384); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA384(message, key); - */ - C.HmacSHA384 = SHA512._createHmacHelper(SHA384); - }()); - - - return CryptoJS.SHA384; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/sha512.js b/node_modules/crypto-js/sha512.js deleted file mode 100644 index d274ab0d..00000000 --- a/node_modules/crypto-js/sha512.js +++ /dev/null @@ -1,326 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./x64-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./x64-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Hasher = C_lib.Hasher; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var X64WordArray = C_x64.WordArray; - var C_algo = C.algo; - - function X64Word_create() { - return X64Word.create.apply(X64Word, arguments); - } - - // Constants - var K = [ - X64Word_create(0x428a2f98, 0xd728ae22), X64Word_create(0x71374491, 0x23ef65cd), - X64Word_create(0xb5c0fbcf, 0xec4d3b2f), X64Word_create(0xe9b5dba5, 0x8189dbbc), - X64Word_create(0x3956c25b, 0xf348b538), X64Word_create(0x59f111f1, 0xb605d019), - X64Word_create(0x923f82a4, 0xaf194f9b), X64Word_create(0xab1c5ed5, 0xda6d8118), - X64Word_create(0xd807aa98, 0xa3030242), X64Word_create(0x12835b01, 0x45706fbe), - X64Word_create(0x243185be, 0x4ee4b28c), X64Word_create(0x550c7dc3, 0xd5ffb4e2), - X64Word_create(0x72be5d74, 0xf27b896f), X64Word_create(0x80deb1fe, 0x3b1696b1), - X64Word_create(0x9bdc06a7, 0x25c71235), X64Word_create(0xc19bf174, 0xcf692694), - X64Word_create(0xe49b69c1, 0x9ef14ad2), X64Word_create(0xefbe4786, 0x384f25e3), - X64Word_create(0x0fc19dc6, 0x8b8cd5b5), X64Word_create(0x240ca1cc, 0x77ac9c65), - X64Word_create(0x2de92c6f, 0x592b0275), X64Word_create(0x4a7484aa, 0x6ea6e483), - X64Word_create(0x5cb0a9dc, 0xbd41fbd4), X64Word_create(0x76f988da, 0x831153b5), - X64Word_create(0x983e5152, 0xee66dfab), X64Word_create(0xa831c66d, 0x2db43210), - X64Word_create(0xb00327c8, 0x98fb213f), X64Word_create(0xbf597fc7, 0xbeef0ee4), - X64Word_create(0xc6e00bf3, 0x3da88fc2), X64Word_create(0xd5a79147, 0x930aa725), - X64Word_create(0x06ca6351, 0xe003826f), X64Word_create(0x14292967, 0x0a0e6e70), - X64Word_create(0x27b70a85, 0x46d22ffc), X64Word_create(0x2e1b2138, 0x5c26c926), - X64Word_create(0x4d2c6dfc, 0x5ac42aed), X64Word_create(0x53380d13, 0x9d95b3df), - X64Word_create(0x650a7354, 0x8baf63de), X64Word_create(0x766a0abb, 0x3c77b2a8), - X64Word_create(0x81c2c92e, 0x47edaee6), X64Word_create(0x92722c85, 0x1482353b), - X64Word_create(0xa2bfe8a1, 0x4cf10364), X64Word_create(0xa81a664b, 0xbc423001), - X64Word_create(0xc24b8b70, 0xd0f89791), X64Word_create(0xc76c51a3, 0x0654be30), - X64Word_create(0xd192e819, 0xd6ef5218), X64Word_create(0xd6990624, 0x5565a910), - X64Word_create(0xf40e3585, 0x5771202a), X64Word_create(0x106aa070, 0x32bbd1b8), - X64Word_create(0x19a4c116, 0xb8d2d0c8), X64Word_create(0x1e376c08, 0x5141ab53), - X64Word_create(0x2748774c, 0xdf8eeb99), X64Word_create(0x34b0bcb5, 0xe19b48a8), - X64Word_create(0x391c0cb3, 0xc5c95a63), X64Word_create(0x4ed8aa4a, 0xe3418acb), - X64Word_create(0x5b9cca4f, 0x7763e373), X64Word_create(0x682e6ff3, 0xd6b2b8a3), - X64Word_create(0x748f82ee, 0x5defb2fc), X64Word_create(0x78a5636f, 0x43172f60), - X64Word_create(0x84c87814, 0xa1f0ab72), X64Word_create(0x8cc70208, 0x1a6439ec), - X64Word_create(0x90befffa, 0x23631e28), X64Word_create(0xa4506ceb, 0xde82bde9), - X64Word_create(0xbef9a3f7, 0xb2c67915), X64Word_create(0xc67178f2, 0xe372532b), - X64Word_create(0xca273ece, 0xea26619c), X64Word_create(0xd186b8c7, 0x21c0c207), - X64Word_create(0xeada7dd6, 0xcde0eb1e), X64Word_create(0xf57d4f7f, 0xee6ed178), - X64Word_create(0x06f067aa, 0x72176fba), X64Word_create(0x0a637dc5, 0xa2c898a6), - X64Word_create(0x113f9804, 0xbef90dae), X64Word_create(0x1b710b35, 0x131c471b), - X64Word_create(0x28db77f5, 0x23047d84), X64Word_create(0x32caab7b, 0x40c72493), - X64Word_create(0x3c9ebe0a, 0x15c9bebc), X64Word_create(0x431d67c4, 0x9c100d4c), - X64Word_create(0x4cc5d4be, 0xcb3e42b6), X64Word_create(0x597f299c, 0xfc657e2a), - X64Word_create(0x5fcb6fab, 0x3ad6faec), X64Word_create(0x6c44198c, 0x4a475817) - ]; - - // Reusable objects - var W = []; - (function () { - for (var i = 0; i < 80; i++) { - W[i] = X64Word_create(); - } - }()); - - /** - * SHA-512 hash algorithm. - */ - var SHA512 = C_algo.SHA512 = Hasher.extend({ - _doReset: function () { - this._hash = new X64WordArray.init([ - new X64Word.init(0x6a09e667, 0xf3bcc908), new X64Word.init(0xbb67ae85, 0x84caa73b), - new X64Word.init(0x3c6ef372, 0xfe94f82b), new X64Word.init(0xa54ff53a, 0x5f1d36f1), - new X64Word.init(0x510e527f, 0xade682d1), new X64Word.init(0x9b05688c, 0x2b3e6c1f), - new X64Word.init(0x1f83d9ab, 0xfb41bd6b), new X64Word.init(0x5be0cd19, 0x137e2179) - ]); - }, - - _doProcessBlock: function (M, offset) { - // Shortcuts - var H = this._hash.words; - - var H0 = H[0]; - var H1 = H[1]; - var H2 = H[2]; - var H3 = H[3]; - var H4 = H[4]; - var H5 = H[5]; - var H6 = H[6]; - var H7 = H[7]; - - var H0h = H0.high; - var H0l = H0.low; - var H1h = H1.high; - var H1l = H1.low; - var H2h = H2.high; - var H2l = H2.low; - var H3h = H3.high; - var H3l = H3.low; - var H4h = H4.high; - var H4l = H4.low; - var H5h = H5.high; - var H5l = H5.low; - var H6h = H6.high; - var H6l = H6.low; - var H7h = H7.high; - var H7l = H7.low; - - // Working variables - var ah = H0h; - var al = H0l; - var bh = H1h; - var bl = H1l; - var ch = H2h; - var cl = H2l; - var dh = H3h; - var dl = H3l; - var eh = H4h; - var el = H4l; - var fh = H5h; - var fl = H5l; - var gh = H6h; - var gl = H6l; - var hh = H7h; - var hl = H7l; - - // Rounds - for (var i = 0; i < 80; i++) { - var Wil; - var Wih; - - // Shortcut - var Wi = W[i]; - - // Extend message - if (i < 16) { - Wih = Wi.high = M[offset + i * 2] | 0; - Wil = Wi.low = M[offset + i * 2 + 1] | 0; - } else { - // Gamma0 - var gamma0x = W[i - 15]; - var gamma0xh = gamma0x.high; - var gamma0xl = gamma0x.low; - var gamma0h = ((gamma0xh >>> 1) | (gamma0xl << 31)) ^ ((gamma0xh >>> 8) | (gamma0xl << 24)) ^ (gamma0xh >>> 7); - var gamma0l = ((gamma0xl >>> 1) | (gamma0xh << 31)) ^ ((gamma0xl >>> 8) | (gamma0xh << 24)) ^ ((gamma0xl >>> 7) | (gamma0xh << 25)); - - // Gamma1 - var gamma1x = W[i - 2]; - var gamma1xh = gamma1x.high; - var gamma1xl = gamma1x.low; - var gamma1h = ((gamma1xh >>> 19) | (gamma1xl << 13)) ^ ((gamma1xh << 3) | (gamma1xl >>> 29)) ^ (gamma1xh >>> 6); - var gamma1l = ((gamma1xl >>> 19) | (gamma1xh << 13)) ^ ((gamma1xl << 3) | (gamma1xh >>> 29)) ^ ((gamma1xl >>> 6) | (gamma1xh << 26)); - - // W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16] - var Wi7 = W[i - 7]; - var Wi7h = Wi7.high; - var Wi7l = Wi7.low; - - var Wi16 = W[i - 16]; - var Wi16h = Wi16.high; - var Wi16l = Wi16.low; - - Wil = gamma0l + Wi7l; - Wih = gamma0h + Wi7h + ((Wil >>> 0) < (gamma0l >>> 0) ? 1 : 0); - Wil = Wil + gamma1l; - Wih = Wih + gamma1h + ((Wil >>> 0) < (gamma1l >>> 0) ? 1 : 0); - Wil = Wil + Wi16l; - Wih = Wih + Wi16h + ((Wil >>> 0) < (Wi16l >>> 0) ? 1 : 0); - - Wi.high = Wih; - Wi.low = Wil; - } - - var chh = (eh & fh) ^ (~eh & gh); - var chl = (el & fl) ^ (~el & gl); - var majh = (ah & bh) ^ (ah & ch) ^ (bh & ch); - var majl = (al & bl) ^ (al & cl) ^ (bl & cl); - - var sigma0h = ((ah >>> 28) | (al << 4)) ^ ((ah << 30) | (al >>> 2)) ^ ((ah << 25) | (al >>> 7)); - var sigma0l = ((al >>> 28) | (ah << 4)) ^ ((al << 30) | (ah >>> 2)) ^ ((al << 25) | (ah >>> 7)); - var sigma1h = ((eh >>> 14) | (el << 18)) ^ ((eh >>> 18) | (el << 14)) ^ ((eh << 23) | (el >>> 9)); - var sigma1l = ((el >>> 14) | (eh << 18)) ^ ((el >>> 18) | (eh << 14)) ^ ((el << 23) | (eh >>> 9)); - - // t1 = h + sigma1 + ch + K[i] + W[i] - var Ki = K[i]; - var Kih = Ki.high; - var Kil = Ki.low; - - var t1l = hl + sigma1l; - var t1h = hh + sigma1h + ((t1l >>> 0) < (hl >>> 0) ? 1 : 0); - var t1l = t1l + chl; - var t1h = t1h + chh + ((t1l >>> 0) < (chl >>> 0) ? 1 : 0); - var t1l = t1l + Kil; - var t1h = t1h + Kih + ((t1l >>> 0) < (Kil >>> 0) ? 1 : 0); - var t1l = t1l + Wil; - var t1h = t1h + Wih + ((t1l >>> 0) < (Wil >>> 0) ? 1 : 0); - - // t2 = sigma0 + maj - var t2l = sigma0l + majl; - var t2h = sigma0h + majh + ((t2l >>> 0) < (sigma0l >>> 0) ? 1 : 0); - - // Update working variables - hh = gh; - hl = gl; - gh = fh; - gl = fl; - fh = eh; - fl = el; - el = (dl + t1l) | 0; - eh = (dh + t1h + ((el >>> 0) < (dl >>> 0) ? 1 : 0)) | 0; - dh = ch; - dl = cl; - ch = bh; - cl = bl; - bh = ah; - bl = al; - al = (t1l + t2l) | 0; - ah = (t1h + t2h + ((al >>> 0) < (t1l >>> 0) ? 1 : 0)) | 0; - } - - // Intermediate hash value - H0l = H0.low = (H0l + al); - H0.high = (H0h + ah + ((H0l >>> 0) < (al >>> 0) ? 1 : 0)); - H1l = H1.low = (H1l + bl); - H1.high = (H1h + bh + ((H1l >>> 0) < (bl >>> 0) ? 1 : 0)); - H2l = H2.low = (H2l + cl); - H2.high = (H2h + ch + ((H2l >>> 0) < (cl >>> 0) ? 1 : 0)); - H3l = H3.low = (H3l + dl); - H3.high = (H3h + dh + ((H3l >>> 0) < (dl >>> 0) ? 1 : 0)); - H4l = H4.low = (H4l + el); - H4.high = (H4h + eh + ((H4l >>> 0) < (el >>> 0) ? 1 : 0)); - H5l = H5.low = (H5l + fl); - H5.high = (H5h + fh + ((H5l >>> 0) < (fl >>> 0) ? 1 : 0)); - H6l = H6.low = (H6l + gl); - H6.high = (H6h + gh + ((H6l >>> 0) < (gl >>> 0) ? 1 : 0)); - H7l = H7.low = (H7l + hl); - H7.high = (H7h + hh + ((H7l >>> 0) < (hl >>> 0) ? 1 : 0)); - }, - - _doFinalize: function () { - // Shortcuts - var data = this._data; - var dataWords = data.words; - - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32); - dataWords[(((nBitsLeft + 128) >>> 10) << 5) + 30] = Math.floor(nBitsTotal / 0x100000000); - dataWords[(((nBitsLeft + 128) >>> 10) << 5) + 31] = nBitsTotal; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Convert hash to 32-bit word array before returning - var hash = this._hash.toX32(); - - // Return final computed hash - return hash; - }, - - clone: function () { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - - return clone; - }, - - blockSize: 1024/32 - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA512('message'); - * var hash = CryptoJS.SHA512(wordArray); - */ - C.SHA512 = Hasher._createHelper(SHA512); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA512(message, key); - */ - C.HmacSHA512 = Hasher._createHmacHelper(SHA512); - }()); - - - return CryptoJS.SHA512; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/tripledes.js b/node_modules/crypto-js/tripledes.js deleted file mode 100644 index 1a924772..00000000 --- a/node_modules/crypto-js/tripledes.js +++ /dev/null @@ -1,779 +0,0 @@ -;(function (root, factory, undef) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core", "./enc-base64", "./md5", "./evpkdf", "./cipher-core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var BlockCipher = C_lib.BlockCipher; - var C_algo = C.algo; - - // Permuted Choice 1 constants - var PC1 = [ - 57, 49, 41, 33, 25, 17, 9, 1, - 58, 50, 42, 34, 26, 18, 10, 2, - 59, 51, 43, 35, 27, 19, 11, 3, - 60, 52, 44, 36, 63, 55, 47, 39, - 31, 23, 15, 7, 62, 54, 46, 38, - 30, 22, 14, 6, 61, 53, 45, 37, - 29, 21, 13, 5, 28, 20, 12, 4 - ]; - - // Permuted Choice 2 constants - var PC2 = [ - 14, 17, 11, 24, 1, 5, - 3, 28, 15, 6, 21, 10, - 23, 19, 12, 4, 26, 8, - 16, 7, 27, 20, 13, 2, - 41, 52, 31, 37, 47, 55, - 30, 40, 51, 45, 33, 48, - 44, 49, 39, 56, 34, 53, - 46, 42, 50, 36, 29, 32 - ]; - - // Cumulative bit shift constants - var BIT_SHIFTS = [1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28]; - - // SBOXes and round permutation constants - var SBOX_P = [ - { - 0x0: 0x808200, - 0x10000000: 0x8000, - 0x20000000: 0x808002, - 0x30000000: 0x2, - 0x40000000: 0x200, - 0x50000000: 0x808202, - 0x60000000: 0x800202, - 0x70000000: 0x800000, - 0x80000000: 0x202, - 0x90000000: 0x800200, - 0xa0000000: 0x8200, - 0xb0000000: 0x808000, - 0xc0000000: 0x8002, - 0xd0000000: 0x800002, - 0xe0000000: 0x0, - 0xf0000000: 0x8202, - 0x8000000: 0x0, - 0x18000000: 0x808202, - 0x28000000: 0x8202, - 0x38000000: 0x8000, - 0x48000000: 0x808200, - 0x58000000: 0x200, - 0x68000000: 0x808002, - 0x78000000: 0x2, - 0x88000000: 0x800200, - 0x98000000: 0x8200, - 0xa8000000: 0x808000, - 0xb8000000: 0x800202, - 0xc8000000: 0x800002, - 0xd8000000: 0x8002, - 0xe8000000: 0x202, - 0xf8000000: 0x800000, - 0x1: 0x8000, - 0x10000001: 0x2, - 0x20000001: 0x808200, - 0x30000001: 0x800000, - 0x40000001: 0x808002, - 0x50000001: 0x8200, - 0x60000001: 0x200, - 0x70000001: 0x800202, - 0x80000001: 0x808202, - 0x90000001: 0x808000, - 0xa0000001: 0x800002, - 0xb0000001: 0x8202, - 0xc0000001: 0x202, - 0xd0000001: 0x800200, - 0xe0000001: 0x8002, - 0xf0000001: 0x0, - 0x8000001: 0x808202, - 0x18000001: 0x808000, - 0x28000001: 0x800000, - 0x38000001: 0x200, - 0x48000001: 0x8000, - 0x58000001: 0x800002, - 0x68000001: 0x2, - 0x78000001: 0x8202, - 0x88000001: 0x8002, - 0x98000001: 0x800202, - 0xa8000001: 0x202, - 0xb8000001: 0x808200, - 0xc8000001: 0x800200, - 0xd8000001: 0x0, - 0xe8000001: 0x8200, - 0xf8000001: 0x808002 - }, - { - 0x0: 0x40084010, - 0x1000000: 0x4000, - 0x2000000: 0x80000, - 0x3000000: 0x40080010, - 0x4000000: 0x40000010, - 0x5000000: 0x40084000, - 0x6000000: 0x40004000, - 0x7000000: 0x10, - 0x8000000: 0x84000, - 0x9000000: 0x40004010, - 0xa000000: 0x40000000, - 0xb000000: 0x84010, - 0xc000000: 0x80010, - 0xd000000: 0x0, - 0xe000000: 0x4010, - 0xf000000: 0x40080000, - 0x800000: 0x40004000, - 0x1800000: 0x84010, - 0x2800000: 0x10, - 0x3800000: 0x40004010, - 0x4800000: 0x40084010, - 0x5800000: 0x40000000, - 0x6800000: 0x80000, - 0x7800000: 0x40080010, - 0x8800000: 0x80010, - 0x9800000: 0x0, - 0xa800000: 0x4000, - 0xb800000: 0x40080000, - 0xc800000: 0x40000010, - 0xd800000: 0x84000, - 0xe800000: 0x40084000, - 0xf800000: 0x4010, - 0x10000000: 0x0, - 0x11000000: 0x40080010, - 0x12000000: 0x40004010, - 0x13000000: 0x40084000, - 0x14000000: 0x40080000, - 0x15000000: 0x10, - 0x16000000: 0x84010, - 0x17000000: 0x4000, - 0x18000000: 0x4010, - 0x19000000: 0x80000, - 0x1a000000: 0x80010, - 0x1b000000: 0x40000010, - 0x1c000000: 0x84000, - 0x1d000000: 0x40004000, - 0x1e000000: 0x40000000, - 0x1f000000: 0x40084010, - 0x10800000: 0x84010, - 0x11800000: 0x80000, - 0x12800000: 0x40080000, - 0x13800000: 0x4000, - 0x14800000: 0x40004000, - 0x15800000: 0x40084010, - 0x16800000: 0x10, - 0x17800000: 0x40000000, - 0x18800000: 0x40084000, - 0x19800000: 0x40000010, - 0x1a800000: 0x40004010, - 0x1b800000: 0x80010, - 0x1c800000: 0x0, - 0x1d800000: 0x4010, - 0x1e800000: 0x40080010, - 0x1f800000: 0x84000 - }, - { - 0x0: 0x104, - 0x100000: 0x0, - 0x200000: 0x4000100, - 0x300000: 0x10104, - 0x400000: 0x10004, - 0x500000: 0x4000004, - 0x600000: 0x4010104, - 0x700000: 0x4010000, - 0x800000: 0x4000000, - 0x900000: 0x4010100, - 0xa00000: 0x10100, - 0xb00000: 0x4010004, - 0xc00000: 0x4000104, - 0xd00000: 0x10000, - 0xe00000: 0x4, - 0xf00000: 0x100, - 0x80000: 0x4010100, - 0x180000: 0x4010004, - 0x280000: 0x0, - 0x380000: 0x4000100, - 0x480000: 0x4000004, - 0x580000: 0x10000, - 0x680000: 0x10004, - 0x780000: 0x104, - 0x880000: 0x4, - 0x980000: 0x100, - 0xa80000: 0x4010000, - 0xb80000: 0x10104, - 0xc80000: 0x10100, - 0xd80000: 0x4000104, - 0xe80000: 0x4010104, - 0xf80000: 0x4000000, - 0x1000000: 0x4010100, - 0x1100000: 0x10004, - 0x1200000: 0x10000, - 0x1300000: 0x4000100, - 0x1400000: 0x100, - 0x1500000: 0x4010104, - 0x1600000: 0x4000004, - 0x1700000: 0x0, - 0x1800000: 0x4000104, - 0x1900000: 0x4000000, - 0x1a00000: 0x4, - 0x1b00000: 0x10100, - 0x1c00000: 0x4010000, - 0x1d00000: 0x104, - 0x1e00000: 0x10104, - 0x1f00000: 0x4010004, - 0x1080000: 0x4000000, - 0x1180000: 0x104, - 0x1280000: 0x4010100, - 0x1380000: 0x0, - 0x1480000: 0x10004, - 0x1580000: 0x4000100, - 0x1680000: 0x100, - 0x1780000: 0x4010004, - 0x1880000: 0x10000, - 0x1980000: 0x4010104, - 0x1a80000: 0x10104, - 0x1b80000: 0x4000004, - 0x1c80000: 0x4000104, - 0x1d80000: 0x4010000, - 0x1e80000: 0x4, - 0x1f80000: 0x10100 - }, - { - 0x0: 0x80401000, - 0x10000: 0x80001040, - 0x20000: 0x401040, - 0x30000: 0x80400000, - 0x40000: 0x0, - 0x50000: 0x401000, - 0x60000: 0x80000040, - 0x70000: 0x400040, - 0x80000: 0x80000000, - 0x90000: 0x400000, - 0xa0000: 0x40, - 0xb0000: 0x80001000, - 0xc0000: 0x80400040, - 0xd0000: 0x1040, - 0xe0000: 0x1000, - 0xf0000: 0x80401040, - 0x8000: 0x80001040, - 0x18000: 0x40, - 0x28000: 0x80400040, - 0x38000: 0x80001000, - 0x48000: 0x401000, - 0x58000: 0x80401040, - 0x68000: 0x0, - 0x78000: 0x80400000, - 0x88000: 0x1000, - 0x98000: 0x80401000, - 0xa8000: 0x400000, - 0xb8000: 0x1040, - 0xc8000: 0x80000000, - 0xd8000: 0x400040, - 0xe8000: 0x401040, - 0xf8000: 0x80000040, - 0x100000: 0x400040, - 0x110000: 0x401000, - 0x120000: 0x80000040, - 0x130000: 0x0, - 0x140000: 0x1040, - 0x150000: 0x80400040, - 0x160000: 0x80401000, - 0x170000: 0x80001040, - 0x180000: 0x80401040, - 0x190000: 0x80000000, - 0x1a0000: 0x80400000, - 0x1b0000: 0x401040, - 0x1c0000: 0x80001000, - 0x1d0000: 0x400000, - 0x1e0000: 0x40, - 0x1f0000: 0x1000, - 0x108000: 0x80400000, - 0x118000: 0x80401040, - 0x128000: 0x0, - 0x138000: 0x401000, - 0x148000: 0x400040, - 0x158000: 0x80000000, - 0x168000: 0x80001040, - 0x178000: 0x40, - 0x188000: 0x80000040, - 0x198000: 0x1000, - 0x1a8000: 0x80001000, - 0x1b8000: 0x80400040, - 0x1c8000: 0x1040, - 0x1d8000: 0x80401000, - 0x1e8000: 0x400000, - 0x1f8000: 0x401040 - }, - { - 0x0: 0x80, - 0x1000: 0x1040000, - 0x2000: 0x40000, - 0x3000: 0x20000000, - 0x4000: 0x20040080, - 0x5000: 0x1000080, - 0x6000: 0x21000080, - 0x7000: 0x40080, - 0x8000: 0x1000000, - 0x9000: 0x20040000, - 0xa000: 0x20000080, - 0xb000: 0x21040080, - 0xc000: 0x21040000, - 0xd000: 0x0, - 0xe000: 0x1040080, - 0xf000: 0x21000000, - 0x800: 0x1040080, - 0x1800: 0x21000080, - 0x2800: 0x80, - 0x3800: 0x1040000, - 0x4800: 0x40000, - 0x5800: 0x20040080, - 0x6800: 0x21040000, - 0x7800: 0x20000000, - 0x8800: 0x20040000, - 0x9800: 0x0, - 0xa800: 0x21040080, - 0xb800: 0x1000080, - 0xc800: 0x20000080, - 0xd800: 0x21000000, - 0xe800: 0x1000000, - 0xf800: 0x40080, - 0x10000: 0x40000, - 0x11000: 0x80, - 0x12000: 0x20000000, - 0x13000: 0x21000080, - 0x14000: 0x1000080, - 0x15000: 0x21040000, - 0x16000: 0x20040080, - 0x17000: 0x1000000, - 0x18000: 0x21040080, - 0x19000: 0x21000000, - 0x1a000: 0x1040000, - 0x1b000: 0x20040000, - 0x1c000: 0x40080, - 0x1d000: 0x20000080, - 0x1e000: 0x0, - 0x1f000: 0x1040080, - 0x10800: 0x21000080, - 0x11800: 0x1000000, - 0x12800: 0x1040000, - 0x13800: 0x20040080, - 0x14800: 0x20000000, - 0x15800: 0x1040080, - 0x16800: 0x80, - 0x17800: 0x21040000, - 0x18800: 0x40080, - 0x19800: 0x21040080, - 0x1a800: 0x0, - 0x1b800: 0x21000000, - 0x1c800: 0x1000080, - 0x1d800: 0x40000, - 0x1e800: 0x20040000, - 0x1f800: 0x20000080 - }, - { - 0x0: 0x10000008, - 0x100: 0x2000, - 0x200: 0x10200000, - 0x300: 0x10202008, - 0x400: 0x10002000, - 0x500: 0x200000, - 0x600: 0x200008, - 0x700: 0x10000000, - 0x800: 0x0, - 0x900: 0x10002008, - 0xa00: 0x202000, - 0xb00: 0x8, - 0xc00: 0x10200008, - 0xd00: 0x202008, - 0xe00: 0x2008, - 0xf00: 0x10202000, - 0x80: 0x10200000, - 0x180: 0x10202008, - 0x280: 0x8, - 0x380: 0x200000, - 0x480: 0x202008, - 0x580: 0x10000008, - 0x680: 0x10002000, - 0x780: 0x2008, - 0x880: 0x200008, - 0x980: 0x2000, - 0xa80: 0x10002008, - 0xb80: 0x10200008, - 0xc80: 0x0, - 0xd80: 0x10202000, - 0xe80: 0x202000, - 0xf80: 0x10000000, - 0x1000: 0x10002000, - 0x1100: 0x10200008, - 0x1200: 0x10202008, - 0x1300: 0x2008, - 0x1400: 0x200000, - 0x1500: 0x10000000, - 0x1600: 0x10000008, - 0x1700: 0x202000, - 0x1800: 0x202008, - 0x1900: 0x0, - 0x1a00: 0x8, - 0x1b00: 0x10200000, - 0x1c00: 0x2000, - 0x1d00: 0x10002008, - 0x1e00: 0x10202000, - 0x1f00: 0x200008, - 0x1080: 0x8, - 0x1180: 0x202000, - 0x1280: 0x200000, - 0x1380: 0x10000008, - 0x1480: 0x10002000, - 0x1580: 0x2008, - 0x1680: 0x10202008, - 0x1780: 0x10200000, - 0x1880: 0x10202000, - 0x1980: 0x10200008, - 0x1a80: 0x2000, - 0x1b80: 0x202008, - 0x1c80: 0x200008, - 0x1d80: 0x0, - 0x1e80: 0x10000000, - 0x1f80: 0x10002008 - }, - { - 0x0: 0x100000, - 0x10: 0x2000401, - 0x20: 0x400, - 0x30: 0x100401, - 0x40: 0x2100401, - 0x50: 0x0, - 0x60: 0x1, - 0x70: 0x2100001, - 0x80: 0x2000400, - 0x90: 0x100001, - 0xa0: 0x2000001, - 0xb0: 0x2100400, - 0xc0: 0x2100000, - 0xd0: 0x401, - 0xe0: 0x100400, - 0xf0: 0x2000000, - 0x8: 0x2100001, - 0x18: 0x0, - 0x28: 0x2000401, - 0x38: 0x2100400, - 0x48: 0x100000, - 0x58: 0x2000001, - 0x68: 0x2000000, - 0x78: 0x401, - 0x88: 0x100401, - 0x98: 0x2000400, - 0xa8: 0x2100000, - 0xb8: 0x100001, - 0xc8: 0x400, - 0xd8: 0x2100401, - 0xe8: 0x1, - 0xf8: 0x100400, - 0x100: 0x2000000, - 0x110: 0x100000, - 0x120: 0x2000401, - 0x130: 0x2100001, - 0x140: 0x100001, - 0x150: 0x2000400, - 0x160: 0x2100400, - 0x170: 0x100401, - 0x180: 0x401, - 0x190: 0x2100401, - 0x1a0: 0x100400, - 0x1b0: 0x1, - 0x1c0: 0x0, - 0x1d0: 0x2100000, - 0x1e0: 0x2000001, - 0x1f0: 0x400, - 0x108: 0x100400, - 0x118: 0x2000401, - 0x128: 0x2100001, - 0x138: 0x1, - 0x148: 0x2000000, - 0x158: 0x100000, - 0x168: 0x401, - 0x178: 0x2100400, - 0x188: 0x2000001, - 0x198: 0x2100000, - 0x1a8: 0x0, - 0x1b8: 0x2100401, - 0x1c8: 0x100401, - 0x1d8: 0x400, - 0x1e8: 0x2000400, - 0x1f8: 0x100001 - }, - { - 0x0: 0x8000820, - 0x1: 0x20000, - 0x2: 0x8000000, - 0x3: 0x20, - 0x4: 0x20020, - 0x5: 0x8020820, - 0x6: 0x8020800, - 0x7: 0x800, - 0x8: 0x8020000, - 0x9: 0x8000800, - 0xa: 0x20800, - 0xb: 0x8020020, - 0xc: 0x820, - 0xd: 0x0, - 0xe: 0x8000020, - 0xf: 0x20820, - 0x80000000: 0x800, - 0x80000001: 0x8020820, - 0x80000002: 0x8000820, - 0x80000003: 0x8000000, - 0x80000004: 0x8020000, - 0x80000005: 0x20800, - 0x80000006: 0x20820, - 0x80000007: 0x20, - 0x80000008: 0x8000020, - 0x80000009: 0x820, - 0x8000000a: 0x20020, - 0x8000000b: 0x8020800, - 0x8000000c: 0x0, - 0x8000000d: 0x8020020, - 0x8000000e: 0x8000800, - 0x8000000f: 0x20000, - 0x10: 0x20820, - 0x11: 0x8020800, - 0x12: 0x20, - 0x13: 0x800, - 0x14: 0x8000800, - 0x15: 0x8000020, - 0x16: 0x8020020, - 0x17: 0x20000, - 0x18: 0x0, - 0x19: 0x20020, - 0x1a: 0x8020000, - 0x1b: 0x8000820, - 0x1c: 0x8020820, - 0x1d: 0x20800, - 0x1e: 0x820, - 0x1f: 0x8000000, - 0x80000010: 0x20000, - 0x80000011: 0x800, - 0x80000012: 0x8020020, - 0x80000013: 0x20820, - 0x80000014: 0x20, - 0x80000015: 0x8020000, - 0x80000016: 0x8000000, - 0x80000017: 0x8000820, - 0x80000018: 0x8020820, - 0x80000019: 0x8000020, - 0x8000001a: 0x8000800, - 0x8000001b: 0x0, - 0x8000001c: 0x20800, - 0x8000001d: 0x820, - 0x8000001e: 0x20020, - 0x8000001f: 0x8020800 - } - ]; - - // Masks that select the SBOX input - var SBOX_MASK = [ - 0xf8000001, 0x1f800000, 0x01f80000, 0x001f8000, - 0x0001f800, 0x00001f80, 0x000001f8, 0x8000001f - ]; - - /** - * DES block cipher algorithm. - */ - var DES = C_algo.DES = BlockCipher.extend({ - _doReset: function () { - // Shortcuts - var key = this._key; - var keyWords = key.words; - - // Select 56 bits according to PC1 - var keyBits = []; - for (var i = 0; i < 56; i++) { - var keyBitPos = PC1[i] - 1; - keyBits[i] = (keyWords[keyBitPos >>> 5] >>> (31 - keyBitPos % 32)) & 1; - } - - // Assemble 16 subkeys - var subKeys = this._subKeys = []; - for (var nSubKey = 0; nSubKey < 16; nSubKey++) { - // Create subkey - var subKey = subKeys[nSubKey] = []; - - // Shortcut - var bitShift = BIT_SHIFTS[nSubKey]; - - // Select 48 bits according to PC2 - for (var i = 0; i < 24; i++) { - // Select from the left 28 key bits - subKey[(i / 6) | 0] |= keyBits[((PC2[i] - 1) + bitShift) % 28] << (31 - i % 6); - - // Select from the right 28 key bits - subKey[4 + ((i / 6) | 0)] |= keyBits[28 + (((PC2[i + 24] - 1) + bitShift) % 28)] << (31 - i % 6); - } - - // Since each subkey is applied to an expanded 32-bit input, - // the subkey can be broken into 8 values scaled to 32-bits, - // which allows the key to be used without expansion - subKey[0] = (subKey[0] << 1) | (subKey[0] >>> 31); - for (var i = 1; i < 7; i++) { - subKey[i] = subKey[i] >>> ((i - 1) * 4 + 3); - } - subKey[7] = (subKey[7] << 5) | (subKey[7] >>> 27); - } - - // Compute inverse subkeys - var invSubKeys = this._invSubKeys = []; - for (var i = 0; i < 16; i++) { - invSubKeys[i] = subKeys[15 - i]; - } - }, - - encryptBlock: function (M, offset) { - this._doCryptBlock(M, offset, this._subKeys); - }, - - decryptBlock: function (M, offset) { - this._doCryptBlock(M, offset, this._invSubKeys); - }, - - _doCryptBlock: function (M, offset, subKeys) { - // Get input - this._lBlock = M[offset]; - this._rBlock = M[offset + 1]; - - // Initial permutation - exchangeLR.call(this, 4, 0x0f0f0f0f); - exchangeLR.call(this, 16, 0x0000ffff); - exchangeRL.call(this, 2, 0x33333333); - exchangeRL.call(this, 8, 0x00ff00ff); - exchangeLR.call(this, 1, 0x55555555); - - // Rounds - for (var round = 0; round < 16; round++) { - // Shortcuts - var subKey = subKeys[round]; - var lBlock = this._lBlock; - var rBlock = this._rBlock; - - // Feistel function - var f = 0; - for (var i = 0; i < 8; i++) { - f |= SBOX_P[i][((rBlock ^ subKey[i]) & SBOX_MASK[i]) >>> 0]; - } - this._lBlock = rBlock; - this._rBlock = lBlock ^ f; - } - - // Undo swap from last round - var t = this._lBlock; - this._lBlock = this._rBlock; - this._rBlock = t; - - // Final permutation - exchangeLR.call(this, 1, 0x55555555); - exchangeRL.call(this, 8, 0x00ff00ff); - exchangeRL.call(this, 2, 0x33333333); - exchangeLR.call(this, 16, 0x0000ffff); - exchangeLR.call(this, 4, 0x0f0f0f0f); - - // Set output - M[offset] = this._lBlock; - M[offset + 1] = this._rBlock; - }, - - keySize: 64/32, - - ivSize: 64/32, - - blockSize: 64/32 - }); - - // Swap bits across the left and right words - function exchangeLR(offset, mask) { - var t = ((this._lBlock >>> offset) ^ this._rBlock) & mask; - this._rBlock ^= t; - this._lBlock ^= t << offset; - } - - function exchangeRL(offset, mask) { - var t = ((this._rBlock >>> offset) ^ this._lBlock) & mask; - this._lBlock ^= t; - this._rBlock ^= t << offset; - } - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.DES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.DES.decrypt(ciphertext, key, cfg); - */ - C.DES = BlockCipher._createHelper(DES); - - /** - * Triple-DES block cipher algorithm. - */ - var TripleDES = C_algo.TripleDES = BlockCipher.extend({ - _doReset: function () { - // Shortcuts - var key = this._key; - var keyWords = key.words; - // Make sure the key length is valid (64, 128 or >= 192 bit) - if (keyWords.length !== 2 && keyWords.length !== 4 && keyWords.length < 6) { - throw new Error('Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.'); - } - - // Extend the key according to the keying options defined in 3DES standard - var key1 = keyWords.slice(0, 2); - var key2 = keyWords.length < 4 ? keyWords.slice(0, 2) : keyWords.slice(2, 4); - var key3 = keyWords.length < 6 ? keyWords.slice(0, 2) : keyWords.slice(4, 6); - - // Create DES instances - this._des1 = DES.createEncryptor(WordArray.create(key1)); - this._des2 = DES.createEncryptor(WordArray.create(key2)); - this._des3 = DES.createEncryptor(WordArray.create(key3)); - }, - - encryptBlock: function (M, offset) { - this._des1.encryptBlock(M, offset); - this._des2.decryptBlock(M, offset); - this._des3.encryptBlock(M, offset); - }, - - decryptBlock: function (M, offset) { - this._des3.decryptBlock(M, offset); - this._des2.encryptBlock(M, offset); - this._des1.decryptBlock(M, offset); - }, - - keySize: 192/32, - - ivSize: 64/32, - - blockSize: 64/32 - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.TripleDES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.TripleDES.decrypt(ciphertext, key, cfg); - */ - C.TripleDES = BlockCipher._createHelper(TripleDES); - }()); - - - return CryptoJS.TripleDES; - -})); \ No newline at end of file diff --git a/node_modules/crypto-js/x64-core.js b/node_modules/crypto-js/x64-core.js deleted file mode 100644 index 57dcc144..00000000 --- a/node_modules/crypto-js/x64-core.js +++ /dev/null @@ -1,304 +0,0 @@ -;(function (root, factory) { - if (typeof exports === "object") { - // CommonJS - module.exports = exports = factory(require("./core")); - } - else if (typeof define === "function" && define.amd) { - // AMD - define(["./core"], factory); - } - else { - // Global (browser) - factory(root.CryptoJS); - } -}(this, function (CryptoJS) { - - (function (undefined) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var X32WordArray = C_lib.WordArray; - - /** - * x64 namespace. - */ - var C_x64 = C.x64 = {}; - - /** - * A 64-bit word. - */ - var X64Word = C_x64.Word = Base.extend({ - /** - * Initializes a newly created 64-bit word. - * - * @param {number} high The high 32 bits. - * @param {number} low The low 32 bits. - * - * @example - * - * var x64Word = CryptoJS.x64.Word.create(0x00010203, 0x04050607); - */ - init: function (high, low) { - this.high = high; - this.low = low; - } - - /** - * Bitwise NOTs this word. - * - * @return {X64Word} A new x64-Word object after negating. - * - * @example - * - * var negated = x64Word.not(); - */ - // not: function () { - // var high = ~this.high; - // var low = ~this.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise ANDs this word with the passed word. - * - * @param {X64Word} word The x64-Word to AND with this word. - * - * @return {X64Word} A new x64-Word object after ANDing. - * - * @example - * - * var anded = x64Word.and(anotherX64Word); - */ - // and: function (word) { - // var high = this.high & word.high; - // var low = this.low & word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise ORs this word with the passed word. - * - * @param {X64Word} word The x64-Word to OR with this word. - * - * @return {X64Word} A new x64-Word object after ORing. - * - * @example - * - * var ored = x64Word.or(anotherX64Word); - */ - // or: function (word) { - // var high = this.high | word.high; - // var low = this.low | word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise XORs this word with the passed word. - * - * @param {X64Word} word The x64-Word to XOR with this word. - * - * @return {X64Word} A new x64-Word object after XORing. - * - * @example - * - * var xored = x64Word.xor(anotherX64Word); - */ - // xor: function (word) { - // var high = this.high ^ word.high; - // var low = this.low ^ word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Shifts this word n bits to the left. - * - * @param {number} n The number of bits to shift. - * - * @return {X64Word} A new x64-Word object after shifting. - * - * @example - * - * var shifted = x64Word.shiftL(25); - */ - // shiftL: function (n) { - // if (n < 32) { - // var high = (this.high << n) | (this.low >>> (32 - n)); - // var low = this.low << n; - // } else { - // var high = this.low << (n - 32); - // var low = 0; - // } - - // return X64Word.create(high, low); - // }, - - /** - * Shifts this word n bits to the right. - * - * @param {number} n The number of bits to shift. - * - * @return {X64Word} A new x64-Word object after shifting. - * - * @example - * - * var shifted = x64Word.shiftR(7); - */ - // shiftR: function (n) { - // if (n < 32) { - // var low = (this.low >>> n) | (this.high << (32 - n)); - // var high = this.high >>> n; - // } else { - // var low = this.high >>> (n - 32); - // var high = 0; - // } - - // return X64Word.create(high, low); - // }, - - /** - * Rotates this word n bits to the left. - * - * @param {number} n The number of bits to rotate. - * - * @return {X64Word} A new x64-Word object after rotating. - * - * @example - * - * var rotated = x64Word.rotL(25); - */ - // rotL: function (n) { - // return this.shiftL(n).or(this.shiftR(64 - n)); - // }, - - /** - * Rotates this word n bits to the right. - * - * @param {number} n The number of bits to rotate. - * - * @return {X64Word} A new x64-Word object after rotating. - * - * @example - * - * var rotated = x64Word.rotR(7); - */ - // rotR: function (n) { - // return this.shiftR(n).or(this.shiftL(64 - n)); - // }, - - /** - * Adds this word with the passed word. - * - * @param {X64Word} word The x64-Word to add with this word. - * - * @return {X64Word} A new x64-Word object after adding. - * - * @example - * - * var added = x64Word.add(anotherX64Word); - */ - // add: function (word) { - // var low = (this.low + word.low) | 0; - // var carry = (low >>> 0) < (this.low >>> 0) ? 1 : 0; - // var high = (this.high + word.high + carry) | 0; - - // return X64Word.create(high, low); - // } - }); - - /** - * An array of 64-bit words. - * - * @property {Array} words The array of CryptoJS.x64.Word objects. - * @property {number} sigBytes The number of significant bytes in this word array. - */ - var X64WordArray = C_x64.WordArray = Base.extend({ - /** - * Initializes a newly created word array. - * - * @param {Array} words (Optional) An array of CryptoJS.x64.Word objects. - * @param {number} sigBytes (Optional) The number of significant bytes in the words. - * - * @example - * - * var wordArray = CryptoJS.x64.WordArray.create(); - * - * var wordArray = CryptoJS.x64.WordArray.create([ - * CryptoJS.x64.Word.create(0x00010203, 0x04050607), - * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f) - * ]); - * - * var wordArray = CryptoJS.x64.WordArray.create([ - * CryptoJS.x64.Word.create(0x00010203, 0x04050607), - * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f) - * ], 10); - */ - init: function (words, sigBytes) { - words = this.words = words || []; - - if (sigBytes != undefined) { - this.sigBytes = sigBytes; - } else { - this.sigBytes = words.length * 8; - } - }, - - /** - * Converts this 64-bit word array to a 32-bit word array. - * - * @return {CryptoJS.lib.WordArray} This word array's data as a 32-bit word array. - * - * @example - * - * var x32WordArray = x64WordArray.toX32(); - */ - toX32: function () { - // Shortcuts - var x64Words = this.words; - var x64WordsLength = x64Words.length; - - // Convert - var x32Words = []; - for (var i = 0; i < x64WordsLength; i++) { - var x64Word = x64Words[i]; - x32Words.push(x64Word.high); - x32Words.push(x64Word.low); - } - - return X32WordArray.create(x32Words, this.sigBytes); - }, - - /** - * Creates a copy of this word array. - * - * @return {X64WordArray} The clone. - * - * @example - * - * var clone = x64WordArray.clone(); - */ - clone: function () { - var clone = Base.clone.call(this); - - // Clone "words" array - var words = clone.words = this.words.slice(0); - - // Clone each X64Word object - var wordsLength = words.length; - for (var i = 0; i < wordsLength; i++) { - words[i] = words[i].clone(); - } - - return clone; - } - }); - }()); - - - return CryptoJS; - -})); \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/README.md b/node_modules/dingtalk-jsapi/README.md deleted file mode 100644 index ec40af1a..00000000 --- a/node_modules/dingtalk-jsapi/README.md +++ /dev/null @@ -1,127 +0,0 @@ -# 钉钉多端统一jsapi - -此 jsApi 支持运行于 android, ios, pc,钉钉小程序,小程序内嵌 webview 等钉钉全环境下,且保持开发体验一致。 - -## 安装 - -dingtalk-jsapi 现在可从 `npm` 上安装. - -```shell -npm install dingtalk-jsapi -``` - -推荐使用npm包形式按需引入 - -## 新的特性 - -除了兼容现钉钉开放平台提供的jsapi的特性,还支持以下下特性 - -1. 支持返回原生 Promise -2. 支持模块化引入 api,模块化引入平台 -3. 支持 dd.checkJsApi, 用于检测当前环境是否支持此jsApi -4. 提供 dd.on, dd.off来绑定事件,用于同一绑定事件 -5. 添加 dd.env 来读取当前环境变量 -6. 支持 typescript 的接口定义,接口定义还在持续添加中,如有纰漏欢迎反馈 - -## 使用介绍 - -#### 整体调用 - -```typescript -import * as dd from 'dingtalk-jsapi'; -dd.device.notification.alert({ - message: "亲爱的", - title: "提示",//可传空 - buttonName: "收到", -}).then(() => { - //成功即相当于 onSuccess -}, () => { - //失败即相当于 onFail -}); - -``` - -#### 按需调用(占用体积小) - -```typescript -import 'dingtalk-jsapi/entry/mobile'; // 只引入移动端(支持小程序) -// import 'dingtalk-jsapi/entry/union'; // 如果你想要在此代码在PC端和移动端都执行,那你可以如此引入 -import alert from 'dingtalk-jsapi/api/device/notification/alert'; // 按需引入方法 - -alert({ - message: "亲爱的", - title: "提示",//可传空 - buttonName: "收到", -}).then(() => { - //成功即相当于 onSuccess -}, () => { - //失败即相当于 onFail -}); - -``` - -### dd.ready优化 - -#### 旧版本pc调用接口 -```typescript -//首先你鉴权需要权限 -dd.config({ - agentId: '', // 必填,微应用ID - corpId: '',//必填,企业ID - timeStamp: , // 必填,生成签名的时间戳 - nonceStr: '', // 必填,生成签名的随机串 - signature: '', // 必填,签名 - type:0/1, //选填,0表示微应用的jsapi,1表示服务窗的jsapi,不填默认为0。该参数从dingtalk.js的0.8.3版本开始支持 - jsApiList:[ - 'biz.contact.choose', - ], -}); - -//然后因为鉴权是异步的,所以你的方法需要包括在dd.ready, config校验完成后的钩子 -dd.ready(() => { - dd.device.notification.alert({ - message: "亲爱的", - title: "提示",//可传空 - buttonName: "收到", - }).then(() => { - //成功即相当于 onSuccess - }, () => { - //失败即相当于 onFail - }); -}) - -``` - -#### 新版本pc调用接口 -```typescript -dd.config({ - agentId: '', // 必填,微应用ID - corpId: '',//必填,企业ID - timeStamp: , // 必填,生成签名的时间戳 - nonceStr: '', // 必填,生成签名的随机串 - signature: '', // 必填,签名 - type:0/1, //选填,0表示微应用的jsapi,1表示服务窗的jsapi,不填默认为0。该参数从dingtalk.js的0.8.3版本开始支持 - jsApiList:[ - 'device.notification.alert', - ], -}); - -// 优化后不再需要包括dd.ready,接口自动延后执行 -dd.device.notification.alert({ - message: "亲爱的", - title: "提示",//可传空 - buttonName: "收到", -}).then(() => { - //成功即相当于 onSuccess -}, () => { - //失败即相当于 onFail -}); -``` - -## 反馈渠道 - -亲爱的开发者,为了更好的提高服务效率和问题沉淀,在开发过程中如果遇到问题,可以有以下方式获取技术支持: -【推荐】登录开发者后台,https://open-dev.dingtalk.com,在右下角有“在线帮助”(人工客服时间:工作日10:00~12:00,14:00~18:00, 19:00~21:00) - - -**最终解释权归阿里巴巴钉钉事业部所有**。 diff --git a/node_modules/dingtalk-jsapi/api/apiObj.d.ts b/node_modules/dingtalk-jsapi/api/apiObj.d.ts deleted file mode 100644 index 8d77ecf9..00000000 --- a/node_modules/dingtalk-jsapi/api/apiObj.d.ts +++ /dev/null @@ -1,1493 +0,0 @@ -import { beaconPicker$ as biz_ATMBle_beaconPicker } from './biz/ATMBle/beaconPicker'; -export { IBizATMBleBeaconPickerParams, IBizATMBleBeaconPickerResult } from './biz/ATMBle/beaconPicker'; -import { detectFace$ as biz_ATMBle_detectFace } from './biz/ATMBle/detectFace'; -export { IBizATMBleDetectFaceParams, IBizATMBleDetectFaceResult } from './biz/ATMBle/detectFace'; -import { detectFaceFullScreen$ as biz_ATMBle_detectFaceFullScreen } from './biz/ATMBle/detectFaceFullScreen'; -export { IBizATMBleDetectFaceFullScreenParams, IBizATMBleDetectFaceFullScreenResult } from './biz/ATMBle/detectFaceFullScreen'; -import { exclusiveLiveCheck$ as biz_ATMBle_exclusiveLiveCheck } from './biz/ATMBle/exclusiveLiveCheck'; -export { IBizATMBleExclusiveLiveCheckParams, IBizATMBleExclusiveLiveCheckResult } from './biz/ATMBle/exclusiveLiveCheck'; -import { faceManager$ as biz_ATMBle_faceManager } from './biz/ATMBle/faceManager'; -export { IBizATMBleFaceManagerParams, IBizATMBleFaceManagerResult } from './biz/ATMBle/faceManager'; -import { punchModePicker$ as biz_ATMBle_punchModePicker } from './biz/ATMBle/punchModePicker'; -export { IBizATMBlePunchModePickerParams, IBizATMBlePunchModePickerResult } from './biz/ATMBle/punchModePicker'; -import { bindAlipay$ as biz_alipay_bindAlipay } from './biz/alipay/bindAlipay'; -export { IBizAlipayBindAlipayParams, IBizAlipayBindAlipayResult } from './biz/alipay/bindAlipay'; -import { openAuth$ as biz_alipay_openAuth } from './biz/alipay/openAuth'; -export { IBizAlipayOpenAuthParams, IBizAlipayOpenAuthResult } from './biz/alipay/openAuth'; -import { pay$ as biz_alipay_pay } from './biz/alipay/pay'; -export { IBizAlipayPayParams, IBizAlipayPayResult } from './biz/alipay/pay'; -import { getLBSWua$ as biz_attend_getLBSWua } from './biz/attend/getLBSWua'; -export { IBizAttendGetLBSWuaParams, IBizAttendGetLBSWuaResult } from './biz/attend/getLBSWua'; -import { openAccountPwdLoginPage$ as biz_auth_openAccountPwdLoginPage } from './biz/auth/openAccountPwdLoginPage'; -export { IBizAuthOpenAccountPwdLoginPageParams, IBizAuthOpenAccountPwdLoginPageResult } from './biz/auth/openAccountPwdLoginPage'; -import { requestAuthInfo$ as biz_auth_requestAuthInfo } from './biz/auth/requestAuthInfo'; -export { IBizAuthRequestAuthInfoParams, IBizAuthRequestAuthInfoResult } from './biz/auth/requestAuthInfo'; -import { chooseDateTime$ as biz_calendar_chooseDateTime } from './biz/calendar/chooseDateTime'; -export { IBizCalendarChooseDateTimeParams, IBizCalendarChooseDateTimeResult } from './biz/calendar/chooseDateTime'; -import { chooseHalfDay$ as biz_calendar_chooseHalfDay } from './biz/calendar/chooseHalfDay'; -export { IBizCalendarChooseHalfDayParams, IBizCalendarChooseHalfDayResult } from './biz/calendar/chooseHalfDay'; -import { chooseInterval$ as biz_calendar_chooseInterval } from './biz/calendar/chooseInterval'; -export { IBizCalendarChooseIntervalParams, IBizCalendarChooseIntervalResult } from './biz/calendar/chooseInterval'; -import { chooseOneDay$ as biz_calendar_chooseOneDay } from './biz/calendar/chooseOneDay'; -export { IBizCalendarChooseOneDayParams, IBizCalendarChooseOneDayResult } from './biz/calendar/chooseOneDay'; -import { chooseConversationByCorpId$ as biz_chat_chooseConversationByCorpId } from './biz/chat/chooseConversationByCorpId'; -export { IBizChatChooseConversationByCorpIdParams, IBizChatChooseConversationByCorpIdResult } from './biz/chat/chooseConversationByCorpId'; -import { collectSticker$ as biz_chat_collectSticker } from './biz/chat/collectSticker'; -export { IBizChatCollectStickerParams, IBizChatCollectStickerResult } from './biz/chat/collectSticker'; -import { createSceneGroup$ as biz_chat_createSceneGroup } from './biz/chat/createSceneGroup'; -export { IBizChatCreateSceneGroupParams, IBizChatCreateSceneGroupResult } from './biz/chat/createSceneGroup'; -import { getRealmCid$ as biz_chat_getRealmCid } from './biz/chat/getRealmCid'; -export { IBizChatGetRealmCidParams, IBizChatGetRealmCidResult } from './biz/chat/getRealmCid'; -import { locationChatMessage$ as biz_chat_locationChatMessage } from './biz/chat/locationChatMessage'; -export { IBizChatLocationChatMessageParams, IBizChatLocationChatMessageResult } from './biz/chat/locationChatMessage'; -import { openSingleChat$ as biz_chat_openSingleChat } from './biz/chat/openSingleChat'; -export { IBizChatOpenSingleChatParams, IBizChatOpenSingleChatResult } from './biz/chat/openSingleChat'; -import { pickConversation$ as biz_chat_pickConversation } from './biz/chat/pickConversation'; -export { IBizChatPickConversationParams, IBizChatPickConversationResult } from './biz/chat/pickConversation'; -import { sendEmotion$ as biz_chat_sendEmotion } from './biz/chat/sendEmotion'; -export { IBizChatSendEmotionParams, IBizChatSendEmotionResult } from './biz/chat/sendEmotion'; -import { toConversation$ as biz_chat_toConversation } from './biz/chat/toConversation'; -export { IBizChatToConversationParams, IBizChatToConversationResult } from './biz/chat/toConversation'; -import { toConversationByOpenConversationId$ as biz_chat_toConversationByOpenConversationId } from './biz/chat/toConversationByOpenConversationId'; -export { IBizChatToConversationByOpenConversationIdParams, IBizChatToConversationByOpenConversationIdResult } from './biz/chat/toConversationByOpenConversationId'; -import { setData$ as biz_clipboardData_setData } from './biz/clipboardData/setData'; -export { IBizClipboardDataSetDataParams, IBizClipboardDataSetDataResult } from './biz/clipboardData/setData'; -import { createCloudCall$ as biz_conference_createCloudCall } from './biz/conference/createCloudCall'; -export { IBizConferenceCreateCloudCallParams, IBizConferenceCreateCloudCallResult } from './biz/conference/createCloudCall'; -import { getCloudCallInfo$ as biz_conference_getCloudCallInfo } from './biz/conference/getCloudCallInfo'; -export { IBizConferenceGetCloudCallInfoParams, IBizConferenceGetCloudCallInfoResult } from './biz/conference/getCloudCallInfo'; -import { getCloudCallList$ as biz_conference_getCloudCallList } from './biz/conference/getCloudCallList'; -export { IBizConferenceGetCloudCallListParams, IBizConferenceGetCloudCallListResult } from './biz/conference/getCloudCallList'; -import { videoConfCall$ as biz_conference_videoConfCall } from './biz/conference/videoConfCall'; -export { IBizConferenceVideoConfCallParams, IBizConferenceVideoConfCallResult } from './biz/conference/videoConfCall'; -import { choose$ as biz_contact_choose } from './biz/contact/choose'; -export { IBizContactChooseParams, IBizContactChooseResult } from './biz/contact/choose'; -import { chooseMobileContacts$ as biz_contact_chooseMobileContacts } from './biz/contact/chooseMobileContacts'; -export { IBizContactChooseMobileContactsParams, IBizContactChooseMobileContactsResult } from './biz/contact/chooseMobileContacts'; -import { complexPicker$ as biz_contact_complexPicker } from './biz/contact/complexPicker'; -export { IBizContactComplexPickerParams, IBizContactComplexPickerResult } from './biz/contact/complexPicker'; -import { createGroup$ as biz_contact_createGroup } from './biz/contact/createGroup'; -export { IBizContactCreateGroupParams, IBizContactCreateGroupResult } from './biz/contact/createGroup'; -import { departmentsPicker$ as biz_contact_departmentsPicker } from './biz/contact/departmentsPicker'; -export { IBizContactDepartmentsPickerParams, IBizContactDepartmentsPickerResult } from './biz/contact/departmentsPicker'; -import { externalComplexPicker$ as biz_contact_externalComplexPicker } from './biz/contact/externalComplexPicker'; -export { IBizContactExternalComplexPickerParams, IBizContactExternalComplexPickerResult } from './biz/contact/externalComplexPicker'; -import { externalEditForm$ as biz_contact_externalEditForm } from './biz/contact/externalEditForm'; -export { IBizContactExternalEditFormParams, IBizContactExternalEditFormResult } from './biz/contact/externalEditForm'; -import { rolesPicker$ as biz_contact_rolesPicker } from './biz/contact/rolesPicker'; -export { IBizContactRolesPickerParams, IBizContactRolesPickerResult } from './biz/contact/rolesPicker'; -import { setRule$ as biz_contact_setRule } from './biz/contact/setRule'; -export { IBizContactSetRuleParams, IBizContactSetRuleResult } from './biz/contact/setRule'; -import { chooseSpaceDir$ as biz_cspace_chooseSpaceDir } from './biz/cspace/chooseSpaceDir'; -export { IBizCspaceChooseSpaceDirParams, IBizCspaceChooseSpaceDirResult } from './biz/cspace/chooseSpaceDir'; -import { delete$ as biz_cspace_delete } from './biz/cspace/delete'; -export { IBizCspaceDeleteParams, IBizCspaceDeleteResult } from './biz/cspace/delete'; -import { preview$ as biz_cspace_preview } from './biz/cspace/preview'; -export { IBizCspacePreviewParams, IBizCspacePreviewResult } from './biz/cspace/preview'; -import { previewDentryImages$ as biz_cspace_previewDentryImages } from './biz/cspace/previewDentryImages'; -export { IBizCspacePreviewDentryImagesParams, IBizCspacePreviewDentryImagesResult } from './biz/cspace/previewDentryImages'; -import { saveFile$ as biz_cspace_saveFile } from './biz/cspace/saveFile'; -export { IBizCspaceSaveFileParams, IBizCspaceSaveFileResult } from './biz/cspace/saveFile'; -import { choose$ as biz_customContact_choose } from './biz/customContact/choose'; -export { IBizCustomContactChooseParams, IBizCustomContactChooseResult } from './biz/customContact/choose'; -import { multipleChoose$ as biz_customContact_multipleChoose } from './biz/customContact/multipleChoose'; -export { IBizCustomContactMultipleChooseParams, IBizCustomContactMultipleChooseResult } from './biz/customContact/multipleChoose'; -import { rsa$ as biz_data_rsa } from './biz/data/rsa'; -export { IBizDataRsaParams, IBizDataRsaResult } from './biz/data/rsa'; -import { create$ as biz_ding_create } from './biz/ding/create'; -export { IBizDingCreateParams, IBizDingCreateResult } from './biz/ding/create'; -import { post$ as biz_ding_post } from './biz/ding/post'; -export { IBizDingPostParams, IBizDingPostResult } from './biz/ding/post'; -import { finishMiniCourseByRecordId$ as biz_edu_finishMiniCourseByRecordId } from './biz/edu/finishMiniCourseByRecordId'; -export { IBizEduFinishMiniCourseByRecordIdParams, IBizEduFinishMiniCourseByRecordIdResult } from './biz/edu/finishMiniCourseByRecordId'; -import { getMiniCourseDraftList$ as biz_edu_getMiniCourseDraftList } from './biz/edu/getMiniCourseDraftList'; -export { IBizEduGetMiniCourseDraftListParams, IBizEduGetMiniCourseDraftListResult } from './biz/edu/getMiniCourseDraftList'; -import { joinClassroom$ as biz_edu_joinClassroom } from './biz/edu/joinClassroom'; -export { IBizEduJoinClassroomParams, IBizEduJoinClassroomResult } from './biz/edu/joinClassroom'; -import { makeMiniCourse$ as biz_edu_makeMiniCourse } from './biz/edu/makeMiniCourse'; -export { IBizEduMakeMiniCourseParams, IBizEduMakeMiniCourseResult } from './biz/edu/makeMiniCourse'; -import { newMsgNotificationStatus$ as biz_edu_newMsgNotificationStatus } from './biz/edu/newMsgNotificationStatus'; -export { IBizEduNewMsgNotificationStatusParams, IBizEduNewMsgNotificationStatusResult } from './biz/edu/newMsgNotificationStatus'; -import { startAuth$ as biz_edu_startAuth } from './biz/edu/startAuth'; -export { IBizEduStartAuthParams, IBizEduStartAuthResult } from './biz/edu/startAuth'; -import { tokenFaceImg$ as biz_edu_tokenFaceImg } from './biz/edu/tokenFaceImg'; -export { IBizEduTokenFaceImgParams, IBizEduTokenFaceImgResult } from './biz/edu/tokenFaceImg'; -import { notifyWeex$ as biz_event_notifyWeex } from './biz/event/notifyWeex'; -export { IBizEventNotifyWeexParams, IBizEventNotifyWeexResult } from './biz/event/notifyWeex'; -import { downloadFile$ as biz_file_downloadFile } from './biz/file/downloadFile'; -export { IBizFileDownloadFileParams, IBizFileDownloadFileResult } from './biz/file/downloadFile'; -import { fetchData$ as biz_intent_fetchData } from './biz/intent/fetchData'; -export { IBizIntentFetchDataParams, IBizIntentFetchDataResult } from './biz/intent/fetchData'; -import { bind$ as biz_iot_bind } from './biz/iot/bind'; -export { IBizIotBindParams, IBizIotBindResult } from './biz/iot/bind'; -import { bindMeetingRoom$ as biz_iot_bindMeetingRoom } from './biz/iot/bindMeetingRoom'; -export { IBizIotBindMeetingRoomParams, IBizIotBindMeetingRoomResult } from './biz/iot/bindMeetingRoom'; -import { getDeviceProperties$ as biz_iot_getDeviceProperties } from './biz/iot/getDeviceProperties'; -export { IBizIotGetDevicePropertiesParams, IBizIotGetDevicePropertiesResult } from './biz/iot/getDeviceProperties'; -import { invokeThingService$ as biz_iot_invokeThingService } from './biz/iot/invokeThingService'; -export { IBizIotInvokeThingServiceParams, IBizIotInvokeThingServiceResult } from './biz/iot/invokeThingService'; -import { queryMeetingRoomList$ as biz_iot_queryMeetingRoomList } from './biz/iot/queryMeetingRoomList'; -export { IBizIotQueryMeetingRoomListParams, IBizIotQueryMeetingRoomListResult } from './biz/iot/queryMeetingRoomList'; -import { setDeviceProperties$ as biz_iot_setDeviceProperties } from './biz/iot/setDeviceProperties'; -export { IBizIotSetDevicePropertiesParams, IBizIotSetDevicePropertiesResult } from './biz/iot/setDeviceProperties'; -import { unbind$ as biz_iot_unbind } from './biz/iot/unbind'; -export { IBizIotUnbindParams, IBizIotUnbindResult } from './biz/iot/unbind'; -import { startClassRoom$ as biz_live_startClassRoom } from './biz/live/startClassRoom'; -export { IBizLiveStartClassRoomParams, IBizLiveStartClassRoomResult } from './biz/live/startClassRoom'; -import { startUnifiedLive$ as biz_live_startUnifiedLive } from './biz/live/startUnifiedLive'; -export { IBizLiveStartUnifiedLiveParams, IBizLiveStartUnifiedLiveResult } from './biz/live/startUnifiedLive'; -import { locate$ as biz_map_locate } from './biz/map/locate'; -export { IBizMapLocateParams, IBizMapLocateResult } from './biz/map/locate'; -import { search$ as biz_map_search } from './biz/map/search'; -export { IBizMapSearchParams, IBizMapSearchResult } from './biz/map/search'; -import { view$ as biz_map_view } from './biz/map/view'; -export { IBizMapViewParams, IBizMapViewResult } from './biz/map/view'; -import { compressVideo$ as biz_media_compressVideo } from './biz/media/compressVideo'; -export { IBizMediaCompressVideoParams, IBizMediaCompressVideoResult } from './biz/media/compressVideo'; -import { openApp$ as biz_microApp_openApp } from './biz/microApp/openApp'; -export { IBizMicroAppOpenAppParams, IBizMicroAppOpenAppResult } from './biz/microApp/openApp'; -import { close$ as biz_navigation_close } from './biz/navigation/close'; -export { IBizNavigationCloseParams, IBizNavigationCloseResult } from './biz/navigation/close'; -import { goBack$ as biz_navigation_goBack } from './biz/navigation/goBack'; -export { IBizNavigationGoBackParams, IBizNavigationGoBackResult } from './biz/navigation/goBack'; -import { hideBar$ as biz_navigation_hideBar } from './biz/navigation/hideBar'; -export { IBizNavigationHideBarParams, IBizNavigationHideBarResult } from './biz/navigation/hideBar'; -import { navigateBackPage$ as biz_navigation_navigateBackPage } from './biz/navigation/navigateBackPage'; -export { IBizNavigationNavigateBackPageParams, IBizNavigationNavigateBackPageResult } from './biz/navigation/navigateBackPage'; -import { navigateToMiniProgram$ as biz_navigation_navigateToMiniProgram } from './biz/navigation/navigateToMiniProgram'; -export { IBizNavigationNavigateToMiniProgramParams, IBizNavigationNavigateToMiniProgramResult } from './biz/navigation/navigateToMiniProgram'; -import { navigateToPage$ as biz_navigation_navigateToPage } from './biz/navigation/navigateToPage'; -export { IBizNavigationNavigateToPageParams, IBizNavigationNavigateToPageResult } from './biz/navigation/navigateToPage'; -import { quit$ as biz_navigation_quit } from './biz/navigation/quit'; -export { IBizNavigationQuitParams, IBizNavigationQuitResult } from './biz/navigation/quit'; -import { replace$ as biz_navigation_replace } from './biz/navigation/replace'; -export { IBizNavigationReplaceParams, IBizNavigationReplaceResult } from './biz/navigation/replace'; -import { setIcon$ as biz_navigation_setIcon } from './biz/navigation/setIcon'; -export { IBizNavigationSetIconParams, IBizNavigationSetIconResult } from './biz/navigation/setIcon'; -import { setLeft$ as biz_navigation_setLeft } from './biz/navigation/setLeft'; -export { IBizNavigationSetLeftParams, IBizNavigationSetLeftResult } from './biz/navigation/setLeft'; -import { setMenu$ as biz_navigation_setMenu } from './biz/navigation/setMenu'; -export { IBizNavigationSetMenuParams, IBizNavigationSetMenuResult } from './biz/navigation/setMenu'; -import { setRight$ as biz_navigation_setRight } from './biz/navigation/setRight'; -export { IBizNavigationSetRightParams, IBizNavigationSetRightResult } from './biz/navigation/setRight'; -import { setTitle$ as biz_navigation_setTitle } from './biz/navigation/setTitle'; -export { IBizNavigationSetTitleParams, IBizNavigationSetTitleResult } from './biz/navigation/setTitle'; -import { componentPunchFromPartner$ as biz_pbp_componentPunchFromPartner } from './biz/pbp/componentPunchFromPartner'; -export { IBizPbpComponentPunchFromPartnerParams, IBizPbpComponentPunchFromPartnerResult } from './biz/pbp/componentPunchFromPartner'; -import { startMatchRuleFromPartner$ as biz_pbp_startMatchRuleFromPartner } from './biz/pbp/startMatchRuleFromPartner'; -export { IBizPbpStartMatchRuleFromPartnerParams, IBizPbpStartMatchRuleFromPartnerResult } from './biz/pbp/startMatchRuleFromPartner'; -import { stopMatchRuleFromPartner$ as biz_pbp_stopMatchRuleFromPartner } from './biz/pbp/stopMatchRuleFromPartner'; -export { IBizPbpStopMatchRuleFromPartnerParams, IBizPbpStopMatchRuleFromPartnerResult } from './biz/pbp/stopMatchRuleFromPartner'; -import { add$ as biz_phoneContact_add } from './biz/phoneContact/add'; -export { IBizPhoneContactAddParams, IBizPhoneContactAddResult } from './biz/phoneContact/add'; -import { getRealtimeTracingStatus$ as biz_realm_getRealtimeTracingStatus } from './biz/realm/getRealtimeTracingStatus'; -export { IBizRealmGetRealtimeTracingStatusParams, IBizRealmGetRealtimeTracingStatusResult } from './biz/realm/getRealtimeTracingStatus'; -import { getUserExclusiveInfo$ as biz_realm_getUserExclusiveInfo } from './biz/realm/getUserExclusiveInfo'; -export { IBizRealmGetUserExclusiveInfoParams, IBizRealmGetUserExclusiveInfoResult } from './biz/realm/getUserExclusiveInfo'; -import { startRealtimeTracing$ as biz_realm_startRealtimeTracing } from './biz/realm/startRealtimeTracing'; -export { IBizRealmStartRealtimeTracingParams, IBizRealmStartRealtimeTracingResult } from './biz/realm/startRealtimeTracing'; -import { stopRealtimeTracing$ as biz_realm_stopRealtimeTracing } from './biz/realm/stopRealtimeTracing'; -export { IBizRealmStopRealtimeTracingParams, IBizRealmStopRealtimeTracingResult } from './biz/realm/stopRealtimeTracing'; -import { subscribe$ as biz_realm_subscribe } from './biz/realm/subscribe'; -export { IBizRealmSubscribeParams, IBizRealmSubscribeResult } from './biz/realm/subscribe'; -import { unsubscribe$ as biz_realm_unsubscribe } from './biz/realm/unsubscribe'; -export { IBizRealmUnsubscribeParams, IBizRealmUnsubscribeResult } from './biz/realm/unsubscribe'; -import { getInfo$ as biz_resource_getInfo } from './biz/resource/getInfo'; -export { IBizResourceGetInfoParams, IBizResourceGetInfoResult } from './biz/resource/getInfo'; -import { reportDebugMessage$ as biz_resource_reportDebugMessage } from './biz/resource/reportDebugMessage'; -export { IBizResourceReportDebugMessageParams, IBizResourceReportDebugMessageResult } from './biz/resource/reportDebugMessage'; -import { addShortCut$ as biz_shortCut_addShortCut } from './biz/shortCut/addShortCut'; -export { IBizShortCutAddShortCutParams, IBizShortCutAddShortCutResult } from './biz/shortCut/addShortCut'; -import { getHealthAuthorizationStatus$ as biz_sports_getHealthAuthorizationStatus } from './biz/sports/getHealthAuthorizationStatus'; -export { IBizSportsGetHealthAuthorizationStatusParams, IBizSportsGetHealthAuthorizationStatusResult } from './biz/sports/getHealthAuthorizationStatus'; -import { getHealthData$ as biz_sports_getHealthData } from './biz/sports/getHealthData'; -export { IBizSportsGetHealthDataParams, IBizSportsGetHealthDataResult } from './biz/sports/getHealthData'; -import { getHealthDeviceData$ as biz_sports_getHealthDeviceData } from './biz/sports/getHealthDeviceData'; -export { IBizSportsGetHealthDeviceDataParams, IBizSportsGetHealthDeviceDataResult } from './biz/sports/getHealthDeviceData'; -import { requestHealthAuthorization$ as biz_sports_requestHealthAuthorization } from './biz/sports/requestHealthAuthorization'; -export { IBizSportsRequestHealthAuthorizationParams, IBizSportsRequestHealthAuthorizationResult } from './biz/sports/requestHealthAuthorization'; -import { closeUnpayOrder$ as biz_store_closeUnpayOrder } from './biz/store/closeUnpayOrder'; -export { IBizStoreCloseUnpayOrderParams, IBizStoreCloseUnpayOrderResult } from './biz/store/closeUnpayOrder'; -import { createOrder$ as biz_store_createOrder } from './biz/store/createOrder'; -export { IBizStoreCreateOrderParams, IBizStoreCreateOrderResult } from './biz/store/createOrder'; -import { getPayUrl$ as biz_store_getPayUrl } from './biz/store/getPayUrl'; -export { IBizStoreGetPayUrlParams, IBizStoreGetPayUrlResult } from './biz/store/getPayUrl'; -import { inquiry$ as biz_store_inquiry } from './biz/store/inquiry'; -export { IBizStoreInquiryParams, IBizStoreInquiryResult } from './biz/store/inquiry'; -import { isTab$ as biz_tabwindow_isTab } from './biz/tabwindow/isTab'; -export { IBizTabwindowIsTabParams, IBizTabwindowIsTabResult } from './biz/tabwindow/isTab'; -import { call$ as biz_telephone_call } from './biz/telephone/call'; -export { IBizTelephoneCallParams, IBizTelephoneCallResult } from './biz/telephone/call'; -import { checkBizCall$ as biz_telephone_checkBizCall } from './biz/telephone/checkBizCall'; -export { IBizTelephoneCheckBizCallParams, IBizTelephoneCheckBizCallResult } from './biz/telephone/checkBizCall'; -import { quickCallList$ as biz_telephone_quickCallList } from './biz/telephone/quickCallList'; -export { IBizTelephoneQuickCallListParams, IBizTelephoneQuickCallListResult } from './biz/telephone/quickCallList'; -import { showCallMenu$ as biz_telephone_showCallMenu } from './biz/telephone/showCallMenu'; -export { IBizTelephoneShowCallMenuParams, IBizTelephoneShowCallMenuResult } from './biz/telephone/showCallMenu'; -import { checkPassword$ as biz_user_checkPassword } from './biz/user/checkPassword'; -export { IBizUserCheckPasswordParams, IBizUserCheckPasswordResult } from './biz/user/checkPassword'; -import { get$ as biz_user_get } from './biz/user/get'; -export { IBizUserGetParams, IBizUserGetResult } from './biz/user/get'; -import { callComponent$ as biz_util_callComponent } from './biz/util/callComponent'; -export { IBizUtilCallComponentParams, IBizUtilCallComponentResult } from './biz/util/callComponent'; -import { checkAuth$ as biz_util_checkAuth } from './biz/util/checkAuth'; -export { IBizUtilCheckAuthParams, IBizUtilCheckAuthResult } from './biz/util/checkAuth'; -import { chooseImage$ as biz_util_chooseImage } from './biz/util/chooseImage'; -export { IBizUtilChooseImageParams, IBizUtilChooseImageResult } from './biz/util/chooseImage'; -import { chooseRegion$ as biz_util_chooseRegion } from './biz/util/chooseRegion'; -export { IBizUtilChooseRegionParams, IBizUtilChooseRegionResult } from './biz/util/chooseRegion'; -import { chosen$ as biz_util_chosen } from './biz/util/chosen'; -export { IBizUtilChosenParams, IBizUtilChosenResult } from './biz/util/chosen'; -import { clearWebStoreCache$ as biz_util_clearWebStoreCache } from './biz/util/clearWebStoreCache'; -export { IBizUtilClearWebStoreCacheParams, IBizUtilClearWebStoreCacheResult } from './biz/util/clearWebStoreCache'; -import { closePreviewImage$ as biz_util_closePreviewImage } from './biz/util/closePreviewImage'; -export { IBizUtilClosePreviewImageParams, IBizUtilClosePreviewImageResult } from './biz/util/closePreviewImage'; -import { compressImage$ as biz_util_compressImage } from './biz/util/compressImage'; -export { IBizUtilCompressImageParams, IBizUtilCompressImageResult } from './biz/util/compressImage'; -import { datepicker$ as biz_util_datepicker } from './biz/util/datepicker'; -export { IBizUtilDatepickerParams, IBizUtilDatepickerResult } from './biz/util/datepicker'; -import { datetimepicker$ as biz_util_datetimepicker } from './biz/util/datetimepicker'; -export { IBizUtilDatetimepickerParams, IBizUtilDatetimepickerResult } from './biz/util/datetimepicker'; -import { decrypt$ as biz_util_decrypt } from './biz/util/decrypt'; -export { IBizUtilDecryptParams, IBizUtilDecryptResult } from './biz/util/decrypt'; -import { downloadFile$ as biz_util_downloadFile } from './biz/util/downloadFile'; -export { IBizUtilDownloadFileParams, IBizUtilDownloadFileResult } from './biz/util/downloadFile'; -import { encrypt$ as biz_util_encrypt } from './biz/util/encrypt'; -export { IBizUtilEncryptParams, IBizUtilEncryptResult } from './biz/util/encrypt'; -import { getPerfInfo$ as biz_util_getPerfInfo } from './biz/util/getPerfInfo'; -export { IBizUtilGetPerfInfoParams, IBizUtilGetPerfInfoResult } from './biz/util/getPerfInfo'; -import { invokeWorkbench$ as biz_util_invokeWorkbench } from './biz/util/invokeWorkbench'; -export { IBizUtilInvokeWorkbenchParams, IBizUtilInvokeWorkbenchResult } from './biz/util/invokeWorkbench'; -import { isEnableGPUAcceleration$ as biz_util_isEnableGPUAcceleration } from './biz/util/isEnableGPUAcceleration'; -export { IBizUtilIsEnableGPUAccelerationParams, IBizUtilIsEnableGPUAccelerationResult } from './biz/util/isEnableGPUAcceleration'; -import { isLocalFileExist$ as biz_util_isLocalFileExist } from './biz/util/isLocalFileExist'; -export { IBizUtilIsLocalFileExistParams, IBizUtilIsLocalFileExistResult } from './biz/util/isLocalFileExist'; -import { multiSelect$ as biz_util_multiSelect } from './biz/util/multiSelect'; -export { IBizUtilMultiSelectParams, IBizUtilMultiSelectResult } from './biz/util/multiSelect'; -import { open$ as biz_util_open } from './biz/util/open'; -export { IBizUtilOpenParams, IBizUtilOpenResult } from './biz/util/open'; -import { openBrowser$ as biz_util_openBrowser } from './biz/util/openBrowser'; -export { IBizUtilOpenBrowserParams, IBizUtilOpenBrowserResult } from './biz/util/openBrowser'; -import { openDocument$ as biz_util_openDocument } from './biz/util/openDocument'; -export { IBizUtilOpenDocumentParams, IBizUtilOpenDocumentResult } from './biz/util/openDocument'; -import { openLink$ as biz_util_openLink } from './biz/util/openLink'; -export { IBizUtilOpenLinkParams, IBizUtilOpenLinkResult } from './biz/util/openLink'; -import { openLocalFile$ as biz_util_openLocalFile } from './biz/util/openLocalFile'; -export { IBizUtilOpenLocalFileParams, IBizUtilOpenLocalFileResult } from './biz/util/openLocalFile'; -import { openModal$ as biz_util_openModal } from './biz/util/openModal'; -export { IBizUtilOpenModalParams, IBizUtilOpenModalResult } from './biz/util/openModal'; -import { openSlidePanel$ as biz_util_openSlidePanel } from './biz/util/openSlidePanel'; -export { IBizUtilOpenSlidePanelParams, IBizUtilOpenSlidePanelResult } from './biz/util/openSlidePanel'; -import { presentWindow$ as biz_util_presentWindow } from './biz/util/presentWindow'; -export { IBizUtilPresentWindowParams, IBizUtilPresentWindowResult } from './biz/util/presentWindow'; -import { previewImage$ as biz_util_previewImage } from './biz/util/previewImage'; -export { IBizUtilPreviewImageParams, IBizUtilPreviewImageResult } from './biz/util/previewImage'; -import { previewVideo$ as biz_util_previewVideo } from './biz/util/previewVideo'; -export { IBizUtilPreviewVideoParams, IBizUtilPreviewVideoResult } from './biz/util/previewVideo'; -import { saveImage$ as biz_util_saveImage } from './biz/util/saveImage'; -export { IBizUtilSaveImageParams, IBizUtilSaveImageResult } from './biz/util/saveImage'; -import { saveImageToPhotosAlbum$ as biz_util_saveImageToPhotosAlbum } from './biz/util/saveImageToPhotosAlbum'; -export { IBizUtilSaveImageToPhotosAlbumParams, IBizUtilSaveImageToPhotosAlbumResult } from './biz/util/saveImageToPhotosAlbum'; -import { scan$ as biz_util_scan } from './biz/util/scan'; -export { IBizUtilScanParams, IBizUtilScanResult } from './biz/util/scan'; -import { scanCard$ as biz_util_scanCard } from './biz/util/scanCard'; -export { IBizUtilScanCardParams, IBizUtilScanCardResult } from './biz/util/scanCard'; -import { setGPUAcceleration$ as biz_util_setGPUAcceleration } from './biz/util/setGPUAcceleration'; -export { IBizUtilSetGPUAccelerationParams, IBizUtilSetGPUAccelerationResult } from './biz/util/setGPUAcceleration'; -import { setScreenBrightnessAndKeepOn$ as biz_util_setScreenBrightnessAndKeepOn } from './biz/util/setScreenBrightnessAndKeepOn'; -export { IBizUtilSetScreenBrightnessAndKeepOnParams, IBizUtilSetScreenBrightnessAndKeepOnResult } from './biz/util/setScreenBrightnessAndKeepOn'; -import { setScreenKeepOn$ as biz_util_setScreenKeepOn } from './biz/util/setScreenKeepOn'; -export { IBizUtilSetScreenKeepOnParams, IBizUtilSetScreenKeepOnResult } from './biz/util/setScreenKeepOn'; -import { share$ as biz_util_share } from './biz/util/share'; -export { IBizUtilShareParams, IBizUtilShareResult } from './biz/util/share'; -import { shareImage$ as biz_util_shareImage } from './biz/util/shareImage'; -export { IBizUtilShareImageParams, IBizUtilShareImageResult } from './biz/util/shareImage'; -import { showAuthGuide$ as biz_util_showAuthGuide } from './biz/util/showAuthGuide'; -export { IBizUtilShowAuthGuideParams, IBizUtilShowAuthGuideResult } from './biz/util/showAuthGuide'; -import { showSharePanel$ as biz_util_showSharePanel } from './biz/util/showSharePanel'; -export { IBizUtilShowSharePanelParams, IBizUtilShowSharePanelResult } from './biz/util/showSharePanel'; -import { startDocSign$ as biz_util_startDocSign } from './biz/util/startDocSign'; -export { IBizUtilStartDocSignParams, IBizUtilStartDocSignResult } from './biz/util/startDocSign'; -import { systemShare$ as biz_util_systemShare } from './biz/util/systemShare'; -export { IBizUtilSystemShareParams, IBizUtilSystemShareResult } from './biz/util/systemShare'; -import { timepicker$ as biz_util_timepicker } from './biz/util/timepicker'; -export { IBizUtilTimepickerParams, IBizUtilTimepickerResult } from './biz/util/timepicker'; -import { uploadAttachment$ as biz_util_uploadAttachment } from './biz/util/uploadAttachment'; -export { IBizUtilUploadAttachmentParams, IBizUtilUploadAttachmentResult } from './biz/util/uploadAttachment'; -import { uploadFile$ as biz_util_uploadFile } from './biz/util/uploadFile'; -export { IBizUtilUploadFileParams, IBizUtilUploadFileResult } from './biz/util/uploadFile'; -import { uploadImage$ as biz_util_uploadImage } from './biz/util/uploadImage'; -export { IBizUtilUploadImageParams, IBizUtilUploadImageResult } from './biz/util/uploadImage'; -import { uploadImageFromCamera$ as biz_util_uploadImageFromCamera } from './biz/util/uploadImageFromCamera'; -export { IBizUtilUploadImageFromCameraParams, IBizUtilUploadImageFromCameraResult } from './biz/util/uploadImageFromCamera'; -import { ut$ as biz_util_ut } from './biz/util/ut'; -export { IBizUtilUtParams, IBizUtilUtResult } from './biz/util/ut'; -import { openBindIDCard$ as biz_verify_openBindIDCard } from './biz/verify/openBindIDCard'; -export { IBizVerifyOpenBindIDCardParams, IBizVerifyOpenBindIDCardResult } from './biz/verify/openBindIDCard'; -import { startAuth$ as biz_verify_startAuth } from './biz/verify/startAuth'; -export { IBizVerifyStartAuthParams, IBizVerifyStartAuthResult } from './biz/verify/startAuth'; -import { makeCall$ as biz_voice_makeCall } from './biz/voice/makeCall'; -export { IBizVoiceMakeCallParams, IBizVoiceMakeCallResult } from './biz/voice/makeCall'; -import { getWatermarkInfo$ as biz_watermarkCamera_getWatermarkInfo } from './biz/watermarkCamera/getWatermarkInfo'; -export { IBizWatermarkCameraGetWatermarkInfoParams, IBizWatermarkCameraGetWatermarkInfoResult } from './biz/watermarkCamera/getWatermarkInfo'; -import { setWatermarkInfo$ as biz_watermarkCamera_setWatermarkInfo } from './biz/watermarkCamera/setWatermarkInfo'; -export { IBizWatermarkCameraSetWatermarkInfoParams, IBizWatermarkCameraSetWatermarkInfoResult } from './biz/watermarkCamera/setWatermarkInfo'; -import { requestAuthCode$ as channel_permission_requestAuthCode } from './channel/permission/requestAuthCode'; -export { IChannelPermissionRequestAuthCodeParams, IChannelPermissionRequestAuthCodeResult } from './channel/permission/requestAuthCode'; -import { clearShake$ as device_accelerometer_clearShake } from './device/accelerometer/clearShake'; -export { IDeviceAccelerometerClearShakeParams, IDeviceAccelerometerClearShakeResult } from './device/accelerometer/clearShake'; -import { watchShake$ as device_accelerometer_watchShake } from './device/accelerometer/watchShake'; -export { IDeviceAccelerometerWatchShakeParams, IDeviceAccelerometerWatchShakeResult } from './device/accelerometer/watchShake'; -import { download$ as device_audio_download } from './device/audio/download'; -export { IDeviceAudioDownloadParams, IDeviceAudioDownloadResult } from './device/audio/download'; -import { onPlayEnd$ as device_audio_onPlayEnd } from './device/audio/onPlayEnd'; -export { IDeviceAudioOnPlayEndParams, IDeviceAudioOnPlayEndResult } from './device/audio/onPlayEnd'; -import { onRecordEnd$ as device_audio_onRecordEnd } from './device/audio/onRecordEnd'; -export { IDeviceAudioOnRecordEndParams, IDeviceAudioOnRecordEndResult } from './device/audio/onRecordEnd'; -import { pause$ as device_audio_pause } from './device/audio/pause'; -export { IDeviceAudioPauseParams, IDeviceAudioPauseResult } from './device/audio/pause'; -import { play$ as device_audio_play } from './device/audio/play'; -export { IDeviceAudioPlayParams, IDeviceAudioPlayResult } from './device/audio/play'; -import { resume$ as device_audio_resume } from './device/audio/resume'; -export { IDeviceAudioResumeParams, IDeviceAudioResumeResult } from './device/audio/resume'; -import { startRecord$ as device_audio_startRecord } from './device/audio/startRecord'; -export { IDeviceAudioStartRecordParams, IDeviceAudioStartRecordResult } from './device/audio/startRecord'; -import { stop$ as device_audio_stop } from './device/audio/stop'; -export { IDeviceAudioStopParams, IDeviceAudioStopResult } from './device/audio/stop'; -import { stopRecord$ as device_audio_stopRecord } from './device/audio/stopRecord'; -export { IDeviceAudioStopRecordParams, IDeviceAudioStopRecordResult } from './device/audio/stopRecord'; -import { translateVoice$ as device_audio_translateVoice } from './device/audio/translateVoice'; -export { IDeviceAudioTranslateVoiceParams, IDeviceAudioTranslateVoiceResult } from './device/audio/translateVoice'; -import { getBatteryInfo$ as device_base_getBatteryInfo } from './device/base/getBatteryInfo'; -export { IDeviceBaseGetBatteryInfoParams, IDeviceBaseGetBatteryInfoResult } from './device/base/getBatteryInfo'; -import { getInterface$ as device_base_getInterface } from './device/base/getInterface'; -export { IDeviceBaseGetInterfaceParams, IDeviceBaseGetInterfaceResult } from './device/base/getInterface'; -import { getPhoneInfo$ as device_base_getPhoneInfo } from './device/base/getPhoneInfo'; -export { IDeviceBaseGetPhoneInfoParams, IDeviceBaseGetPhoneInfoResult } from './device/base/getPhoneInfo'; -import { getScanWifiListAsync$ as device_base_getScanWifiListAsync } from './device/base/getScanWifiListAsync'; -export { IDeviceBaseGetScanWifiListAsyncParams, IDeviceBaseGetScanWifiListAsyncResult } from './device/base/getScanWifiListAsync'; -import { getUUID$ as device_base_getUUID } from './device/base/getUUID'; -export { IDeviceBaseGetUUIDParams, IDeviceBaseGetUUIDResult } from './device/base/getUUID'; -import { getWifiStatus$ as device_base_getWifiStatus } from './device/base/getWifiStatus'; -export { IDeviceBaseGetWifiStatusParams, IDeviceBaseGetWifiStatusResult } from './device/base/getWifiStatus'; -import { openSystemSetting$ as device_base_openSystemSetting } from './device/base/openSystemSetting'; -export { IDeviceBaseOpenSystemSettingParams, IDeviceBaseOpenSystemSettingResult } from './device/base/openSystemSetting'; -import { getNetworkType$ as device_connection_getNetworkType } from './device/connection/getNetworkType'; -export { IDeviceConnectionGetNetworkTypeParams, IDeviceConnectionGetNetworkTypeResult } from './device/connection/getNetworkType'; -import { checkPermission$ as device_geolocation_checkPermission } from './device/geolocation/checkPermission'; -export { IDeviceGeolocationCheckPermissionParams, IDeviceGeolocationCheckPermissionResult } from './device/geolocation/checkPermission'; -import { get$ as device_geolocation_get } from './device/geolocation/get'; -export { IDeviceGeolocationGetParams, IDeviceGeolocationGetResult } from './device/geolocation/get'; -import { start$ as device_geolocation_start } from './device/geolocation/start'; -export { IDeviceGeolocationStartParams, IDeviceGeolocationStartResult } from './device/geolocation/start'; -import { status$ as device_geolocation_status } from './device/geolocation/status'; -export { IDeviceGeolocationStatusParams, IDeviceGeolocationStatusResult } from './device/geolocation/status'; -import { stop$ as device_geolocation_stop } from './device/geolocation/stop'; -export { IDeviceGeolocationStopParams, IDeviceGeolocationStopResult } from './device/geolocation/stop'; -import { checkInstalledApps$ as device_launcher_checkInstalledApps } from './device/launcher/checkInstalledApps'; -export { IDeviceLauncherCheckInstalledAppsParams, IDeviceLauncherCheckInstalledAppsResult } from './device/launcher/checkInstalledApps'; -import { launchApp$ as device_launcher_launchApp } from './device/launcher/launchApp'; -export { IDeviceLauncherLaunchAppParams, IDeviceLauncherLaunchAppResult } from './device/launcher/launchApp'; -import { nfcRead$ as device_nfc_nfcRead } from './device/nfc/nfcRead'; -export { IDeviceNfcNfcReadParams, IDeviceNfcNfcReadResult } from './device/nfc/nfcRead'; -import { nfcStop$ as device_nfc_nfcStop } from './device/nfc/nfcStop'; -export { IDeviceNfcNfcStopParams, IDeviceNfcNfcStopResult } from './device/nfc/nfcStop'; -import { nfcWrite$ as device_nfc_nfcWrite } from './device/nfc/nfcWrite'; -export { IDeviceNfcNfcWriteParams, IDeviceNfcNfcWriteResult } from './device/nfc/nfcWrite'; -import { actionSheet$ as device_notification_actionSheet } from './device/notification/actionSheet'; -export { IDeviceNotificationActionSheetParams, IDeviceNotificationActionSheetResult } from './device/notification/actionSheet'; -import { alert$ as device_notification_alert } from './device/notification/alert'; -export { IDeviceNotificationAlertParams, IDeviceNotificationAlertResult } from './device/notification/alert'; -import { confirm$ as device_notification_confirm } from './device/notification/confirm'; -export { IDeviceNotificationConfirmParams, IDeviceNotificationConfirmResult } from './device/notification/confirm'; -import { extendModal$ as device_notification_extendModal } from './device/notification/extendModal'; -export { IDeviceNotificationExtendModalParams, IDeviceNotificationExtendModalResult } from './device/notification/extendModal'; -import { hidePreloader$ as device_notification_hidePreloader } from './device/notification/hidePreloader'; -export { IDeviceNotificationHidePreloaderParams, IDeviceNotificationHidePreloaderResult } from './device/notification/hidePreloader'; -import { modal$ as device_notification_modal } from './device/notification/modal'; -export { IDeviceNotificationModalParams, IDeviceNotificationModalResult } from './device/notification/modal'; -import { prompt$ as device_notification_prompt } from './device/notification/prompt'; -export { IDeviceNotificationPromptParams, IDeviceNotificationPromptResult } from './device/notification/prompt'; -import { showPreloader$ as device_notification_showPreloader } from './device/notification/showPreloader'; -export { IDeviceNotificationShowPreloaderParams, IDeviceNotificationShowPreloaderResult } from './device/notification/showPreloader'; -import { toast$ as device_notification_toast } from './device/notification/toast'; -export { IDeviceNotificationToastParams, IDeviceNotificationToastResult } from './device/notification/toast'; -import { vibrate$ as device_notification_vibrate } from './device/notification/vibrate'; -export { IDeviceNotificationVibrateParams, IDeviceNotificationVibrateResult } from './device/notification/vibrate'; -import { getScreenBrightness$ as device_screen_getScreenBrightness } from './device/screen/getScreenBrightness'; -export { IDeviceScreenGetScreenBrightnessParams, IDeviceScreenGetScreenBrightnessResult } from './device/screen/getScreenBrightness'; -import { insetAdjust$ as device_screen_insetAdjust } from './device/screen/insetAdjust'; -export { IDeviceScreenInsetAdjustParams, IDeviceScreenInsetAdjustResult } from './device/screen/insetAdjust'; -import { isScreenReaderEnabled$ as device_screen_isScreenReaderEnabled } from './device/screen/isScreenReaderEnabled'; -export { IDeviceScreenIsScreenReaderEnabledParams, IDeviceScreenIsScreenReaderEnabledResult } from './device/screen/isScreenReaderEnabled'; -import { resetView$ as device_screen_resetView } from './device/screen/resetView'; -export { IDeviceScreenResetViewParams, IDeviceScreenResetViewResult } from './device/screen/resetView'; -import { rotateView$ as device_screen_rotateView } from './device/screen/rotateView'; -export { IDeviceScreenRotateViewParams, IDeviceScreenRotateViewResult } from './device/screen/rotateView'; -import { setScreenBrightness$ as device_screen_setScreenBrightness } from './device/screen/setScreenBrightness'; -export { IDeviceScreenSetScreenBrightnessParams, IDeviceScreenSetScreenBrightnessResult } from './device/screen/setScreenBrightness'; -import { keepAlive$ as media_voiceRecorder_keepAlive } from './media/voiceRecorder/keepAlive'; -export { IMediaVoiceRecorderKeepAliveParams, IMediaVoiceRecorderKeepAliveResult } from './media/voiceRecorder/keepAlive'; -import { pause$ as media_voiceRecorder_pause } from './media/voiceRecorder/pause'; -export { IMediaVoiceRecorderPauseParams, IMediaVoiceRecorderPauseResult } from './media/voiceRecorder/pause'; -import { resume$ as media_voiceRecorder_resume } from './media/voiceRecorder/resume'; -export { IMediaVoiceRecorderResumeParams, IMediaVoiceRecorderResumeResult } from './media/voiceRecorder/resume'; -import { start$ as media_voiceRecorder_start } from './media/voiceRecorder/start'; -export { IMediaVoiceRecorderStartParams, IMediaVoiceRecorderStartResult } from './media/voiceRecorder/start'; -import { stop$ as media_voiceRecorder_stop } from './media/voiceRecorder/stop'; -export { IMediaVoiceRecorderStopParams, IMediaVoiceRecorderStopResult } from './media/voiceRecorder/stop'; -import { loginGovNet$ as net_bjGovApn_loginGovNet } from './net/bjGovApn/loginGovNet'; -export { INetBjGovApnLoginGovNetParams, INetBjGovApnLoginGovNetResult } from './net/bjGovApn/loginGovNet'; -import { exec$ as runtime_h5nuvabridge_exec } from './runtime/h5nuvabridge/exec'; -export { IRuntimeH5nuvabridgeExecParams, IRuntimeH5nuvabridgeExecResult } from './runtime/h5nuvabridge/exec'; -import { fetch$ as runtime_message_fetch } from './runtime/message/fetch'; -export { IRuntimeMessageFetchParams, IRuntimeMessageFetchResult } from './runtime/message/fetch'; -import { post$ as runtime_message_post } from './runtime/message/post'; -export { IRuntimeMessagePostParams, IRuntimeMessagePostResult } from './runtime/message/post'; -import { getLoadTime$ as runtime_monitor_getLoadTime } from './runtime/monitor/getLoadTime'; -export { IRuntimeMonitorGetLoadTimeParams, IRuntimeMonitorGetLoadTimeResult } from './runtime/monitor/getLoadTime'; -import { requestAuthCode$ as runtime_permission_requestAuthCode } from './runtime/permission/requestAuthCode'; -export { IRuntimePermissionRequestAuthCodeParams, IRuntimePermissionRequestAuthCodeResult } from './runtime/permission/requestAuthCode'; -import { requestOperateAuthCode$ as runtime_permission_requestOperateAuthCode } from './runtime/permission/requestOperateAuthCode'; -export { IRuntimePermissionRequestOperateAuthCodeParams, IRuntimePermissionRequestOperateAuthCodeResult } from './runtime/permission/requestOperateAuthCode'; -import { plain$ as ui_input_plain } from './ui/input/plain'; -export { IUiInputPlainParams, IUiInputPlainResult } from './ui/input/plain'; -import { addToFloat$ as ui_multitask_addToFloat } from './ui/multitask/addToFloat'; -export { IUiMultitaskAddToFloatParams, IUiMultitaskAddToFloatResult } from './ui/multitask/addToFloat'; -import { removeFromFloat$ as ui_multitask_removeFromFloat } from './ui/multitask/removeFromFloat'; -export { IUiMultitaskRemoveFromFloatParams, IUiMultitaskRemoveFromFloatResult } from './ui/multitask/removeFromFloat'; -import { close$ as ui_nav_close } from './ui/nav/close'; -export { IUiNavCloseParams, IUiNavCloseResult } from './ui/nav/close'; -import { getCurrentId$ as ui_nav_getCurrentId } from './ui/nav/getCurrentId'; -export { IUiNavGetCurrentIdParams, IUiNavGetCurrentIdResult } from './ui/nav/getCurrentId'; -import { go$ as ui_nav_go } from './ui/nav/go'; -export { IUiNavGoParams, IUiNavGoResult } from './ui/nav/go'; -import { preload$ as ui_nav_preload } from './ui/nav/preload'; -export { IUiNavPreloadParams, IUiNavPreloadResult } from './ui/nav/preload'; -import { recycle$ as ui_nav_recycle } from './ui/nav/recycle'; -export { IUiNavRecycleParams, IUiNavRecycleResult } from './ui/nav/recycle'; -import { setColors$ as ui_progressBar_setColors } from './ui/progressBar/setColors'; -export { IUiProgressBarSetColorsParams, IUiProgressBarSetColorsResult } from './ui/progressBar/setColors'; -import { disable$ as ui_pullToRefresh_disable } from './ui/pullToRefresh/disable'; -export { IUiPullToRefreshDisableParams, IUiPullToRefreshDisableResult } from './ui/pullToRefresh/disable'; -import { enable$ as ui_pullToRefresh_enable } from './ui/pullToRefresh/enable'; -export { IUiPullToRefreshEnableParams, IUiPullToRefreshEnableResult } from './ui/pullToRefresh/enable'; -import { stop$ as ui_pullToRefresh_stop } from './ui/pullToRefresh/stop'; -export { IUiPullToRefreshStopParams, IUiPullToRefreshStopResult } from './ui/pullToRefresh/stop'; -import { disable$ as ui_webViewBounce_disable } from './ui/webViewBounce/disable'; -export { IUiWebViewBounceDisableParams, IUiWebViewBounceDisableResult } from './ui/webViewBounce/disable'; -import { enable$ as ui_webViewBounce_enable } from './ui/webViewBounce/enable'; -export { IUiWebViewBounceEnableParams, IUiWebViewBounceEnableResult } from './ui/webViewBounce/enable'; -import { ExternalChannelPublish$ as union_ExternalChannelPublish } from './union/ExternalChannelPublish'; -export { IUnionExternalChannelPublishParams, IUnionExternalChannelPublishResult, ExternalChannelPublish$ as ExternalChannelPublish } from './union/ExternalChannelPublish'; -import { addPhoneContact$ as union_addPhoneContact } from './union/addPhoneContact'; -export { IUnionAddPhoneContactParams, IUnionAddPhoneContactResult, addPhoneContact$ as addPhoneContact } from './union/addPhoneContact'; -import { alert$ as union_alert } from './union/alert'; -export { IUnionAlertParams, IUnionAlertResult, alert$ as alert } from './union/alert'; -import { callUsers$ as union_callUsers } from './union/callUsers'; -export { IUnionCallUsersParams, IUnionCallUsersResult, callUsers$ as callUsers } from './union/callUsers'; -import { checkAuth$ as union_checkAuth } from './union/checkAuth'; -export { IUnionCheckAuthParams, IUnionCheckAuthResult, checkAuth$ as checkAuth } from './union/checkAuth'; -import { checkBizCall$ as union_checkBizCall } from './union/checkBizCall'; -export { IUnionCheckBizCallParams, IUnionCheckBizCallResult, checkBizCall$ as checkBizCall } from './union/checkBizCall'; -import { chooseChat$ as union_chooseChat } from './union/chooseChat'; -export { IUnionChooseChatParams, IUnionChooseChatResult, chooseChat$ as chooseChat } from './union/chooseChat'; -import { chooseConversation$ as union_chooseConversation } from './union/chooseConversation'; -export { IUnionChooseConversationParams, IUnionChooseConversationResult, chooseConversation$ as chooseConversation } from './union/chooseConversation'; -import { chooseDateRangeInCalendar$ as union_chooseDateRangeInCalendar } from './union/chooseDateRangeInCalendar'; -export { IUnionChooseDateRangeInCalendarParams, IUnionChooseDateRangeInCalendarResult, chooseDateRangeInCalendar$ as chooseDateRangeInCalendar } from './union/chooseDateRangeInCalendar'; -import { chooseDateTime$ as union_chooseDateTime } from './union/chooseDateTime'; -export { IUnionChooseDateTimeParams, IUnionChooseDateTimeResult, chooseDateTime$ as chooseDateTime } from './union/chooseDateTime'; -import { chooseDepartments$ as union_chooseDepartments } from './union/chooseDepartments'; -export { IUnionChooseDepartmentsParams, IUnionChooseDepartmentsResult, chooseDepartments$ as chooseDepartments } from './union/chooseDepartments'; -import { chooseDingTalkDir$ as union_chooseDingTalkDir } from './union/chooseDingTalkDir'; -export { IUnionChooseDingTalkDirParams, IUnionChooseDingTalkDirResult, chooseDingTalkDir$ as chooseDingTalkDir } from './union/chooseDingTalkDir'; -import { chooseDistrict$ as union_chooseDistrict } from './union/chooseDistrict'; -export { IUnionChooseDistrictParams, IUnionChooseDistrictResult, chooseDistrict$ as chooseDistrict } from './union/chooseDistrict'; -import { chooseExternalUsers$ as union_chooseExternalUsers } from './union/chooseExternalUsers'; -export { IUnionChooseExternalUsersParams, IUnionChooseExternalUsersResult, chooseExternalUsers$ as chooseExternalUsers } from './union/chooseExternalUsers'; -import { chooseFile$ as union_chooseFile } from './union/chooseFile'; -export { IUnionChooseFileParams, IUnionChooseFileResult, chooseFile$ as chooseFile } from './union/chooseFile'; -import { chooseHalfDayInCalendar$ as union_chooseHalfDayInCalendar } from './union/chooseHalfDayInCalendar'; -export { IUnionChooseHalfDayInCalendarParams, IUnionChooseHalfDayInCalendarResult, chooseHalfDayInCalendar$ as chooseHalfDayInCalendar } from './union/chooseHalfDayInCalendar'; -import { chooseImage$ as union_chooseImage } from './union/chooseImage'; -export { IUnionChooseImageParams, IUnionChooseImageResult, chooseImage$ as chooseImage } from './union/chooseImage'; -import { chooseMedia$ as union_chooseMedia } from './union/chooseMedia'; -export { IUnionChooseMediaParams, IUnionChooseMediaResult, chooseMedia$ as chooseMedia } from './union/chooseMedia'; -import { chooseOneDayInCalendar$ as union_chooseOneDayInCalendar } from './union/chooseOneDayInCalendar'; -export { IUnionChooseOneDayInCalendarParams, IUnionChooseOneDayInCalendarResult, chooseOneDayInCalendar$ as chooseOneDayInCalendar } from './union/chooseOneDayInCalendar'; -import { chooseOrg$ as union_chooseOrg } from './union/chooseOrg'; -export { IUnionChooseOrgParams, IUnionChooseOrgResult, chooseOrg$ as chooseOrg } from './union/chooseOrg'; -import { choosePhonebook$ as union_choosePhonebook } from './union/choosePhonebook'; -export { IUnionChoosePhonebookParams, IUnionChoosePhonebookResult, choosePhonebook$ as choosePhonebook } from './union/choosePhonebook'; -import { chooseStaffForPC$ as union_chooseStaffForPC } from './union/chooseStaffForPC'; -export { IUnionChooseStaffForPCParams, IUnionChooseStaffForPCResult, chooseStaffForPC$ as chooseStaffForPC } from './union/chooseStaffForPC'; -import { chooseUserFromList$ as union_chooseUserFromList } from './union/chooseUserFromList'; -export { IUnionChooseUserFromListParams, IUnionChooseUserFromListResult, chooseUserFromList$ as chooseUserFromList } from './union/chooseUserFromList'; -import { clearShake$ as union_clearShake } from './union/clearShake'; -export { IUnionClearShakeParams, IUnionClearShakeResult, clearShake$ as clearShake } from './union/clearShake'; -import { closeBluetoothAdapter$ as union_closeBluetoothAdapter } from './union/closeBluetoothAdapter'; -export { IUnionCloseBluetoothAdapterParams, IUnionCloseBluetoothAdapterResult, closeBluetoothAdapter$ as closeBluetoothAdapter } from './union/closeBluetoothAdapter'; -import { closePage$ as union_closePage } from './union/closePage'; -export { IUnionClosePageParams, IUnionClosePageResult, closePage$ as closePage } from './union/closePage'; -import { complexChoose$ as union_complexChoose } from './union/complexChoose'; -export { IUnionComplexChooseParams, IUnionComplexChooseResult, complexChoose$ as complexChoose } from './union/complexChoose'; -import { compressImage$ as union_compressImage } from './union/compressImage'; -export { IUnionCompressImageParams, IUnionCompressImageResult, compressImage$ as compressImage } from './union/compressImage'; -import { confirm$ as union_confirm } from './union/confirm'; -export { IUnionConfirmParams, IUnionConfirmResult, confirm$ as confirm } from './union/confirm'; -import { connectBLEDevice$ as union_connectBLEDevice } from './union/connectBLEDevice'; -export { IUnionConnectBLEDeviceParams, IUnionConnectBLEDeviceResult, connectBLEDevice$ as connectBLEDevice } from './union/connectBLEDevice'; -import { createBLEPeripheralServer$ as union_createBLEPeripheralServer } from './union/createBLEPeripheralServer'; -export { IUnionCreateBLEPeripheralServerParams, IUnionCreateBLEPeripheralServerResult, createBLEPeripheralServer$ as createBLEPeripheralServer } from './union/createBLEPeripheralServer'; -import { createDing$ as union_createDing } from './union/createDing'; -export { IUnionCreateDingParams, IUnionCreateDingResult, createDing$ as createDing } from './union/createDing'; -import { createDingForPC$ as union_createDingForPC } from './union/createDingForPC'; -export { IUnionCreateDingForPCParams, IUnionCreateDingForPCResult, createDingForPC$ as createDingForPC } from './union/createDingForPC'; -import { createGroupChat$ as union_createGroupChat } from './union/createGroupChat'; -export { IUnionCreateGroupChatParams, IUnionCreateGroupChatResult, createGroupChat$ as createGroupChat } from './union/createGroupChat'; -import { createLiveClassRoom$ as union_createLiveClassRoom } from './union/createLiveClassRoom'; -export { IUnionCreateLiveClassRoomParams, IUnionCreateLiveClassRoomResult, createLiveClassRoom$ as createLiveClassRoom } from './union/createLiveClassRoom'; -import { createPayOrder$ as union_createPayOrder } from './union/createPayOrder'; -export { IUnionCreatePayOrderParams, IUnionCreatePayOrderResult, createPayOrder$ as createPayOrder } from './union/createPayOrder'; -import { cropImage$ as union_cropImage } from './union/cropImage'; -export { IUnionCropImageParams, IUnionCropImageResult, cropImage$ as cropImage } from './union/cropImage'; -import { customChooseUsers$ as union_customChooseUsers } from './union/customChooseUsers'; -export { IUnionCustomChooseUsersParams, IUnionCustomChooseUsersResult, customChooseUsers$ as customChooseUsers } from './union/customChooseUsers'; -import { datePicker$ as union_datePicker } from './union/datePicker'; -export { IUnionDatePickerParams, IUnionDatePickerResult, datePicker$ as datePicker } from './union/datePicker'; -import { dateRangePicker$ as union_dateRangePicker } from './union/dateRangePicker'; -export { IUnionDateRangePickerParams, IUnionDateRangePickerResult, dateRangePicker$ as dateRangePicker } from './union/dateRangePicker'; -import { decrypt$ as union_decrypt } from './union/decrypt'; -export { IUnionDecryptParams, IUnionDecryptResult, decrypt$ as decrypt } from './union/decrypt'; -import { disablePullDownRefresh$ as union_disablePullDownRefresh } from './union/disablePullDownRefresh'; -export { IUnionDisablePullDownRefreshParams, IUnionDisablePullDownRefreshResult, disablePullDownRefresh$ as disablePullDownRefresh } from './union/disablePullDownRefresh'; -import { disableWebViewBounce$ as union_disableWebViewBounce } from './union/disableWebViewBounce'; -export { IUnionDisableWebViewBounceParams, IUnionDisableWebViewBounceResult, disableWebViewBounce$ as disableWebViewBounce } from './union/disableWebViewBounce'; -import { disconnectBLEDevice$ as union_disconnectBLEDevice } from './union/disconnectBLEDevice'; -export { IUnionDisconnectBLEDeviceParams, IUnionDisconnectBLEDeviceResult, disconnectBLEDevice$ as disconnectBLEDevice } from './union/disconnectBLEDevice'; -import { downloadAudio$ as union_downloadAudio } from './union/downloadAudio'; -export { IUnionDownloadAudioParams, IUnionDownloadAudioResult, downloadAudio$ as downloadAudio } from './union/downloadAudio'; -import { downloadFile$ as union_downloadFile } from './union/downloadFile'; -export { IUnionDownloadFileParams, IUnionDownloadFileResult, downloadFile$ as downloadFile } from './union/downloadFile'; -import { editExternalUser$ as union_editExternalUser } from './union/editExternalUser'; -export { IUnionEditExternalUserParams, IUnionEditExternalUserResult, editExternalUser$ as editExternalUser } from './union/editExternalUser'; -import { editPicture$ as union_editPicture } from './union/editPicture'; -export { IUnionEditPictureParams, IUnionEditPictureResult, editPicture$ as editPicture } from './union/editPicture'; -import { enablePullDownRefresh$ as union_enablePullDownRefresh } from './union/enablePullDownRefresh'; -export { IUnionEnablePullDownRefreshParams, IUnionEnablePullDownRefreshResult, enablePullDownRefresh$ as enablePullDownRefresh } from './union/enablePullDownRefresh'; -import { enableWebViewBounce$ as union_enableWebViewBounce } from './union/enableWebViewBounce'; -export { IUnionEnableWebViewBounceParams, IUnionEnableWebViewBounceResult, enableWebViewBounce$ as enableWebViewBounce } from './union/enableWebViewBounce'; -import { encrypt$ as union_encrypt } from './union/encrypt'; -export { IUnionEncryptParams, IUnionEncryptResult, encrypt$ as encrypt } from './union/encrypt'; -import { exclusiveLiveCheck$ as union_exclusiveLiveCheck } from './union/exclusiveLiveCheck'; -export { IUnionExclusiveLiveCheckParams, IUnionExclusiveLiveCheckResult, exclusiveLiveCheck$ as exclusiveLiveCheck } from './union/exclusiveLiveCheck'; -import { generateImageFromCode$ as union_generateImageFromCode } from './union/generateImageFromCode'; -export { IUnionGenerateImageFromCodeParams, IUnionGenerateImageFromCodeResult, generateImageFromCode$ as generateImageFromCode } from './union/generateImageFromCode'; -import { getAccountType$ as union_getAccountType } from './union/getAccountType'; -export { IUnionGetAccountTypeParams, IUnionGetAccountTypeResult, getAccountType$ as getAccountType } from './union/getAccountType'; -import { getActiveConferenceInfo$ as union_getActiveConferenceInfo } from './union/getActiveConferenceInfo'; -export { IUnionGetActiveConferenceInfoParams, IUnionGetActiveConferenceInfoResult, getActiveConferenceInfo$ as getActiveConferenceInfo } from './union/getActiveConferenceInfo'; -import { getAdvertisingStatus$ as union_getAdvertisingStatus } from './union/getAdvertisingStatus'; -export { IUnionGetAdvertisingStatusParams, IUnionGetAdvertisingStatusResult, getAdvertisingStatus$ as getAdvertisingStatus } from './union/getAdvertisingStatus'; -import { getAuthCode$ as union_getAuthCode } from './union/getAuthCode'; -export { IUnionGetAuthCodeParams, IUnionGetAuthCodeResult, getAuthCode$ as getAuthCode } from './union/getAuthCode'; -import { getAuthCodeV2$ as union_getAuthCodeV2 } from './union/getAuthCodeV2'; -export { IUnionGetAuthCodeV2Params, IUnionGetAuthCodeV2Result, getAuthCodeV2$ as getAuthCodeV2 } from './union/getAuthCodeV2'; -import { getAuthInfo$ as union_getAuthInfo } from './union/getAuthInfo'; -export { IUnionGetAuthInfoParams, IUnionGetAuthInfoResult, getAuthInfo$ as getAuthInfo } from './union/getAuthInfo'; -import { getBLEDeviceCharacteristics$ as union_getBLEDeviceCharacteristics } from './union/getBLEDeviceCharacteristics'; -export { IUnionGetBLEDeviceCharacteristicsParams, IUnionGetBLEDeviceCharacteristicsResult, getBLEDeviceCharacteristics$ as getBLEDeviceCharacteristics } from './union/getBLEDeviceCharacteristics'; -import { getBLEDeviceServices$ as union_getBLEDeviceServices } from './union/getBLEDeviceServices'; -export { IUnionGetBLEDeviceServicesParams, IUnionGetBLEDeviceServicesResult, getBLEDeviceServices$ as getBLEDeviceServices } from './union/getBLEDeviceServices'; -import { getBatteryInfo$ as union_getBatteryInfo } from './union/getBatteryInfo'; -export { IUnionGetBatteryInfoParams, IUnionGetBatteryInfoResult, getBatteryInfo$ as getBatteryInfo } from './union/getBatteryInfo'; -import { getBeacons$ as union_getBeacons } from './union/getBeacons'; -export { IUnionGetBeaconsParams, IUnionGetBeaconsResult, getBeacons$ as getBeacons } from './union/getBeacons'; -import { getBluetoothAdapterState$ as union_getBluetoothAdapterState } from './union/getBluetoothAdapterState'; -export { IUnionGetBluetoothAdapterStateParams, IUnionGetBluetoothAdapterStateResult, getBluetoothAdapterState$ as getBluetoothAdapterState } from './union/getBluetoothAdapterState'; -import { getBluetoothDevices$ as union_getBluetoothDevices } from './union/getBluetoothDevices'; -export { IUnionGetBluetoothDevicesParams, IUnionGetBluetoothDevicesResult, getBluetoothDevices$ as getBluetoothDevices } from './union/getBluetoothDevices'; -import { getCachedAPIResponse$ as union_getCachedAPIResponse } from './union/getCachedAPIResponse'; -export { IUnionGetCachedAPIResponseParams, IUnionGetCachedAPIResponseResult, getCachedAPIResponse$ as getCachedAPIResponse } from './union/getCachedAPIResponse'; -import { getCloudCallInfo$ as union_getCloudCallInfo } from './union/getCloudCallInfo'; -export { IUnionGetCloudCallInfoParams, IUnionGetCloudCallInfoResult, getCloudCallInfo$ as getCloudCallInfo } from './union/getCloudCallInfo'; -import { getCloudCallList$ as union_getCloudCallList } from './union/getCloudCallList'; -export { IUnionGetCloudCallListParams, IUnionGetCloudCallListResult, getCloudCallList$ as getCloudCallList } from './union/getCloudCallList'; -import { getCurrentCorpId$ as union_getCurrentCorpId } from './union/getCurrentCorpId'; -export { IUnionGetCurrentCorpIdParams, IUnionGetCurrentCorpIdResult, getCurrentCorpId$ as getCurrentCorpId } from './union/getCurrentCorpId'; -import { getDeviceId$ as union_getDeviceId } from './union/getDeviceId'; -export { IUnionGetDeviceIdParams, IUnionGetDeviceIdResult, getDeviceId$ as getDeviceId } from './union/getDeviceId'; -import { getDeviceUUID$ as union_getDeviceUUID } from './union/getDeviceUUID'; -export { IUnionGetDeviceUUIDParams, IUnionGetDeviceUUIDResult, getDeviceUUID$ as getDeviceUUID } from './union/getDeviceUUID'; -import { getDingerDeviceStatus$ as union_getDingerDeviceStatus } from './union/getDingerDeviceStatus'; -export { IUnionGetDingerDeviceStatusParams, IUnionGetDingerDeviceStatusResult, getDingerDeviceStatus$ as getDingerDeviceStatus } from './union/getDingerDeviceStatus'; -import { getImageInfo$ as union_getImageInfo } from './union/getImageInfo'; -export { IUnionGetImageInfoParams, IUnionGetImageInfoResult, getImageInfo$ as getImageInfo } from './union/getImageInfo'; -import { getLocatingStatus$ as union_getLocatingStatus } from './union/getLocatingStatus'; -export { IUnionGetLocatingStatusParams, IUnionGetLocatingStatusResult, getLocatingStatus$ as getLocatingStatus } from './union/getLocatingStatus'; -import { getLocation$ as union_getLocation } from './union/getLocation'; -export { IUnionGetLocationParams, IUnionGetLocationResult, getLocation$ as getLocation } from './union/getLocation'; -import { getNetworkType$ as union_getNetworkType } from './union/getNetworkType'; -export { IUnionGetNetworkTypeParams, IUnionGetNetworkTypeResult, getNetworkType$ as getNetworkType } from './union/getNetworkType'; -import { getOperateAuthCode$ as union_getOperateAuthCode } from './union/getOperateAuthCode'; -export { IUnionGetOperateAuthCodeParams, IUnionGetOperateAuthCodeResult, getOperateAuthCode$ as getOperateAuthCode } from './union/getOperateAuthCode'; -import { getPageTerminateInfo$ as union_getPageTerminateInfo } from './union/getPageTerminateInfo'; -export { IUnionGetPageTerminateInfoParams, IUnionGetPageTerminateInfoResult, getPageTerminateInfo$ as getPageTerminateInfo } from './union/getPageTerminateInfo'; -import { getPersonalWorkInfo$ as union_getPersonalWorkInfo } from './union/getPersonalWorkInfo'; -export { IUnionGetPersonalWorkInfoParams, IUnionGetPersonalWorkInfoResult, getPersonalWorkInfo$ as getPersonalWorkInfo } from './union/getPersonalWorkInfo'; -import { getScreenBrightness$ as union_getScreenBrightness } from './union/getScreenBrightness'; -export { IUnionGetScreenBrightnessParams, IUnionGetScreenBrightnessResult, getScreenBrightness$ as getScreenBrightness } from './union/getScreenBrightness'; -import { getStorage$ as union_getStorage } from './union/getStorage'; -export { IUnionGetStorageParams, IUnionGetStorageResult, getStorage$ as getStorage } from './union/getStorage'; -import { getSystemInfo$ as union_getSystemInfo } from './union/getSystemInfo'; -export { IUnionGetSystemInfoParams, IUnionGetSystemInfoResult, getSystemInfo$ as getSystemInfo } from './union/getSystemInfo'; -import { getSystemSettings$ as union_getSystemSettings } from './union/getSystemSettings'; -export { IUnionGetSystemSettingsParams, IUnionGetSystemSettingsResult, getSystemSettings$ as getSystemSettings } from './union/getSystemSettings'; -import { getThirdAppConfCustomData$ as union_getThirdAppConfCustomData } from './union/getThirdAppConfCustomData'; -export { IUnionGetThirdAppConfCustomDataParams, IUnionGetThirdAppConfCustomDataResult, getThirdAppConfCustomData$ as getThirdAppConfCustomData } from './union/getThirdAppConfCustomData'; -import { getThirdAppUserCustomData$ as union_getThirdAppUserCustomData } from './union/getThirdAppUserCustomData'; -export { IUnionGetThirdAppUserCustomDataParams, IUnionGetThirdAppUserCustomDataResult, getThirdAppUserCustomData$ as getThirdAppUserCustomData } from './union/getThirdAppUserCustomData'; -import { getTodaysStepCount$ as union_getTodaysStepCount } from './union/getTodaysStepCount'; -export { IUnionGetTodaysStepCountParams, IUnionGetTodaysStepCountResult, getTodaysStepCount$ as getTodaysStepCount } from './union/getTodaysStepCount'; -import { getTranslateStatus$ as union_getTranslateStatus } from './union/getTranslateStatus'; -export { IUnionGetTranslateStatusParams, IUnionGetTranslateStatusResult, getTranslateStatus$ as getTranslateStatus } from './union/getTranslateStatus'; -import { getUserExclusiveInfo$ as union_getUserExclusiveInfo } from './union/getUserExclusiveInfo'; -export { IUnionGetUserExclusiveInfoParams, IUnionGetUserExclusiveInfoResult, getUserExclusiveInfo$ as getUserExclusiveInfo } from './union/getUserExclusiveInfo'; -import { getWifiHotspotStatus$ as union_getWifiHotspotStatus } from './union/getWifiHotspotStatus'; -export { IUnionGetWifiHotspotStatusParams, IUnionGetWifiHotspotStatusResult, getWifiHotspotStatus$ as getWifiHotspotStatus } from './union/getWifiHotspotStatus'; -import { getWifiStatus$ as union_getWifiStatus } from './union/getWifiStatus'; -export { IUnionGetWifiStatusParams, IUnionGetWifiStatusResult, getWifiStatus$ as getWifiStatus } from './union/getWifiStatus'; -import { goBackPage$ as union_goBackPage } from './union/goBackPage'; -export { IUnionGoBackPageParams, IUnionGoBackPageResult, goBackPage$ as goBackPage } from './union/goBackPage'; -import { hideLoading$ as union_hideLoading } from './union/hideLoading'; -export { IUnionHideLoadingParams, IUnionHideLoadingResult, hideLoading$ as hideLoading } from './union/hideLoading'; -import { hideToast$ as union_hideToast } from './union/hideToast'; -export { IUnionHideToastParams, IUnionHideToastResult, hideToast$ as hideToast } from './union/hideToast'; -import { isInTabWindow$ as union_isInTabWindow } from './union/isInTabWindow'; -export { IUnionIsInTabWindowParams, IUnionIsInTabWindowResult, isInTabWindow$ as isInTabWindow } from './union/isInTabWindow'; -import { isLocalFileExist$ as union_isLocalFileExist } from './union/isLocalFileExist'; -export { IUnionIsLocalFileExistParams, IUnionIsLocalFileExistResult, isLocalFileExist$ as isLocalFileExist } from './union/isLocalFileExist'; -import { isScreenReaderEnabled$ as union_isScreenReaderEnabled } from './union/isScreenReaderEnabled'; -export { IUnionIsScreenReaderEnabledParams, IUnionIsScreenReaderEnabledResult, isScreenReaderEnabled$ as isScreenReaderEnabled } from './union/isScreenReaderEnabled'; -import { locateInMap$ as union_locateInMap } from './union/locateInMap'; -export { IUnionLocateInMapParams, IUnionLocateInMapResult, locateInMap$ as locateInMap } from './union/locateInMap'; -import { makeCloudCall$ as union_makeCloudCall } from './union/makeCloudCall'; -export { IUnionMakeCloudCallParams, IUnionMakeCloudCallResult, makeCloudCall$ as makeCloudCall } from './union/makeCloudCall'; -import { makeVideoConfCall$ as union_makeVideoConfCall } from './union/makeVideoConfCall'; -export { IUnionMakeVideoConfCallParams, IUnionMakeVideoConfCallResult, makeVideoConfCall$ as makeVideoConfCall } from './union/makeVideoConfCall'; -import { minutesCreateFromVideo$ as union_minutesCreateFromVideo } from './union/minutesCreateFromVideo'; -export { IUnionMinutesCreateFromVideoParams, IUnionMinutesCreateFromVideoResult, minutesCreateFromVideo$ as minutesCreateFromVideo } from './union/minutesCreateFromVideo'; -import { minutesStart$ as union_minutesStart } from './union/minutesStart'; -export { IUnionMinutesStartParams, IUnionMinutesStartResult, minutesStart$ as minutesStart } from './union/minutesStart'; -import { minutesUploadVideo$ as union_minutesUploadVideo } from './union/minutesUploadVideo'; -export { IUnionMinutesUploadVideoParams, IUnionMinutesUploadVideoResult, minutesUploadVideo$ as minutesUploadVideo } from './union/minutesUploadVideo'; -import { minutesViewDetail$ as union_minutesViewDetail } from './union/minutesViewDetail'; -export { IUnionMinutesViewDetailParams, IUnionMinutesViewDetailResult, minutesViewDetail$ as minutesViewDetail } from './union/minutesViewDetail'; -import { multiSelect$ as union_multiSelect } from './union/multiSelect'; -export { IUnionMultiSelectParams, IUnionMultiSelectResult, multiSelect$ as multiSelect } from './union/multiSelect'; -import { navigateBackPage$ as union_navigateBackPage } from './union/navigateBackPage'; -export { IUnionNavigateBackPageParams, IUnionNavigateBackPageResult, navigateBackPage$ as navigateBackPage } from './union/navigateBackPage'; -import { navigateToPage$ as union_navigateToPage } from './union/navigateToPage'; -export { IUnionNavigateToPageParams, IUnionNavigateToPageResult, navigateToPage$ as navigateToPage } from './union/navigateToPage'; -import { nfcReadCardNumber$ as union_nfcReadCardNumber } from './union/nfcReadCardNumber'; -export { IUnionNfcReadCardNumberParams, IUnionNfcReadCardNumberResult, nfcReadCardNumber$ as nfcReadCardNumber } from './union/nfcReadCardNumber'; -import { notifyBLECharacteristicValueChange$ as union_notifyBLECharacteristicValueChange } from './union/notifyBLECharacteristicValueChange'; -export { IUnionNotifyBLECharacteristicValueChangeParams, IUnionNotifyBLECharacteristicValueChangeResult, notifyBLECharacteristicValueChange$ as notifyBLECharacteristicValueChange } from './union/notifyBLECharacteristicValueChange'; -import { notifyTranslateEvent$ as union_notifyTranslateEvent } from './union/notifyTranslateEvent'; -export { IUnionNotifyTranslateEventParams, IUnionNotifyTranslateEventResult, notifyTranslateEvent$ as notifyTranslateEvent } from './union/notifyTranslateEvent'; -import { offBLECharacteristicValueChange$ as union_offBLECharacteristicValueChange } from './union/offBLECharacteristicValueChange'; -export { IUnionOffBLECharacteristicValueChangeParams, IUnionOffBLECharacteristicValueChangeResult, offBLECharacteristicValueChange$ as offBLECharacteristicValueChange } from './union/offBLECharacteristicValueChange'; -import { offBLEConnectionStateChanged$ as union_offBLEConnectionStateChanged } from './union/offBLEConnectionStateChanged'; -export { IUnionOffBLEConnectionStateChangedParams, IUnionOffBLEConnectionStateChangedResult, offBLEConnectionStateChanged$ as offBLEConnectionStateChanged } from './union/offBLEConnectionStateChanged'; -import { offBluetoothAdapterStateChange$ as union_offBluetoothAdapterStateChange } from './union/offBluetoothAdapterStateChange'; -export { IUnionOffBluetoothAdapterStateChangeParams, IUnionOffBluetoothAdapterStateChangeResult, offBluetoothAdapterStateChange$ as offBluetoothAdapterStateChange } from './union/offBluetoothAdapterStateChange'; -import { offBluetoothDeviceFound$ as union_offBluetoothDeviceFound } from './union/offBluetoothDeviceFound'; -export { IUnionOffBluetoothDeviceFoundParams, IUnionOffBluetoothDeviceFoundResult, offBluetoothDeviceFound$ as offBluetoothDeviceFound } from './union/offBluetoothDeviceFound'; -import { onBLECharacteristicValueChange$ as union_onBLECharacteristicValueChange } from './union/onBLECharacteristicValueChange'; -export { IUnionOnBLECharacteristicValueChangeParams, IUnionOnBLECharacteristicValueChangeResult, onBLECharacteristicValueChange$ as onBLECharacteristicValueChange } from './union/onBLECharacteristicValueChange'; -import { onBLEConnectionStateChanged$ as union_onBLEConnectionStateChanged } from './union/onBLEConnectionStateChanged'; -export { IUnionOnBLEConnectionStateChangedParams, IUnionOnBLEConnectionStateChangedResult, onBLEConnectionStateChanged$ as onBLEConnectionStateChanged } from './union/onBLEConnectionStateChanged'; -import { onBLEPeripheralCharacteristicReadRequest$ as union_onBLEPeripheralCharacteristicReadRequest } from './union/onBLEPeripheralCharacteristicReadRequest'; -export { IUnionOnBLEPeripheralCharacteristicReadRequestParams, IUnionOnBLEPeripheralCharacteristicReadRequestResult, onBLEPeripheralCharacteristicReadRequest$ as onBLEPeripheralCharacteristicReadRequest } from './union/onBLEPeripheralCharacteristicReadRequest'; -import { onBLEPeripheralCharacteristicWriteRequest$ as union_onBLEPeripheralCharacteristicWriteRequest } from './union/onBLEPeripheralCharacteristicWriteRequest'; -export { IUnionOnBLEPeripheralCharacteristicWriteRequestParams, IUnionOnBLEPeripheralCharacteristicWriteRequestResult, onBLEPeripheralCharacteristicWriteRequest$ as onBLEPeripheralCharacteristicWriteRequest } from './union/onBLEPeripheralCharacteristicWriteRequest'; -import { onBLEPeripheralConnectionStateChanged$ as union_onBLEPeripheralConnectionStateChanged } from './union/onBLEPeripheralConnectionStateChanged'; -export { IUnionOnBLEPeripheralConnectionStateChangedParams, IUnionOnBLEPeripheralConnectionStateChangedResult, onBLEPeripheralConnectionStateChanged$ as onBLEPeripheralConnectionStateChanged } from './union/onBLEPeripheralConnectionStateChanged'; -import { onBeaconServiceChange$ as union_onBeaconServiceChange } from './union/onBeaconServiceChange'; -export { IUnionOnBeaconServiceChangeParams, IUnionOnBeaconServiceChangeResult, onBeaconServiceChange$ as onBeaconServiceChange } from './union/onBeaconServiceChange'; -import { onBeaconUpdate$ as union_onBeaconUpdate } from './union/onBeaconUpdate'; -export { IUnionOnBeaconUpdateParams, IUnionOnBeaconUpdateResult, onBeaconUpdate$ as onBeaconUpdate } from './union/onBeaconUpdate'; -import { onBluetoothAdapterStateChange$ as union_onBluetoothAdapterStateChange } from './union/onBluetoothAdapterStateChange'; -export { IUnionOnBluetoothAdapterStateChangeParams, IUnionOnBluetoothAdapterStateChangeResult, onBluetoothAdapterStateChange$ as onBluetoothAdapterStateChange } from './union/onBluetoothAdapterStateChange'; -import { onBluetoothDeviceFound$ as union_onBluetoothDeviceFound } from './union/onBluetoothDeviceFound'; -export { IUnionOnBluetoothDeviceFoundParams, IUnionOnBluetoothDeviceFoundResult, onBluetoothDeviceFound$ as onBluetoothDeviceFound } from './union/onBluetoothDeviceFound'; -import { onPlayAudioEnd$ as union_onPlayAudioEnd } from './union/onPlayAudioEnd'; -export { IUnionOnPlayAudioEndParams, IUnionOnPlayAudioEndResult, onPlayAudioEnd$ as onPlayAudioEnd } from './union/onPlayAudioEnd'; -import { onRecordEnd$ as union_onRecordEnd } from './union/onRecordEnd'; -export { IUnionOnRecordEndParams, IUnionOnRecordEndResult, onRecordEnd$ as onRecordEnd } from './union/onRecordEnd'; -import { openBluetoothAdapter$ as union_openBluetoothAdapter } from './union/openBluetoothAdapter'; -export { IUnionOpenBluetoothAdapterParams, IUnionOpenBluetoothAdapterResult, openBluetoothAdapter$ as openBluetoothAdapter } from './union/openBluetoothAdapter'; -import { openChatByChatId$ as union_openChatByChatId } from './union/openChatByChatId'; -export { IUnionOpenChatByChatIdParams, IUnionOpenChatByChatIdResult, openChatByChatId$ as openChatByChatId } from './union/openChatByChatId'; -import { openChatByConversationId$ as union_openChatByConversationId } from './union/openChatByConversationId'; -export { IUnionOpenChatByConversationIdParams, IUnionOpenChatByConversationIdResult, openChatByConversationId$ as openChatByConversationId } from './union/openChatByConversationId'; -import { openChatByUserId$ as union_openChatByUserId } from './union/openChatByUserId'; -export { IUnionOpenChatByUserIdParams, IUnionOpenChatByUserIdResult, openChatByUserId$ as openChatByUserId } from './union/openChatByUserId'; -import { openDocument$ as union_openDocument } from './union/openDocument'; -export { IUnionOpenDocumentParams, IUnionOpenDocumentResult, openDocument$ as openDocument } from './union/openDocument'; -import { openLink$ as union_openLink } from './union/openLink'; -export { IUnionOpenLinkParams, IUnionOpenLinkResult, openLink$ as openLink } from './union/openLink'; -import { openLocalFile$ as union_openLocalFile } from './union/openLocalFile'; -export { IUnionOpenLocalFileParams, IUnionOpenLocalFileResult, openLocalFile$ as openLocalFile } from './union/openLocalFile'; -import { openLocation$ as union_openLocation } from './union/openLocation'; -export { IUnionOpenLocationParams, IUnionOpenLocationResult, openLocation$ as openLocation } from './union/openLocation'; -import { openMicroApp$ as union_openMicroApp } from './union/openMicroApp'; -export { IUnionOpenMicroAppParams, IUnionOpenMicroAppResult, openMicroApp$ as openMicroApp } from './union/openMicroApp'; -import { openPageInMicroApp$ as union_openPageInMicroApp } from './union/openPageInMicroApp'; -export { IUnionOpenPageInMicroAppParams, IUnionOpenPageInMicroAppResult, openPageInMicroApp$ as openPageInMicroApp } from './union/openPageInMicroApp'; -import { openPageInModalForPC$ as union_openPageInModalForPC } from './union/openPageInModalForPC'; -export { IUnionOpenPageInModalForPCParams, IUnionOpenPageInModalForPCResult, openPageInModalForPC$ as openPageInModalForPC } from './union/openPageInModalForPC'; -import { openPageInSlidePanelForPC$ as union_openPageInSlidePanelForPC } from './union/openPageInSlidePanelForPC'; -export { IUnionOpenPageInSlidePanelForPCParams, IUnionOpenPageInSlidePanelForPCResult, openPageInSlidePanelForPC$ as openPageInSlidePanelForPC } from './union/openPageInSlidePanelForPC'; -import { openPageInWorkBenchForPC$ as union_openPageInWorkBenchForPC } from './union/openPageInWorkBenchForPC'; -export { IUnionOpenPageInWorkBenchForPCParams, IUnionOpenPageInWorkBenchForPCResult, openPageInWorkBenchForPC$ as openPageInWorkBenchForPC } from './union/openPageInWorkBenchForPC'; -import { pauseAudio$ as union_pauseAudio } from './union/pauseAudio'; -export { IUnionPauseAudioParams, IUnionPauseAudioResult, pauseAudio$ as pauseAudio } from './union/pauseAudio'; -import { playAudio$ as union_playAudio } from './union/playAudio'; -export { IUnionPlayAudioParams, IUnionPlayAudioResult, playAudio$ as playAudio } from './union/playAudio'; -import { popGesture$ as union_popGesture } from './union/popGesture'; -export { IUnionPopGestureParams, IUnionPopGestureResult, popGesture$ as popGesture } from './union/popGesture'; -import { previewFileInDingTalk$ as union_previewFileInDingTalk } from './union/previewFileInDingTalk'; -export { IUnionPreviewFileInDingTalkParams, IUnionPreviewFileInDingTalkResult, previewFileInDingTalk$ as previewFileInDingTalk } from './union/previewFileInDingTalk'; -import { previewImage$ as union_previewImage } from './union/previewImage'; -export { IUnionPreviewImageParams, IUnionPreviewImageResult, previewImage$ as previewImage } from './union/previewImage'; -import { previewImagesInDingTalkBatch$ as union_previewImagesInDingTalkBatch } from './union/previewImagesInDingTalkBatch'; -export { IUnionPreviewImagesInDingTalkBatchParams, IUnionPreviewImagesInDingTalkBatchResult, previewImagesInDingTalkBatch$ as previewImagesInDingTalkBatch } from './union/previewImagesInDingTalkBatch'; -import { previewMedia$ as union_previewMedia } from './union/previewMedia'; -export { IUnionPreviewMediaParams, IUnionPreviewMediaResult, previewMedia$ as previewMedia } from './union/previewMedia'; -import { prompt$ as union_prompt } from './union/prompt'; -export { IUnionPromptParams, IUnionPromptResult, prompt$ as prompt } from './union/prompt'; -import { quickCallList$ as union_quickCallList } from './union/quickCallList'; -export { IUnionQuickCallListParams, IUnionQuickCallListResult, quickCallList$ as quickCallList } from './union/quickCallList'; -import { quitPage$ as union_quitPage } from './union/quitPage'; -export { IUnionQuitPageParams, IUnionQuitPageResult, quitPage$ as quitPage } from './union/quitPage'; -import { readBLECharacteristicValue$ as union_readBLECharacteristicValue } from './union/readBLECharacteristicValue'; -export { IUnionReadBLECharacteristicValueParams, IUnionReadBLECharacteristicValueResult, readBLECharacteristicValue$ as readBLECharacteristicValue } from './union/readBLECharacteristicValue'; -import { readNFC$ as union_readNFC } from './union/readNFC'; -export { IUnionReadNFCParams, IUnionReadNFCResult, readNFC$ as readNFC } from './union/readNFC'; -import { removeCachedAPIResponse$ as union_removeCachedAPIResponse } from './union/removeCachedAPIResponse'; -export { IUnionRemoveCachedAPIResponseParams, IUnionRemoveCachedAPIResponseResult, removeCachedAPIResponse$ as removeCachedAPIResponse } from './union/removeCachedAPIResponse'; -import { removeStorage$ as union_removeStorage } from './union/removeStorage'; -export { IUnionRemoveStorageParams, IUnionRemoveStorageResult, removeStorage$ as removeStorage } from './union/removeStorage'; -import { replacePage$ as union_replacePage } from './union/replacePage'; -export { IUnionReplacePageParams, IUnionReplacePageResult, replacePage$ as replacePage } from './union/replacePage'; -import { requestAuthCode$ as union_requestAuthCode } from './union/requestAuthCode'; -export { IUnionRequestAuthCodeParams, IUnionRequestAuthCodeResult, requestAuthCode$ as requestAuthCode } from './union/requestAuthCode'; -import { requestMoneySubmmitOrder$ as union_requestMoneySubmmitOrder } from './union/requestMoneySubmmitOrder'; -export { IUnionRequestMoneySubmmitOrderParams, IUnionRequestMoneySubmmitOrderResult, requestMoneySubmmitOrder$ as requestMoneySubmmitOrder } from './union/requestMoneySubmmitOrder'; -import { resetScreenView$ as union_resetScreenView } from './union/resetScreenView'; -export { IUnionResetScreenViewParams, IUnionResetScreenViewResult, resetScreenView$ as resetScreenView } from './union/resetScreenView'; -import { resumeAudio$ as union_resumeAudio } from './union/resumeAudio'; -export { IUnionResumeAudioParams, IUnionResumeAudioResult, resumeAudio$ as resumeAudio } from './union/resumeAudio'; -import { rotateScreenView$ as union_rotateScreenView } from './union/rotateScreenView'; -export { IUnionRotateScreenViewParams, IUnionRotateScreenViewResult, rotateScreenView$ as rotateScreenView } from './union/rotateScreenView'; -import { rsa$ as union_rsa } from './union/rsa'; -export { IUnionRsaParams, IUnionRsaResult, rsa$ as rsa } from './union/rsa'; -import { saveFileToDingTalk$ as union_saveFileToDingTalk } from './union/saveFileToDingTalk'; -export { IUnionSaveFileToDingTalkParams, IUnionSaveFileToDingTalkResult, saveFileToDingTalk$ as saveFileToDingTalk } from './union/saveFileToDingTalk'; -import { saveImageToPhotosAlbum$ as union_saveImageToPhotosAlbum } from './union/saveImageToPhotosAlbum'; -export { IUnionSaveImageToPhotosAlbumParams, IUnionSaveImageToPhotosAlbumResult, saveImageToPhotosAlbum$ as saveImageToPhotosAlbum } from './union/saveImageToPhotosAlbum'; -import { saveVideoToPhotosAlbum$ as union_saveVideoToPhotosAlbum } from './union/saveVideoToPhotosAlbum'; -export { IUnionSaveVideoToPhotosAlbumParams, IUnionSaveVideoToPhotosAlbumResult, saveVideoToPhotosAlbum$ as saveVideoToPhotosAlbum } from './union/saveVideoToPhotosAlbum'; -import { scan$ as union_scan } from './union/scan'; -export { IUnionScanParams, IUnionScanResult, scan$ as scan } from './union/scan'; -import { scanCard$ as union_scanCard } from './union/scanCard'; -export { IUnionScanCardParams, IUnionScanCardResult, scanCard$ as scanCard } from './union/scanCard'; -import { searchMap$ as union_searchMap } from './union/searchMap'; -export { IUnionSearchMapParams, IUnionSearchMapResult, searchMap$ as searchMap } from './union/searchMap'; -import { setClipboard$ as union_setClipboard } from './union/setClipboard'; -export { IUnionSetClipboardParams, IUnionSetClipboardResult, setClipboard$ as setClipboard } from './union/setClipboard'; -import { setGestures$ as union_setGestures } from './union/setGestures'; -export { IUnionSetGesturesParams, IUnionSetGesturesResult, setGestures$ as setGestures } from './union/setGestures'; -import { setKeepScreenOn$ as union_setKeepScreenOn } from './union/setKeepScreenOn'; -export { IUnionSetKeepScreenOnParams, IUnionSetKeepScreenOnResult, setKeepScreenOn$ as setKeepScreenOn } from './union/setKeepScreenOn'; -import { setNavigationIcon$ as union_setNavigationIcon } from './union/setNavigationIcon'; -export { IUnionSetNavigationIconParams, IUnionSetNavigationIconResult, setNavigationIcon$ as setNavigationIcon } from './union/setNavigationIcon'; -import { setNavigationLeft$ as union_setNavigationLeft } from './union/setNavigationLeft'; -export { IUnionSetNavigationLeftParams, IUnionSetNavigationLeftResult, setNavigationLeft$ as setNavigationLeft } from './union/setNavigationLeft'; -import { setNavigationTitle$ as union_setNavigationTitle } from './union/setNavigationTitle'; -export { IUnionSetNavigationTitleParams, IUnionSetNavigationTitleResult, setNavigationTitle$ as setNavigationTitle } from './union/setNavigationTitle'; -import { setScreenBrightness$ as union_setScreenBrightness } from './union/setScreenBrightness'; -export { IUnionSetScreenBrightnessParams, IUnionSetScreenBrightnessResult, setScreenBrightness$ as setScreenBrightness } from './union/setScreenBrightness'; -import { setStorage$ as union_setStorage } from './union/setStorage'; -export { IUnionSetStorageParams, IUnionSetStorageResult, setStorage$ as setStorage } from './union/setStorage'; -import { share$ as union_share } from './union/share'; -export { IUnionShareParams, IUnionShareResult, share$ as share } from './union/share'; -import { showActionSheet$ as union_showActionSheet } from './union/showActionSheet'; -export { IUnionShowActionSheetParams, IUnionShowActionSheetResult, showActionSheet$ as showActionSheet } from './union/showActionSheet'; -import { showAuthGuide$ as union_showAuthGuide } from './union/showAuthGuide'; -export { IUnionShowAuthGuideParams, IUnionShowAuthGuideResult, showAuthGuide$ as showAuthGuide } from './union/showAuthGuide'; -import { showCallMenu$ as union_showCallMenu } from './union/showCallMenu'; -export { IUnionShowCallMenuParams, IUnionShowCallMenuResult, showCallMenu$ as showCallMenu } from './union/showCallMenu'; -import { showLoading$ as union_showLoading } from './union/showLoading'; -export { IUnionShowLoadingParams, IUnionShowLoadingResult, showLoading$ as showLoading } from './union/showLoading'; -import { showModal$ as union_showModal } from './union/showModal'; -export { IUnionShowModalParams, IUnionShowModalResult, showModal$ as showModal } from './union/showModal'; -import { showSharePanel$ as union_showSharePanel } from './union/showSharePanel'; -export { IUnionShowSharePanelParams, IUnionShowSharePanelResult, showSharePanel$ as showSharePanel } from './union/showSharePanel'; -import { showToast$ as union_showToast } from './union/showToast'; -export { IUnionShowToastParams, IUnionShowToastResult, showToast$ as showToast } from './union/showToast'; -import { singleSelect$ as union_singleSelect } from './union/singleSelect'; -export { IUnionSingleSelectParams, IUnionSingleSelectResult, singleSelect$ as singleSelect } from './union/singleSelect'; -import { startAdvertising$ as union_startAdvertising } from './union/startAdvertising'; -export { IUnionStartAdvertisingParams, IUnionStartAdvertisingResult, startAdvertising$ as startAdvertising } from './union/startAdvertising'; -import { startBeaconDiscovery$ as union_startBeaconDiscovery } from './union/startBeaconDiscovery'; -export { IUnionStartBeaconDiscoveryParams, IUnionStartBeaconDiscoveryResult, startBeaconDiscovery$ as startBeaconDiscovery } from './union/startBeaconDiscovery'; -import { startBluetoothDevicesDiscovery$ as union_startBluetoothDevicesDiscovery } from './union/startBluetoothDevicesDiscovery'; -export { IUnionStartBluetoothDevicesDiscoveryParams, IUnionStartBluetoothDevicesDiscoveryResult, startBluetoothDevicesDiscovery$ as startBluetoothDevicesDiscovery } from './union/startBluetoothDevicesDiscovery'; -import { startDingerRecord$ as union_startDingerRecord } from './union/startDingerRecord'; -export { IUnionStartDingerRecordParams, IUnionStartDingerRecordResult, startDingerRecord$ as startDingerRecord } from './union/startDingerRecord'; -import { startLocating$ as union_startLocating } from './union/startLocating'; -export { IUnionStartLocatingParams, IUnionStartLocatingResult, startLocating$ as startLocating } from './union/startLocating'; -import { startRecord$ as union_startRecord } from './union/startRecord'; -export { IUnionStartRecordParams, IUnionStartRecordResult, startRecord$ as startRecord } from './union/startRecord'; -import { stopAdvertising$ as union_stopAdvertising } from './union/stopAdvertising'; -export { IUnionStopAdvertisingParams, IUnionStopAdvertisingResult, stopAdvertising$ as stopAdvertising } from './union/stopAdvertising'; -import { stopAudio$ as union_stopAudio } from './union/stopAudio'; -export { IUnionStopAudioParams, IUnionStopAudioResult, stopAudio$ as stopAudio } from './union/stopAudio'; -import { stopBeaconDiscovery$ as union_stopBeaconDiscovery } from './union/stopBeaconDiscovery'; -export { IUnionStopBeaconDiscoveryParams, IUnionStopBeaconDiscoveryResult, stopBeaconDiscovery$ as stopBeaconDiscovery } from './union/stopBeaconDiscovery'; -import { stopBluetoothDevicesDiscovery$ as union_stopBluetoothDevicesDiscovery } from './union/stopBluetoothDevicesDiscovery'; -export { IUnionStopBluetoothDevicesDiscoveryParams, IUnionStopBluetoothDevicesDiscoveryResult, stopBluetoothDevicesDiscovery$ as stopBluetoothDevicesDiscovery } from './union/stopBluetoothDevicesDiscovery'; -import { stopDingerRecord$ as union_stopDingerRecord } from './union/stopDingerRecord'; -export { IUnionStopDingerRecordParams, IUnionStopDingerRecordResult, stopDingerRecord$ as stopDingerRecord } from './union/stopDingerRecord'; -import { stopLocating$ as union_stopLocating } from './union/stopLocating'; -export { IUnionStopLocatingParams, IUnionStopLocatingResult, stopLocating$ as stopLocating } from './union/stopLocating'; -import { stopPullDownRefresh$ as union_stopPullDownRefresh } from './union/stopPullDownRefresh'; -export { IUnionStopPullDownRefreshParams, IUnionStopPullDownRefreshResult, stopPullDownRefresh$ as stopPullDownRefresh } from './union/stopPullDownRefresh'; -import { stopRecord$ as union_stopRecord } from './union/stopRecord'; -export { IUnionStopRecordParams, IUnionStopRecordResult, stopRecord$ as stopRecord } from './union/stopRecord'; -import { subscribe$ as union_subscribe } from './union/subscribe'; -export { IUnionSubscribeParams, IUnionSubscribeResult, subscribe$ as subscribe } from './union/subscribe'; -import { timePicker$ as union_timePicker } from './union/timePicker'; -export { IUnionTimePickerParams, IUnionTimePickerResult, timePicker$ as timePicker } from './union/timePicker'; -import { translate$ as union_translate } from './union/translate'; -export { IUnionTranslateParams, IUnionTranslateResult, translate$ as translate } from './union/translate'; -import { translateVoice$ as union_translateVoice } from './union/translateVoice'; -export { IUnionTranslateVoiceParams, IUnionTranslateVoiceResult, translateVoice$ as translateVoice } from './union/translateVoice'; -import { uploadAttachmentToDingTalk$ as union_uploadAttachmentToDingTalk } from './union/uploadAttachmentToDingTalk'; -export { IUnionUploadAttachmentToDingTalkParams, IUnionUploadAttachmentToDingTalkResult, uploadAttachmentToDingTalk$ as uploadAttachmentToDingTalk } from './union/uploadAttachmentToDingTalk'; -import { uploadFile$ as union_uploadFile } from './union/uploadFile'; -export { IUnionUploadFileParams, IUnionUploadFileResult, uploadFile$ as uploadFile } from './union/uploadFile'; -import { vibrate$ as union_vibrate } from './union/vibrate'; -export { IUnionVibrateParams, IUnionVibrateResult, vibrate$ as vibrate } from './union/vibrate'; -import { watchShake$ as union_watchShake } from './union/watchShake'; -export { IUnionWatchShakeParams, IUnionWatchShakeResult, watchShake$ as watchShake } from './union/watchShake'; -import { writeBLECharacteristicValue$ as union_writeBLECharacteristicValue } from './union/writeBLECharacteristicValue'; -export { IUnionWriteBLECharacteristicValueParams, IUnionWriteBLECharacteristicValueResult, writeBLECharacteristicValue$ as writeBLECharacteristicValue } from './union/writeBLECharacteristicValue'; -import { writeBLEPeripheralCharacteristicValue$ as union_writeBLEPeripheralCharacteristicValue } from './union/writeBLEPeripheralCharacteristicValue'; -export { IUnionWriteBLEPeripheralCharacteristicValueParams, IUnionWriteBLEPeripheralCharacteristicValueResult, writeBLEPeripheralCharacteristicValue$ as writeBLEPeripheralCharacteristicValue } from './union/writeBLEPeripheralCharacteristicValue'; -import { writeNFC$ as union_writeNFC } from './union/writeNFC'; -export { IUnionWriteNFCParams, IUnionWriteNFCResult, writeNFC$ as writeNFC } from './union/writeNFC'; -import { getItem$ as util_domainStorage_getItem } from './util/domainStorage/getItem'; -export { IUtilDomainStorageGetItemParams, IUtilDomainStorageGetItemResult } from './util/domainStorage/getItem'; -import { getStorageInfo$ as util_domainStorage_getStorageInfo } from './util/domainStorage/getStorageInfo'; -export { IUtilDomainStorageGetStorageInfoParams, IUtilDomainStorageGetStorageInfoResult } from './util/domainStorage/getStorageInfo'; -import { removeItem$ as util_domainStorage_removeItem } from './util/domainStorage/removeItem'; -export { IUtilDomainStorageRemoveItemParams, IUtilDomainStorageRemoveItemResult } from './util/domainStorage/removeItem'; -import { setItem$ as util_domainStorage_setItem } from './util/domainStorage/setItem'; -export { IUtilDomainStorageSetItemParams, IUtilDomainStorageSetItemResult } from './util/domainStorage/setItem'; -import { getData$ as util_openTemporary_getData } from './util/openTemporary/getData'; -export { IUtilOpenTemporaryGetDataParams, IUtilOpenTemporaryGetDataResult } from './util/openTemporary/getData'; -export declare const apiObj: { - biz: { - ATMBle: { - beaconPicker: typeof biz_ATMBle_beaconPicker; - detectFace: typeof biz_ATMBle_detectFace; - detectFaceFullScreen: typeof biz_ATMBle_detectFaceFullScreen; - exclusiveLiveCheck: typeof biz_ATMBle_exclusiveLiveCheck; - faceManager: typeof biz_ATMBle_faceManager; - punchModePicker: typeof biz_ATMBle_punchModePicker; - }; - alipay: { - bindAlipay: typeof biz_alipay_bindAlipay; - openAuth: typeof biz_alipay_openAuth; - pay: typeof biz_alipay_pay; - }; - attend: { - getLBSWua: typeof biz_attend_getLBSWua; - }; - auth: { - openAccountPwdLoginPage: typeof biz_auth_openAccountPwdLoginPage; - requestAuthInfo: typeof biz_auth_requestAuthInfo; - }; - calendar: { - chooseDateTime: typeof biz_calendar_chooseDateTime; - chooseHalfDay: typeof biz_calendar_chooseHalfDay; - chooseInterval: typeof biz_calendar_chooseInterval; - chooseOneDay: typeof biz_calendar_chooseOneDay; - }; - chat: { - chooseConversationByCorpId: typeof biz_chat_chooseConversationByCorpId; - collectSticker: typeof biz_chat_collectSticker; - createSceneGroup: typeof biz_chat_createSceneGroup; - getRealmCid: typeof biz_chat_getRealmCid; - locationChatMessage: typeof biz_chat_locationChatMessage; - openSingleChat: typeof biz_chat_openSingleChat; - pickConversation: typeof biz_chat_pickConversation; - sendEmotion: typeof biz_chat_sendEmotion; - toConversation: typeof biz_chat_toConversation; - toConversationByOpenConversationId: typeof biz_chat_toConversationByOpenConversationId; - }; - clipboardData: { - setData: typeof biz_clipboardData_setData; - }; - conference: { - createCloudCall: typeof biz_conference_createCloudCall; - getCloudCallInfo: typeof biz_conference_getCloudCallInfo; - getCloudCallList: typeof biz_conference_getCloudCallList; - videoConfCall: typeof biz_conference_videoConfCall; - }; - contact: { - choose: typeof biz_contact_choose; - chooseMobileContacts: typeof biz_contact_chooseMobileContacts; - complexPicker: typeof biz_contact_complexPicker; - createGroup: typeof biz_contact_createGroup; - departmentsPicker: typeof biz_contact_departmentsPicker; - externalComplexPicker: typeof biz_contact_externalComplexPicker; - externalEditForm: typeof biz_contact_externalEditForm; - rolesPicker: typeof biz_contact_rolesPicker; - setRule: typeof biz_contact_setRule; - }; - cspace: { - chooseSpaceDir: typeof biz_cspace_chooseSpaceDir; - delete: typeof biz_cspace_delete; - preview: typeof biz_cspace_preview; - previewDentryImages: typeof biz_cspace_previewDentryImages; - saveFile: typeof biz_cspace_saveFile; - }; - customContact: { - choose: typeof biz_customContact_choose; - multipleChoose: typeof biz_customContact_multipleChoose; - }; - data: { - rsa: typeof biz_data_rsa; - }; - ding: { - create: typeof biz_ding_create; - post: typeof biz_ding_post; - }; - edu: { - finishMiniCourseByRecordId: typeof biz_edu_finishMiniCourseByRecordId; - getMiniCourseDraftList: typeof biz_edu_getMiniCourseDraftList; - joinClassroom: typeof biz_edu_joinClassroom; - makeMiniCourse: typeof biz_edu_makeMiniCourse; - newMsgNotificationStatus: typeof biz_edu_newMsgNotificationStatus; - startAuth: typeof biz_edu_startAuth; - tokenFaceImg: typeof biz_edu_tokenFaceImg; - }; - event: { - notifyWeex: typeof biz_event_notifyWeex; - }; - file: { - downloadFile: typeof biz_file_downloadFile; - }; - intent: { - fetchData: typeof biz_intent_fetchData; - }; - iot: { - bind: typeof biz_iot_bind; - bindMeetingRoom: typeof biz_iot_bindMeetingRoom; - getDeviceProperties: typeof biz_iot_getDeviceProperties; - invokeThingService: typeof biz_iot_invokeThingService; - queryMeetingRoomList: typeof biz_iot_queryMeetingRoomList; - setDeviceProperties: typeof biz_iot_setDeviceProperties; - unbind: typeof biz_iot_unbind; - }; - live: { - startClassRoom: typeof biz_live_startClassRoom; - startUnifiedLive: typeof biz_live_startUnifiedLive; - }; - map: { - locate: typeof biz_map_locate; - search: typeof biz_map_search; - view: typeof biz_map_view; - }; - media: { - compressVideo: typeof biz_media_compressVideo; - }; - microApp: { - openApp: typeof biz_microApp_openApp; - }; - navigation: { - close: typeof biz_navigation_close; - goBack: typeof biz_navigation_goBack; - hideBar: typeof biz_navigation_hideBar; - navigateBackPage: typeof biz_navigation_navigateBackPage; - navigateToMiniProgram: typeof biz_navigation_navigateToMiniProgram; - navigateToPage: typeof biz_navigation_navigateToPage; - quit: typeof biz_navigation_quit; - replace: typeof biz_navigation_replace; - setIcon: typeof biz_navigation_setIcon; - setLeft: typeof biz_navigation_setLeft; - setMenu: typeof biz_navigation_setMenu; - setRight: typeof biz_navigation_setRight; - setTitle: typeof biz_navigation_setTitle; - }; - pbp: { - componentPunchFromPartner: typeof biz_pbp_componentPunchFromPartner; - startMatchRuleFromPartner: typeof biz_pbp_startMatchRuleFromPartner; - stopMatchRuleFromPartner: typeof biz_pbp_stopMatchRuleFromPartner; - }; - phoneContact: { - add: typeof biz_phoneContact_add; - }; - realm: { - getRealtimeTracingStatus: typeof biz_realm_getRealtimeTracingStatus; - getUserExclusiveInfo: typeof biz_realm_getUserExclusiveInfo; - startRealtimeTracing: typeof biz_realm_startRealtimeTracing; - stopRealtimeTracing: typeof biz_realm_stopRealtimeTracing; - subscribe: typeof biz_realm_subscribe; - unsubscribe: typeof biz_realm_unsubscribe; - }; - resource: { - getInfo: typeof biz_resource_getInfo; - reportDebugMessage: typeof biz_resource_reportDebugMessage; - }; - shortCut: { - addShortCut: typeof biz_shortCut_addShortCut; - }; - sports: { - getHealthAuthorizationStatus: typeof biz_sports_getHealthAuthorizationStatus; - getHealthData: typeof biz_sports_getHealthData; - getHealthDeviceData: typeof biz_sports_getHealthDeviceData; - requestHealthAuthorization: typeof biz_sports_requestHealthAuthorization; - }; - store: { - closeUnpayOrder: typeof biz_store_closeUnpayOrder; - createOrder: typeof biz_store_createOrder; - getPayUrl: typeof biz_store_getPayUrl; - inquiry: typeof biz_store_inquiry; - }; - tabwindow: { - isTab: typeof biz_tabwindow_isTab; - }; - telephone: { - call: typeof biz_telephone_call; - checkBizCall: typeof biz_telephone_checkBizCall; - quickCallList: typeof biz_telephone_quickCallList; - showCallMenu: typeof biz_telephone_showCallMenu; - }; - user: { - checkPassword: typeof biz_user_checkPassword; - get: typeof biz_user_get; - }; - util: { - callComponent: typeof biz_util_callComponent; - checkAuth: typeof biz_util_checkAuth; - chooseImage: typeof biz_util_chooseImage; - chooseRegion: typeof biz_util_chooseRegion; - chosen: typeof biz_util_chosen; - clearWebStoreCache: typeof biz_util_clearWebStoreCache; - closePreviewImage: typeof biz_util_closePreviewImage; - compressImage: typeof biz_util_compressImage; - datepicker: typeof biz_util_datepicker; - datetimepicker: typeof biz_util_datetimepicker; - decrypt: typeof biz_util_decrypt; - downloadFile: typeof biz_util_downloadFile; - encrypt: typeof biz_util_encrypt; - getPerfInfo: typeof biz_util_getPerfInfo; - invokeWorkbench: typeof biz_util_invokeWorkbench; - isEnableGPUAcceleration: typeof biz_util_isEnableGPUAcceleration; - isLocalFileExist: typeof biz_util_isLocalFileExist; - multiSelect: typeof biz_util_multiSelect; - open: typeof biz_util_open; - openBrowser: typeof biz_util_openBrowser; - openDocument: typeof biz_util_openDocument; - openLink: typeof biz_util_openLink; - openLocalFile: typeof biz_util_openLocalFile; - openModal: typeof biz_util_openModal; - openSlidePanel: typeof biz_util_openSlidePanel; - presentWindow: typeof biz_util_presentWindow; - previewImage: typeof biz_util_previewImage; - previewVideo: typeof biz_util_previewVideo; - saveImage: typeof biz_util_saveImage; - saveImageToPhotosAlbum: typeof biz_util_saveImageToPhotosAlbum; - scan: typeof biz_util_scan; - scanCard: typeof biz_util_scanCard; - setGPUAcceleration: typeof biz_util_setGPUAcceleration; - setScreenBrightnessAndKeepOn: typeof biz_util_setScreenBrightnessAndKeepOn; - setScreenKeepOn: typeof biz_util_setScreenKeepOn; - share: typeof biz_util_share; - shareImage: typeof biz_util_shareImage; - showAuthGuide: typeof biz_util_showAuthGuide; - showSharePanel: typeof biz_util_showSharePanel; - startDocSign: typeof biz_util_startDocSign; - systemShare: typeof biz_util_systemShare; - timepicker: typeof biz_util_timepicker; - uploadAttachment: typeof biz_util_uploadAttachment; - uploadFile: typeof biz_util_uploadFile; - uploadImage: typeof biz_util_uploadImage; - uploadImageFromCamera: typeof biz_util_uploadImageFromCamera; - ut: typeof biz_util_ut; - }; - verify: { - openBindIDCard: typeof biz_verify_openBindIDCard; - startAuth: typeof biz_verify_startAuth; - }; - voice: { - makeCall: typeof biz_voice_makeCall; - }; - watermarkCamera: { - getWatermarkInfo: typeof biz_watermarkCamera_getWatermarkInfo; - setWatermarkInfo: typeof biz_watermarkCamera_setWatermarkInfo; - }; - }; - channel: { - permission: { - requestAuthCode: typeof channel_permission_requestAuthCode; - }; - }; - device: { - accelerometer: { - clearShake: typeof device_accelerometer_clearShake; - watchShake: typeof device_accelerometer_watchShake; - }; - audio: { - download: typeof device_audio_download; - onPlayEnd: typeof device_audio_onPlayEnd; - onRecordEnd: typeof device_audio_onRecordEnd; - pause: typeof device_audio_pause; - play: typeof device_audio_play; - resume: typeof device_audio_resume; - startRecord: typeof device_audio_startRecord; - stop: typeof device_audio_stop; - stopRecord: typeof device_audio_stopRecord; - translateVoice: typeof device_audio_translateVoice; - }; - base: { - getBatteryInfo: typeof device_base_getBatteryInfo; - getInterface: typeof device_base_getInterface; - getPhoneInfo: typeof device_base_getPhoneInfo; - getScanWifiListAsync: typeof device_base_getScanWifiListAsync; - getUUID: typeof device_base_getUUID; - getWifiStatus: typeof device_base_getWifiStatus; - openSystemSetting: typeof device_base_openSystemSetting; - }; - connection: { - getNetworkType: typeof device_connection_getNetworkType; - }; - geolocation: { - checkPermission: typeof device_geolocation_checkPermission; - get: typeof device_geolocation_get; - start: typeof device_geolocation_start; - status: typeof device_geolocation_status; - stop: typeof device_geolocation_stop; - }; - launcher: { - checkInstalledApps: typeof device_launcher_checkInstalledApps; - launchApp: typeof device_launcher_launchApp; - }; - nfc: { - nfcRead: typeof device_nfc_nfcRead; - nfcStop: typeof device_nfc_nfcStop; - nfcWrite: typeof device_nfc_nfcWrite; - }; - notification: { - actionSheet: typeof device_notification_actionSheet; - alert: typeof device_notification_alert; - confirm: typeof device_notification_confirm; - extendModal: typeof device_notification_extendModal; - hidePreloader: typeof device_notification_hidePreloader; - modal: typeof device_notification_modal; - prompt: typeof device_notification_prompt; - showPreloader: typeof device_notification_showPreloader; - toast: typeof device_notification_toast; - vibrate: typeof device_notification_vibrate; - }; - screen: { - getScreenBrightness: typeof device_screen_getScreenBrightness; - insetAdjust: typeof device_screen_insetAdjust; - isScreenReaderEnabled: typeof device_screen_isScreenReaderEnabled; - resetView: typeof device_screen_resetView; - rotateView: typeof device_screen_rotateView; - setScreenBrightness: typeof device_screen_setScreenBrightness; - }; - }; - media: { - voiceRecorder: { - keepAlive: typeof media_voiceRecorder_keepAlive; - pause: typeof media_voiceRecorder_pause; - resume: typeof media_voiceRecorder_resume; - start: typeof media_voiceRecorder_start; - stop: typeof media_voiceRecorder_stop; - }; - }; - net: { - bjGovApn: { - loginGovNet: typeof net_bjGovApn_loginGovNet; - }; - }; - runtime: { - h5nuvabridge: { - exec: typeof runtime_h5nuvabridge_exec; - }; - message: { - fetch: typeof runtime_message_fetch; - post: typeof runtime_message_post; - }; - monitor: { - getLoadTime: typeof runtime_monitor_getLoadTime; - }; - permission: { - requestAuthCode: typeof runtime_permission_requestAuthCode; - requestOperateAuthCode: typeof runtime_permission_requestOperateAuthCode; - }; - }; - ui: { - input: { - plain: typeof ui_input_plain; - }; - multitask: { - addToFloat: typeof ui_multitask_addToFloat; - removeFromFloat: typeof ui_multitask_removeFromFloat; - }; - nav: { - close: typeof ui_nav_close; - getCurrentId: typeof ui_nav_getCurrentId; - go: typeof ui_nav_go; - preload: typeof ui_nav_preload; - recycle: typeof ui_nav_recycle; - }; - progressBar: { - setColors: typeof ui_progressBar_setColors; - }; - pullToRefresh: { - disable: typeof ui_pullToRefresh_disable; - enable: typeof ui_pullToRefresh_enable; - stop: typeof ui_pullToRefresh_stop; - }; - webViewBounce: { - disable: typeof ui_webViewBounce_disable; - enable: typeof ui_webViewBounce_enable; - }; - }; - ExternalChannelPublish: typeof union_ExternalChannelPublish; - addPhoneContact: typeof union_addPhoneContact; - alert: typeof union_alert; - callUsers: typeof union_callUsers; - checkAuth: typeof union_checkAuth; - checkBizCall: typeof union_checkBizCall; - chooseChat: typeof union_chooseChat; - chooseConversation: typeof union_chooseConversation; - chooseDateRangeInCalendar: typeof union_chooseDateRangeInCalendar; - chooseDateTime: typeof union_chooseDateTime; - chooseDepartments: typeof union_chooseDepartments; - chooseDingTalkDir: typeof union_chooseDingTalkDir; - chooseDistrict: typeof union_chooseDistrict; - chooseExternalUsers: typeof union_chooseExternalUsers; - chooseFile: typeof union_chooseFile; - chooseHalfDayInCalendar: typeof union_chooseHalfDayInCalendar; - chooseImage: typeof union_chooseImage; - chooseMedia: typeof union_chooseMedia; - chooseOneDayInCalendar: typeof union_chooseOneDayInCalendar; - chooseOrg: typeof union_chooseOrg; - choosePhonebook: typeof union_choosePhonebook; - chooseStaffForPC: typeof union_chooseStaffForPC; - chooseUserFromList: typeof union_chooseUserFromList; - clearShake: typeof union_clearShake; - closeBluetoothAdapter: typeof union_closeBluetoothAdapter; - closePage: typeof union_closePage; - complexChoose: typeof union_complexChoose; - compressImage: typeof union_compressImage; - confirm: typeof union_confirm; - connectBLEDevice: typeof union_connectBLEDevice; - createBLEPeripheralServer: typeof union_createBLEPeripheralServer; - createDing: typeof union_createDing; - createDingForPC: typeof union_createDingForPC; - createGroupChat: typeof union_createGroupChat; - createLiveClassRoom: typeof union_createLiveClassRoom; - createPayOrder: typeof union_createPayOrder; - cropImage: typeof union_cropImage; - customChooseUsers: typeof union_customChooseUsers; - datePicker: typeof union_datePicker; - dateRangePicker: typeof union_dateRangePicker; - decrypt: typeof union_decrypt; - disablePullDownRefresh: typeof union_disablePullDownRefresh; - disableWebViewBounce: typeof union_disableWebViewBounce; - disconnectBLEDevice: typeof union_disconnectBLEDevice; - downloadAudio: typeof union_downloadAudio; - downloadFile: typeof union_downloadFile; - editExternalUser: typeof union_editExternalUser; - editPicture: typeof union_editPicture; - enablePullDownRefresh: typeof union_enablePullDownRefresh; - enableWebViewBounce: typeof union_enableWebViewBounce; - encrypt: typeof union_encrypt; - exclusiveLiveCheck: typeof union_exclusiveLiveCheck; - generateImageFromCode: typeof union_generateImageFromCode; - getAccountType: typeof union_getAccountType; - getActiveConferenceInfo: typeof union_getActiveConferenceInfo; - getAdvertisingStatus: typeof union_getAdvertisingStatus; - getAuthCode: typeof union_getAuthCode; - getAuthCodeV2: typeof union_getAuthCodeV2; - getAuthInfo: typeof union_getAuthInfo; - getBLEDeviceCharacteristics: typeof union_getBLEDeviceCharacteristics; - getBLEDeviceServices: typeof union_getBLEDeviceServices; - getBatteryInfo: typeof union_getBatteryInfo; - getBeacons: typeof union_getBeacons; - getBluetoothAdapterState: typeof union_getBluetoothAdapterState; - getBluetoothDevices: typeof union_getBluetoothDevices; - getCachedAPIResponse: typeof union_getCachedAPIResponse; - getCloudCallInfo: typeof union_getCloudCallInfo; - getCloudCallList: typeof union_getCloudCallList; - getCurrentCorpId: typeof union_getCurrentCorpId; - getDeviceId: typeof union_getDeviceId; - getDeviceUUID: typeof union_getDeviceUUID; - getDingerDeviceStatus: typeof union_getDingerDeviceStatus; - getImageInfo: typeof union_getImageInfo; - getLocatingStatus: typeof union_getLocatingStatus; - getLocation: typeof union_getLocation; - getNetworkType: typeof union_getNetworkType; - getOperateAuthCode: typeof union_getOperateAuthCode; - getPageTerminateInfo: typeof union_getPageTerminateInfo; - getPersonalWorkInfo: typeof union_getPersonalWorkInfo; - getScreenBrightness: typeof union_getScreenBrightness; - getStorage: typeof union_getStorage; - getSystemInfo: typeof union_getSystemInfo; - getSystemSettings: typeof union_getSystemSettings; - getThirdAppConfCustomData: typeof union_getThirdAppConfCustomData; - getThirdAppUserCustomData: typeof union_getThirdAppUserCustomData; - getTodaysStepCount: typeof union_getTodaysStepCount; - getTranslateStatus: typeof union_getTranslateStatus; - getUserExclusiveInfo: typeof union_getUserExclusiveInfo; - getWifiHotspotStatus: typeof union_getWifiHotspotStatus; - getWifiStatus: typeof union_getWifiStatus; - goBackPage: typeof union_goBackPage; - hideLoading: typeof union_hideLoading; - hideToast: typeof union_hideToast; - isInTabWindow: typeof union_isInTabWindow; - isLocalFileExist: typeof union_isLocalFileExist; - isScreenReaderEnabled: typeof union_isScreenReaderEnabled; - locateInMap: typeof union_locateInMap; - makeCloudCall: typeof union_makeCloudCall; - makeVideoConfCall: typeof union_makeVideoConfCall; - minutesCreateFromVideo: typeof union_minutesCreateFromVideo; - minutesStart: typeof union_minutesStart; - minutesUploadVideo: typeof union_minutesUploadVideo; - minutesViewDetail: typeof union_minutesViewDetail; - multiSelect: typeof union_multiSelect; - navigateBackPage: typeof union_navigateBackPage; - navigateToPage: typeof union_navigateToPage; - nfcReadCardNumber: typeof union_nfcReadCardNumber; - notifyBLECharacteristicValueChange: typeof union_notifyBLECharacteristicValueChange; - notifyTranslateEvent: typeof union_notifyTranslateEvent; - offBLECharacteristicValueChange: typeof union_offBLECharacteristicValueChange; - offBLEConnectionStateChanged: typeof union_offBLEConnectionStateChanged; - offBluetoothAdapterStateChange: typeof union_offBluetoothAdapterStateChange; - offBluetoothDeviceFound: typeof union_offBluetoothDeviceFound; - onBLECharacteristicValueChange: typeof union_onBLECharacteristicValueChange; - onBLEConnectionStateChanged: typeof union_onBLEConnectionStateChanged; - onBLEPeripheralCharacteristicReadRequest: typeof union_onBLEPeripheralCharacteristicReadRequest; - onBLEPeripheralCharacteristicWriteRequest: typeof union_onBLEPeripheralCharacteristicWriteRequest; - onBLEPeripheralConnectionStateChanged: typeof union_onBLEPeripheralConnectionStateChanged; - onBeaconServiceChange: typeof union_onBeaconServiceChange; - onBeaconUpdate: typeof union_onBeaconUpdate; - onBluetoothAdapterStateChange: typeof union_onBluetoothAdapterStateChange; - onBluetoothDeviceFound: typeof union_onBluetoothDeviceFound; - onPlayAudioEnd: typeof union_onPlayAudioEnd; - onRecordEnd: typeof union_onRecordEnd; - openBluetoothAdapter: typeof union_openBluetoothAdapter; - openChatByChatId: typeof union_openChatByChatId; - openChatByConversationId: typeof union_openChatByConversationId; - openChatByUserId: typeof union_openChatByUserId; - openDocument: typeof union_openDocument; - openLink: typeof union_openLink; - openLocalFile: typeof union_openLocalFile; - openLocation: typeof union_openLocation; - openMicroApp: typeof union_openMicroApp; - openPageInMicroApp: typeof union_openPageInMicroApp; - openPageInModalForPC: typeof union_openPageInModalForPC; - openPageInSlidePanelForPC: typeof union_openPageInSlidePanelForPC; - openPageInWorkBenchForPC: typeof union_openPageInWorkBenchForPC; - pauseAudio: typeof union_pauseAudio; - playAudio: typeof union_playAudio; - popGesture: typeof union_popGesture; - previewFileInDingTalk: typeof union_previewFileInDingTalk; - previewImage: typeof union_previewImage; - previewImagesInDingTalkBatch: typeof union_previewImagesInDingTalkBatch; - previewMedia: typeof union_previewMedia; - prompt: typeof union_prompt; - quickCallList: typeof union_quickCallList; - quitPage: typeof union_quitPage; - readBLECharacteristicValue: typeof union_readBLECharacteristicValue; - readNFC: typeof union_readNFC; - removeCachedAPIResponse: typeof union_removeCachedAPIResponse; - removeStorage: typeof union_removeStorage; - replacePage: typeof union_replacePage; - requestAuthCode: typeof union_requestAuthCode; - requestMoneySubmmitOrder: typeof union_requestMoneySubmmitOrder; - resetScreenView: typeof union_resetScreenView; - resumeAudio: typeof union_resumeAudio; - rotateScreenView: typeof union_rotateScreenView; - rsa: typeof union_rsa; - saveFileToDingTalk: typeof union_saveFileToDingTalk; - saveImageToPhotosAlbum: typeof union_saveImageToPhotosAlbum; - saveVideoToPhotosAlbum: typeof union_saveVideoToPhotosAlbum; - scan: typeof union_scan; - scanCard: typeof union_scanCard; - searchMap: typeof union_searchMap; - setClipboard: typeof union_setClipboard; - setGestures: typeof union_setGestures; - setKeepScreenOn: typeof union_setKeepScreenOn; - setNavigationIcon: typeof union_setNavigationIcon; - setNavigationLeft: typeof union_setNavigationLeft; - setNavigationTitle: typeof union_setNavigationTitle; - setScreenBrightness: typeof union_setScreenBrightness; - setStorage: typeof union_setStorage; - share: typeof union_share; - showActionSheet: typeof union_showActionSheet; - showAuthGuide: typeof union_showAuthGuide; - showCallMenu: typeof union_showCallMenu; - showLoading: typeof union_showLoading; - showModal: typeof union_showModal; - showSharePanel: typeof union_showSharePanel; - showToast: typeof union_showToast; - singleSelect: typeof union_singleSelect; - startAdvertising: typeof union_startAdvertising; - startBeaconDiscovery: typeof union_startBeaconDiscovery; - startBluetoothDevicesDiscovery: typeof union_startBluetoothDevicesDiscovery; - startDingerRecord: typeof union_startDingerRecord; - startLocating: typeof union_startLocating; - startRecord: typeof union_startRecord; - stopAdvertising: typeof union_stopAdvertising; - stopAudio: typeof union_stopAudio; - stopBeaconDiscovery: typeof union_stopBeaconDiscovery; - stopBluetoothDevicesDiscovery: typeof union_stopBluetoothDevicesDiscovery; - stopDingerRecord: typeof union_stopDingerRecord; - stopLocating: typeof union_stopLocating; - stopPullDownRefresh: typeof union_stopPullDownRefresh; - stopRecord: typeof union_stopRecord; - subscribe: typeof union_subscribe; - timePicker: typeof union_timePicker; - translate: typeof union_translate; - translateVoice: typeof union_translateVoice; - uploadAttachmentToDingTalk: typeof union_uploadAttachmentToDingTalk; - uploadFile: typeof union_uploadFile; - vibrate: typeof union_vibrate; - watchShake: typeof union_watchShake; - writeBLECharacteristicValue: typeof union_writeBLECharacteristicValue; - writeBLEPeripheralCharacteristicValue: typeof union_writeBLEPeripheralCharacteristicValue; - writeNFC: typeof union_writeNFC; - util: { - domainStorage: { - getItem: typeof util_domainStorage_getItem; - getStorageInfo: typeof util_domainStorage_getStorageInfo; - removeItem: typeof util_domainStorage_removeItem; - setItem: typeof util_domainStorage_setItem; - }; - openTemporary: { - getData: typeof util_openTemporary_getData; - }; - }; -}; diff --git a/node_modules/dingtalk-jsapi/api/apiObj.js b/node_modules/dingtalk-jsapi/api/apiObj.js deleted file mode 100644 index 70ef702e..00000000 --- a/node_modules/dingtalk-jsapi/api/apiObj.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.apiObj=void 0;var beaconPicker_1=require("./biz/ATMBle/beaconPicker"),detectFace_1=require("./biz/ATMBle/detectFace"),detectFaceFullScreen_1=require("./biz/ATMBle/detectFaceFullScreen"),exclusiveLiveCheck_1=require("./biz/ATMBle/exclusiveLiveCheck"),faceManager_1=require("./biz/ATMBle/faceManager"),punchModePicker_1=require("./biz/ATMBle/punchModePicker"),bindAlipay_1=require("./biz/alipay/bindAlipay"),openAuth_1=require("./biz/alipay/openAuth"),pay_1=require("./biz/alipay/pay"),getLBSWua_1=require("./biz/attend/getLBSWua"),openAccountPwdLoginPage_1=require("./biz/auth/openAccountPwdLoginPage"),requestAuthInfo_1=require("./biz/auth/requestAuthInfo"),chooseDateTime_1=require("./biz/calendar/chooseDateTime"),chooseHalfDay_1=require("./biz/calendar/chooseHalfDay"),chooseInterval_1=require("./biz/calendar/chooseInterval"),chooseOneDay_1=require("./biz/calendar/chooseOneDay"),chooseConversationByCorpId_1=require("./biz/chat/chooseConversationByCorpId"),collectSticker_1=require("./biz/chat/collectSticker"),createSceneGroup_1=require("./biz/chat/createSceneGroup"),getRealmCid_1=require("./biz/chat/getRealmCid"),locationChatMessage_1=require("./biz/chat/locationChatMessage"),openSingleChat_1=require("./biz/chat/openSingleChat"),pickConversation_1=require("./biz/chat/pickConversation"),sendEmotion_1=require("./biz/chat/sendEmotion"),toConversation_1=require("./biz/chat/toConversation"),toConversationByOpenConversationId_1=require("./biz/chat/toConversationByOpenConversationId"),setData_1=require("./biz/clipboardData/setData"),createCloudCall_1=require("./biz/conference/createCloudCall"),getCloudCallInfo_1=require("./biz/conference/getCloudCallInfo"),getCloudCallList_1=require("./biz/conference/getCloudCallList"),videoConfCall_1=require("./biz/conference/videoConfCall"),choose_1=require("./biz/contact/choose"),chooseMobileContacts_1=require("./biz/contact/chooseMobileContacts"),complexPicker_1=require("./biz/contact/complexPicker"),createGroup_1=require("./biz/contact/createGroup"),departmentsPicker_1=require("./biz/contact/departmentsPicker"),externalComplexPicker_1=require("./biz/contact/externalComplexPicker"),externalEditForm_1=require("./biz/contact/externalEditForm"),rolesPicker_1=require("./biz/contact/rolesPicker"),setRule_1=require("./biz/contact/setRule"),chooseSpaceDir_1=require("./biz/cspace/chooseSpaceDir"),delete_1=require("./biz/cspace/delete"),preview_1=require("./biz/cspace/preview"),previewDentryImages_1=require("./biz/cspace/previewDentryImages"),saveFile_1=require("./biz/cspace/saveFile"),choose_2=require("./biz/customContact/choose"),multipleChoose_1=require("./biz/customContact/multipleChoose"),rsa_1=require("./biz/data/rsa"),create_1=require("./biz/ding/create"),post_1=require("./biz/ding/post"),finishMiniCourseByRecordId_1=require("./biz/edu/finishMiniCourseByRecordId"),getMiniCourseDraftList_1=require("./biz/edu/getMiniCourseDraftList"),joinClassroom_1=require("./biz/edu/joinClassroom"),makeMiniCourse_1=require("./biz/edu/makeMiniCourse"),newMsgNotificationStatus_1=require("./biz/edu/newMsgNotificationStatus"),startAuth_1=require("./biz/edu/startAuth"),tokenFaceImg_1=require("./biz/edu/tokenFaceImg"),notifyWeex_1=require("./biz/event/notifyWeex"),downloadFile_1=require("./biz/file/downloadFile"),fetchData_1=require("./biz/intent/fetchData"),bind_1=require("./biz/iot/bind"),bindMeetingRoom_1=require("./biz/iot/bindMeetingRoom"),getDeviceProperties_1=require("./biz/iot/getDeviceProperties"),invokeThingService_1=require("./biz/iot/invokeThingService"),queryMeetingRoomList_1=require("./biz/iot/queryMeetingRoomList"),setDeviceProperties_1=require("./biz/iot/setDeviceProperties"),unbind_1=require("./biz/iot/unbind"),startClassRoom_1=require("./biz/live/startClassRoom"),startUnifiedLive_1=require("./biz/live/startUnifiedLive"),locate_1=require("./biz/map/locate"),search_1=require("./biz/map/search"),view_1=require("./biz/map/view"),compressVideo_1=require("./biz/media/compressVideo"),openApp_1=require("./biz/microApp/openApp"),close_1=require("./biz/navigation/close"),goBack_1=require("./biz/navigation/goBack"),hideBar_1=require("./biz/navigation/hideBar"),navigateBackPage_1=require("./biz/navigation/navigateBackPage"),navigateToMiniProgram_1=require("./biz/navigation/navigateToMiniProgram"),navigateToPage_1=require("./biz/navigation/navigateToPage"),quit_1=require("./biz/navigation/quit"),replace_1=require("./biz/navigation/replace"),setIcon_1=require("./biz/navigation/setIcon"),setLeft_1=require("./biz/navigation/setLeft"),setMenu_1=require("./biz/navigation/setMenu"),setRight_1=require("./biz/navigation/setRight"),setTitle_1=require("./biz/navigation/setTitle"),componentPunchFromPartner_1=require("./biz/pbp/componentPunchFromPartner"),startMatchRuleFromPartner_1=require("./biz/pbp/startMatchRuleFromPartner"),stopMatchRuleFromPartner_1=require("./biz/pbp/stopMatchRuleFromPartner"),add_1=require("./biz/phoneContact/add"),getRealtimeTracingStatus_1=require("./biz/realm/getRealtimeTracingStatus"),getUserExclusiveInfo_1=require("./biz/realm/getUserExclusiveInfo"),startRealtimeTracing_1=require("./biz/realm/startRealtimeTracing"),stopRealtimeTracing_1=require("./biz/realm/stopRealtimeTracing"),subscribe_1=require("./biz/realm/subscribe"),unsubscribe_1=require("./biz/realm/unsubscribe"),getInfo_1=require("./biz/resource/getInfo"),reportDebugMessage_1=require("./biz/resource/reportDebugMessage"),addShortCut_1=require("./biz/shortCut/addShortCut"),getHealthAuthorizationStatus_1=require("./biz/sports/getHealthAuthorizationStatus"),getHealthData_1=require("./biz/sports/getHealthData"),getHealthDeviceData_1=require("./biz/sports/getHealthDeviceData"),requestHealthAuthorization_1=require("./biz/sports/requestHealthAuthorization"),closeUnpayOrder_1=require("./biz/store/closeUnpayOrder"),createOrder_1=require("./biz/store/createOrder"),getPayUrl_1=require("./biz/store/getPayUrl"),inquiry_1=require("./biz/store/inquiry"),isTab_1=require("./biz/tabwindow/isTab"),call_1=require("./biz/telephone/call"),checkBizCall_1=require("./biz/telephone/checkBizCall"),quickCallList_1=require("./biz/telephone/quickCallList"),showCallMenu_1=require("./biz/telephone/showCallMenu"),checkPassword_1=require("./biz/user/checkPassword"),get_1=require("./biz/user/get"),callComponent_1=require("./biz/util/callComponent"),checkAuth_1=require("./biz/util/checkAuth"),chooseImage_1=require("./biz/util/chooseImage"),chooseRegion_1=require("./biz/util/chooseRegion"),chosen_1=require("./biz/util/chosen"),clearWebStoreCache_1=require("./biz/util/clearWebStoreCache"),closePreviewImage_1=require("./biz/util/closePreviewImage"),compressImage_1=require("./biz/util/compressImage"),datepicker_1=require("./biz/util/datepicker"),datetimepicker_1=require("./biz/util/datetimepicker"),decrypt_1=require("./biz/util/decrypt"),downloadFile_2=require("./biz/util/downloadFile"),encrypt_1=require("./biz/util/encrypt"),getPerfInfo_1=require("./biz/util/getPerfInfo"),invokeWorkbench_1=require("./biz/util/invokeWorkbench"),isEnableGPUAcceleration_1=require("./biz/util/isEnableGPUAcceleration"),isLocalFileExist_1=require("./biz/util/isLocalFileExist"),multiSelect_1=require("./biz/util/multiSelect"),open_1=require("./biz/util/open"),openBrowser_1=require("./biz/util/openBrowser"),openDocument_1=require("./biz/util/openDocument"),openLink_1=require("./biz/util/openLink"),openLocalFile_1=require("./biz/util/openLocalFile"),openModal_1=require("./biz/util/openModal"),openSlidePanel_1=require("./biz/util/openSlidePanel"),presentWindow_1=require("./biz/util/presentWindow"),previewImage_1=require("./biz/util/previewImage"),previewVideo_1=require("./biz/util/previewVideo"),saveImage_1=require("./biz/util/saveImage"),saveImageToPhotosAlbum_1=require("./biz/util/saveImageToPhotosAlbum"),scan_1=require("./biz/util/scan"),scanCard_1=require("./biz/util/scanCard"),setGPUAcceleration_1=require("./biz/util/setGPUAcceleration"),setScreenBrightnessAndKeepOn_1=require("./biz/util/setScreenBrightnessAndKeepOn"),setScreenKeepOn_1=require("./biz/util/setScreenKeepOn"),share_1=require("./biz/util/share"),shareImage_1=require("./biz/util/shareImage"),showAuthGuide_1=require("./biz/util/showAuthGuide"),showSharePanel_1=require("./biz/util/showSharePanel"),startDocSign_1=require("./biz/util/startDocSign"),systemShare_1=require("./biz/util/systemShare"),timepicker_1=require("./biz/util/timepicker"),uploadAttachment_1=require("./biz/util/uploadAttachment"),uploadFile_1=require("./biz/util/uploadFile"),uploadImage_1=require("./biz/util/uploadImage"),uploadImageFromCamera_1=require("./biz/util/uploadImageFromCamera"),ut_1=require("./biz/util/ut"),openBindIDCard_1=require("./biz/verify/openBindIDCard"),startAuth_2=require("./biz/verify/startAuth"),makeCall_1=require("./biz/voice/makeCall"),getWatermarkInfo_1=require("./biz/watermarkCamera/getWatermarkInfo"),setWatermarkInfo_1=require("./biz/watermarkCamera/setWatermarkInfo"),requestAuthCode_1=require("./channel/permission/requestAuthCode"),clearShake_1=require("./device/accelerometer/clearShake"),watchShake_1=require("./device/accelerometer/watchShake"),download_1=require("./device/audio/download"),onPlayEnd_1=require("./device/audio/onPlayEnd"),onRecordEnd_1=require("./device/audio/onRecordEnd"),pause_1=require("./device/audio/pause"),play_1=require("./device/audio/play"),resume_1=require("./device/audio/resume"),startRecord_1=require("./device/audio/startRecord"),stop_1=require("./device/audio/stop"),stopRecord_1=require("./device/audio/stopRecord"),translateVoice_1=require("./device/audio/translateVoice"),getBatteryInfo_1=require("./device/base/getBatteryInfo"),getInterface_1=require("./device/base/getInterface"),getPhoneInfo_1=require("./device/base/getPhoneInfo"),getScanWifiListAsync_1=require("./device/base/getScanWifiListAsync"),getUUID_1=require("./device/base/getUUID"),getWifiStatus_1=require("./device/base/getWifiStatus"),openSystemSetting_1=require("./device/base/openSystemSetting"),getNetworkType_1=require("./device/connection/getNetworkType"),checkPermission_1=require("./device/geolocation/checkPermission"),get_2=require("./device/geolocation/get"),start_1=require("./device/geolocation/start"),status_1=require("./device/geolocation/status"),stop_2=require("./device/geolocation/stop"),checkInstalledApps_1=require("./device/launcher/checkInstalledApps"),launchApp_1=require("./device/launcher/launchApp"),nfcRead_1=require("./device/nfc/nfcRead"),nfcStop_1=require("./device/nfc/nfcStop"),nfcWrite_1=require("./device/nfc/nfcWrite"),actionSheet_1=require("./device/notification/actionSheet"),alert_1=require("./device/notification/alert"),confirm_1=require("./device/notification/confirm"),extendModal_1=require("./device/notification/extendModal"),hidePreloader_1=require("./device/notification/hidePreloader"),modal_1=require("./device/notification/modal"),prompt_1=require("./device/notification/prompt"),showPreloader_1=require("./device/notification/showPreloader"),toast_1=require("./device/notification/toast"),vibrate_1=require("./device/notification/vibrate"),getScreenBrightness_1=require("./device/screen/getScreenBrightness"),insetAdjust_1=require("./device/screen/insetAdjust"),isScreenReaderEnabled_1=require("./device/screen/isScreenReaderEnabled"),resetView_1=require("./device/screen/resetView"),rotateView_1=require("./device/screen/rotateView"),setScreenBrightness_1=require("./device/screen/setScreenBrightness"),keepAlive_1=require("./media/voiceRecorder/keepAlive"),pause_2=require("./media/voiceRecorder/pause"),resume_2=require("./media/voiceRecorder/resume"),start_2=require("./media/voiceRecorder/start"),stop_3=require("./media/voiceRecorder/stop"),loginGovNet_1=require("./net/bjGovApn/loginGovNet"),exec_1=require("./runtime/h5nuvabridge/exec"),fetch_1=require("./runtime/message/fetch"),post_2=require("./runtime/message/post"),getLoadTime_1=require("./runtime/monitor/getLoadTime"),requestAuthCode_2=require("./runtime/permission/requestAuthCode"),requestOperateAuthCode_1=require("./runtime/permission/requestOperateAuthCode"),plain_1=require("./ui/input/plain"),addToFloat_1=require("./ui/multitask/addToFloat"),removeFromFloat_1=require("./ui/multitask/removeFromFloat"),close_2=require("./ui/nav/close"),getCurrentId_1=require("./ui/nav/getCurrentId"),go_1=require("./ui/nav/go"),preload_1=require("./ui/nav/preload"),recycle_1=require("./ui/nav/recycle"),setColors_1=require("./ui/progressBar/setColors"),disable_1=require("./ui/pullToRefresh/disable"),enable_1=require("./ui/pullToRefresh/enable"),stop_4=require("./ui/pullToRefresh/stop"),disable_2=require("./ui/webViewBounce/disable"),enable_2=require("./ui/webViewBounce/enable"),ExternalChannelPublish_1=require("./union/ExternalChannelPublish"),ExternalChannelPublish_2=require("./union/ExternalChannelPublish");Object.defineProperty(exports,"ExternalChannelPublish",{enumerable:!0,get:function(){return ExternalChannelPublish_2.ExternalChannelPublish$}});var addPhoneContact_1=require("./union/addPhoneContact"),addPhoneContact_2=require("./union/addPhoneContact");Object.defineProperty(exports,"addPhoneContact",{enumerable:!0,get:function(){return addPhoneContact_2.addPhoneContact$}});var alert_2=require("./union/alert"),alert_3=require("./union/alert");Object.defineProperty(exports,"alert",{enumerable:!0,get:function(){return alert_3.alert$}});var callUsers_1=require("./union/callUsers"),callUsers_2=require("./union/callUsers");Object.defineProperty(exports,"callUsers",{enumerable:!0,get:function(){return callUsers_2.callUsers$}});var checkAuth_2=require("./union/checkAuth"),checkAuth_3=require("./union/checkAuth");Object.defineProperty(exports,"checkAuth",{enumerable:!0,get:function(){return checkAuth_3.checkAuth$}});var checkBizCall_2=require("./union/checkBizCall"),checkBizCall_3=require("./union/checkBizCall");Object.defineProperty(exports,"checkBizCall",{enumerable:!0,get:function(){return checkBizCall_3.checkBizCall$}});var chooseChat_1=require("./union/chooseChat"),chooseChat_2=require("./union/chooseChat");Object.defineProperty(exports,"chooseChat",{enumerable:!0,get:function(){return chooseChat_2.chooseChat$}});var chooseConversation_1=require("./union/chooseConversation"),chooseConversation_2=require("./union/chooseConversation");Object.defineProperty(exports,"chooseConversation",{enumerable:!0,get:function(){return chooseConversation_2.chooseConversation$}});var chooseDateRangeInCalendar_1=require("./union/chooseDateRangeInCalendar"),chooseDateRangeInCalendar_2=require("./union/chooseDateRangeInCalendar");Object.defineProperty(exports,"chooseDateRangeInCalendar",{enumerable:!0,get:function(){return chooseDateRangeInCalendar_2.chooseDateRangeInCalendar$}});var chooseDateTime_2=require("./union/chooseDateTime"),chooseDateTime_3=require("./union/chooseDateTime");Object.defineProperty(exports,"chooseDateTime",{enumerable:!0,get:function(){return chooseDateTime_3.chooseDateTime$}});var chooseDepartments_1=require("./union/chooseDepartments"),chooseDepartments_2=require("./union/chooseDepartments");Object.defineProperty(exports,"chooseDepartments",{enumerable:!0,get:function(){return chooseDepartments_2.chooseDepartments$}});var chooseDingTalkDir_1=require("./union/chooseDingTalkDir"),chooseDingTalkDir_2=require("./union/chooseDingTalkDir");Object.defineProperty(exports,"chooseDingTalkDir",{enumerable:!0,get:function(){return chooseDingTalkDir_2.chooseDingTalkDir$}});var chooseDistrict_1=require("./union/chooseDistrict"),chooseDistrict_2=require("./union/chooseDistrict");Object.defineProperty(exports,"chooseDistrict",{enumerable:!0,get:function(){return chooseDistrict_2.chooseDistrict$}});var chooseExternalUsers_1=require("./union/chooseExternalUsers"),chooseExternalUsers_2=require("./union/chooseExternalUsers");Object.defineProperty(exports,"chooseExternalUsers",{enumerable:!0,get:function(){return chooseExternalUsers_2.chooseExternalUsers$}});var chooseFile_1=require("./union/chooseFile"),chooseFile_2=require("./union/chooseFile");Object.defineProperty(exports,"chooseFile",{enumerable:!0,get:function(){return chooseFile_2.chooseFile$}});var chooseHalfDayInCalendar_1=require("./union/chooseHalfDayInCalendar"),chooseHalfDayInCalendar_2=require("./union/chooseHalfDayInCalendar");Object.defineProperty(exports,"chooseHalfDayInCalendar",{enumerable:!0,get:function(){return chooseHalfDayInCalendar_2.chooseHalfDayInCalendar$}});var chooseImage_2=require("./union/chooseImage"),chooseImage_3=require("./union/chooseImage");Object.defineProperty(exports,"chooseImage",{enumerable:!0,get:function(){return chooseImage_3.chooseImage$}});var chooseMedia_1=require("./union/chooseMedia"),chooseMedia_2=require("./union/chooseMedia");Object.defineProperty(exports,"chooseMedia",{enumerable:!0,get:function(){return chooseMedia_2.chooseMedia$}});var chooseOneDayInCalendar_1=require("./union/chooseOneDayInCalendar"),chooseOneDayInCalendar_2=require("./union/chooseOneDayInCalendar");Object.defineProperty(exports,"chooseOneDayInCalendar",{enumerable:!0,get:function(){return chooseOneDayInCalendar_2.chooseOneDayInCalendar$}});var chooseOrg_1=require("./union/chooseOrg"),chooseOrg_2=require("./union/chooseOrg");Object.defineProperty(exports,"chooseOrg",{enumerable:!0,get:function(){return chooseOrg_2.chooseOrg$}});var choosePhonebook_1=require("./union/choosePhonebook"),choosePhonebook_2=require("./union/choosePhonebook");Object.defineProperty(exports,"choosePhonebook",{enumerable:!0,get:function(){return choosePhonebook_2.choosePhonebook$}});var chooseStaffForPC_1=require("./union/chooseStaffForPC"),chooseStaffForPC_2=require("./union/chooseStaffForPC");Object.defineProperty(exports,"chooseStaffForPC",{enumerable:!0,get:function(){return chooseStaffForPC_2.chooseStaffForPC$}});var chooseUserFromList_1=require("./union/chooseUserFromList"),chooseUserFromList_2=require("./union/chooseUserFromList");Object.defineProperty(exports,"chooseUserFromList",{enumerable:!0,get:function(){return chooseUserFromList_2.chooseUserFromList$}});var clearShake_2=require("./union/clearShake"),clearShake_3=require("./union/clearShake");Object.defineProperty(exports,"clearShake",{enumerable:!0,get:function(){return clearShake_3.clearShake$}});var closeBluetoothAdapter_1=require("./union/closeBluetoothAdapter"),closeBluetoothAdapter_2=require("./union/closeBluetoothAdapter");Object.defineProperty(exports,"closeBluetoothAdapter",{enumerable:!0,get:function(){return closeBluetoothAdapter_2.closeBluetoothAdapter$}});var closePage_1=require("./union/closePage"),closePage_2=require("./union/closePage");Object.defineProperty(exports,"closePage",{enumerable:!0,get:function(){return closePage_2.closePage$}});var complexChoose_1=require("./union/complexChoose"),complexChoose_2=require("./union/complexChoose");Object.defineProperty(exports,"complexChoose",{enumerable:!0,get:function(){return complexChoose_2.complexChoose$}});var compressImage_2=require("./union/compressImage"),compressImage_3=require("./union/compressImage");Object.defineProperty(exports,"compressImage",{enumerable:!0,get:function(){return compressImage_3.compressImage$}});var confirm_2=require("./union/confirm"),confirm_3=require("./union/confirm");Object.defineProperty(exports,"confirm",{enumerable:!0,get:function(){return confirm_3.confirm$}});var connectBLEDevice_1=require("./union/connectBLEDevice"),connectBLEDevice_2=require("./union/connectBLEDevice");Object.defineProperty(exports,"connectBLEDevice",{enumerable:!0,get:function(){return connectBLEDevice_2.connectBLEDevice$}});var createBLEPeripheralServer_1=require("./union/createBLEPeripheralServer"),createBLEPeripheralServer_2=require("./union/createBLEPeripheralServer");Object.defineProperty(exports,"createBLEPeripheralServer",{enumerable:!0,get:function(){return createBLEPeripheralServer_2.createBLEPeripheralServer$}});var createDing_1=require("./union/createDing"),createDing_2=require("./union/createDing");Object.defineProperty(exports,"createDing",{enumerable:!0,get:function(){return createDing_2.createDing$}});var createDingForPC_1=require("./union/createDingForPC"),createDingForPC_2=require("./union/createDingForPC");Object.defineProperty(exports,"createDingForPC",{enumerable:!0,get:function(){return createDingForPC_2.createDingForPC$}});var createGroupChat_1=require("./union/createGroupChat"),createGroupChat_2=require("./union/createGroupChat");Object.defineProperty(exports,"createGroupChat",{enumerable:!0,get:function(){return createGroupChat_2.createGroupChat$}});var createLiveClassRoom_1=require("./union/createLiveClassRoom"),createLiveClassRoom_2=require("./union/createLiveClassRoom");Object.defineProperty(exports,"createLiveClassRoom",{enumerable:!0,get:function(){return createLiveClassRoom_2.createLiveClassRoom$}});var createPayOrder_1=require("./union/createPayOrder"),createPayOrder_2=require("./union/createPayOrder");Object.defineProperty(exports,"createPayOrder",{enumerable:!0,get:function(){return createPayOrder_2.createPayOrder$}});var cropImage_1=require("./union/cropImage"),cropImage_2=require("./union/cropImage");Object.defineProperty(exports,"cropImage",{enumerable:!0,get:function(){return cropImage_2.cropImage$}});var customChooseUsers_1=require("./union/customChooseUsers"),customChooseUsers_2=require("./union/customChooseUsers");Object.defineProperty(exports,"customChooseUsers",{enumerable:!0,get:function(){return customChooseUsers_2.customChooseUsers$}});var datePicker_1=require("./union/datePicker"),datePicker_2=require("./union/datePicker");Object.defineProperty(exports,"datePicker",{enumerable:!0,get:function(){return datePicker_2.datePicker$}});var dateRangePicker_1=require("./union/dateRangePicker"),dateRangePicker_2=require("./union/dateRangePicker");Object.defineProperty(exports,"dateRangePicker",{enumerable:!0,get:function(){return dateRangePicker_2.dateRangePicker$}});var decrypt_2=require("./union/decrypt"),decrypt_3=require("./union/decrypt");Object.defineProperty(exports,"decrypt",{enumerable:!0,get:function(){return decrypt_3.decrypt$}});var disablePullDownRefresh_1=require("./union/disablePullDownRefresh"),disablePullDownRefresh_2=require("./union/disablePullDownRefresh");Object.defineProperty(exports,"disablePullDownRefresh",{enumerable:!0,get:function(){return disablePullDownRefresh_2.disablePullDownRefresh$}});var disableWebViewBounce_1=require("./union/disableWebViewBounce"),disableWebViewBounce_2=require("./union/disableWebViewBounce");Object.defineProperty(exports,"disableWebViewBounce",{enumerable:!0,get:function(){return disableWebViewBounce_2.disableWebViewBounce$}});var disconnectBLEDevice_1=require("./union/disconnectBLEDevice"),disconnectBLEDevice_2=require("./union/disconnectBLEDevice");Object.defineProperty(exports,"disconnectBLEDevice",{enumerable:!0,get:function(){return disconnectBLEDevice_2.disconnectBLEDevice$}});var downloadAudio_1=require("./union/downloadAudio"),downloadAudio_2=require("./union/downloadAudio");Object.defineProperty(exports,"downloadAudio",{enumerable:!0,get:function(){return downloadAudio_2.downloadAudio$}});var downloadFile_3=require("./union/downloadFile"),downloadFile_4=require("./union/downloadFile");Object.defineProperty(exports,"downloadFile",{enumerable:!0,get:function(){return downloadFile_4.downloadFile$}});var editExternalUser_1=require("./union/editExternalUser"),editExternalUser_2=require("./union/editExternalUser");Object.defineProperty(exports,"editExternalUser",{enumerable:!0,get:function(){return editExternalUser_2.editExternalUser$}});var editPicture_1=require("./union/editPicture"),editPicture_2=require("./union/editPicture");Object.defineProperty(exports,"editPicture",{enumerable:!0,get:function(){return editPicture_2.editPicture$}});var enablePullDownRefresh_1=require("./union/enablePullDownRefresh"),enablePullDownRefresh_2=require("./union/enablePullDownRefresh");Object.defineProperty(exports,"enablePullDownRefresh",{enumerable:!0,get:function(){return enablePullDownRefresh_2.enablePullDownRefresh$}});var enableWebViewBounce_1=require("./union/enableWebViewBounce"),enableWebViewBounce_2=require("./union/enableWebViewBounce");Object.defineProperty(exports,"enableWebViewBounce",{enumerable:!0,get:function(){return enableWebViewBounce_2.enableWebViewBounce$}});var encrypt_2=require("./union/encrypt"),encrypt_3=require("./union/encrypt");Object.defineProperty(exports,"encrypt",{enumerable:!0,get:function(){return encrypt_3.encrypt$}});var exclusiveLiveCheck_2=require("./union/exclusiveLiveCheck"),exclusiveLiveCheck_3=require("./union/exclusiveLiveCheck");Object.defineProperty(exports,"exclusiveLiveCheck",{enumerable:!0,get:function(){return exclusiveLiveCheck_3.exclusiveLiveCheck$}});var generateImageFromCode_1=require("./union/generateImageFromCode"),generateImageFromCode_2=require("./union/generateImageFromCode");Object.defineProperty(exports,"generateImageFromCode",{enumerable:!0,get:function(){return generateImageFromCode_2.generateImageFromCode$}});var getAccountType_1=require("./union/getAccountType"),getAccountType_2=require("./union/getAccountType");Object.defineProperty(exports,"getAccountType",{enumerable:!0,get:function(){return getAccountType_2.getAccountType$}});var getActiveConferenceInfo_1=require("./union/getActiveConferenceInfo"),getActiveConferenceInfo_2=require("./union/getActiveConferenceInfo");Object.defineProperty(exports,"getActiveConferenceInfo",{enumerable:!0,get:function(){return getActiveConferenceInfo_2.getActiveConferenceInfo$}});var getAdvertisingStatus_1=require("./union/getAdvertisingStatus"),getAdvertisingStatus_2=require("./union/getAdvertisingStatus");Object.defineProperty(exports,"getAdvertisingStatus",{enumerable:!0,get:function(){return getAdvertisingStatus_2.getAdvertisingStatus$}});var getAuthCode_1=require("./union/getAuthCode"),getAuthCode_2=require("./union/getAuthCode");Object.defineProperty(exports,"getAuthCode",{enumerable:!0,get:function(){return getAuthCode_2.getAuthCode$}});var getAuthCodeV2_1=require("./union/getAuthCodeV2"),getAuthCodeV2_2=require("./union/getAuthCodeV2");Object.defineProperty(exports,"getAuthCodeV2",{enumerable:!0,get:function(){return getAuthCodeV2_2.getAuthCodeV2$}});var getAuthInfo_1=require("./union/getAuthInfo"),getAuthInfo_2=require("./union/getAuthInfo");Object.defineProperty(exports,"getAuthInfo",{enumerable:!0,get:function(){return getAuthInfo_2.getAuthInfo$}});var getBLEDeviceCharacteristics_1=require("./union/getBLEDeviceCharacteristics"),getBLEDeviceCharacteristics_2=require("./union/getBLEDeviceCharacteristics");Object.defineProperty(exports,"getBLEDeviceCharacteristics",{enumerable:!0,get:function(){return getBLEDeviceCharacteristics_2.getBLEDeviceCharacteristics$}});var getBLEDeviceServices_1=require("./union/getBLEDeviceServices"),getBLEDeviceServices_2=require("./union/getBLEDeviceServices");Object.defineProperty(exports,"getBLEDeviceServices",{enumerable:!0,get:function(){return getBLEDeviceServices_2.getBLEDeviceServices$}});var getBatteryInfo_2=require("./union/getBatteryInfo"),getBatteryInfo_3=require("./union/getBatteryInfo");Object.defineProperty(exports,"getBatteryInfo",{enumerable:!0,get:function(){return getBatteryInfo_3.getBatteryInfo$}});var getBeacons_1=require("./union/getBeacons"),getBeacons_2=require("./union/getBeacons");Object.defineProperty(exports,"getBeacons",{enumerable:!0,get:function(){return getBeacons_2.getBeacons$}});var getBluetoothAdapterState_1=require("./union/getBluetoothAdapterState"),getBluetoothAdapterState_2=require("./union/getBluetoothAdapterState");Object.defineProperty(exports,"getBluetoothAdapterState",{enumerable:!0,get:function(){return getBluetoothAdapterState_2.getBluetoothAdapterState$}});var getBluetoothDevices_1=require("./union/getBluetoothDevices"),getBluetoothDevices_2=require("./union/getBluetoothDevices");Object.defineProperty(exports,"getBluetoothDevices",{enumerable:!0,get:function(){return getBluetoothDevices_2.getBluetoothDevices$}});var getCachedAPIResponse_1=require("./union/getCachedAPIResponse"),getCachedAPIResponse_2=require("./union/getCachedAPIResponse");Object.defineProperty(exports,"getCachedAPIResponse",{enumerable:!0,get:function(){return getCachedAPIResponse_2.getCachedAPIResponse$}});var getCloudCallInfo_2=require("./union/getCloudCallInfo"),getCloudCallInfo_3=require("./union/getCloudCallInfo");Object.defineProperty(exports,"getCloudCallInfo",{enumerable:!0,get:function(){return getCloudCallInfo_3.getCloudCallInfo$}});var getCloudCallList_2=require("./union/getCloudCallList"),getCloudCallList_3=require("./union/getCloudCallList");Object.defineProperty(exports,"getCloudCallList",{enumerable:!0,get:function(){return getCloudCallList_3.getCloudCallList$}});var getCurrentCorpId_1=require("./union/getCurrentCorpId"),getCurrentCorpId_2=require("./union/getCurrentCorpId");Object.defineProperty(exports,"getCurrentCorpId",{enumerable:!0,get:function(){return getCurrentCorpId_2.getCurrentCorpId$}});var getDeviceId_1=require("./union/getDeviceId"),getDeviceId_2=require("./union/getDeviceId");Object.defineProperty(exports,"getDeviceId",{enumerable:!0,get:function(){return getDeviceId_2.getDeviceId$}});var getDeviceUUID_1=require("./union/getDeviceUUID"),getDeviceUUID_2=require("./union/getDeviceUUID");Object.defineProperty(exports,"getDeviceUUID",{enumerable:!0,get:function(){return getDeviceUUID_2.getDeviceUUID$}});var getDingerDeviceStatus_1=require("./union/getDingerDeviceStatus"),getDingerDeviceStatus_2=require("./union/getDingerDeviceStatus");Object.defineProperty(exports,"getDingerDeviceStatus",{enumerable:!0,get:function(){return getDingerDeviceStatus_2.getDingerDeviceStatus$}});var getImageInfo_1=require("./union/getImageInfo"),getImageInfo_2=require("./union/getImageInfo");Object.defineProperty(exports,"getImageInfo",{enumerable:!0,get:function(){return getImageInfo_2.getImageInfo$}});var getLocatingStatus_1=require("./union/getLocatingStatus"),getLocatingStatus_2=require("./union/getLocatingStatus");Object.defineProperty(exports,"getLocatingStatus",{enumerable:!0,get:function(){return getLocatingStatus_2.getLocatingStatus$}});var getLocation_1=require("./union/getLocation"),getLocation_2=require("./union/getLocation");Object.defineProperty(exports,"getLocation",{enumerable:!0,get:function(){return getLocation_2.getLocation$}});var getNetworkType_2=require("./union/getNetworkType"),getNetworkType_3=require("./union/getNetworkType");Object.defineProperty(exports,"getNetworkType",{enumerable:!0,get:function(){return getNetworkType_3.getNetworkType$}});var getOperateAuthCode_1=require("./union/getOperateAuthCode"),getOperateAuthCode_2=require("./union/getOperateAuthCode");Object.defineProperty(exports,"getOperateAuthCode",{enumerable:!0,get:function(){return getOperateAuthCode_2.getOperateAuthCode$}});var getPageTerminateInfo_1=require("./union/getPageTerminateInfo"),getPageTerminateInfo_2=require("./union/getPageTerminateInfo");Object.defineProperty(exports,"getPageTerminateInfo",{enumerable:!0,get:function(){return getPageTerminateInfo_2.getPageTerminateInfo$}});var getPersonalWorkInfo_1=require("./union/getPersonalWorkInfo"),getPersonalWorkInfo_2=require("./union/getPersonalWorkInfo");Object.defineProperty(exports,"getPersonalWorkInfo",{enumerable:!0,get:function(){return getPersonalWorkInfo_2.getPersonalWorkInfo$}});var getScreenBrightness_2=require("./union/getScreenBrightness"),getScreenBrightness_3=require("./union/getScreenBrightness");Object.defineProperty(exports,"getScreenBrightness",{enumerable:!0,get:function(){return getScreenBrightness_3.getScreenBrightness$}});var getStorage_1=require("./union/getStorage"),getStorage_2=require("./union/getStorage");Object.defineProperty(exports,"getStorage",{enumerable:!0,get:function(){return getStorage_2.getStorage$}});var getSystemInfo_1=require("./union/getSystemInfo"),getSystemInfo_2=require("./union/getSystemInfo");Object.defineProperty(exports,"getSystemInfo",{enumerable:!0,get:function(){ -return getSystemInfo_2.getSystemInfo$}});var getSystemSettings_1=require("./union/getSystemSettings"),getSystemSettings_2=require("./union/getSystemSettings");Object.defineProperty(exports,"getSystemSettings",{enumerable:!0,get:function(){return getSystemSettings_2.getSystemSettings$}});var getThirdAppConfCustomData_1=require("./union/getThirdAppConfCustomData"),getThirdAppConfCustomData_2=require("./union/getThirdAppConfCustomData");Object.defineProperty(exports,"getThirdAppConfCustomData",{enumerable:!0,get:function(){return getThirdAppConfCustomData_2.getThirdAppConfCustomData$}});var getThirdAppUserCustomData_1=require("./union/getThirdAppUserCustomData"),getThirdAppUserCustomData_2=require("./union/getThirdAppUserCustomData");Object.defineProperty(exports,"getThirdAppUserCustomData",{enumerable:!0,get:function(){return getThirdAppUserCustomData_2.getThirdAppUserCustomData$}});var getTodaysStepCount_1=require("./union/getTodaysStepCount"),getTodaysStepCount_2=require("./union/getTodaysStepCount");Object.defineProperty(exports,"getTodaysStepCount",{enumerable:!0,get:function(){return getTodaysStepCount_2.getTodaysStepCount$}});var getTranslateStatus_1=require("./union/getTranslateStatus"),getTranslateStatus_2=require("./union/getTranslateStatus");Object.defineProperty(exports,"getTranslateStatus",{enumerable:!0,get:function(){return getTranslateStatus_2.getTranslateStatus$}});var getUserExclusiveInfo_2=require("./union/getUserExclusiveInfo"),getUserExclusiveInfo_3=require("./union/getUserExclusiveInfo");Object.defineProperty(exports,"getUserExclusiveInfo",{enumerable:!0,get:function(){return getUserExclusiveInfo_3.getUserExclusiveInfo$}});var getWifiHotspotStatus_1=require("./union/getWifiHotspotStatus"),getWifiHotspotStatus_2=require("./union/getWifiHotspotStatus");Object.defineProperty(exports,"getWifiHotspotStatus",{enumerable:!0,get:function(){return getWifiHotspotStatus_2.getWifiHotspotStatus$}});var getWifiStatus_2=require("./union/getWifiStatus"),getWifiStatus_3=require("./union/getWifiStatus");Object.defineProperty(exports,"getWifiStatus",{enumerable:!0,get:function(){return getWifiStatus_3.getWifiStatus$}});var goBackPage_1=require("./union/goBackPage"),goBackPage_2=require("./union/goBackPage");Object.defineProperty(exports,"goBackPage",{enumerable:!0,get:function(){return goBackPage_2.goBackPage$}});var hideLoading_1=require("./union/hideLoading"),hideLoading_2=require("./union/hideLoading");Object.defineProperty(exports,"hideLoading",{enumerable:!0,get:function(){return hideLoading_2.hideLoading$}});var hideToast_1=require("./union/hideToast"),hideToast_2=require("./union/hideToast");Object.defineProperty(exports,"hideToast",{enumerable:!0,get:function(){return hideToast_2.hideToast$}});var isInTabWindow_1=require("./union/isInTabWindow"),isInTabWindow_2=require("./union/isInTabWindow");Object.defineProperty(exports,"isInTabWindow",{enumerable:!0,get:function(){return isInTabWindow_2.isInTabWindow$}});var isLocalFileExist_2=require("./union/isLocalFileExist"),isLocalFileExist_3=require("./union/isLocalFileExist");Object.defineProperty(exports,"isLocalFileExist",{enumerable:!0,get:function(){return isLocalFileExist_3.isLocalFileExist$}});var isScreenReaderEnabled_2=require("./union/isScreenReaderEnabled"),isScreenReaderEnabled_3=require("./union/isScreenReaderEnabled");Object.defineProperty(exports,"isScreenReaderEnabled",{enumerable:!0,get:function(){return isScreenReaderEnabled_3.isScreenReaderEnabled$}});var locateInMap_1=require("./union/locateInMap"),locateInMap_2=require("./union/locateInMap");Object.defineProperty(exports,"locateInMap",{enumerable:!0,get:function(){return locateInMap_2.locateInMap$}});var makeCloudCall_1=require("./union/makeCloudCall"),makeCloudCall_2=require("./union/makeCloudCall");Object.defineProperty(exports,"makeCloudCall",{enumerable:!0,get:function(){return makeCloudCall_2.makeCloudCall$}});var makeVideoConfCall_1=require("./union/makeVideoConfCall"),makeVideoConfCall_2=require("./union/makeVideoConfCall");Object.defineProperty(exports,"makeVideoConfCall",{enumerable:!0,get:function(){return makeVideoConfCall_2.makeVideoConfCall$}});var minutesCreateFromVideo_1=require("./union/minutesCreateFromVideo"),minutesCreateFromVideo_2=require("./union/minutesCreateFromVideo");Object.defineProperty(exports,"minutesCreateFromVideo",{enumerable:!0,get:function(){return minutesCreateFromVideo_2.minutesCreateFromVideo$}});var minutesStart_1=require("./union/minutesStart"),minutesStart_2=require("./union/minutesStart");Object.defineProperty(exports,"minutesStart",{enumerable:!0,get:function(){return minutesStart_2.minutesStart$}});var minutesUploadVideo_1=require("./union/minutesUploadVideo"),minutesUploadVideo_2=require("./union/minutesUploadVideo");Object.defineProperty(exports,"minutesUploadVideo",{enumerable:!0,get:function(){return minutesUploadVideo_2.minutesUploadVideo$}});var minutesViewDetail_1=require("./union/minutesViewDetail"),minutesViewDetail_2=require("./union/minutesViewDetail");Object.defineProperty(exports,"minutesViewDetail",{enumerable:!0,get:function(){return minutesViewDetail_2.minutesViewDetail$}});var multiSelect_2=require("./union/multiSelect"),multiSelect_3=require("./union/multiSelect");Object.defineProperty(exports,"multiSelect",{enumerable:!0,get:function(){return multiSelect_3.multiSelect$}});var navigateBackPage_2=require("./union/navigateBackPage"),navigateBackPage_3=require("./union/navigateBackPage");Object.defineProperty(exports,"navigateBackPage",{enumerable:!0,get:function(){return navigateBackPage_3.navigateBackPage$}});var navigateToPage_2=require("./union/navigateToPage"),navigateToPage_3=require("./union/navigateToPage");Object.defineProperty(exports,"navigateToPage",{enumerable:!0,get:function(){return navigateToPage_3.navigateToPage$}});var nfcReadCardNumber_1=require("./union/nfcReadCardNumber"),nfcReadCardNumber_2=require("./union/nfcReadCardNumber");Object.defineProperty(exports,"nfcReadCardNumber",{enumerable:!0,get:function(){return nfcReadCardNumber_2.nfcReadCardNumber$}});var notifyBLECharacteristicValueChange_1=require("./union/notifyBLECharacteristicValueChange"),notifyBLECharacteristicValueChange_2=require("./union/notifyBLECharacteristicValueChange");Object.defineProperty(exports,"notifyBLECharacteristicValueChange",{enumerable:!0,get:function(){return notifyBLECharacteristicValueChange_2.notifyBLECharacteristicValueChange$}});var notifyTranslateEvent_1=require("./union/notifyTranslateEvent"),notifyTranslateEvent_2=require("./union/notifyTranslateEvent");Object.defineProperty(exports,"notifyTranslateEvent",{enumerable:!0,get:function(){return notifyTranslateEvent_2.notifyTranslateEvent$}});var offBLECharacteristicValueChange_1=require("./union/offBLECharacteristicValueChange"),offBLECharacteristicValueChange_2=require("./union/offBLECharacteristicValueChange");Object.defineProperty(exports,"offBLECharacteristicValueChange",{enumerable:!0,get:function(){return offBLECharacteristicValueChange_2.offBLECharacteristicValueChange$}});var offBLEConnectionStateChanged_1=require("./union/offBLEConnectionStateChanged"),offBLEConnectionStateChanged_2=require("./union/offBLEConnectionStateChanged");Object.defineProperty(exports,"offBLEConnectionStateChanged",{enumerable:!0,get:function(){return offBLEConnectionStateChanged_2.offBLEConnectionStateChanged$}});var offBluetoothAdapterStateChange_1=require("./union/offBluetoothAdapterStateChange"),offBluetoothAdapterStateChange_2=require("./union/offBluetoothAdapterStateChange");Object.defineProperty(exports,"offBluetoothAdapterStateChange",{enumerable:!0,get:function(){return offBluetoothAdapterStateChange_2.offBluetoothAdapterStateChange$}});var offBluetoothDeviceFound_1=require("./union/offBluetoothDeviceFound"),offBluetoothDeviceFound_2=require("./union/offBluetoothDeviceFound");Object.defineProperty(exports,"offBluetoothDeviceFound",{enumerable:!0,get:function(){return offBluetoothDeviceFound_2.offBluetoothDeviceFound$}});var onBLECharacteristicValueChange_1=require("./union/onBLECharacteristicValueChange"),onBLECharacteristicValueChange_2=require("./union/onBLECharacteristicValueChange");Object.defineProperty(exports,"onBLECharacteristicValueChange",{enumerable:!0,get:function(){return onBLECharacteristicValueChange_2.onBLECharacteristicValueChange$}});var onBLEConnectionStateChanged_1=require("./union/onBLEConnectionStateChanged"),onBLEConnectionStateChanged_2=require("./union/onBLEConnectionStateChanged");Object.defineProperty(exports,"onBLEConnectionStateChanged",{enumerable:!0,get:function(){return onBLEConnectionStateChanged_2.onBLEConnectionStateChanged$}});var onBLEPeripheralCharacteristicReadRequest_1=require("./union/onBLEPeripheralCharacteristicReadRequest"),onBLEPeripheralCharacteristicReadRequest_2=require("./union/onBLEPeripheralCharacteristicReadRequest");Object.defineProperty(exports,"onBLEPeripheralCharacteristicReadRequest",{enumerable:!0,get:function(){return onBLEPeripheralCharacteristicReadRequest_2.onBLEPeripheralCharacteristicReadRequest$}});var onBLEPeripheralCharacteristicWriteRequest_1=require("./union/onBLEPeripheralCharacteristicWriteRequest"),onBLEPeripheralCharacteristicWriteRequest_2=require("./union/onBLEPeripheralCharacteristicWriteRequest");Object.defineProperty(exports,"onBLEPeripheralCharacteristicWriteRequest",{enumerable:!0,get:function(){return onBLEPeripheralCharacteristicWriteRequest_2.onBLEPeripheralCharacteristicWriteRequest$}});var onBLEPeripheralConnectionStateChanged_1=require("./union/onBLEPeripheralConnectionStateChanged"),onBLEPeripheralConnectionStateChanged_2=require("./union/onBLEPeripheralConnectionStateChanged");Object.defineProperty(exports,"onBLEPeripheralConnectionStateChanged",{enumerable:!0,get:function(){return onBLEPeripheralConnectionStateChanged_2.onBLEPeripheralConnectionStateChanged$}});var onBeaconServiceChange_1=require("./union/onBeaconServiceChange"),onBeaconServiceChange_2=require("./union/onBeaconServiceChange");Object.defineProperty(exports,"onBeaconServiceChange",{enumerable:!0,get:function(){return onBeaconServiceChange_2.onBeaconServiceChange$}});var onBeaconUpdate_1=require("./union/onBeaconUpdate"),onBeaconUpdate_2=require("./union/onBeaconUpdate");Object.defineProperty(exports,"onBeaconUpdate",{enumerable:!0,get:function(){return onBeaconUpdate_2.onBeaconUpdate$}});var onBluetoothAdapterStateChange_1=require("./union/onBluetoothAdapterStateChange"),onBluetoothAdapterStateChange_2=require("./union/onBluetoothAdapterStateChange");Object.defineProperty(exports,"onBluetoothAdapterStateChange",{enumerable:!0,get:function(){return onBluetoothAdapterStateChange_2.onBluetoothAdapterStateChange$}});var onBluetoothDeviceFound_1=require("./union/onBluetoothDeviceFound"),onBluetoothDeviceFound_2=require("./union/onBluetoothDeviceFound");Object.defineProperty(exports,"onBluetoothDeviceFound",{enumerable:!0,get:function(){return onBluetoothDeviceFound_2.onBluetoothDeviceFound$}});var onPlayAudioEnd_1=require("./union/onPlayAudioEnd"),onPlayAudioEnd_2=require("./union/onPlayAudioEnd");Object.defineProperty(exports,"onPlayAudioEnd",{enumerable:!0,get:function(){return onPlayAudioEnd_2.onPlayAudioEnd$}});var onRecordEnd_2=require("./union/onRecordEnd"),onRecordEnd_3=require("./union/onRecordEnd");Object.defineProperty(exports,"onRecordEnd",{enumerable:!0,get:function(){return onRecordEnd_3.onRecordEnd$}});var openBluetoothAdapter_1=require("./union/openBluetoothAdapter"),openBluetoothAdapter_2=require("./union/openBluetoothAdapter");Object.defineProperty(exports,"openBluetoothAdapter",{enumerable:!0,get:function(){return openBluetoothAdapter_2.openBluetoothAdapter$}});var openChatByChatId_1=require("./union/openChatByChatId"),openChatByChatId_2=require("./union/openChatByChatId");Object.defineProperty(exports,"openChatByChatId",{enumerable:!0,get:function(){return openChatByChatId_2.openChatByChatId$}});var openChatByConversationId_1=require("./union/openChatByConversationId"),openChatByConversationId_2=require("./union/openChatByConversationId");Object.defineProperty(exports,"openChatByConversationId",{enumerable:!0,get:function(){return openChatByConversationId_2.openChatByConversationId$}});var openChatByUserId_1=require("./union/openChatByUserId"),openChatByUserId_2=require("./union/openChatByUserId");Object.defineProperty(exports,"openChatByUserId",{enumerable:!0,get:function(){return openChatByUserId_2.openChatByUserId$}});var openDocument_2=require("./union/openDocument"),openDocument_3=require("./union/openDocument");Object.defineProperty(exports,"openDocument",{enumerable:!0,get:function(){return openDocument_3.openDocument$}});var openLink_2=require("./union/openLink"),openLink_3=require("./union/openLink");Object.defineProperty(exports,"openLink",{enumerable:!0,get:function(){return openLink_3.openLink$}});var openLocalFile_2=require("./union/openLocalFile"),openLocalFile_3=require("./union/openLocalFile");Object.defineProperty(exports,"openLocalFile",{enumerable:!0,get:function(){return openLocalFile_3.openLocalFile$}});var openLocation_1=require("./union/openLocation"),openLocation_2=require("./union/openLocation");Object.defineProperty(exports,"openLocation",{enumerable:!0,get:function(){return openLocation_2.openLocation$}});var openMicroApp_1=require("./union/openMicroApp"),openMicroApp_2=require("./union/openMicroApp");Object.defineProperty(exports,"openMicroApp",{enumerable:!0,get:function(){return openMicroApp_2.openMicroApp$}});var openPageInMicroApp_1=require("./union/openPageInMicroApp"),openPageInMicroApp_2=require("./union/openPageInMicroApp");Object.defineProperty(exports,"openPageInMicroApp",{enumerable:!0,get:function(){return openPageInMicroApp_2.openPageInMicroApp$}});var openPageInModalForPC_1=require("./union/openPageInModalForPC"),openPageInModalForPC_2=require("./union/openPageInModalForPC");Object.defineProperty(exports,"openPageInModalForPC",{enumerable:!0,get:function(){return openPageInModalForPC_2.openPageInModalForPC$}});var openPageInSlidePanelForPC_1=require("./union/openPageInSlidePanelForPC"),openPageInSlidePanelForPC_2=require("./union/openPageInSlidePanelForPC");Object.defineProperty(exports,"openPageInSlidePanelForPC",{enumerable:!0,get:function(){return openPageInSlidePanelForPC_2.openPageInSlidePanelForPC$}});var openPageInWorkBenchForPC_1=require("./union/openPageInWorkBenchForPC"),openPageInWorkBenchForPC_2=require("./union/openPageInWorkBenchForPC");Object.defineProperty(exports,"openPageInWorkBenchForPC",{enumerable:!0,get:function(){return openPageInWorkBenchForPC_2.openPageInWorkBenchForPC$}});var pauseAudio_1=require("./union/pauseAudio"),pauseAudio_2=require("./union/pauseAudio");Object.defineProperty(exports,"pauseAudio",{enumerable:!0,get:function(){return pauseAudio_2.pauseAudio$}});var playAudio_1=require("./union/playAudio"),playAudio_2=require("./union/playAudio");Object.defineProperty(exports,"playAudio",{enumerable:!0,get:function(){return playAudio_2.playAudio$}});var popGesture_1=require("./union/popGesture"),popGesture_2=require("./union/popGesture");Object.defineProperty(exports,"popGesture",{enumerable:!0,get:function(){return popGesture_2.popGesture$}});var previewFileInDingTalk_1=require("./union/previewFileInDingTalk"),previewFileInDingTalk_2=require("./union/previewFileInDingTalk");Object.defineProperty(exports,"previewFileInDingTalk",{enumerable:!0,get:function(){return previewFileInDingTalk_2.previewFileInDingTalk$}});var previewImage_2=require("./union/previewImage"),previewImage_3=require("./union/previewImage");Object.defineProperty(exports,"previewImage",{enumerable:!0,get:function(){return previewImage_3.previewImage$}});var previewImagesInDingTalkBatch_1=require("./union/previewImagesInDingTalkBatch"),previewImagesInDingTalkBatch_2=require("./union/previewImagesInDingTalkBatch");Object.defineProperty(exports,"previewImagesInDingTalkBatch",{enumerable:!0,get:function(){return previewImagesInDingTalkBatch_2.previewImagesInDingTalkBatch$}});var previewMedia_1=require("./union/previewMedia"),previewMedia_2=require("./union/previewMedia");Object.defineProperty(exports,"previewMedia",{enumerable:!0,get:function(){return previewMedia_2.previewMedia$}});var prompt_2=require("./union/prompt"),prompt_3=require("./union/prompt");Object.defineProperty(exports,"prompt",{enumerable:!0,get:function(){return prompt_3.prompt$}});var quickCallList_2=require("./union/quickCallList"),quickCallList_3=require("./union/quickCallList");Object.defineProperty(exports,"quickCallList",{enumerable:!0,get:function(){return quickCallList_3.quickCallList$}});var quitPage_1=require("./union/quitPage"),quitPage_2=require("./union/quitPage");Object.defineProperty(exports,"quitPage",{enumerable:!0,get:function(){return quitPage_2.quitPage$}});var readBLECharacteristicValue_1=require("./union/readBLECharacteristicValue"),readBLECharacteristicValue_2=require("./union/readBLECharacteristicValue");Object.defineProperty(exports,"readBLECharacteristicValue",{enumerable:!0,get:function(){return readBLECharacteristicValue_2.readBLECharacteristicValue$}});var readNFC_1=require("./union/readNFC"),readNFC_2=require("./union/readNFC");Object.defineProperty(exports,"readNFC",{enumerable:!0,get:function(){return readNFC_2.readNFC$}});var removeCachedAPIResponse_1=require("./union/removeCachedAPIResponse"),removeCachedAPIResponse_2=require("./union/removeCachedAPIResponse");Object.defineProperty(exports,"removeCachedAPIResponse",{enumerable:!0,get:function(){return removeCachedAPIResponse_2.removeCachedAPIResponse$}});var removeStorage_1=require("./union/removeStorage"),removeStorage_2=require("./union/removeStorage");Object.defineProperty(exports,"removeStorage",{enumerable:!0,get:function(){return removeStorage_2.removeStorage$}});var replacePage_1=require("./union/replacePage"),replacePage_2=require("./union/replacePage");Object.defineProperty(exports,"replacePage",{enumerable:!0,get:function(){return replacePage_2.replacePage$}});var requestAuthCode_3=require("./union/requestAuthCode"),requestAuthCode_4=require("./union/requestAuthCode");Object.defineProperty(exports,"requestAuthCode",{enumerable:!0,get:function(){return requestAuthCode_4.requestAuthCode$}});var requestMoneySubmmitOrder_1=require("./union/requestMoneySubmmitOrder"),requestMoneySubmmitOrder_2=require("./union/requestMoneySubmmitOrder");Object.defineProperty(exports,"requestMoneySubmmitOrder",{enumerable:!0,get:function(){return requestMoneySubmmitOrder_2.requestMoneySubmmitOrder$}});var resetScreenView_1=require("./union/resetScreenView"),resetScreenView_2=require("./union/resetScreenView");Object.defineProperty(exports,"resetScreenView",{enumerable:!0,get:function(){return resetScreenView_2.resetScreenView$}});var resumeAudio_1=require("./union/resumeAudio"),resumeAudio_2=require("./union/resumeAudio");Object.defineProperty(exports,"resumeAudio",{enumerable:!0,get:function(){return resumeAudio_2.resumeAudio$}});var rotateScreenView_1=require("./union/rotateScreenView"),rotateScreenView_2=require("./union/rotateScreenView");Object.defineProperty(exports,"rotateScreenView",{enumerable:!0,get:function(){return rotateScreenView_2.rotateScreenView$}});var rsa_2=require("./union/rsa"),rsa_3=require("./union/rsa");Object.defineProperty(exports,"rsa",{enumerable:!0,get:function(){return rsa_3.rsa$}});var saveFileToDingTalk_1=require("./union/saveFileToDingTalk"),saveFileToDingTalk_2=require("./union/saveFileToDingTalk");Object.defineProperty(exports,"saveFileToDingTalk",{enumerable:!0,get:function(){return saveFileToDingTalk_2.saveFileToDingTalk$}});var saveImageToPhotosAlbum_2=require("./union/saveImageToPhotosAlbum"),saveImageToPhotosAlbum_3=require("./union/saveImageToPhotosAlbum");Object.defineProperty(exports,"saveImageToPhotosAlbum",{enumerable:!0,get:function(){return saveImageToPhotosAlbum_3.saveImageToPhotosAlbum$}});var saveVideoToPhotosAlbum_1=require("./union/saveVideoToPhotosAlbum"),saveVideoToPhotosAlbum_2=require("./union/saveVideoToPhotosAlbum");Object.defineProperty(exports,"saveVideoToPhotosAlbum",{enumerable:!0,get:function(){return saveVideoToPhotosAlbum_2.saveVideoToPhotosAlbum$}});var scan_2=require("./union/scan"),scan_3=require("./union/scan");Object.defineProperty(exports,"scan",{enumerable:!0,get:function(){return scan_3.scan$}});var scanCard_2=require("./union/scanCard"),scanCard_3=require("./union/scanCard");Object.defineProperty(exports,"scanCard",{enumerable:!0,get:function(){return scanCard_3.scanCard$}});var searchMap_1=require("./union/searchMap"),searchMap_2=require("./union/searchMap");Object.defineProperty(exports,"searchMap",{enumerable:!0,get:function(){return searchMap_2.searchMap$}});var setClipboard_1=require("./union/setClipboard"),setClipboard_2=require("./union/setClipboard");Object.defineProperty(exports,"setClipboard",{enumerable:!0,get:function(){return setClipboard_2.setClipboard$}});var setGestures_1=require("./union/setGestures"),setGestures_2=require("./union/setGestures");Object.defineProperty(exports,"setGestures",{enumerable:!0,get:function(){return setGestures_2.setGestures$}});var setKeepScreenOn_1=require("./union/setKeepScreenOn"),setKeepScreenOn_2=require("./union/setKeepScreenOn");Object.defineProperty(exports,"setKeepScreenOn",{enumerable:!0,get:function(){return setKeepScreenOn_2.setKeepScreenOn$}});var setNavigationIcon_1=require("./union/setNavigationIcon"),setNavigationIcon_2=require("./union/setNavigationIcon");Object.defineProperty(exports,"setNavigationIcon",{enumerable:!0,get:function(){return setNavigationIcon_2.setNavigationIcon$}});var setNavigationLeft_1=require("./union/setNavigationLeft"),setNavigationLeft_2=require("./union/setNavigationLeft");Object.defineProperty(exports,"setNavigationLeft",{enumerable:!0,get:function(){return setNavigationLeft_2.setNavigationLeft$}});var setNavigationTitle_1=require("./union/setNavigationTitle"),setNavigationTitle_2=require("./union/setNavigationTitle");Object.defineProperty(exports,"setNavigationTitle",{enumerable:!0,get:function(){return setNavigationTitle_2.setNavigationTitle$}});var setScreenBrightness_2=require("./union/setScreenBrightness"),setScreenBrightness_3=require("./union/setScreenBrightness");Object.defineProperty(exports,"setScreenBrightness",{enumerable:!0,get:function(){return setScreenBrightness_3.setScreenBrightness$}});var setStorage_1=require("./union/setStorage"),setStorage_2=require("./union/setStorage");Object.defineProperty(exports,"setStorage",{enumerable:!0,get:function(){return setStorage_2.setStorage$}});var share_2=require("./union/share"),share_3=require("./union/share");Object.defineProperty(exports,"share",{enumerable:!0,get:function(){return share_3.share$}});var showActionSheet_1=require("./union/showActionSheet"),showActionSheet_2=require("./union/showActionSheet");Object.defineProperty(exports,"showActionSheet",{enumerable:!0,get:function(){return showActionSheet_2.showActionSheet$}});var showAuthGuide_2=require("./union/showAuthGuide"),showAuthGuide_3=require("./union/showAuthGuide");Object.defineProperty(exports,"showAuthGuide",{enumerable:!0,get:function(){return showAuthGuide_3.showAuthGuide$}});var showCallMenu_2=require("./union/showCallMenu"),showCallMenu_3=require("./union/showCallMenu");Object.defineProperty(exports,"showCallMenu",{enumerable:!0,get:function(){return showCallMenu_3.showCallMenu$}});var showLoading_1=require("./union/showLoading"),showLoading_2=require("./union/showLoading");Object.defineProperty(exports,"showLoading",{enumerable:!0,get:function(){return showLoading_2.showLoading$}});var showModal_1=require("./union/showModal"),showModal_2=require("./union/showModal");Object.defineProperty(exports,"showModal",{enumerable:!0,get:function(){return showModal_2.showModal$}});var showSharePanel_2=require("./union/showSharePanel"),showSharePanel_3=require("./union/showSharePanel");Object.defineProperty(exports,"showSharePanel",{enumerable:!0,get:function(){return showSharePanel_3.showSharePanel$}});var showToast_1=require("./union/showToast"),showToast_2=require("./union/showToast");Object.defineProperty(exports,"showToast",{enumerable:!0,get:function(){return showToast_2.showToast$}});var singleSelect_1=require("./union/singleSelect"),singleSelect_2=require("./union/singleSelect");Object.defineProperty(exports,"singleSelect",{enumerable:!0,get:function(){return singleSelect_2.singleSelect$}});var startAdvertising_1=require("./union/startAdvertising"),startAdvertising_2=require("./union/startAdvertising");Object.defineProperty(exports,"startAdvertising",{enumerable:!0,get:function(){return startAdvertising_2.startAdvertising$}});var startBeaconDiscovery_1=require("./union/startBeaconDiscovery"),startBeaconDiscovery_2=require("./union/startBeaconDiscovery");Object.defineProperty(exports,"startBeaconDiscovery",{enumerable:!0,get:function(){return startBeaconDiscovery_2.startBeaconDiscovery$}});var startBluetoothDevicesDiscovery_1=require("./union/startBluetoothDevicesDiscovery"),startBluetoothDevicesDiscovery_2=require("./union/startBluetoothDevicesDiscovery");Object.defineProperty(exports,"startBluetoothDevicesDiscovery",{enumerable:!0,get:function(){return startBluetoothDevicesDiscovery_2.startBluetoothDevicesDiscovery$}});var startDingerRecord_1=require("./union/startDingerRecord"),startDingerRecord_2=require("./union/startDingerRecord");Object.defineProperty(exports,"startDingerRecord",{enumerable:!0,get:function(){return startDingerRecord_2.startDingerRecord$}});var startLocating_1=require("./union/startLocating"),startLocating_2=require("./union/startLocating");Object.defineProperty(exports,"startLocating",{enumerable:!0,get:function(){return startLocating_2.startLocating$}});var startRecord_2=require("./union/startRecord"),startRecord_3=require("./union/startRecord");Object.defineProperty(exports,"startRecord",{enumerable:!0,get:function(){return startRecord_3.startRecord$}});var stopAdvertising_1=require("./union/stopAdvertising"),stopAdvertising_2=require("./union/stopAdvertising");Object.defineProperty(exports,"stopAdvertising",{enumerable:!0,get:function(){return stopAdvertising_2.stopAdvertising$}});var stopAudio_1=require("./union/stopAudio"),stopAudio_2=require("./union/stopAudio");Object.defineProperty(exports,"stopAudio",{enumerable:!0,get:function(){return stopAudio_2.stopAudio$}});var stopBeaconDiscovery_1=require("./union/stopBeaconDiscovery"),stopBeaconDiscovery_2=require("./union/stopBeaconDiscovery");Object.defineProperty(exports,"stopBeaconDiscovery",{enumerable:!0,get:function(){return stopBeaconDiscovery_2.stopBeaconDiscovery$}});var stopBluetoothDevicesDiscovery_1=require("./union/stopBluetoothDevicesDiscovery"),stopBluetoothDevicesDiscovery_2=require("./union/stopBluetoothDevicesDiscovery");Object.defineProperty(exports,"stopBluetoothDevicesDiscovery",{enumerable:!0,get:function(){return stopBluetoothDevicesDiscovery_2.stopBluetoothDevicesDiscovery$}});var stopDingerRecord_1=require("./union/stopDingerRecord"),stopDingerRecord_2=require("./union/stopDingerRecord");Object.defineProperty(exports,"stopDingerRecord",{enumerable:!0,get:function(){return stopDingerRecord_2.stopDingerRecord$}});var stopLocating_1=require("./union/stopLocating"),stopLocating_2=require("./union/stopLocating");Object.defineProperty(exports,"stopLocating",{enumerable:!0,get:function(){return stopLocating_2.stopLocating$}});var stopPullDownRefresh_1=require("./union/stopPullDownRefresh"),stopPullDownRefresh_2=require("./union/stopPullDownRefresh");Object.defineProperty(exports,"stopPullDownRefresh",{enumerable:!0,get:function(){return stopPullDownRefresh_2.stopPullDownRefresh$}});var stopRecord_2=require("./union/stopRecord"),stopRecord_3=require("./union/stopRecord");Object.defineProperty(exports,"stopRecord",{enumerable:!0,get:function(){return stopRecord_3.stopRecord$}});var subscribe_2=require("./union/subscribe"),subscribe_3=require("./union/subscribe");Object.defineProperty(exports,"subscribe",{enumerable:!0,get:function(){return subscribe_3.subscribe$}});var timePicker_1=require("./union/timePicker"),timePicker_2=require("./union/timePicker");Object.defineProperty(exports,"timePicker",{enumerable:!0,get:function(){return timePicker_2.timePicker$}});var translate_1=require("./union/translate"),translate_2=require("./union/translate");Object.defineProperty(exports,"translate",{enumerable:!0,get:function(){return translate_2.translate$}});var translateVoice_2=require("./union/translateVoice"),translateVoice_3=require("./union/translateVoice");Object.defineProperty(exports,"translateVoice",{enumerable:!0,get:function(){return translateVoice_3.translateVoice$}});var uploadAttachmentToDingTalk_1=require("./union/uploadAttachmentToDingTalk"),uploadAttachmentToDingTalk_2=require("./union/uploadAttachmentToDingTalk");Object.defineProperty(exports,"uploadAttachmentToDingTalk",{enumerable:!0,get:function(){return uploadAttachmentToDingTalk_2.uploadAttachmentToDingTalk$}});var uploadFile_2=require("./union/uploadFile"),uploadFile_3=require("./union/uploadFile");Object.defineProperty(exports,"uploadFile",{enumerable:!0,get:function(){return uploadFile_3.uploadFile$}});var vibrate_2=require("./union/vibrate"),vibrate_3=require("./union/vibrate");Object.defineProperty(exports,"vibrate",{enumerable:!0,get:function(){return vibrate_3.vibrate$}});var watchShake_2=require("./union/watchShake"),watchShake_3=require("./union/watchShake");Object.defineProperty(exports,"watchShake",{enumerable:!0,get:function(){return watchShake_3.watchShake$}});var writeBLECharacteristicValue_1=require("./union/writeBLECharacteristicValue"),writeBLECharacteristicValue_2=require("./union/writeBLECharacteristicValue");Object.defineProperty(exports,"writeBLECharacteristicValue",{enumerable:!0,get:function(){return writeBLECharacteristicValue_2.writeBLECharacteristicValue$}});var writeBLEPeripheralCharacteristicValue_1=require("./union/writeBLEPeripheralCharacteristicValue"),writeBLEPeripheralCharacteristicValue_2=require("./union/writeBLEPeripheralCharacteristicValue");Object.defineProperty(exports,"writeBLEPeripheralCharacteristicValue",{enumerable:!0,get:function(){return writeBLEPeripheralCharacteristicValue_2.writeBLEPeripheralCharacteristicValue$}});var writeNFC_1=require("./union/writeNFC"),writeNFC_2=require("./union/writeNFC");Object.defineProperty(exports,"writeNFC",{enumerable:!0,get:function(){return writeNFC_2.writeNFC$}});var getItem_1=require("./util/domainStorage/getItem"),getStorageInfo_1=require("./util/domainStorage/getStorageInfo"),removeItem_1=require("./util/domainStorage/removeItem"),setItem_1=require("./util/domainStorage/setItem"),getData_1=require("./util/openTemporary/getData");exports.apiObj={biz:{ATMBle:{beaconPicker:beaconPicker_1.beaconPicker$,detectFace:detectFace_1.detectFace$,detectFaceFullScreen:detectFaceFullScreen_1.detectFaceFullScreen$,exclusiveLiveCheck:exclusiveLiveCheck_1.exclusiveLiveCheck$,faceManager:faceManager_1.faceManager$,punchModePicker:punchModePicker_1.punchModePicker$},alipay:{bindAlipay:bindAlipay_1.bindAlipay$,openAuth:openAuth_1.openAuth$,pay:pay_1.pay$},attend:{getLBSWua:getLBSWua_1.getLBSWua$},auth:{openAccountPwdLoginPage:openAccountPwdLoginPage_1.openAccountPwdLoginPage$,requestAuthInfo:requestAuthInfo_1.requestAuthInfo$},calendar:{chooseDateTime:chooseDateTime_1.chooseDateTime$,chooseHalfDay:chooseHalfDay_1.chooseHalfDay$,chooseInterval:chooseInterval_1.chooseInterval$,chooseOneDay:chooseOneDay_1.chooseOneDay$},chat:{chooseConversationByCorpId:chooseConversationByCorpId_1.chooseConversationByCorpId$,collectSticker:collectSticker_1.collectSticker$,createSceneGroup:createSceneGroup_1.createSceneGroup$,getRealmCid:getRealmCid_1.getRealmCid$,locationChatMessage:locationChatMessage_1.locationChatMessage$,openSingleChat:openSingleChat_1.openSingleChat$,pickConversation:pickConversation_1.pickConversation$,sendEmotion:sendEmotion_1.sendEmotion$,toConversation:toConversation_1.toConversation$, -toConversationByOpenConversationId:toConversationByOpenConversationId_1.toConversationByOpenConversationId$},clipboardData:{setData:setData_1.setData$},conference:{createCloudCall:createCloudCall_1.createCloudCall$,getCloudCallInfo:getCloudCallInfo_1.getCloudCallInfo$,getCloudCallList:getCloudCallList_1.getCloudCallList$,videoConfCall:videoConfCall_1.videoConfCall$},contact:{choose:choose_1.choose$,chooseMobileContacts:chooseMobileContacts_1.chooseMobileContacts$,complexPicker:complexPicker_1.complexPicker$,createGroup:createGroup_1.createGroup$,departmentsPicker:departmentsPicker_1.departmentsPicker$,externalComplexPicker:externalComplexPicker_1.externalComplexPicker$,externalEditForm:externalEditForm_1.externalEditForm$,rolesPicker:rolesPicker_1.rolesPicker$,setRule:setRule_1.setRule$},cspace:{chooseSpaceDir:chooseSpaceDir_1.chooseSpaceDir$,delete:delete_1.delete$,preview:preview_1.preview$,previewDentryImages:previewDentryImages_1.previewDentryImages$,saveFile:saveFile_1.saveFile$},customContact:{choose:choose_2.choose$,multipleChoose:multipleChoose_1.multipleChoose$},data:{rsa:rsa_1.rsa$},ding:{create:create_1.create$,post:post_1.post$},edu:{finishMiniCourseByRecordId:finishMiniCourseByRecordId_1.finishMiniCourseByRecordId$,getMiniCourseDraftList:getMiniCourseDraftList_1.getMiniCourseDraftList$,joinClassroom:joinClassroom_1.joinClassroom$,makeMiniCourse:makeMiniCourse_1.makeMiniCourse$,newMsgNotificationStatus:newMsgNotificationStatus_1.newMsgNotificationStatus$,startAuth:startAuth_1.startAuth$,tokenFaceImg:tokenFaceImg_1.tokenFaceImg$},event:{notifyWeex:notifyWeex_1.notifyWeex$},file:{downloadFile:downloadFile_1.downloadFile$},intent:{fetchData:fetchData_1.fetchData$},iot:{bind:bind_1.bind$,bindMeetingRoom:bindMeetingRoom_1.bindMeetingRoom$,getDeviceProperties:getDeviceProperties_1.getDeviceProperties$,invokeThingService:invokeThingService_1.invokeThingService$,queryMeetingRoomList:queryMeetingRoomList_1.queryMeetingRoomList$,setDeviceProperties:setDeviceProperties_1.setDeviceProperties$,unbind:unbind_1.unbind$},live:{startClassRoom:startClassRoom_1.startClassRoom$,startUnifiedLive:startUnifiedLive_1.startUnifiedLive$},map:{locate:locate_1.locate$,search:search_1.search$,view:view_1.view$},media:{compressVideo:compressVideo_1.compressVideo$},microApp:{openApp:openApp_1.openApp$},navigation:{close:close_1.close$,goBack:goBack_1.goBack$,hideBar:hideBar_1.hideBar$,navigateBackPage:navigateBackPage_1.navigateBackPage$,navigateToMiniProgram:navigateToMiniProgram_1.navigateToMiniProgram$,navigateToPage:navigateToPage_1.navigateToPage$,quit:quit_1.quit$,replace:replace_1.replace$,setIcon:setIcon_1.setIcon$,setLeft:setLeft_1.setLeft$,setMenu:setMenu_1.setMenu$,setRight:setRight_1.setRight$,setTitle:setTitle_1.setTitle$},pbp:{componentPunchFromPartner:componentPunchFromPartner_1.componentPunchFromPartner$,startMatchRuleFromPartner:startMatchRuleFromPartner_1.startMatchRuleFromPartner$,stopMatchRuleFromPartner:stopMatchRuleFromPartner_1.stopMatchRuleFromPartner$},phoneContact:{add:add_1.add$},realm:{getRealtimeTracingStatus:getRealtimeTracingStatus_1.getRealtimeTracingStatus$,getUserExclusiveInfo:getUserExclusiveInfo_1.getUserExclusiveInfo$,startRealtimeTracing:startRealtimeTracing_1.startRealtimeTracing$,stopRealtimeTracing:stopRealtimeTracing_1.stopRealtimeTracing$,subscribe:subscribe_1.subscribe$,unsubscribe:unsubscribe_1.unsubscribe$},resource:{getInfo:getInfo_1.getInfo$,reportDebugMessage:reportDebugMessage_1.reportDebugMessage$},shortCut:{addShortCut:addShortCut_1.addShortCut$},sports:{getHealthAuthorizationStatus:getHealthAuthorizationStatus_1.getHealthAuthorizationStatus$,getHealthData:getHealthData_1.getHealthData$,getHealthDeviceData:getHealthDeviceData_1.getHealthDeviceData$,requestHealthAuthorization:requestHealthAuthorization_1.requestHealthAuthorization$},store:{closeUnpayOrder:closeUnpayOrder_1.closeUnpayOrder$,createOrder:createOrder_1.createOrder$,getPayUrl:getPayUrl_1.getPayUrl$,inquiry:inquiry_1.inquiry$},tabwindow:{isTab:isTab_1.isTab$},telephone:{call:call_1.call$,checkBizCall:checkBizCall_1.checkBizCall$,quickCallList:quickCallList_1.quickCallList$,showCallMenu:showCallMenu_1.showCallMenu$},user:{checkPassword:checkPassword_1.checkPassword$,get:get_1.get$},util:{callComponent:callComponent_1.callComponent$,checkAuth:checkAuth_1.checkAuth$,chooseImage:chooseImage_1.chooseImage$,chooseRegion:chooseRegion_1.chooseRegion$,chosen:chosen_1.chosen$,clearWebStoreCache:clearWebStoreCache_1.clearWebStoreCache$,closePreviewImage:closePreviewImage_1.closePreviewImage$,compressImage:compressImage_1.compressImage$,datepicker:datepicker_1.datepicker$,datetimepicker:datetimepicker_1.datetimepicker$,decrypt:decrypt_1.decrypt$,downloadFile:downloadFile_2.downloadFile$,encrypt:encrypt_1.encrypt$,getPerfInfo:getPerfInfo_1.getPerfInfo$,invokeWorkbench:invokeWorkbench_1.invokeWorkbench$,isEnableGPUAcceleration:isEnableGPUAcceleration_1.isEnableGPUAcceleration$,isLocalFileExist:isLocalFileExist_1.isLocalFileExist$,multiSelect:multiSelect_1.multiSelect$,open:open_1.open$,openBrowser:openBrowser_1.openBrowser$,openDocument:openDocument_1.openDocument$,openLink:openLink_1.openLink$,openLocalFile:openLocalFile_1.openLocalFile$,openModal:openModal_1.openModal$,openSlidePanel:openSlidePanel_1.openSlidePanel$,presentWindow:presentWindow_1.presentWindow$,previewImage:previewImage_1.previewImage$,previewVideo:previewVideo_1.previewVideo$,saveImage:saveImage_1.saveImage$,saveImageToPhotosAlbum:saveImageToPhotosAlbum_1.saveImageToPhotosAlbum$,scan:scan_1.scan$,scanCard:scanCard_1.scanCard$,setGPUAcceleration:setGPUAcceleration_1.setGPUAcceleration$,setScreenBrightnessAndKeepOn:setScreenBrightnessAndKeepOn_1.setScreenBrightnessAndKeepOn$,setScreenKeepOn:setScreenKeepOn_1.setScreenKeepOn$,share:share_1.share$,shareImage:shareImage_1.shareImage$,showAuthGuide:showAuthGuide_1.showAuthGuide$,showSharePanel:showSharePanel_1.showSharePanel$,startDocSign:startDocSign_1.startDocSign$,systemShare:systemShare_1.systemShare$,timepicker:timepicker_1.timepicker$,uploadAttachment:uploadAttachment_1.uploadAttachment$,uploadFile:uploadFile_1.uploadFile$,uploadImage:uploadImage_1.uploadImage$,uploadImageFromCamera:uploadImageFromCamera_1.uploadImageFromCamera$,ut:ut_1.ut$},verify:{openBindIDCard:openBindIDCard_1.openBindIDCard$,startAuth:startAuth_2.startAuth$},voice:{makeCall:makeCall_1.makeCall$},watermarkCamera:{getWatermarkInfo:getWatermarkInfo_1.getWatermarkInfo$,setWatermarkInfo:setWatermarkInfo_1.setWatermarkInfo$}},channel:{permission:{requestAuthCode:requestAuthCode_1.requestAuthCode$}},device:{accelerometer:{clearShake:clearShake_1.clearShake$,watchShake:watchShake_1.watchShake$},audio:{download:download_1.download$,onPlayEnd:onPlayEnd_1.onPlayEnd$,onRecordEnd:onRecordEnd_1.onRecordEnd$,pause:pause_1.pause$,play:play_1.play$,resume:resume_1.resume$,startRecord:startRecord_1.startRecord$,stop:stop_1.stop$,stopRecord:stopRecord_1.stopRecord$,translateVoice:translateVoice_1.translateVoice$},base:{getBatteryInfo:getBatteryInfo_1.getBatteryInfo$,getInterface:getInterface_1.getInterface$,getPhoneInfo:getPhoneInfo_1.getPhoneInfo$,getScanWifiListAsync:getScanWifiListAsync_1.getScanWifiListAsync$,getUUID:getUUID_1.getUUID$,getWifiStatus:getWifiStatus_1.getWifiStatus$,openSystemSetting:openSystemSetting_1.openSystemSetting$},connection:{getNetworkType:getNetworkType_1.getNetworkType$},geolocation:{checkPermission:checkPermission_1.checkPermission$,get:get_2.get$,start:start_1.start$,status:status_1.status$,stop:stop_2.stop$},launcher:{checkInstalledApps:checkInstalledApps_1.checkInstalledApps$,launchApp:launchApp_1.launchApp$},nfc:{nfcRead:nfcRead_1.nfcRead$,nfcStop:nfcStop_1.nfcStop$,nfcWrite:nfcWrite_1.nfcWrite$},notification:{actionSheet:actionSheet_1.actionSheet$,alert:alert_1.alert$,confirm:confirm_1.confirm$,extendModal:extendModal_1.extendModal$,hidePreloader:hidePreloader_1.hidePreloader$,modal:modal_1.modal$,prompt:prompt_1.prompt$,showPreloader:showPreloader_1.showPreloader$,toast:toast_1.toast$,vibrate:vibrate_1.vibrate$},screen:{getScreenBrightness:getScreenBrightness_1.getScreenBrightness$,insetAdjust:insetAdjust_1.insetAdjust$,isScreenReaderEnabled:isScreenReaderEnabled_1.isScreenReaderEnabled$,resetView:resetView_1.resetView$,rotateView:rotateView_1.rotateView$,setScreenBrightness:setScreenBrightness_1.setScreenBrightness$}},media:{voiceRecorder:{keepAlive:keepAlive_1.keepAlive$,pause:pause_2.pause$,resume:resume_2.resume$,start:start_2.start$,stop:stop_3.stop$}},net:{bjGovApn:{loginGovNet:loginGovNet_1.loginGovNet$}},runtime:{h5nuvabridge:{exec:exec_1.exec$},message:{fetch:fetch_1.fetch$,post:post_2.post$},monitor:{getLoadTime:getLoadTime_1.getLoadTime$},permission:{requestAuthCode:requestAuthCode_2.requestAuthCode$,requestOperateAuthCode:requestOperateAuthCode_1.requestOperateAuthCode$}},ui:{input:{plain:plain_1.plain$},multitask:{addToFloat:addToFloat_1.addToFloat$,removeFromFloat:removeFromFloat_1.removeFromFloat$},nav:{close:close_2.close$,getCurrentId:getCurrentId_1.getCurrentId$,go:go_1.go$,preload:preload_1.preload$,recycle:recycle_1.recycle$},progressBar:{setColors:setColors_1.setColors$},pullToRefresh:{disable:disable_1.disable$,enable:enable_1.enable$,stop:stop_4.stop$},webViewBounce:{disable:disable_2.disable$,enable:enable_2.enable$}},ExternalChannelPublish:ExternalChannelPublish_1.ExternalChannelPublish$,addPhoneContact:addPhoneContact_1.addPhoneContact$,alert:alert_2.alert$,callUsers:callUsers_1.callUsers$,checkAuth:checkAuth_2.checkAuth$,checkBizCall:checkBizCall_2.checkBizCall$,chooseChat:chooseChat_1.chooseChat$,chooseConversation:chooseConversation_1.chooseConversation$,chooseDateRangeInCalendar:chooseDateRangeInCalendar_1.chooseDateRangeInCalendar$,chooseDateTime:chooseDateTime_2.chooseDateTime$,chooseDepartments:chooseDepartments_1.chooseDepartments$,chooseDingTalkDir:chooseDingTalkDir_1.chooseDingTalkDir$,chooseDistrict:chooseDistrict_1.chooseDistrict$,chooseExternalUsers:chooseExternalUsers_1.chooseExternalUsers$,chooseFile:chooseFile_1.chooseFile$,chooseHalfDayInCalendar:chooseHalfDayInCalendar_1.chooseHalfDayInCalendar$,chooseImage:chooseImage_2.chooseImage$,chooseMedia:chooseMedia_1.chooseMedia$,chooseOneDayInCalendar:chooseOneDayInCalendar_1.chooseOneDayInCalendar$,chooseOrg:chooseOrg_1.chooseOrg$,choosePhonebook:choosePhonebook_1.choosePhonebook$,chooseStaffForPC:chooseStaffForPC_1.chooseStaffForPC$,chooseUserFromList:chooseUserFromList_1.chooseUserFromList$,clearShake:clearShake_2.clearShake$,closeBluetoothAdapter:closeBluetoothAdapter_1.closeBluetoothAdapter$,closePage:closePage_1.closePage$,complexChoose:complexChoose_1.complexChoose$,compressImage:compressImage_2.compressImage$,confirm:confirm_2.confirm$,connectBLEDevice:connectBLEDevice_1.connectBLEDevice$,createBLEPeripheralServer:createBLEPeripheralServer_1.createBLEPeripheralServer$,createDing:createDing_1.createDing$,createDingForPC:createDingForPC_1.createDingForPC$,createGroupChat:createGroupChat_1.createGroupChat$,createLiveClassRoom:createLiveClassRoom_1.createLiveClassRoom$,createPayOrder:createPayOrder_1.createPayOrder$,cropImage:cropImage_1.cropImage$,customChooseUsers:customChooseUsers_1.customChooseUsers$,datePicker:datePicker_1.datePicker$,dateRangePicker:dateRangePicker_1.dateRangePicker$,decrypt:decrypt_2.decrypt$,disablePullDownRefresh:disablePullDownRefresh_1.disablePullDownRefresh$,disableWebViewBounce:disableWebViewBounce_1.disableWebViewBounce$,disconnectBLEDevice:disconnectBLEDevice_1.disconnectBLEDevice$,downloadAudio:downloadAudio_1.downloadAudio$,downloadFile:downloadFile_3.downloadFile$,editExternalUser:editExternalUser_1.editExternalUser$,editPicture:editPicture_1.editPicture$,enablePullDownRefresh:enablePullDownRefresh_1.enablePullDownRefresh$,enableWebViewBounce:enableWebViewBounce_1.enableWebViewBounce$,encrypt:encrypt_2.encrypt$,exclusiveLiveCheck:exclusiveLiveCheck_2.exclusiveLiveCheck$,generateImageFromCode:generateImageFromCode_1.generateImageFromCode$,getAccountType:getAccountType_1.getAccountType$,getActiveConferenceInfo:getActiveConferenceInfo_1.getActiveConferenceInfo$,getAdvertisingStatus:getAdvertisingStatus_1.getAdvertisingStatus$,getAuthCode:getAuthCode_1.getAuthCode$,getAuthCodeV2:getAuthCodeV2_1.getAuthCodeV2$,getAuthInfo:getAuthInfo_1.getAuthInfo$,getBLEDeviceCharacteristics:getBLEDeviceCharacteristics_1.getBLEDeviceCharacteristics$,getBLEDeviceServices:getBLEDeviceServices_1.getBLEDeviceServices$,getBatteryInfo:getBatteryInfo_2.getBatteryInfo$,getBeacons:getBeacons_1.getBeacons$,getBluetoothAdapterState:getBluetoothAdapterState_1.getBluetoothAdapterState$,getBluetoothDevices:getBluetoothDevices_1.getBluetoothDevices$,getCachedAPIResponse:getCachedAPIResponse_1.getCachedAPIResponse$,getCloudCallInfo:getCloudCallInfo_2.getCloudCallInfo$,getCloudCallList:getCloudCallList_2.getCloudCallList$,getCurrentCorpId:getCurrentCorpId_1.getCurrentCorpId$,getDeviceId:getDeviceId_1.getDeviceId$,getDeviceUUID:getDeviceUUID_1.getDeviceUUID$,getDingerDeviceStatus:getDingerDeviceStatus_1.getDingerDeviceStatus$,getImageInfo:getImageInfo_1.getImageInfo$,getLocatingStatus:getLocatingStatus_1.getLocatingStatus$,getLocation:getLocation_1.getLocation$,getNetworkType:getNetworkType_2.getNetworkType$,getOperateAuthCode:getOperateAuthCode_1.getOperateAuthCode$,getPageTerminateInfo:getPageTerminateInfo_1.getPageTerminateInfo$,getPersonalWorkInfo:getPersonalWorkInfo_1.getPersonalWorkInfo$,getScreenBrightness:getScreenBrightness_2.getScreenBrightness$,getStorage:getStorage_1.getStorage$,getSystemInfo:getSystemInfo_1.getSystemInfo$,getSystemSettings:getSystemSettings_1.getSystemSettings$,getThirdAppConfCustomData:getThirdAppConfCustomData_1.getThirdAppConfCustomData$,getThirdAppUserCustomData:getThirdAppUserCustomData_1.getThirdAppUserCustomData$,getTodaysStepCount:getTodaysStepCount_1.getTodaysStepCount$,getTranslateStatus:getTranslateStatus_1.getTranslateStatus$,getUserExclusiveInfo:getUserExclusiveInfo_2.getUserExclusiveInfo$,getWifiHotspotStatus:getWifiHotspotStatus_1.getWifiHotspotStatus$,getWifiStatus:getWifiStatus_2.getWifiStatus$,goBackPage:goBackPage_1.goBackPage$,hideLoading:hideLoading_1.hideLoading$,hideToast:hideToast_1.hideToast$,isInTabWindow:isInTabWindow_1.isInTabWindow$,isLocalFileExist:isLocalFileExist_2.isLocalFileExist$,isScreenReaderEnabled:isScreenReaderEnabled_2.isScreenReaderEnabled$,locateInMap:locateInMap_1.locateInMap$,makeCloudCall:makeCloudCall_1.makeCloudCall$,makeVideoConfCall:makeVideoConfCall_1.makeVideoConfCall$,minutesCreateFromVideo:minutesCreateFromVideo_1.minutesCreateFromVideo$,minutesStart:minutesStart_1.minutesStart$,minutesUploadVideo:minutesUploadVideo_1.minutesUploadVideo$,minutesViewDetail:minutesViewDetail_1.minutesViewDetail$,multiSelect:multiSelect_2.multiSelect$,navigateBackPage:navigateBackPage_2.navigateBackPage$,navigateToPage:navigateToPage_2.navigateToPage$,nfcReadCardNumber:nfcReadCardNumber_1.nfcReadCardNumber$,notifyBLECharacteristicValueChange:notifyBLECharacteristicValueChange_1.notifyBLECharacteristicValueChange$,notifyTranslateEvent:notifyTranslateEvent_1.notifyTranslateEvent$,offBLECharacteristicValueChange:offBLECharacteristicValueChange_1.offBLECharacteristicValueChange$,offBLEConnectionStateChanged:offBLEConnectionStateChanged_1.offBLEConnectionStateChanged$,offBluetoothAdapterStateChange:offBluetoothAdapterStateChange_1.offBluetoothAdapterStateChange$,offBluetoothDeviceFound:offBluetoothDeviceFound_1.offBluetoothDeviceFound$,onBLECharacteristicValueChange:onBLECharacteristicValueChange_1.onBLECharacteristicValueChange$,onBLEConnectionStateChanged:onBLEConnectionStateChanged_1.onBLEConnectionStateChanged$,onBLEPeripheralCharacteristicReadRequest:onBLEPeripheralCharacteristicReadRequest_1.onBLEPeripheralCharacteristicReadRequest$,onBLEPeripheralCharacteristicWriteRequest:onBLEPeripheralCharacteristicWriteRequest_1.onBLEPeripheralCharacteristicWriteRequest$,onBLEPeripheralConnectionStateChanged:onBLEPeripheralConnectionStateChanged_1.onBLEPeripheralConnectionStateChanged$,onBeaconServiceChange:onBeaconServiceChange_1.onBeaconServiceChange$,onBeaconUpdate:onBeaconUpdate_1.onBeaconUpdate$,onBluetoothAdapterStateChange:onBluetoothAdapterStateChange_1.onBluetoothAdapterStateChange$,onBluetoothDeviceFound:onBluetoothDeviceFound_1.onBluetoothDeviceFound$,onPlayAudioEnd:onPlayAudioEnd_1.onPlayAudioEnd$,onRecordEnd:onRecordEnd_2.onRecordEnd$,openBluetoothAdapter:openBluetoothAdapter_1.openBluetoothAdapter$,openChatByChatId:openChatByChatId_1.openChatByChatId$,openChatByConversationId:openChatByConversationId_1.openChatByConversationId$,openChatByUserId:openChatByUserId_1.openChatByUserId$,openDocument:openDocument_2.openDocument$,openLink:openLink_2.openLink$,openLocalFile:openLocalFile_2.openLocalFile$,openLocation:openLocation_1.openLocation$,openMicroApp:openMicroApp_1.openMicroApp$,openPageInMicroApp:openPageInMicroApp_1.openPageInMicroApp$,openPageInModalForPC:openPageInModalForPC_1.openPageInModalForPC$,openPageInSlidePanelForPC:openPageInSlidePanelForPC_1.openPageInSlidePanelForPC$,openPageInWorkBenchForPC:openPageInWorkBenchForPC_1.openPageInWorkBenchForPC$,pauseAudio:pauseAudio_1.pauseAudio$,playAudio:playAudio_1.playAudio$,popGesture:popGesture_1.popGesture$,previewFileInDingTalk:previewFileInDingTalk_1.previewFileInDingTalk$,previewImage:previewImage_2.previewImage$,previewImagesInDingTalkBatch:previewImagesInDingTalkBatch_1.previewImagesInDingTalkBatch$,previewMedia:previewMedia_1.previewMedia$,prompt:prompt_2.prompt$,quickCallList:quickCallList_2.quickCallList$,quitPage:quitPage_1.quitPage$,readBLECharacteristicValue:readBLECharacteristicValue_1.readBLECharacteristicValue$,readNFC:readNFC_1.readNFC$,removeCachedAPIResponse:removeCachedAPIResponse_1.removeCachedAPIResponse$,removeStorage:removeStorage_1.removeStorage$,replacePage:replacePage_1.replacePage$,requestAuthCode:requestAuthCode_3.requestAuthCode$,requestMoneySubmmitOrder:requestMoneySubmmitOrder_1.requestMoneySubmmitOrder$,resetScreenView:resetScreenView_1.resetScreenView$,resumeAudio:resumeAudio_1.resumeAudio$,rotateScreenView:rotateScreenView_1.rotateScreenView$,rsa:rsa_2.rsa$,saveFileToDingTalk:saveFileToDingTalk_1.saveFileToDingTalk$,saveImageToPhotosAlbum:saveImageToPhotosAlbum_2.saveImageToPhotosAlbum$,saveVideoToPhotosAlbum:saveVideoToPhotosAlbum_1.saveVideoToPhotosAlbum$,scan:scan_2.scan$,scanCard:scanCard_2.scanCard$,searchMap:searchMap_1.searchMap$,setClipboard:setClipboard_1.setClipboard$,setGestures:setGestures_1.setGestures$,setKeepScreenOn:setKeepScreenOn_1.setKeepScreenOn$,setNavigationIcon:setNavigationIcon_1.setNavigationIcon$,setNavigationLeft:setNavigationLeft_1.setNavigationLeft$,setNavigationTitle:setNavigationTitle_1.setNavigationTitle$,setScreenBrightness:setScreenBrightness_2.setScreenBrightness$,setStorage:setStorage_1.setStorage$,share:share_2.share$,showActionSheet:showActionSheet_1.showActionSheet$,showAuthGuide:showAuthGuide_2.showAuthGuide$,showCallMenu:showCallMenu_2.showCallMenu$,showLoading:showLoading_1.showLoading$,showModal:showModal_1.showModal$,showSharePanel:showSharePanel_2.showSharePanel$,showToast:showToast_1.showToast$,singleSelect:singleSelect_1.singleSelect$,startAdvertising:startAdvertising_1.startAdvertising$,startBeaconDiscovery:startBeaconDiscovery_1.startBeaconDiscovery$,startBluetoothDevicesDiscovery:startBluetoothDevicesDiscovery_1.startBluetoothDevicesDiscovery$,startDingerRecord:startDingerRecord_1.startDingerRecord$,startLocating:startLocating_1.startLocating$,startRecord:startRecord_2.startRecord$,stopAdvertising:stopAdvertising_1.stopAdvertising$,stopAudio:stopAudio_1.stopAudio$,stopBeaconDiscovery:stopBeaconDiscovery_1.stopBeaconDiscovery$,stopBluetoothDevicesDiscovery:stopBluetoothDevicesDiscovery_1.stopBluetoothDevicesDiscovery$,stopDingerRecord:stopDingerRecord_1.stopDingerRecord$,stopLocating:stopLocating_1.stopLocating$,stopPullDownRefresh:stopPullDownRefresh_1.stopPullDownRefresh$,stopRecord:stopRecord_2.stopRecord$,subscribe:subscribe_2.subscribe$,timePicker:timePicker_1.timePicker$,translate:translate_1.translate$,translateVoice:translateVoice_2.translateVoice$,uploadAttachmentToDingTalk:uploadAttachmentToDingTalk_1.uploadAttachmentToDingTalk$,uploadFile:uploadFile_2.uploadFile$,vibrate:vibrate_2.vibrate$,watchShake:watchShake_2.watchShake$,writeBLECharacteristicValue:writeBLECharacteristicValue_1.writeBLECharacteristicValue$,writeBLEPeripheralCharacteristicValue:writeBLEPeripheralCharacteristicValue_1.writeBLEPeripheralCharacteristicValue$,writeNFC:writeNFC_1.writeNFC$,util:{domainStorage:{getItem:getItem_1.getItem$,getStorageInfo:getStorageInfo_1.getStorageInfo$,removeItem:removeItem_1.removeItem$,setItem:setItem_1.setItem$},openTemporary:{getData:getData_1.getData$}}}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/beaconPicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/ATMBle/beaconPicker.d.ts deleted file mode 100644 index 8399c610..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/beaconPicker.d.ts +++ /dev/null @@ -1,64 +0,0 @@ -/** - * B1设备选择器,对外开放接口 请求参数定义 - * @apiName biz.ATMBle.beaconPicker - */ -export interface IBizATMBleBeaconPickerParams { - /** 企业ID,服务端会对权限做控制 */ - corpId: string; - /** 使用场景,通过调取平台服务获取 */ - bizCode: string; - /** 默认勾选B1设备ID列表,List,json格式 */ - pickedBeacons?: string; - /** 不可选设备ID列表,List,json格式 */ - disabledBeacons?: string; - /** 必选设备ID列表,List,json格式 */ - requireBeacons?: string; - /** 人脸管理,用户ID列表,List,json格式 */ - userIds?: string; - /** 人脸管理,排除的用户ID列表,List,json格式 */ - excludeUserIds?: string; - /** 人脸管理,部门ID列表,List,json格式 */ - deptIds?: string; - /** 人脸管理,排除的部门ID列表,List,json格式 */ - excludeDeptIds?: string; - /** 是否支持多选 */ - multiple?: boolean; - /** 最大可选数量 */ - max?: number; - /** 超过限定数量提示 */ - limitTips?: string; - /** 页面标题 */ - title?: string; - /** 上游业务来源 */ - origin?: string; - /** 是否支持实人 */ - supportFace?: boolean; - /** 是否支持距离 */ - supportDistance?: boolean; - /** 设置的蓝牙设备距离 */ - distance?: string; - /** 人脸开关 */ - useFaceRecognition?: boolean; - /** 扩展字段,先预留 */ - extData?: string; -} -/** - * B1设备选择器,对外开放接口 返回结果定义 - * @apiName biz.ATMBle.beaconPicker - */ -export interface IBizATMBleBeaconPickerResult { - /** 选择的设备ID列表 */ - chosenBeacons: number[]; - /** 人脸识别开关 */ - useFaceRecognition: boolean; - /** 设置的蓝牙设备距离 */ - distance: number; -} -/** - * B1设备选择器,对外开放接口 - * @apiName biz.ATMBle.beaconPicker - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function beaconPicker$(params: IBizATMBleBeaconPickerParams): Promise; -export default beaconPicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/beaconPicker.js b/node_modules/dingtalk-jsapi/api/biz/ATMBle/beaconPicker.js deleted file mode 100644 index f27cff0a..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/beaconPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function beaconPicker$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.beaconPicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.ATMBle.beaconPicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.0.7"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.0.7"},_a)),exports.beaconPicker$=beaconPicker$,exports.default=beaconPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFace.d.ts b/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFace.d.ts deleted file mode 100644 index 7bce3b82..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFace.d.ts +++ /dev/null @@ -1,40 +0,0 @@ -/** - * 实人实地开放,半屏弹窗 请求参数定义 - * @apiName biz.ATMBle.detectFace - */ -export interface IBizATMBleDetectFaceParams { - /** 企业 ID */ - corpId: string; - /** 企业用户 ID */ - userId: string; - /** 当前是否已录入人脸 */ - hasFace: boolean; - /** 是否需要美颜,部分机型由于兼容性问题不支持 */ - needBeauty?: boolean; - /** 是否需要活体检测,未录入人脸时不支持 */ - needFacePose?: boolean; - /** 半屏弹窗的标题 */ - spaceTitle?: string; -} -/** - * 实人实地开放,半屏弹窗 返回结果定义 - * @apiName biz.ATMBle.detectFace - */ -export interface IBizATMBleDetectFaceResult { - /** - * 人脸识别结果 - * 1:人脸验证/录入成功 - * 2:人脸验证/录入失败 - */ - photoStatus: number; - /** 生成资源对应的sessionId,可用于组件打卡时携带人脸信息 */ - faceSessionId: string; -} -/** - * 实人实地开放,半屏弹窗 - * @apiName biz.ATMBle.detectFace - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author Android:序望,iOS:度尽 - */ -export declare function detectFace$(params: IBizATMBleDetectFaceParams): Promise; -export default detectFace$; diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFace.js b/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFace.js deleted file mode 100644 index e90f8460..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFace.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectFace$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectFace$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.ATMBle.detectFace";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.18"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.18"},_a)),exports.detectFace$=detectFace$,exports.default=detectFace$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFaceFullScreen.d.ts b/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFaceFullScreen.d.ts deleted file mode 100644 index e695bf5b..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFaceFullScreen.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * 实人实地开放,全屏页面 请求参数定义 - * @apiName biz.ATMBle.detectFaceFullScreen - */ -export interface IBizATMBleDetectFaceFullScreenParams { - /** 企业 ID */ - corpId: string; - /** 企业用户 ID */ - userId: string; - /** 当前是否已录入人脸 */ - hasFace: boolean; - /** 是否需要美颜,部分机型由于兼容性问题不支持 */ - needBeauty?: boolean; - /** 是否需要活体检测,未录入人脸时不支持 */ - needFacePose?: boolean; -} -/** - * 实人实地开放,全屏页面 返回结果定义 - * @apiName biz.ATMBle.detectFaceFullScreen - */ -export interface IBizATMBleDetectFaceFullScreenResult { - /** - * 人脸识别结果 - * 1:人脸验证/录入成功 - * 2:人脸验证/录入失败 - */ - photoStatus: number; - /** 生成资源对应的sessionId,可用于组件打卡时携带人脸信息 */ - faceSessionId: string; -} -/** - * 实人实地开放,全屏页面 - * @apiName biz.ATMBle.detectFaceFullScreen - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author Android:序望,iOS:度尽 - */ -export declare function detectFaceFullScreen$(params: IBizATMBleDetectFaceFullScreenParams): Promise; -export default detectFaceFullScreen$; diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFaceFullScreen.js b/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFaceFullScreen.js deleted file mode 100644 index 954fb45f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/detectFaceFullScreen.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectFaceFullScreen$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectFaceFullScreen$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.ATMBle.detectFaceFullScreen";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.18"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.18"},_a)),exports.detectFaceFullScreen$=detectFaceFullScreen$,exports.default=detectFaceFullScreen$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/exclusiveLiveCheck.d.ts b/node_modules/dingtalk-jsapi/api/biz/ATMBle/exclusiveLiveCheck.d.ts deleted file mode 100644 index a6fc5e45..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/exclusiveLiveCheck.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 专属实人认证 请求参数定义 - * @apiName biz.ATMBle.exclusiveLiveCheck - */ -export interface IBizATMBleExclusiveLiveCheckParams { - [key: string]: any; -} -/** - * 专属实人认证 返回结果定义 - * @apiName biz.ATMBle.exclusiveLiveCheck - */ -export interface IBizATMBleExclusiveLiveCheckResult { - [key: string]: any; -} -/** - * 专属实人认证 - * @apiName biz.ATMBle.exclusiveLiveCheck - * @supportVersion ios: 6.5.40 android: 6.5.40 - */ -export declare function exclusiveLiveCheck$(params: IBizATMBleExclusiveLiveCheckParams): Promise; -export default exclusiveLiveCheck$; diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/exclusiveLiveCheck.js b/node_modules/dingtalk-jsapi/api/biz/ATMBle/exclusiveLiveCheck.js deleted file mode 100644 index a1c6a887..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/exclusiveLiveCheck.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function exclusiveLiveCheck$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.exclusiveLiveCheck$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.ATMBle.exclusiveLiveCheck";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.40"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.40"},_a)),exports.exclusiveLiveCheck$=exclusiveLiveCheck$,exports.default=exclusiveLiveCheck$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/faceManager.d.ts b/node_modules/dingtalk-jsapi/api/biz/ATMBle/faceManager.d.ts deleted file mode 100644 index dd122af1..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/faceManager.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理 请求参数定义 - * @apiName biz.ATMBle.faceManager - */ -export interface IBizATMBleFaceManagerParams { - /** 企业ID,服务端会对权限做控制 */ - corpId: string; - /** 人脸管理,用户ID列表,List,json格式 */ - userIds?: string; - /** 人脸管理,排除的用户ID列表,List,json格式 */ - excludeUserIds?: string; - /** 人脸管理,部门ID列表,List,json格式 */ - deptIds?: string; - /** 人脸管理,排除的部门ID列表,List,json格式 */ - excludeDeptIds?: string; - /** 人脸开关 */ - switchValue?: boolean; - /** 扩展字段,先预留 */ - extData?: string; -} -/** - * 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理 返回结果定义 - * @apiName biz.ATMBle.faceManager - */ -export interface IBizATMBleFaceManagerResult { - switchValue: boolean; -} -/** - * 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理 - * @apiName biz.ATMBle.faceManager - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function faceManager$(params: IBizATMBleFaceManagerParams): Promise; -export default faceManager$; diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/faceManager.js b/node_modules/dingtalk-jsapi/api/biz/ATMBle/faceManager.js deleted file mode 100644 index 93c42255..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/faceManager.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function faceManager$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.faceManager$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.ATMBle.faceManager";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.0.7"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.0.7"},_a)),exports.faceManager$=faceManager$,exports.default=faceManager$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/punchModePicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/ATMBle/punchModePicker.d.ts deleted file mode 100644 index ca1c02fe..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/punchModePicker.d.ts +++ /dev/null @@ -1,52 +0,0 @@ -/** - * 选择打卡方式的通用组件,目前支持选择地理位置、Wi-Fi、智点B1、考勤机 请求参数定义 - * @apiName biz.ATMBle.punchModePicker - */ -export interface IBizATMBlePunchModePickerParams { - /** 当选择支持智点B1打卡、考勤机打卡时,则必须有corpId */ - corpId?: string; - /** 需要支持的打卡方式,json序列化后的数据格式: ['location', 'wifi', 'beacon', 'atm'] - * 含义: - * 'location':地理位置打卡 - * 'wifi':Wi-Fi打卡 - * 'beacon':智点B1打卡 - * 'atm':考勤机打卡 - */ - supportModes: string[]; - /** 禁用的打卡方式,json序列化后的数据格式: ['location', 'wifi', 'beacon', 'atm'] - * 含义: - * 'location':地理位置打卡 - * 'wifi':Wi-Fi打卡 - * 'beacon':智点B1打卡 - * 'atm':考勤机打卡 - */ - disabledModes: string[]; - /** 用于透传,json序列化后的数据格式: [{type: 'location', enable: true, list: []}] 意义待补充 */ - modes: Array<{ - type: string; - enable: boolean; - list: any[]; - }>; - /** 扩展字段,先预留 */ - extData?: string; -} -/** - * 选择打卡方式的通用组件,目前支持选择地理位置、Wi-Fi、智点B1、考勤机 返回结果定义 - * @apiName biz.ATMBle.punchModePicker - */ -export interface IBizATMBlePunchModePickerResult { - /** 选择结果,也是下次调用组件的入参,json序列化后的数据格式: [{type: 'location', enable: true, list: []}] 意义待补充 */ - modes: Array<{ - type: string; - enable: boolean; - list: any[]; - }>; -} -/** - * 选择打卡方式的通用组件,目前支持选择地理位置、Wi-Fi、智点B1、考勤机 - * @apiName biz.ATMBle.punchModePicker - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function punchModePicker$(params: IBizATMBlePunchModePickerParams): Promise; -export default punchModePicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/ATMBle/punchModePicker.js b/node_modules/dingtalk-jsapi/api/biz/ATMBle/punchModePicker.js deleted file mode 100644 index 52d1fdaa..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ATMBle/punchModePicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function punchModePicker$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.punchModePicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.ATMBle.punchModePicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.0.7"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.0.7"},_a)),exports.punchModePicker$=punchModePicker$,exports.default=punchModePicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/alipay/bindAlipay.d.ts b/node_modules/dingtalk-jsapi/api/biz/alipay/bindAlipay.d.ts deleted file mode 100644 index 57a4b800..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/alipay/bindAlipay.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 绑定支付宝 请求参数定义 - * @apiName biz.alipay.bindAlipay - */ -export interface IBizAlipayBindAlipayParams { - /** 绑定支付宝所在的业务场景,请和服务端约定好 */ - bizType: string; - /** 是否显示支付宝授权协议弹框 默认true */ - showLicense?: boolean; -} -/** - * 绑定支付宝 返回结果定义 - * @apiName biz.alipay.bindAlipay - */ -export interface IBizAlipayBindAlipayResult { -} -/** - * 绑定支付宝 - * @apiName biz.alipay.bindAlipay - * @supportVersion ios: 6.3.15 android: 6.3.15 - * @author Android:峰砺 iOS: 边枫 - */ -export declare function bindAlipay$(params: IBizAlipayBindAlipayParams): Promise; -export default bindAlipay$; diff --git a/node_modules/dingtalk-jsapi/api/biz/alipay/bindAlipay.js b/node_modules/dingtalk-jsapi/api/biz/alipay/bindAlipay.js deleted file mode 100644 index b99364f0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/alipay/bindAlipay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bindAlipay$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.bindAlipay$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.alipay.bindAlipay";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.15"},_a)),exports.bindAlipay$=bindAlipay$,exports.default=bindAlipay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/alipay/openAuth.d.ts b/node_modules/dingtalk-jsapi/api/biz/alipay/openAuth.d.ts deleted file mode 100644 index 51558a54..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/alipay/openAuth.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 开放给内部或二方合作伙伴跳到支付宝完成电子发票、账户授权、独立签约功能 请求参数定义 - * @apiName biz.alipay.openAuth - */ -export interface IBizAlipayOpenAuthParams { - /** 0:电子发票(Invoice) 1:账户授权(AccountAuth) 2:独立签约(Deduct) */ - bizType: number; - /** 随 bizType 各不相同的业务参数。对于独立签约业务,仅需要一个参数 "sign_params",生成规则详见支付宝开放文档,https://opendocs.alipay.com/pre-open/20170601105911096277/lpxi4u */ - params: string; - /** 是否在用户未安装支付宝的情况下,展示一个 H5 页面引导用户安装支付宝 */ - useBrowserLanding?: boolean; -} -/** - * 开放给内部或二方合作伙伴跳到支付宝完成电子发票、账户授权、独立签约功能 返回结果定义 - * @apiName biz.alipay.openAuth - */ -export interface IBizAlipayOpenAuthResult { - /** 支付宝返回的结果码 */ - resultCode: number; - /** 支付宝请求业务功能返回的数据 */ - result: string; -} -/** - * 开放给内部或二方合作伙伴跳到支付宝完成电子发票、账户授权、独立签约功能 - * @apiName biz.alipay.openAuth - * @supportVersion ios: 5.1.8 android: 5.1.8 - * @author Android:珑一 iOS:姚曦 - */ -export declare function openAuth$(params: IBizAlipayOpenAuthParams): Promise; -export default openAuth$; diff --git a/node_modules/dingtalk-jsapi/api/biz/alipay/openAuth.js b/node_modules/dingtalk-jsapi/api/biz/alipay/openAuth.js deleted file mode 100644 index 61773861..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/alipay/openAuth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openAuth$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openAuth$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.alipay.openAuth";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.8"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.8"},_a)),exports.openAuth$=openAuth$,exports.default=openAuth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/alipay/pay.d.ts b/node_modules/dingtalk-jsapi/api/biz/alipay/pay.d.ts deleted file mode 100644 index 65522e7e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/alipay/pay.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 支付宝移动支付Sdk,订单支付JS-API封装 请求参数定义 - * @apiName biz.alipay.pay - */ -export interface IBizAlipayPayParams { - [key: string]: any; -} -/** - * 支付宝移动支付Sdk,订单支付JS-API封装 返回结果定义 - * @apiName biz.alipay.pay - */ -export interface IBizAlipayPayResult { - [key: string]: any; -} -/** - * 支付宝移动支付Sdk,订单支付JS-API封装 - * @apiName biz.alipay.pay - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function pay$(params: IBizAlipayPayParams): Promise; -export default pay$; diff --git a/node_modules/dingtalk-jsapi/api/biz/alipay/pay.js b/node_modules/dingtalk-jsapi/api/biz/alipay/pay.js deleted file mode 100644 index 97b767a4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/alipay/pay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pay$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.pay$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.alipay.pay";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.pay$=pay$,exports.default=pay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/attend/getLBSWua.d.ts b/node_modules/dingtalk-jsapi/api/biz/attend/getLBSWua.d.ts deleted file mode 100644 index 42d03298..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/attend/getLBSWua.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 获取防作弊参数 请求参数定义 - * @apiName biz.attend.getLBSWua - */ -export interface IBizAttendGetLBSWuaParams extends ICommonAPIParams { -} -/** - * 获取防作弊参数 返回结果定义 - * @apiName biz.attend.getLBSWua - */ -export interface IBizAttendGetLBSWuaResult { - ddSec: string; - ddSig: string; - lbsWua: string; -} -/** - * 获取防作弊参数 - * @apiName biz.attend.getLBSWua - */ -export declare function getLBSWua$(params: IBizAttendGetLBSWuaParams): Promise; -export default getLBSWua$; diff --git a/node_modules/dingtalk-jsapi/api/biz/attend/getLBSWua.js b/node_modules/dingtalk-jsapi/api/biz/attend/getLBSWua.js deleted file mode 100644 index 988c75fa..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/attend/getLBSWua.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLBSWua$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLBSWua$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.attend.getLBSWua";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.35"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.35"},_a)),exports.getLBSWua$=getLBSWua$,exports.default=getLBSWua$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/auth/openAccountPwdLoginPage.d.ts b/node_modules/dingtalk-jsapi/api/biz/auth/openAccountPwdLoginPage.d.ts deleted file mode 100644 index 83c9f4ac..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/auth/openAccountPwdLoginPage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 跳账密登录页 请求参数定义 - * @apiName biz.auth.openAccountPwdLoginPage - */ -export interface IBizAuthOpenAccountPwdLoginPageParams { - [key: string]: any; -} -/** - * 跳账密登录页 返回结果定义 - * @apiName biz.auth.openAccountPwdLoginPage - */ -export interface IBizAuthOpenAccountPwdLoginPageResult { - [key: string]: any; -} -/** - * 跳账密登录页 - * @apiName biz.auth.openAccountPwdLoginPage - * @supportVersion ios: 6.3.0 android: 6.3.0 - * @author Android @启宏 iOS @姚曦 - */ -export declare function openAccountPwdLoginPage$(params: IBizAuthOpenAccountPwdLoginPageParams): Promise; -export default openAccountPwdLoginPage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/auth/openAccountPwdLoginPage.js b/node_modules/dingtalk-jsapi/api/biz/auth/openAccountPwdLoginPage.js deleted file mode 100644 index c954a396..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/auth/openAccountPwdLoginPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openAccountPwdLoginPage$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openAccountPwdLoginPage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.auth.openAccountPwdLoginPage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.0"},_a)),exports.openAccountPwdLoginPage$=openAccountPwdLoginPage$,exports.default=openAccountPwdLoginPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/auth/requestAuthInfo.d.ts b/node_modules/dingtalk-jsapi/api/biz/auth/requestAuthInfo.d.ts deleted file mode 100644 index 86701378..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/auth/requestAuthInfo.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 弹出授权弹窗,提示用户授权某些接口的权限 请求参数定义 - * @apiName biz.auth.requestAuthInfo - */ -export interface IBizAuthRequestAuthInfoParams { - /** 授权类型: 0 企业通讯录授权范围 1 企业接口和字段权限 2 个人数据授权 */ - authorizeType: string; - /** 授权内容参数,根据授权场景不同有较大差异 */ - ext: string; -} -/** - * 弹出授权弹窗,提示用户授权某些接口的权限 返回结果定义 - * @apiName biz.auth.requestAuthInfo - */ -export interface IBizAuthRequestAuthInfoResult { -} -/** - * 弹出授权弹窗,提示用户授权某些接口的权限 - * @apiName biz.auth.requestAuthInfo - * @supportVersion ios: 5.1.19 android: 5.1.19 - * @author Android:煮虾 iOS:无最 - */ -export declare function requestAuthInfo$(params: IBizAuthRequestAuthInfoParams): Promise; -export default requestAuthInfo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/auth/requestAuthInfo.js b/node_modules/dingtalk-jsapi/api/biz/auth/requestAuthInfo.js deleted file mode 100644 index 1eee3e97..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/auth/requestAuthInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestAuthInfo$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestAuthInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.auth.requestAuthInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.19"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.19"},_a)),exports.requestAuthInfo$=requestAuthInfo$,exports.default=requestAuthInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseDateTime.d.ts b/node_modules/dingtalk-jsapi/api/biz/calendar/chooseDateTime.d.ts deleted file mode 100644 index e101a8c0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseDateTime.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 唤起月历组件,并选择其中某具体时间(精度到分钟) 请求参数定义 - * @apiName biz.calendar.chooseDateTime - */ -export interface IBizCalendarChooseDateTimeParams { - /** 时间戳,默认选中时间,单位为毫秒ms */ - default?: number; -} -/** - * 唤起月历组件,并选择其中某具体时间(精度到分钟) 返回结果定义 - * @apiName biz.calendar.chooseDateTime - */ -export interface IBizCalendarChooseDateTimeResult { - [key: string]: any; -} -/** - * 唤起月历组件,并选择其中某具体时间(精度到分钟) - * @description 选择的时间精确到分钟 - * @apiName biz.calendar.chooseDateTime - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseDateTime$(params: IBizCalendarChooseDateTimeParams): Promise; -export default chooseDateTime$; diff --git a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseDateTime.js b/node_modules/dingtalk-jsapi/api/biz/calendar/chooseDateTime.js deleted file mode 100644 index 75561d10..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseDateTime.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDateTime$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDateTime$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.calendar.chooseDateTime";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.chooseDateTime$=chooseDateTime$,exports.default=chooseDateTime$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseHalfDay.d.ts b/node_modules/dingtalk-jsapi/api/biz/calendar/chooseHalfDay.d.ts deleted file mode 100644 index a7600d1e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseHalfDay.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 唤起月历组件,并选择其中半天 请求参数定义 - * @apiName biz.calendar.chooseHalfDay - */ -export interface IBizCalendarChooseHalfDayParams { - default?: number; -} -/** - * 唤起月历组件,并选择其中半天 返回结果定义 - * @apiName biz.calendar.chooseHalfDay - */ -export interface IBizCalendarChooseHalfDayResult { - /** 时间戳,如果用户选择上午,则为当日0点的时间;如果是下午,则为当日12点的时间;单位为毫秒ms */ - chosen: number; - /** 整型,用户当前所在时区 */ - timezone: number; -} -/** - * 唤起月历组件,并选择其中半天 - * @apiName biz.calendar.chooseHalfDay - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseHalfDay$(params: IBizCalendarChooseHalfDayParams): Promise; -export default chooseHalfDay$; diff --git a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseHalfDay.js b/node_modules/dingtalk-jsapi/api/biz/calendar/chooseHalfDay.js deleted file mode 100644 index ad5aed88..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseHalfDay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseHalfDay$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseHalfDay$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.calendar.chooseHalfDay";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.chooseHalfDay$=chooseHalfDay$,exports.default=chooseHalfDay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseInterval.d.ts b/node_modules/dingtalk-jsapi/api/biz/calendar/chooseInterval.d.ts deleted file mode 100644 index 50162ebf..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseInterval.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 唤起月历组件,并选择日期区间,并以“天”为维度 请求参数定义 - * @apiName biz.calendar.chooseInterval - */ -export interface IBizCalendarChooseIntervalParams { - /** 时间戳,默认开始时间,单位为毫秒ms */ - defaultStart: number; - /** 时间戳,默认结束时间,单位为毫秒ms */ - defaultEnd: number; -} -/** - * 唤起月历组件,并选择日期区间,并以“天”为维度 返回结果定义 - * @apiName biz.calendar.chooseInterval - */ -export interface IBizCalendarChooseIntervalResult { - /** 时间戳,为起始当日0点的时间,单位为毫秒ms */ - start: number; - /** 时间戳,为截止当日0点的时间,单位为毫秒ms */ - end: number; - /** 整型,用户当前所在时区 */ - timezone: number; -} -/** - * 唤起月历组件,并选择日期区间,并以“天”为维度 - * @description 依赖钉钉客户端3.5.0以上版本 - * @apiName biz.calendar.chooseInterval - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseInterval$(params: IBizCalendarChooseIntervalParams): Promise; -export default chooseInterval$; diff --git a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseInterval.js b/node_modules/dingtalk-jsapi/api/biz/calendar/chooseInterval.js deleted file mode 100644 index 32f55d98..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseInterval.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseInterval$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseInterval$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.calendar.chooseInterval";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.chooseInterval$=chooseInterval$,exports.default=chooseInterval$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseOneDay.d.ts b/node_modules/dingtalk-jsapi/api/biz/calendar/chooseOneDay.d.ts deleted file mode 100644 index fdfd8b42..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseOneDay.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 唤起月历组件,选择某天 请求参数定义 - * @apiName biz.calendar.chooseOneDay - */ -export interface IBizCalendarChooseOneDayParams { - /** 时间戳,默认选中时间,单位为毫秒ms */ - default?: number; -} -/** - * 唤起月历组件,选择某天 返回结果定义 - * @apiName biz.calendar.chooseOneDay - */ -export interface IBizCalendarChooseOneDayResult { - /** 时间戳,用户选择日期当日0点的时间(在用户时区),单位为毫秒ms */ - chosen: number; - /** 整型,用户当前所在时区 */ - timezone: number; -} -/** - * 唤起月历组件,选择某天 - * @description 依赖钉钉客户端3.5.0以上版本 - * @apiName biz.calendar.chooseOneDay - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseOneDay$(params: IBizCalendarChooseOneDayParams): Promise; -export default chooseOneDay$; diff --git a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseOneDay.js b/node_modules/dingtalk-jsapi/api/biz/calendar/chooseOneDay.js deleted file mode 100644 index bc6ac23c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/calendar/chooseOneDay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseOneDay$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseOneDay$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.calendar.chooseOneDay";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.chooseOneDay$=chooseOneDay$,exports.default=chooseOneDay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/chooseConversationByCorpId.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/chooseConversationByCorpId.d.ts deleted file mode 100644 index 029c6bfb..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/chooseConversationByCorpId.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * 选择企业会话 请求参数定义 - * @apiName biz.chat.chooseConversationByCorpId - */ -export interface IBizChatChooseConversationByCorpIdParams { - /** 企业id */ - corpId: string; - /** 是否允许创建会话, 仅支持移动端 */ - isAllowCreateGroup?: boolean; - /** 是否限制为自己创建的会话,仅支持移动端 */ - filterNotOwnerGroup?: boolean; -} -/** - * 选择企业会话 返回结果定义 - * @apiName biz.chat.chooseConversationByCorpId - */ -export interface IBizChatChooseConversationByCorpIdResult { - /** 会话id(该会话cid永久有效) */ - chatId: string; - /** 会话标题 */ - title: string; -} -/** - * 选择企业会话 - * @description corpid必须是用户所属的企业的corpid - * @apiName biz.chat.chooseConversationByCorpId - * @supportVersion ios: 2.6.0 android: 2.6.0 pc: 4.7.11 - * @author Win:伏檀; Mac:北塔 - */ -export declare function chooseConversationByCorpId$(params: IBizChatChooseConversationByCorpIdParams): Promise; -export default chooseConversationByCorpId$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/chooseConversationByCorpId.js b/node_modules/dingtalk-jsapi/api/biz/chat/chooseConversationByCorpId.js deleted file mode 100644 index 36793c9e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/chooseConversationByCorpId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseConversationByCorpId$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseConversationByCorpId$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.chat.chooseConversationByCorpId",paramsDeal=apiHelper_1.genDefaultParamsDealFn({max:50});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.7.11",paramsDeal:paramsDeal},_a)),exports.chooseConversationByCorpId$=chooseConversationByCorpId$,exports.default=chooseConversationByCorpId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/collectSticker.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/collectSticker.d.ts deleted file mode 100644 index a6cb44ea..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/collectSticker.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 收藏表情(支持批量) 请求参数定义 - * @apiName biz.chat.collectSticker - */ -export interface IBizChatCollectStickerParams { - /** 表情url数组 */ - stickerUrls: string[]; -} -/** - * 收藏表情(支持批量) 返回结果定义 - * @apiName biz.chat.collectSticker - */ -export interface IBizChatCollectStickerResult { -} -/** - * 收藏表情(支持批量) - * @apiName biz.chat.collectSticker - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function collectSticker$(params: IBizChatCollectStickerParams): Promise; -export default collectSticker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/collectSticker.js b/node_modules/dingtalk-jsapi/api/biz/chat/collectSticker.js deleted file mode 100644 index 02d1f315..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/collectSticker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function collectSticker$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.collectSticker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.collectSticker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.25"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.25"},_a)),exports.collectSticker$=collectSticker$,exports.default=collectSticker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/createSceneGroup.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/createSceneGroup.d.ts deleted file mode 100644 index 63ca0acc..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/createSceneGroup.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -/** - * 创建场景群 请求参数定义 - * @apiName biz.chat.createSceneGroup - */ -export interface IBizChatCreateSceneGroupParams { - corpId: string; - /** 群名称 */ - title?: string; - /** 群头像url地址 */ - avatar?: string; - /** 群类型,1:年会大群;2:筹备群 */ - type?: number; - extension?: { - [key: string]: string; - }; -} -/** - * 创建场景群 返回结果定义 - * @apiName biz.chat.createSceneGroup - */ -export interface IBizChatCreateSceneGroupResult { - /** 会话Id */ - chatId: string; -} -/** - * 创建场景群 - * @apiName biz.chat.createSceneGroup - * @supportVersion ios: 4.7.17 android: 4.7.17 pc:4.7.17 - * @author windows: 仟晨 mac: 舒绎 android: 峰砺 iOS: 鱼非 - */ -export declare function createSceneGroup$(params: IBizChatCreateSceneGroupParams): Promise; -export default createSceneGroup$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/createSceneGroup.js b/node_modules/dingtalk-jsapi/api/biz/chat/createSceneGroup.js deleted file mode 100644 index 0ec4527f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/createSceneGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createSceneGroup$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createSceneGroup$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.createSceneGroup";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.7.17"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.7.17"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.7.17"},_a)),exports.createSceneGroup$=createSceneGroup$,exports.default=createSceneGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/getRealmCid.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/getRealmCid.d.ts deleted file mode 100644 index 2f34bcdf..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/getRealmCid.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 根据userId获取发送消息的会话cidToken 请求参数定义 - * @apiName biz.chat.getRealmCid - */ -export interface IBizChatGetRealmCidParams { - /** 指定对象的userId(staffId) */ - userId: string; - /** 指定对象所归属的企业Id */ - corpId: string; -} -/** - * 根据userId获取发送消息的会话cidToken 返回结果定义 - * @apiName biz.chat.getRealmCid - */ -export interface IBizChatGetRealmCidResult { - /** 会话发送消息的cidToken */ - cid: string; -} -/** - * 根据userId获取发送消息的会话cidToken - * @apiName biz.chat.getRealmCid - * @supportVersion ios: 4.7.12 android: 4.7.12 win: 4.7.12 mac 暂不支持 - * @author android:笔歌,ios:怒龙,win:秋裤 - */ -export declare function getRealmCid$(params: IBizChatGetRealmCidParams): Promise; -export default getRealmCid$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/getRealmCid.js b/node_modules/dingtalk-jsapi/api/biz/chat/getRealmCid.js deleted file mode 100644 index 371efae4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/getRealmCid.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getRealmCid$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getRealmCid$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.getRealmCid";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.7.12"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.7.12"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.7.12"},_a)),exports.getRealmCid$=getRealmCid$,exports.default=getRealmCid$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/locationChatMessage.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/locationChatMessage.d.ts deleted file mode 100644 index 2d35f9dc..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/locationChatMessage.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 未知 请求参数定义 - * @apiName biz.chat.locationChatMessage - */ -export interface IBizChatLocationChatMessageParams { - [key: string]: any; -} -/** - * 未知 返回结果定义 - * @apiName biz.chat.locationChatMessage - */ -export interface IBizChatLocationChatMessageResult { - [key: string]: any; -} -/** - * 未知 - * @apiName biz.chat.locationChatMessage - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function locationChatMessage$(params: IBizChatLocationChatMessageParams): Promise; -export default locationChatMessage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/locationChatMessage.js b/node_modules/dingtalk-jsapi/api/biz/chat/locationChatMessage.js deleted file mode 100644 index 5fec72d8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/locationChatMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function locationChatMessage$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.locationChatMessage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.locationChatMessage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.7.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.7.6"},_a)),exports.locationChatMessage$=locationChatMessage$,exports.default=locationChatMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/openSingleChat.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/openSingleChat.d.ts deleted file mode 100644 index 805bc1d5..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/openSingleChat.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 打开某个用户的聊天页面,如果没有,创建会话 请求参数定义 - * @apiName biz.chat.openSingleChat - */ -export interface IBizChatOpenSingleChatParams { - /** 企业id */ - corpId: string; - /** 用户的工号 */ - userId: string; -} -/** - * 打开某个用户的聊天页面,如果没有,创建会话 返回结果定义 - * @apiName biz.chat.openSingleChat - */ -export interface IBizChatOpenSingleChatResult { -} -/** - * 打开与某个用户的聊天页面(单聊会话) - * @apiName biz.chat.openSingleChat - * @supportVersion ios: 3.4.10 android: 3.4.10 - */ -export declare function openSingleChat$(params: IBizChatOpenSingleChatParams): Promise; -export default openSingleChat$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/openSingleChat.js b/node_modules/dingtalk-jsapi/api/biz/chat/openSingleChat.js deleted file mode 100644 index 438afda6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/openSingleChat.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openSingleChat$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openSingleChat$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.openSingleChat";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.4.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.4.10"},_a)),exports.openSingleChat$=openSingleChat$,exports.default=openSingleChat$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/pickConversation.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/pickConversation.d.ts deleted file mode 100644 index f9ec7c86..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/pickConversation.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -/** - * 选群组 请求参数定义 - * @apiName biz.chat.pickConversation - */ -export interface IBizChatPickConversationParams { - /** 企业id */ - corpId: string; - /** 是否弹出确认窗口,默认为true */ - isConfirm: string; -} -/** - * 选群组 返回结果定义 - * @apiName biz.chat.pickConversation - */ -export interface IBizChatPickConversationResult { - /** 该cid和服务端开发文档-普通会话消息接口配合使用,而且只能使用一次,之后将失效 */ - cid: string; - /** 会话标题 */ - title: string; -} -/** - * 选群组 - * @description corpid必须是用户所属的企业的corpid - * @apiName biz.chat.pickConversation - * @supportVersion ios: 2.4.2 android: 2.4.2 - */ -export declare function pickConversation$(params: IBizChatPickConversationParams): Promise; -export default pickConversation$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/pickConversation.js b/node_modules/dingtalk-jsapi/api/biz/chat/pickConversation.js deleted file mode 100644 index 12b2a84f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/pickConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pickConversation$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.pickConversation$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.pickConversation";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.2"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.2"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.7.9"},_a)),exports.pickConversation$=pickConversation$,exports.default=pickConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/sendEmotion.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/sendEmotion.d.ts deleted file mode 100644 index 93c7951c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/sendEmotion.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 发送表情。调用js-api后会唤起选会话组件,用户选择发送的会话,确认后发送。 请求参数定义 - * imageUrl和mediaId二选一 authMediaId配合mediaId,可选 - * @apiName biz.chat.sendEmotion - */ -export interface IBizChatSendEmotionParams { - /** 表情图片链接 */ - imageUrl?: string; - /** 表情图片mediaId */ - mediaId?: string; - /** 表情图片authMediaId */ - authMediaId?: string; -} -/** - * 发送表情。调用js-api后会唤起选会话组件,用户选择发送的会话,确认后发送。 返回结果定义 - * @apiName biz.chat.sendEmotion - */ -export interface IBizChatSendEmotionResult { -} -/** - * 发送表情。调用js-api后会唤起选会话组件,用户选择发送的会话,确认后发送。 - * @apiName biz.chat.sendEmotion - * @supportVersion ios: 4.6.12 android: 4.6.12 - */ -export declare function sendEmotion$(params: IBizChatSendEmotionParams): Promise; -export default sendEmotion$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/sendEmotion.js b/node_modules/dingtalk-jsapi/api/biz/chat/sendEmotion.js deleted file mode 100644 index aaf86df4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/sendEmotion.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendEmotion$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendEmotion$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.sendEmotion";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.12"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.12"},_a)),exports.sendEmotion$=sendEmotion$,exports.default=sendEmotion$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/toConversation.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/toConversation.d.ts deleted file mode 100644 index 58683c1f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/toConversation.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 跳转会话 请求参数定义 - * @apiName biz.chat.toConversation - */ -export interface IBizChatToConversationParams { - /** 企业id */ - corpId: string; - /** 会话Id */ - chatId: string; -} -/** - * 跳转会话 返回结果定义 - * @apiName biz.chat.toConversation - */ -export interface IBizChatToConversationResult { -} -/** - * 根据chatId跳转到对应会话 - * @description corpid必须是用户所属的企业的corpid - * @apiName biz.chat.toConversation - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function toConversation$(params: IBizChatToConversationParams): Promise; -export default toConversation$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/toConversation.js b/node_modules/dingtalk-jsapi/api/biz/chat/toConversation.js deleted file mode 100644 index 97d3a2ef..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/toConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function toConversation$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.toConversation$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.toConversation";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.toConversation$=toConversation$,exports.default=toConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/toConversationByOpenConversationId.d.ts b/node_modules/dingtalk-jsapi/api/biz/chat/toConversationByOpenConversationId.d.ts deleted file mode 100644 index 5deb1759..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/toConversationByOpenConversationId.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话 请求参数定义 - * @apiName biz.chat.toConversationByOpenConversationId - */ -export interface IBizChatToConversationByOpenConversationIdParams { - /** 开放会话cid */ - openConversationId: string; - /** 调用成功的回调函数 */ - onSuccess?: Function; - /** 调用失败的回调函数 */ - onFail?: Function; -} -/** - * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话 返回结果定义 - * @apiName biz.chat.toConversationByOpenConversationId - */ -export interface IBizChatToConversationByOpenConversationIdResult { -} -/** - * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话 - * @apiName biz.chat.toConversationByOpenConversationId - * @supportVersion ios: 5.1.30 android: 5.1.30 pc: 5.1.33 - * @author Android:允武 iOS:度尽 Mac:北塔 Windows:秋酷 - */ -export declare function toConversationByOpenConversationId$(params: IBizChatToConversationByOpenConversationIdParams): Promise; -export default toConversationByOpenConversationId$; diff --git a/node_modules/dingtalk-jsapi/api/biz/chat/toConversationByOpenConversationId.js b/node_modules/dingtalk-jsapi/api/biz/chat/toConversationByOpenConversationId.js deleted file mode 100644 index 0ccd215d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/chat/toConversationByOpenConversationId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function toConversationByOpenConversationId$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.toConversationByOpenConversationId$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.chat.toConversationByOpenConversationId";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.30"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.30"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.33"},_a)),exports.toConversationByOpenConversationId$=toConversationByOpenConversationId$,exports.default=toConversationByOpenConversationId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/clipboardData/setData.d.ts b/node_modules/dingtalk-jsapi/api/biz/clipboardData/setData.d.ts deleted file mode 100644 index 1e235d11..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/clipboardData/setData.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 添加到黏贴板 请求参数定义 - * @apiName biz.clipboardData.setData - */ -export interface IBizClipboardDataSetDataParams { - /** 要复制粘贴板的内容 */ - text: string; -} -/** - * 添加到黏贴板 返回结果定义 - * @apiName biz.clipboardData.setData - */ -export interface IBizClipboardDataSetDataResult { -} -/** - * 添加到黏贴板 - * @apiName biz.clipboardData.setData - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function setData$(params: IBizClipboardDataSetDataParams): Promise; -export default setData$; diff --git a/node_modules/dingtalk-jsapi/api/biz/clipboardData/setData.js b/node_modules/dingtalk-jsapi/api/biz/clipboardData/setData.js deleted file mode 100644 index 31639909..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/clipboardData/setData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setData$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setData$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.clipboardData.setData";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.7.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.7.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.6.1"},_a)),exports.setData$=setData$,exports.default=setData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/conference/createCloudCall.d.ts b/node_modules/dingtalk-jsapi/api/biz/conference/createCloudCall.d.ts deleted file mode 100644 index c413ed88..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/conference/createCloudCall.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * 办公电话直接拨打 请求参数定义 - * @apiName biz.conference.createCloudCall - */ -export interface IBizConferenceCreateCloudCallParams { - corpId: string; - bizNumber: string; - calleeNumber: string; - closePushCallRecord?: boolean; - openCallRecord?: boolean; - hideCalleeNumber?: boolean; -} -/** - * 办公电话直接拨打 返回结果定义 - * @apiName biz.conference.createCloudCall - */ -export interface IBizConferenceCreateCloudCallResult { - code: number; - cause: string; - sessionId: string; -} -/** - * 办公电话直接拨打 - * @apiName biz.conference.createCloudCall - * @supportVersion ios: 6.0.0 android: 6.0.0 pc: 6.0.9 - * @author Android:洛洋, iOS:度尽, pc:远觉 - */ -export declare function createCloudCall$(params: IBizConferenceCreateCloudCallParams): Promise; -export default createCloudCall$; diff --git a/node_modules/dingtalk-jsapi/api/biz/conference/createCloudCall.js b/node_modules/dingtalk-jsapi/api/biz/conference/createCloudCall.js deleted file mode 100644 index 9ef8a8f8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/conference/createCloudCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createCloudCall$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createCloudCall$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.conference.createCloudCall";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.9"},_a)),exports.createCloudCall$=createCloudCall$,exports.default=createCloudCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallInfo.d.ts b/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallInfo.d.ts deleted file mode 100644 index 5f8fa05d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallInfo.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 办公电话话单查询 请求参数定义 - * @apiName biz.conference.getCloudCallInfo - */ -export interface IBizConferenceGetCloudCallInfoParams { - corpId: string; -} -/** - * 办公电话话单查询 返回结果定义 - * @apiName biz.conference.getCloudCallInfo - */ -export interface IBizConferenceGetCloudCallInfoResult { - code: number; - cause: string; - hasOpen: boolean; - bizNumberList?: string[]; -} -/** - * 办公电话话单查询 - * @apiName biz.conference.getCloudCallInfo - * @supportVersion ios: 6.0.0 android: 6.0.0 pc: 6.0.9 - * @author Android:洛洋, iOS:度尽, pc:远觉 - */ -export declare function getCloudCallInfo$(params: IBizConferenceGetCloudCallInfoParams): Promise; -export default getCloudCallInfo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallInfo.js b/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallInfo.js deleted file mode 100644 index 36499610..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCloudCallInfo$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCloudCallInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.conference.getCloudCallInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.9"},_a)),exports.getCloudCallInfo$=getCloudCallInfo$,exports.default=getCloudCallInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallList.d.ts b/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallList.d.ts deleted file mode 100644 index 6a07a286..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallList.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * 办公电话话单查询 请求参数定义 - * @apiName biz.conference.getCloudCallList - */ -export interface IBizConferenceGetCloudCallListParams { - corpId: string; - sessionId?: string; - bizNumber?: string; - startTime: string; - endTime: string; - staffIdList?: string; - direction?: number; - index?: number; - pageSize?: number; -} -/** - * 办公电话话单查询 返回结果定义 - * @apiName biz.conference.getCloudCallList - */ -export interface IBizConferenceGetCloudCallListResult { - code: number; - cause: string; - total: number; - callList?: any[]; - hasMore: boolean; - currentIndex: number; -} -/** - * 办公电话话单查询 - * @apiName biz.conference.getCloudCallList - * @supportVersion ios: 6.0.0 android: 6.0.0 pc: 6.0.9 - * @author Android:洛洋, iOS:度尽, pc:远觉 - */ -export declare function getCloudCallList$(params: IBizConferenceGetCloudCallListParams): Promise; -export default getCloudCallList$; diff --git a/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallList.js b/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallList.js deleted file mode 100644 index 18fc056d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/conference/getCloudCallList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCloudCallList$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCloudCallList$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.conference.getCloudCallList";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.9"},_a)),exports.getCloudCallList$=getCloudCallList$,exports.default=getCloudCallList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/conference/videoConfCall.d.ts b/node_modules/dingtalk-jsapi/api/biz/conference/videoConfCall.d.ts deleted file mode 100644 index a81d9d6d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/conference/videoConfCall.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 向组织内用户发起视频会议 请求参数定义 - * @apiName biz.conference.videoConfCall - */ -export interface IBizConferenceVideoConfCallParams { - /** 通话主题,建议传入有实际意义的简短描述,便于之后查看通话记录时快速筛选。 */ - title: string; - /** 被叫的所属企业id */ - calleeCorpId: string; - /** 参会人在所属企业中的 staff-id列表,注意,这里的 StaffId 必须归属于上面的 calleeCorpId 对应的企业 */ - calleeStaffIds: string[]; -} -/** - * 向组织内用户发起视频会议 返回结果定义 - * @apiName biz.conference.videoConfCall - */ -export interface IBizConferenceVideoConfCallResult { -} -/** - * 向组织内用户发起视频会议 - * @apiName biz.conference.videoConfCall - * @supportVersion ios: 5.0.8 android: 5.0.8 pc: 5.1.28 - * @author iOS: 怒龙, android: 柳樵 windows: 桓奇 Mac:远觉 - */ -export declare function videoConfCall$(params: IBizConferenceVideoConfCallParams): Promise; -export default videoConfCall$; diff --git a/node_modules/dingtalk-jsapi/api/biz/conference/videoConfCall.js b/node_modules/dingtalk-jsapi/api/biz/conference/videoConfCall.js deleted file mode 100644 index 7df5e2fd..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/conference/videoConfCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function videoConfCall$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.videoConfCall$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.conference.videoConfCall";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.0.8"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.0.8"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.28"},_a)),exports.videoConfCall$=videoConfCall$,exports.default=videoConfCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/choose.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/choose.d.ts deleted file mode 100644 index 42acafa0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/choose.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 修改企业通讯录选人 请求参数定义 - * @apiName biz.contact.choose - */ -export interface IBizContactChooseParams { - [key: string]: any; -} -/** - * 修改企业通讯录选人 返回结果定义 - * @apiName biz.contact.choose - */ -export interface IBizContactChooseResult { - [key: string]: any; -} -/** - * 修改企业通讯录选人 - * @apiName biz.contact.choose - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function choose$(params: IBizContactChooseParams): Promise; -export default choose$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/choose.js b/node_modules/dingtalk-jsapi/api/biz/contact/choose.js deleted file mode 100644 index 1d4c4d95..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/choose.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function choose$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.choose$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.contact.choose",paramsDeal=apiHelper_1.genDefaultParamsDealFn({multiple:!0,startWithDepartmentId:0,users:[]});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.choose$=choose$,exports.default=choose$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/chooseMobileContacts.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/chooseMobileContacts.d.ts deleted file mode 100644 index 8953d99c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/chooseMobileContacts.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 选择手机联系人 请求参数定义 - * @apiName biz.contact.chooseMobileContacts - */ -export interface IBizContactChooseMobileContactsParams { - [key: string]: any; -} -/** - * 选择手机联系人 返回结果定义 - * @apiName biz.contact.chooseMobileContacts - */ -export interface IBizContactChooseMobileContactsResult { - [key: string]: any; -} -/** - * 选择手机联系人 - * @apiName biz.contact.chooseMobileContacts - * @supportVersion ios: 3.1 android: 3.1 - */ -export declare function chooseMobileContacts$(params: IBizContactChooseMobileContactsParams): Promise; -export default chooseMobileContacts$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/chooseMobileContacts.js b/node_modules/dingtalk-jsapi/api/biz/contact/chooseMobileContacts.js deleted file mode 100644 index 8803d6a6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/chooseMobileContacts.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseMobileContacts$(o){return ddSdk_1.ddSdk.invokeAPI(apiName,o)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseMobileContacts$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.contact.chooseMobileContacts";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.1"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.1"},_a)),exports.chooseMobileContacts$=chooseMobileContacts$,exports.default=chooseMobileContacts$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/complexPicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/complexPicker.d.ts deleted file mode 100644 index 92b62425..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/complexPicker.d.ts +++ /dev/null @@ -1,89 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 选人与部门 请求参数定义 - * @apiName biz.contact.complexPicker - */ -export interface IBizContactComplexPickerParams extends ICommonAPIParams { - /** 标题 */ - title?: string; - /** 企业的corpId */ - corpId?: string; - /** 是否多选 */ - multiple?: boolean; - /** 超过限定人数返回提示 */ - limitTips?: string; - /** 选人组件,用户未选择人的时候,左下角的提示文案 */ - pickTips?: string; - /** 最大可选人数 */ - maxUsers?: number; - /** 已选用户 */ - pickedUsers?: string[]; - /** 已选部门 */ - pickedDepartments?: string[]; - /** 不可选用户 */ - disabledUsers?: string[]; - /** 不可选部门 */ - disabledDepartments?: string[]; - /** 必选用户(不可取消选中状态) */ - requiredUsers?: string[]; - /** 必选部门(不可取消选中状态) */ - requiredDepartments?: string[]; - /** 微应用的Id */ - appId?: number; - /** 选人权限,目前只有GLOBAL这个参数 */ - permissionType?: string; - /** 返回人,或者返回人和部门 */ - responseUserOnly?: boolean; - /** 0表示从企业最上层开始 */ - startWithDepartmentId?: number; - /** 上游业务来源 */ - origin?: number; - /** 上游业务来源描述 */ - originMeta?: string; - /** 只支持移动端,可以直接跳到具体部门。-1 表示根部门,0 表示当前部门(startWithDepartmentId需要传2,depId才生效) */ - deptId?: number; - /** 初始页面是组织架构或组织列表页 */ - rootPage?: string; - /** 组织列表上是否展示按角色选择 */ - showLabelPick?: boolean; - /** 组织列表上是否展示组织关联的上下游组织入口 */ - showOrgEcological?: boolean; - /** 显示指定企业的上下游组织列表 */ - filterOrgEcological?: boolean; -} -/** - * 选人与部门 返回结果定义 - * @apiName biz.contact.complexPicker - */ -export interface IBizContactComplexPickerResult { - /** 选择人数 */ - selectedCount: number; - /** 返回选人的列表,列表中的对象包含name(用户名),avatar(用户头像),emplId(用户工号)三个字段 */ - users?: Array<{ - name: string; - avatar: string; - /** 用户工号 */ - emplId: string; - /** 员工部门 id */ - selectDeptId?: number; - /** 员工部门名称 */ - selectDeptName?: string; - /** 用户所在企业 */ - corpId?: string; - }>; - /** 返回已选部门列表,列表中每个对象包含id(部门id)、name(部门名称)、number(部门人数) */ - departments?: Array<{ - id: string; - name: string; - number: string; - }>; -} -/** - * 选人与部门 - * 支持选择部门后,把所选部门转换成对应部门下的人,permissionType可以添加权限校验 - * @apiName biz.contact.complexPicker - * @supportVersion ios: 2.9.0 android: 2.9.0 pc: 4.3.5 - * @author iOS:晓毒; Android:几米; - */ -export declare function complexPicker$(params: IBizContactComplexPickerParams): Promise; -export default complexPicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/complexPicker.js b/node_modules/dingtalk-jsapi/api/biz/contact/complexPicker.js deleted file mode 100644 index 9833226c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/complexPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function complexPicker$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.complexPicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.contact.complexPicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.9.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.9.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.3.5"},_a)),exports.complexPicker$=complexPicker$,exports.default=complexPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/createGroup.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/createGroup.d.ts deleted file mode 100644 index 19221945..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/createGroup.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 创建群 请求参数定义 - * @apiName biz.contact.createGroup - */ -export interface IBizContactCreateGroupParams { - corpId?: string; - users?: string[]; -} -/** - * 创建群 返回结果定义 - * @apiName biz.contact.createGroup - */ -export interface IBizContactCreateGroupResult { - /** 企业群ID */ - id: string; -} -/** - * 创建群 - * @apiName biz.contact.createGroup - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function createGroup$(params: IBizContactCreateGroupParams): Promise; -export default createGroup$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/createGroup.js b/node_modules/dingtalk-jsapi/api/biz/contact/createGroup.js deleted file mode 100644 index aa1085d4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/createGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createGroup$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createGroup$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.contact.createGroup";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.6.1"},_a)),exports.createGroup$=createGroup$,exports.default=createGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/departmentsPicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/departmentsPicker.d.ts deleted file mode 100644 index 9d92b604..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/departmentsPicker.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 选部门 请求参数定义 - * @apiName biz.contact.departmentsPicker - */ -export interface IBizContactDepartmentsPickerParams { - [key: string]: any; -} -/** - * 选部门 返回结果定义 - * @apiName biz.contact.departmentsPicker - */ -export interface IBizContactDepartmentsPickerResult { - [key: string]: any; -} -/** - * 选部门 - * @apiName biz.contact.departmentsPicker - * @supportVersion pc: 4.2.5 ios: 3.0 android: 3.0 - */ -export declare function departmentsPicker$(params: IBizContactDepartmentsPickerParams): Promise; -export default departmentsPicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/departmentsPicker.js b/node_modules/dingtalk-jsapi/api/biz/contact/departmentsPicker.js deleted file mode 100644 index 62377378..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/departmentsPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function departmentsPicker$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.departmentsPicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.contact.departmentsPicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.2.5"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.0"},_a)),exports.departmentsPicker$=departmentsPicker$,exports.default=departmentsPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/externalComplexPicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/externalComplexPicker.d.ts deleted file mode 100644 index 8189a567..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/externalComplexPicker.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 选外部通信录 请求参数定义 - * @apiName biz.contact.externalComplexPicker - */ -export interface IBizContactExternalComplexPickerParams { - [key: string]: any; -} -/** - * 选外部通信录 返回结果定义 - * @apiName biz.contact.externalComplexPicker - */ -export interface IBizContactExternalComplexPickerResult { - [key: string]: any; -} -/** - * 选外部通信录 - * @apiName biz.contact.externalComplexPicker - * @supportVersion pc: 3.0.0 ios: 3.0 android: 3.0 - */ -export declare function externalComplexPicker$(params: IBizContactExternalComplexPickerParams): Promise; -export default externalComplexPicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/externalComplexPicker.js b/node_modules/dingtalk-jsapi/api/biz/contact/externalComplexPicker.js deleted file mode 100644 index 4683a682..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/externalComplexPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function externalComplexPicker$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.externalComplexPicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.contact.externalComplexPicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.0"},_a)),exports.externalComplexPicker$=externalComplexPicker$,exports.default=externalComplexPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/externalEditForm.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/externalEditForm.d.ts deleted file mode 100644 index f2debdde..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/externalEditForm.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 编辑联系人 请求参数定义 - * @apiName biz.contact.externalEditForm - */ -export interface IBizContactExternalEditFormParams { - [key: string]: any; -} -/** - * 编辑联系人 返回结果定义 - * @apiName biz.contact.externalEditForm - */ -export interface IBizContactExternalEditFormResult { - [key: string]: any; -} -/** - * 编辑联系人 - * @apiName biz.contact.externalEditForm - * @supportVersion ios: 3.0 android: 3.0 - */ -export declare function externalEditForm$(params: IBizContactExternalEditFormParams): Promise; -export default externalEditForm$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/externalEditForm.js b/node_modules/dingtalk-jsapi/api/biz/contact/externalEditForm.js deleted file mode 100644 index 15606112..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/externalEditForm.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function externalEditForm$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.externalEditForm$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.contact.externalEditForm";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.0"},_a)),exports.externalEditForm$=externalEditForm$,exports.default=externalEditForm$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/rolesPicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/rolesPicker.d.ts deleted file mode 100644 index a3065ba4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/rolesPicker.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * 角色选择组件 请求参数定义 - * @apiName biz.contact.rolesPicker - */ -export interface IBizContactRolesPickerParams { - /** 企业的corpId; */ - corpId: string; - /** 最多可选择多少个;若入参超过5000,会按5000来处理;默认1000 */ - maxRoles?: number; - /** 用户选择的角色数,超过maxRoles个时的提示文案;默认:选择角色数量超出限制 */ - limitTips?: string; - /** 组件的页面title;默认:选择角色 */ - title?: string; -} -/** - * 角色选择组件 返回结果定义 - * @apiName biz.contact.rolesPicker - */ -export interface IBizContactRolesPickerResult { - /** {name:角色名,roleId:角色id}列表 */ - roles: { - name: string; - roleId: string; - [key: string]: any; - }[]; -} -/** - * 角色选择组件 - * @apiName biz.contact.rolesPicker - * @supportVersion ios: 6.3.16 android: 6.3.16 - * @author android 启宏 iOS 姚曦 - */ -export declare function rolesPicker$(params: IBizContactRolesPickerParams): Promise; -export default rolesPicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/rolesPicker.js b/node_modules/dingtalk-jsapi/api/biz/contact/rolesPicker.js deleted file mode 100644 index 28062841..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/rolesPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function rolesPicker$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.rolesPicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.contact.rolesPicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.16"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.16"},_a)),exports.rolesPicker$=rolesPicker$,exports.default=rolesPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/setRule.d.ts b/node_modules/dingtalk-jsapi/api/biz/contact/setRule.d.ts deleted file mode 100644 index ac16456a..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/setRule.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 设置规则 请求参数定义 - * @apiName biz.contact.setRule - */ -export interface IBizContactSetRuleParams { - [key: string]: any; -} -/** - * 设置规则 返回结果定义 - * @apiName biz.contact.setRule - */ -export interface IBizContactSetRuleResult { - [key: string]: any; -} -/** - * 设置规则 - * @apiName biz.contact.setRule - * @supportVersion ios: 2.15 android: 2.15 - */ -export declare function setRule$(params: IBizContactSetRuleParams): Promise; -export default setRule$; diff --git a/node_modules/dingtalk-jsapi/api/biz/contact/setRule.js b/node_modules/dingtalk-jsapi/api/biz/contact/setRule.js deleted file mode 100644 index c6833a74..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/contact/setRule.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setRule$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setRule$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.contact.setRule";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.15"},_a)),exports.setRule$=setRule$,exports.default=setRule$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/chooseSpaceDir.d.ts b/node_modules/dingtalk-jsapi/api/biz/cspace/chooseSpaceDir.d.ts deleted file mode 100644 index a131dab7..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/chooseSpaceDir.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * 唤起钉盘选择器 请求参数定义 - * @apiName biz.cspace.chooseSpaceDir - */ -export interface IBizCspaceChooseSpaceDirParams { - /** 组织id, 必填,被选择的企业空间限制在corpid对应的企业下 */ - corpId: string; -} -/** - * 唤起钉盘选择器 返回结果定义 - * @apiName biz.cspace.chooseSpaceDir - */ -export interface IBizCspaceChooseSpaceDirResult { - data: Array<{ - /** 被选中文件夹所在的钉盘空间id */ - spaceId: string; - /** 被选中的文件夹路径, 例如“/测试/测试子目录/” */ - path: string; - /** 被选中的文件夹id */ - dirId: string; - }>; -} -/** - * 唤起钉盘选择器 - * 唤起钉盘选择器, 从当前用户的企业空间或个人空间选择一个目录, 用以保存文件等操作 - * @apiName biz.cspace.chooseSpaceDir - * @supportVersion ios: 3.5.6 android: 3.5.6 pc: 5.1.27 - * @author pc: 法真 - */ -export declare function chooseSpaceDir$(params: IBizCspaceChooseSpaceDirParams): Promise; -export default chooseSpaceDir$; diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/chooseSpaceDir.js b/node_modules/dingtalk-jsapi/api/biz/cspace/chooseSpaceDir.js deleted file mode 100644 index 1ca58692..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/chooseSpaceDir.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseSpaceDir$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseSpaceDir$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.cspace.chooseSpaceDir";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.6"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.27"},_a)),exports.chooseSpaceDir$=chooseSpaceDir$,exports.default=chooseSpaceDir$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/delete.d.ts b/node_modules/dingtalk-jsapi/api/biz/cspace/delete.d.ts deleted file mode 100644 index e501a435..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/delete.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 删除钉盘附件 请求参数定义 - * @apiName biz.cspace.delete - */ -export interface IBizCspaceDeleteParams { - /** 空间id */ - spaceId: string; - /** 目录id */ - dentryId: string; -} -/** - * 删除钉盘附件 返回结果定义 - * @apiName biz.cspace.delete - */ -export interface IBizCspaceDeleteResult { -} -/** - * 删除钉盘附件 - * @apiName biz.cspace.delete - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function delete$(params: IBizCspaceDeleteParams): Promise; -export default delete$; diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/delete.js b/node_modules/dingtalk-jsapi/api/biz/cspace/delete.js deleted file mode 100644 index 963d8fe0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/delete.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function delete$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.delete$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.cspace.delete";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.5.21"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.5.21"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.5.21"},_a)),exports.delete$=delete$,exports.default=delete$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/preview.d.ts b/node_modules/dingtalk-jsapi/api/biz/cspace/preview.d.ts deleted file mode 100644 index fcb99de0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/preview.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * 附件预览 请求参数定义 - * @apiName biz.cspace.preview - */ -export interface IBizCspacePreviewParams { - /** 用户当前的corpid,此文件预览成功后只能转发或保存到此corpId对应的企业群和个人 */ - corpId: string; - /** 空间ID */ - spaceId: string; - /** 文件ID */ - fileId: string; - /** 文件名称 */ - fileName: string; - /** 文件大小,字节数 */ - fileSize: number; - /** 文件扩展名 */ - fileType: string; - /** 预览时候可以控制是否显示 下载、转发等等按钮, 暂支持移动端 */ - mode?: 'safe' | 'normal' | 'edit' | 'revise' | 'restrict'; - /** 表示预览文件的某个版本,4.3.5开始支持,支持移动端 */ - version?: string; -} -/** - * 附件预览 返回结果定义 - * @apiName biz.cspace.preview - */ -export interface IBizCspacePreviewResult { -} -/** - * 附件预览 - * @apiName biz.cspace.preview - * @supportVersion pc: 3.0.0 ios: 2.7.0 android: 2.7.0 - */ -export declare function preview$(params: IBizCspacePreviewParams): Promise; -export default preview$; diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/preview.js b/node_modules/dingtalk-jsapi/api/biz/cspace/preview.js deleted file mode 100644 index c8d75fa2..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/preview.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function preview$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.preview$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.cspace.preview";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.7.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.7.0"},_a)),exports.preview$=preview$,exports.default=preview$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/previewDentryImages.d.ts b/node_modules/dingtalk-jsapi/api/biz/cspace/previewDentryImages.d.ts deleted file mode 100644 index dfdc1428..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/previewDentryImages.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 批量预览钉盘图片 请求参数定义 - * @apiName biz.cspace.previewDentryImages - */ -export interface IBizCspacePreviewDentryImagesParams { - images: { - spaceId: string; - dentryId: string; - }[]; - index?: number; -} -/** - * 批量预览钉盘图片 返回结果定义 - * @apiName biz.cspace.previewDentryImages - */ -export interface IBizCspacePreviewDentryImagesResult { -} -/** - * 批量预览钉盘图片 - * @apiName biz.cspace.previewDentryImages - * @supportVersion ios: 6.3.30 android: 6.3.30 - */ -export declare function previewDentryImages$(params: IBizCspacePreviewDentryImagesParams): Promise; -export default previewDentryImages$; diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/previewDentryImages.js b/node_modules/dingtalk-jsapi/api/biz/cspace/previewDentryImages.js deleted file mode 100644 index 04a5e5c4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/previewDentryImages.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewDentryImages$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewDentryImages$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.cspace.previewDentryImages";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.30"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.30"},_a)),exports.previewDentryImages$=previewDentryImages$,exports.default=previewDentryImages$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/saveFile.d.ts b/node_modules/dingtalk-jsapi/api/biz/cspace/saveFile.d.ts deleted file mode 100644 index e552f974..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/saveFile.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * 转存附件 请求参数定义 - * @apiName biz.cspace.saveFile - */ -export interface IBizCspaceSaveFileParams { - /** 用户当前的corpid,将只能存储到当前corpid对应企业的钉盘和个人钉盘 */ - corpId: string; - /** 文件在第三方服务器地址, 也可为通过服务端接口上传文件得到的media_id,详见参数说明 */ - url: string; - /** 文件保存的名字 */ - name: string; -} -/** - * 转存附件 返回结果定义 - * @apiName biz.cspace.saveFile - */ -export interface IBizCspaceSaveFileResult { - data: Array<{ - /** 空间id */ - spaceId: string; - /** 文件id */ - fileId: string; - /** 文件名 */ - fileName: string; - /** 文件大小 */ - fileSize: number; - /** 文件类型 */ - fileType: string; - }>; -} -/** - * 转存附件 - * @apiName biz.cspace.saveFile - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function saveFile$(params: IBizCspaceSaveFileParams): Promise; -export default saveFile$; diff --git a/node_modules/dingtalk-jsapi/api/biz/cspace/saveFile.js b/node_modules/dingtalk-jsapi/api/biz/cspace/saveFile.js deleted file mode 100644 index 8485f4a2..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/cspace/saveFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveFile$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveFile$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.cspace.saveFile";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.7.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.7.6"},_a)),exports.saveFile$=saveFile$,exports.default=saveFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/customContact/choose.d.ts b/node_modules/dingtalk-jsapi/api/biz/customContact/choose.d.ts deleted file mode 100644 index 0d2acfde..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/customContact/choose.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 自定义选人组件 请求参数定义 - * @apiName biz.customContact.choose - */ -export interface IBizCustomContactChooseParams { - [key: string]: any; -} -/** - * 自定义选人组件 返回结果定义 - * @apiName biz.customContact.choose - */ -export interface IBizCustomContactChooseResult { - [key: string]: any; -} -/** - * 自定义选人组件 - * @apiName biz.customContact.choose - * @supportVersion pc: 3.0.0 ios: 2.5.2 android: 2.5.2 - */ -export declare function choose$(params: IBizCustomContactChooseParams): Promise; -export default choose$; diff --git a/node_modules/dingtalk-jsapi/api/biz/customContact/choose.js b/node_modules/dingtalk-jsapi/api/biz/customContact/choose.js deleted file mode 100644 index 22af06fd..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/customContact/choose.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function choose$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.choose$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.customContact.choose",paramsDeal=apiHelper_1.genDefaultParamsDealFn({isShowCompanyName:!1,max:50});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.5.2",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.5.2",paramsDeal:paramsDeal},_a)),exports.choose$=choose$,exports.default=choose$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/customContact/multipleChoose.d.ts b/node_modules/dingtalk-jsapi/api/biz/customContact/multipleChoose.d.ts deleted file mode 100644 index 6ba42a71..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/customContact/multipleChoose.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 自定义选人组件(多选) 请求参数定义 - * @apiName biz.customContact.multipleChoose - */ -export interface IBizCustomContactMultipleChooseParams { - [key: string]: any; -} -/** - * 自定义选人组件(多选) 返回结果定义 - * @apiName biz.customContact.multipleChoose - */ -export interface IBizCustomContactMultipleChooseResult { - [key: string]: any; -} -/** - * 自定义选人组件(多选) - * @apiName biz.customContact.multipleChoose - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function multipleChoose$(params: IBizCustomContactMultipleChooseParams): Promise; -export default multipleChoose$; diff --git a/node_modules/dingtalk-jsapi/api/biz/customContact/multipleChoose.js b/node_modules/dingtalk-jsapi/api/biz/customContact/multipleChoose.js deleted file mode 100644 index 3b8098d4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/customContact/multipleChoose.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function multipleChoose$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.multipleChoose$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.customContact.multipleChoose",paramsDeal=apiHelper_1.genDefaultParamsDealFn({isShowCompanyName:!1,max:50});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.multipleChoose$=multipleChoose$,exports.default=multipleChoose$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/data/rsa.d.ts b/node_modules/dingtalk-jsapi/api/biz/data/rsa.d.ts deleted file mode 100644 index ebc4c70e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/data/rsa.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * RSA加解密 请求参数定义 - * @apiName biz.data.rsa - */ -export interface IBizDataRsaParams extends ICommonAPIParams { - key: string; - text: string; - action: string; -} -/** - * RSA加解密 返回结果定义 - * @apiName biz.data.rsa - */ -export interface IBizDataRsaResult { - text: string; -} -/** - * RSA加解密 - * @apiName biz.data.rsa - */ -export declare function rsa$(params: IBizDataRsaParams): Promise; -export default rsa$; diff --git a/node_modules/dingtalk-jsapi/api/biz/data/rsa.js b/node_modules/dingtalk-jsapi/api/biz/data/rsa.js deleted file mode 100644 index 6c61bcc0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/data/rsa.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function rsa$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.rsa$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.data.rsa";ddSdk_1.ddSdk.setAPI(apiName,{}),exports.rsa$=rsa$,exports.default=rsa$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/ding/create.d.ts b/node_modules/dingtalk-jsapi/api/biz/ding/create.d.ts deleted file mode 100644 index 2b04a8b3..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ding/create.d.ts +++ /dev/null @@ -1,88 +0,0 @@ -/** - * 打开DING、任务、会议界面 请求参数定义 - * @apiName biz.ding.create - */ -export interface IBizDingCreateParams { - /** 用户列表,工号 */ - users: string[]; - /** 企业id */ - corpId: string; - /** 附件类型 1:image 2:link */ - type?: 1 | 2; - /** 钉发送方式 0:电话, 1:短信, 2:应用内 */ - alertType?: 0 | 1 | 2; - alertDate?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 附件信息 */ - attachment?: { - images: string[]; - } | { - title: string; - url: string; - image: string; - text: string; - }; - /** 正文 */ - text?: string; - /** 业务类型 0:通知DING;1:任务;2:会议; */ - bizType?: 0 | 1 | 2; - /** 会议信息 */ - confInfo?: { - /** 子业务类型如会议:0:预约会议;1:预约电话会议;2:预约视频会议;(注:目前只有会议才有子业务类型) */ - bizSubType: 0 | 1 | 2; - /** 会议地点;(非必填) */ - location?: string; - /** 会议开始时间 */ - startTime?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 会议结束时间 */ - endTime?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 会前提醒。单位分钟-1:不提醒;0:事件发生时提醒;5:提前5分钟;15:提前15分钟;30:提前30分钟;60:提前1个小时;1440:提前一天; */ - remindMinutes?: number; - /** 会议提前提醒方式。0:电话, 1:短信, 2:应用内 */ - remindType?: 0 | 1 | 2; - }; - taskInfo?: { - /** 抄送用户列表,工号 */ - ccUsers?: string[]; - /** 任务截止时间 */ - deadlineTime?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 任务提醒时间,单位分钟0:不提醒;15:提前15分钟;60:提前1个小时;180:提前3个小时;1440:提前一天; */ - taskRemind?: number; - }; -} -/** - * 打开DING、任务、会议界面 返回结果定义 - * @apiName biz.ding.create - */ -export interface IBizDingCreateResult { - dingCreateResult?: boolean; -} -/** - * 打开DING、任务、会议界面 - * @description 钉钉3.5.1版本以后建议使用Ding 2.0发钉接口,Ding 1.0 发钉接口(dd.biz.ding.post)会被慢慢废弃。请大家及时切换,并关注兼容性问题。 - * DING 2.0发钉接口支持打开DING、任务、会议界面。 - * 目前发钉只支持客户端发钉,不支持直接通过服务端发钉。 - * @apiName biz.ding.create - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function create$(params: IBizDingCreateParams): Promise; -export default create$; diff --git a/node_modules/dingtalk-jsapi/api/biz/ding/create.js b/node_modules/dingtalk-jsapi/api/biz/ding/create.js deleted file mode 100644 index 0ae7fa39..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ding/create.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function create$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.create$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.ding.create";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.1",resultDeal:function(e){return""===e?e={dingCreateResult:!1}:"object"==typeof e&&(e.dingCreateResult=!!e.dingCreateResult),e}},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.1"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.5.9"},_a)),exports.create$=create$,exports.default=create$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/ding/post.d.ts b/node_modules/dingtalk-jsapi/api/biz/ding/post.d.ts deleted file mode 100644 index 41fc4dce..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ding/post.d.ts +++ /dev/null @@ -1,44 +0,0 @@ -/** - * 发钉 请求参数定义 - * @apiName biz.ding.post - */ -export interface IBizDingPostParams { - /** 用户列表,工号 */ - users: string[]; - /** 企业id */ - corpId: string; - /** 附件类型 1:image 2:link */ - type: 1 | 2; - /** 钉发送方式 0:电话, 1:短信, 2:应用内 */ - alertType?: 0 | 1 | 2; - alertDate?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 附件信息 */ - attachment?: { - images: string[]; - } | { - title: string; - url: string; - image: string; - text: string; - }; - /** 正文 */ - text?: string; -} -/** - * 发钉 返回结果定义 - * @apiName biz.ding.post - */ -export interface IBizDingPostResult { -} -/** - * 发钉 - * @apiName biz.ding.post - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function post$(params: IBizDingPostParams): Promise; -export default post$; diff --git a/node_modules/dingtalk-jsapi/api/biz/ding/post.js b/node_modules/dingtalk-jsapi/api/biz/ding/post.js deleted file mode 100644 index d8243af5..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/ding/post.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function post$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.post$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.ding.post";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.post$=post$,exports.default=post$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/finishMiniCourseByRecordId.d.ts b/node_modules/dingtalk-jsapi/api/biz/edu/finishMiniCourseByRecordId.d.ts deleted file mode 100644 index 95f573da..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/finishMiniCourseByRecordId.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 标记微课完成 请求参数定义 - * @apiName biz.edu.finishMiniCourseByRecordId - */ -export interface IBizEduFinishMiniCourseByRecordIdParams { - /** 记录的Id */ - recordId?: string; -} -/** - * 标记微课完成 返回结果定义 - * @apiName biz.edu.finishMiniCourseByRecordId - */ -export interface IBizEduFinishMiniCourseByRecordIdResult { - /** 1为成功,0位失败 */ - success: number; -} -/** - * 标记微课完成 - * @apiName biz.edu.finishMiniCourseByRecordId - * @supportVersion ios: 6.0.15 android: 6.0.15 - */ -export declare function finishMiniCourseByRecordId$(params: IBizEduFinishMiniCourseByRecordIdParams): Promise; -export default finishMiniCourseByRecordId$; diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/finishMiniCourseByRecordId.js b/node_modules/dingtalk-jsapi/api/biz/edu/finishMiniCourseByRecordId.js deleted file mode 100644 index d99cad83..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/finishMiniCourseByRecordId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function finishMiniCourseByRecordId$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.finishMiniCourseByRecordId$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.edu.finishMiniCourseByRecordId";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.15"},_a)),exports.finishMiniCourseByRecordId$=finishMiniCourseByRecordId$,exports.default=finishMiniCourseByRecordId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/getMiniCourseDraftList.d.ts b/node_modules/dingtalk-jsapi/api/biz/edu/getMiniCourseDraftList.d.ts deleted file mode 100644 index d0ea00c1..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/getMiniCourseDraftList.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 获取微课草稿列表 请求参数定义 - * @apiName biz.edu.getMiniCourseDraftList - */ -export interface IBizEduGetMiniCourseDraftListParams { -} -/** - * 获取微课草稿列表 返回结果定义 - * @apiName biz.edu.getMiniCourseDraftList - */ -export interface IBizEduGetMiniCourseDraftListResult { - [key: string]: any; -} -/** - * 获取微课草稿列表 - * @apiName biz.edu.getMiniCourseDraftList - * @supportVersion ios: 6.0.15 android: 6.0.15 - * @author Android:景松 iOS:景松 教育线:林谦、楠者 - */ -export declare function getMiniCourseDraftList$(params: IBizEduGetMiniCourseDraftListParams): Promise; -export default getMiniCourseDraftList$; diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/getMiniCourseDraftList.js b/node_modules/dingtalk-jsapi/api/biz/edu/getMiniCourseDraftList.js deleted file mode 100644 index 90b1c6ff..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/getMiniCourseDraftList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getMiniCourseDraftList$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getMiniCourseDraftList$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.edu.getMiniCourseDraftList";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.15"},_a)),exports.getMiniCourseDraftList$=getMiniCourseDraftList$,exports.default=getMiniCourseDraftList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/joinClassroom.d.ts b/node_modules/dingtalk-jsapi/api/biz/edu/joinClassroom.d.ts deleted file mode 100644 index dd4c8e9b..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/joinClassroom.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 加入在线课堂专业版 请求参数定义 - * @apiName biz.edu.joinClassroom - */ -export interface IBizEduJoinClassroomParams { - /** 加入课堂的参数,该值需要调用开放接口获取; */ - classroomId: string; -} -/** - * 加入在线课堂专业版 返回结果定义 - * @apiName biz.edu.joinClassroom - */ -export interface IBizEduJoinClassroomResult { -} -/** - * 加入在线课堂专业版 - * @apiName biz.edu.joinClassroom - * @supportVersion ios: 6.0.15 android: 6.0.15 pc: 6.0.15 - * @author Android:序望 iOS:橙希 Windows:砺之 教育线:林谦、楠者 - */ -export declare function joinClassroom$(params: IBizEduJoinClassroomParams): Promise; -export default joinClassroom$; diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/joinClassroom.js b/node_modules/dingtalk-jsapi/api/biz/edu/joinClassroom.js deleted file mode 100644 index f68cbca6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/joinClassroom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function joinClassroom$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.joinClassroom$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.edu.joinClassroom";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.15"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.15"},_a)),exports.joinClassroom$=joinClassroom$,exports.default=joinClassroom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/makeMiniCourse.d.ts b/node_modules/dingtalk-jsapi/api/biz/edu/makeMiniCourse.d.ts deleted file mode 100644 index b3455605..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/makeMiniCourse.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 创建一个微课 请求参数定义 - * @apiName biz.edu.makeMiniCourse - */ -export interface IBizEduMakeMiniCourseParams { - /** 记录的Id */ - recordId?: string; - /** 会话的ID */ - chatId?: string; - /** 话题 */ - topic?: string; - /** 环境参数 */ - env?: string; - /** 必须是Encode过的string */ - extData?: string; -} -/** - * 创建一个微课 返回结果定义 - * @apiName biz.edu.makeMiniCourse - */ -export interface IBizEduMakeMiniCourseResult { -} -/** - * 创建一个微课 - * @apiName biz.edu.makeMiniCourse - * @supportVersion ios: 6.0.15 android: 6.0.15 - * @author Android:景松 iOS:景松 教育线:林谦、楠者 - */ -export declare function makeMiniCourse$(params: IBizEduMakeMiniCourseParams): Promise; -export default makeMiniCourse$; diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/makeMiniCourse.js b/node_modules/dingtalk-jsapi/api/biz/edu/makeMiniCourse.js deleted file mode 100644 index 1d3dc26d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/makeMiniCourse.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function makeMiniCourse$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.makeMiniCourse$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.edu.makeMiniCourse";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.15"},_a)),exports.makeMiniCourse$=makeMiniCourse$,exports.default=makeMiniCourse$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/newMsgNotificationStatus.d.ts b/node_modules/dingtalk-jsapi/api/biz/edu/newMsgNotificationStatus.d.ts deleted file mode 100644 index 5e0ba901..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/newMsgNotificationStatus.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 钉钉校园获取新消息通知状态 请求参数定义 - * @apiName biz.edu.newMsgNotificationStatus - */ -export interface IBizEduNewMsgNotificationStatusParams { -} -/** - * 钉钉校园获取新消息通知状态 返回结果定义 - * @apiName biz.edu.newMsgNotificationStatus - */ -export interface IBizEduNewMsgNotificationStatusResult { - /** 新消息通知,开关状态 */ - imNoticeStatus: boolean; - /** 语音和视频通话邀请通知,开关状态 */ - avNoticeStatus: boolean; -} -/** - * 钉钉校园获取新消息通知状态 - * @apiName biz.edu.newMsgNotificationStatus - * @supportVersion ios: 6.3.20 android: 6.3.20 - * @author Android:绝色 iOS: 景松 - */ -export declare function newMsgNotificationStatus$(params: IBizEduNewMsgNotificationStatusParams): Promise; -export default newMsgNotificationStatus$; diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/newMsgNotificationStatus.js b/node_modules/dingtalk-jsapi/api/biz/edu/newMsgNotificationStatus.js deleted file mode 100644 index 8f145567..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/newMsgNotificationStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function newMsgNotificationStatus$(t){return ddSdk_1.ddSdk.invokeAPI(apiName,t)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.newMsgNotificationStatus$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.edu.newMsgNotificationStatus";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.20"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.20"},_a)),exports.newMsgNotificationStatus$=newMsgNotificationStatus$,exports.default=newMsgNotificationStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/startAuth.d.ts b/node_modules/dingtalk-jsapi/api/biz/edu/startAuth.d.ts deleted file mode 100644 index 4712a44f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/startAuth.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * 钉钉校园人脸采集 请求参数定义 - * @apiName biz.edu.startAuth - */ -export interface IBizEduStartAuthParams { - /** 支付宝人脸检测的id */ - zimId: string; - /** 组织id */ - corpId: string; - /** staff id */ - staffId: string; - /** false:不上传人脸认证图片 true:上传人脸认证图片;默认:false */ - uploadFaceData?: boolean; - /** 用户自定义字段 */ - extInfo: { - [key: string]: any; - }; -} -/** - * 钉钉校园人脸采集 返回结果定义 - * @apiName biz.edu.startAuth - */ -export interface IBizEduStartAuthResult { - /** 人脸录入状态 */ - resultStatus: boolean; -} -/** - * 钉钉校园人脸采集 - * @apiName biz.edu.startAuth - * @supportVersion ios: 6.3.20 android: 6.3.20 - * @author Android:绝色 iOS: 景松 - */ -export declare function startAuth$(params: IBizEduStartAuthParams): Promise; -export default startAuth$; diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/startAuth.js b/node_modules/dingtalk-jsapi/api/biz/edu/startAuth.js deleted file mode 100644 index 7a70ff63..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/startAuth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startAuth$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startAuth$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.edu.startAuth";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.20"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.20"},_a)),exports.startAuth$=startAuth$,exports.default=startAuth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/tokenFaceImg.d.ts b/node_modules/dingtalk-jsapi/api/biz/edu/tokenFaceImg.d.ts deleted file mode 100644 index d2a7960f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/tokenFaceImg.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * 获取支付宝人脸头像 请求参数定义 - * @apiName biz.edu.tokenFaceImg - */ -export interface IBizEduTokenFaceImgParams { - /** 支付宝人脸检测的id */ - zimId: string; - /** 人脸图片解密密钥 */ - token: string; - /** 用户自定义字段 */ - extInfo?: { - [key: string]: any; - }; -} -/** - * 获取支付宝人脸头像 返回结果定义 - * @apiName biz.edu.tokenFaceImg - */ -export interface IBizEduTokenFaceImgResult { - /** 返回是否成功 */ - success: boolean; - /** 头像图片的base64编码 */ - faceImage: string; - /** 返回的编码信息 */ - resultCode: number; - /** 额外的信息 */ - extInfos?: { - [key: string]: any; - }; -} -/** - * 获取支付宝人脸头像 - * @apiName biz.edu.tokenFaceImg - * @supportVersion ios: 6.3.20 android: 6.3.20 - * Android:绝色 iOS:景松 - */ -export declare function tokenFaceImg$(params: IBizEduTokenFaceImgParams): Promise; -export default tokenFaceImg$; diff --git a/node_modules/dingtalk-jsapi/api/biz/edu/tokenFaceImg.js b/node_modules/dingtalk-jsapi/api/biz/edu/tokenFaceImg.js deleted file mode 100644 index f591717e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/edu/tokenFaceImg.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function tokenFaceImg$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.tokenFaceImg$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.edu.tokenFaceImg";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.20"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.20"},_a)),exports.tokenFaceImg$=tokenFaceImg$,exports.default=tokenFaceImg$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/event/notifyWeex.d.ts b/node_modules/dingtalk-jsapi/api/biz/event/notifyWeex.d.ts deleted file mode 100644 index d03c4033..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/event/notifyWeex.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息 请求参数定义 - * @apiName biz.event.notifyWeex - */ -export interface IBizEventNotifyWeexParams { - [key: string]: any; -} -/** - * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息 返回结果定义 - * @apiName biz.event.notifyWeex - */ -export interface IBizEventNotifyWeexResult { - [key: string]: any; -} -/** - * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息 - * @apiName biz.event.notifyWeex - * @supportVersion ios: 4.5.0 - */ -export declare function notifyWeex$(params: IBizEventNotifyWeexParams): Promise; -export default notifyWeex$; diff --git a/node_modules/dingtalk-jsapi/api/biz/event/notifyWeex.js b/node_modules/dingtalk-jsapi/api/biz/event/notifyWeex.js deleted file mode 100644 index 3eecb91b..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/event/notifyWeex.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function notifyWeex$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.notifyWeex$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.event.notifyWeex";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.5.0"},_a)),exports.notifyWeex$=notifyWeex$,exports.default=notifyWeex$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/file/downloadFile.d.ts b/node_modules/dingtalk-jsapi/api/biz/file/downloadFile.d.ts deleted file mode 100644 index 34b9d405..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/file/downloadFile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 下载文件 请求参数定义 - * @apiName biz.file.downloadFile - */ -export interface IBizFileDownloadFileParams extends ICommonAPIParams { - url: string; - header?: {}; -} -/** - * 下载文件 返回结果定义 - * @apiName biz.file.downloadFile - */ -export interface IBizFileDownloadFileResult { - filePath: string; -} -/** - * 下载文件 - * @apiName biz.file.downloadFile - */ -export declare function downloadFile$(params: IBizFileDownloadFileParams): Promise; -export default downloadFile$; diff --git a/node_modules/dingtalk-jsapi/api/biz/file/downloadFile.js b/node_modules/dingtalk-jsapi/api/biz/file/downloadFile.js deleted file mode 100644 index 4819109b..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/file/downloadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function downloadFile$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.downloadFile$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.file.downloadFile";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.15"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.15"},_a)),exports.downloadFile$=downloadFile$,exports.default=downloadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/intent/fetchData.d.ts b/node_modules/dingtalk-jsapi/api/biz/intent/fetchData.d.ts deleted file mode 100644 index 69d33ae8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/intent/fetchData.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 选择图片 请求参数定义 - * @apiName biz.intent.fetchData - */ -export interface IBizIntentFetchDataParams { - [key: string]: any; -} -/** - * 选择图片 返回结果定义 - * @apiName biz.intent.fetchData - */ -export interface IBizIntentFetchDataResult { - [key: string]: any; -} -/** - * 选择图片 - * @apiName biz.intent.fetchData - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function fetchData$(params: IBizIntentFetchDataParams): Promise; -export default fetchData$; diff --git a/node_modules/dingtalk-jsapi/api/biz/intent/fetchData.js b/node_modules/dingtalk-jsapi/api/biz/intent/fetchData.js deleted file mode 100644 index 8ca1235e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/intent/fetchData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetchData$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetchData$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.intent.fetchData";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.7.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.7.6"},_a)),exports.fetchData$=fetchData$,exports.default=fetchData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/bind.d.ts b/node_modules/dingtalk-jsapi/api/biz/iot/bind.d.ts deleted file mode 100644 index 803eb5a9..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/bind.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * iot设备绑定 请求参数定义 - * @apiName biz.iot.bind - */ -export interface IBizIotBindParams { - [key: string]: any; -} -/** - * iot设备绑定 返回结果定义 - * @apiName biz.iot.bind - */ -export interface IBizIotBindResult { - [key: string]: any; -} -/** - * iot设备绑定 - * @apiName biz.iot.bind - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function bind$(params: IBizIotBindParams): Promise; -export default bind$; diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/bind.js b/node_modules/dingtalk-jsapi/api/biz/iot/bind.js deleted file mode 100644 index 00d54354..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/bind.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bind$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.bind$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.iot.bind";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.34"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.34"},_a)),exports.bind$=bind$,exports.default=bind$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/bindMeetingRoom.d.ts b/node_modules/dingtalk-jsapi/api/biz/iot/bindMeetingRoom.d.ts deleted file mode 100644 index d9cff64e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/bindMeetingRoom.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 设备与会议室绑定 请求参数定义 - * @apiName biz.iot.bindMeetingRoom - */ -export interface IBizIotBindMeetingRoomParams { - [key: string]: any; -} -/** - * 设备与会议室绑定 返回结果定义 - * @apiName biz.iot.bindMeetingRoom - */ -export interface IBizIotBindMeetingRoomResult { - [key: string]: any; -} -/** - * 设备与会议室绑定 - * @apiName biz.iot.bindMeetingRoom - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function bindMeetingRoom$(params: IBizIotBindMeetingRoomParams): Promise; -export default bindMeetingRoom$; diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/bindMeetingRoom.js b/node_modules/dingtalk-jsapi/api/biz/iot/bindMeetingRoom.js deleted file mode 100644 index 7416dc0d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/bindMeetingRoom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bindMeetingRoom$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.bindMeetingRoom$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.iot.bindMeetingRoom";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.34"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.34"},_a)),exports.bindMeetingRoom$=bindMeetingRoom$,exports.default=bindMeetingRoom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/getDeviceProperties.d.ts b/node_modules/dingtalk-jsapi/api/biz/iot/getDeviceProperties.d.ts deleted file mode 100644 index cc94a365..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/getDeviceProperties.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 智能硬获取设备属性 请求参数定义 - * @apiName biz.iot.getDeviceProperties - */ -export interface IBizIotGetDevicePropertiesParams { - /** 设备的id */ - deviceId: string; - /** 设备所在的server id,产品id */ - devServerId: string; -} -/** - * 智能硬获取设备属性 返回结果定义 - * @apiName biz.iot.getDeviceProperties - */ -export interface IBizIotGetDevicePropertiesResult { - /** 设置属性集合的json string(为属性的key, value集合) */ - property: string; -} -/** - * 智能硬获取设备属性 - * @apiName biz.iot.getDeviceProperties - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function getDeviceProperties$(params: IBizIotGetDevicePropertiesParams): Promise; -export default getDeviceProperties$; diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/getDeviceProperties.js b/node_modules/dingtalk-jsapi/api/biz/iot/getDeviceProperties.js deleted file mode 100644 index 32d12d29..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/getDeviceProperties.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDeviceProperties$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDeviceProperties$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.iot.getDeviceProperties";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.42"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.42"},_a)),exports.getDeviceProperties$=getDeviceProperties$,exports.default=getDeviceProperties$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/invokeThingService.d.ts b/node_modules/dingtalk-jsapi/api/biz/iot/invokeThingService.d.ts deleted file mode 100644 index dc1fb174..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/invokeThingService.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 调用iot物模型服务 请求参数定义 - * @apiName biz.iot.invokeThingService - */ -export interface IBizIotInvokeThingServiceParams { - /** 设备的id */ - deviceId: string; - /** 设备所在的server id */ - devServerId: number; - /** 要设置属性集合的json string */ - params: string; -} -/** - * 调用iot物模型服务 返回结果定义 - * @apiName biz.iot.invokeThingService - */ -export interface IBizIotInvokeThingServiceResult { - property: string; -} -/** - * 调用iot物模型服务 - * @apiName biz.iot.invokeThingService - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function invokeThingService$(params: IBizIotInvokeThingServiceParams): Promise; -export default invokeThingService$; diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/invokeThingService.js b/node_modules/dingtalk-jsapi/api/biz/iot/invokeThingService.js deleted file mode 100644 index a0796aab..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/invokeThingService.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function invokeThingService$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.invokeThingService$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.iot.invokeThingService";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.42"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.42"},_a)),exports.invokeThingService$=invokeThingService$,exports.default=invokeThingService$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/queryMeetingRoomList.d.ts b/node_modules/dingtalk-jsapi/api/biz/iot/queryMeetingRoomList.d.ts deleted file mode 100644 index cdbab274..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/queryMeetingRoomList.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 查询会议室列表 请求参数定义 - * @apiName biz.iot.queryMeetingRoomList - */ -export interface IBizIotQueryMeetingRoomListParams { - [key: string]: any; -} -/** - * 查询会议室列表 返回结果定义 - * @apiName biz.iot.queryMeetingRoomList - */ -export interface IBizIotQueryMeetingRoomListResult { - [key: string]: any; -} -/** - * 查询会议室列表 - * @apiName biz.iot.queryMeetingRoomList - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function queryMeetingRoomList$(params: IBizIotQueryMeetingRoomListParams): Promise; -export default queryMeetingRoomList$; diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/queryMeetingRoomList.js b/node_modules/dingtalk-jsapi/api/biz/iot/queryMeetingRoomList.js deleted file mode 100644 index cab24d95..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/queryMeetingRoomList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryMeetingRoomList$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryMeetingRoomList$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.iot.queryMeetingRoomList";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.34"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.34"},_a)),exports.queryMeetingRoomList$=queryMeetingRoomList$,exports.default=queryMeetingRoomList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/setDeviceProperties.d.ts b/node_modules/dingtalk-jsapi/api/biz/iot/setDeviceProperties.d.ts deleted file mode 100644 index 64ba6a3d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/setDeviceProperties.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 智能硬件设置设备属性 请求参数定义 - * @apiName biz.iot.setDeviceProperties - */ -export interface IBizIotSetDevicePropertiesParams { - /** 设备的id */ - deviceId: string; - /** 设备所在的server id,产品id */ - devServerId: string; - /** 要设置属性集合的json string(为属性的key, value集合) */ - property: string; -} -/** - * 智能硬件设置设备属性 返回结果定义 - * @apiName biz.iot.setDeviceProperties - */ -export interface IBizIotSetDevicePropertiesResult { -} -/** - * 智能硬件设置设备属性 - * @apiName biz.iot.setDeviceProperties - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function setDeviceProperties$(params: IBizIotSetDevicePropertiesParams): Promise; -export default setDeviceProperties$; diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/setDeviceProperties.js b/node_modules/dingtalk-jsapi/api/biz/iot/setDeviceProperties.js deleted file mode 100644 index c11efe32..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/setDeviceProperties.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setDeviceProperties$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setDeviceProperties$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.iot.setDeviceProperties";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.42"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.42"},_a)),exports.setDeviceProperties$=setDeviceProperties$,exports.default=setDeviceProperties$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/unbind.d.ts b/node_modules/dingtalk-jsapi/api/biz/iot/unbind.d.ts deleted file mode 100644 index cc91918f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/unbind.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * iot设备解绑 请求参数定义 - * @apiName biz.iot.unbind - */ -export interface IBizIotUnbindParams { - [key: string]: any; -} -/** - * iot设备解绑 返回结果定义 - * @apiName biz.iot.unbind - */ -export interface IBizIotUnbindResult { - [key: string]: any; -} -/** - * iot设备解绑 - * @apiName biz.iot.unbind - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function unbind$(params: IBizIotUnbindParams): Promise; -export default unbind$; diff --git a/node_modules/dingtalk-jsapi/api/biz/iot/unbind.js b/node_modules/dingtalk-jsapi/api/biz/iot/unbind.js deleted file mode 100644 index 5c6ff014..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/iot/unbind.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unbind$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.unbind$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.iot.unbind";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.34"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.34"},_a)),exports.unbind$=unbind$,exports.default=unbind$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/live/startClassRoom.d.ts b/node_modules/dingtalk-jsapi/api/biz/live/startClassRoom.d.ts deleted file mode 100644 index 33a99742..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/live/startClassRoom.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 提供给ISV发起在线课堂的接口 请求参数定义 - * @apiName biz.live.startClassRoom - */ -export interface IBizLiveStartClassRoomParams { - startParam: any; -} -/** - * 提供给ISV发起在线课堂的接口 返回结果定义 - * @apiName biz.live.startClassRoom - */ -export interface IBizLiveStartClassRoomResult { -} -/** - * 提供给ISV发起在线课堂的接口 - * @apiName biz.live.startClassRoom - * @supportVersion pc: 5.1.19 - * @author windows:霁明, mac: 霁明 - */ -export declare function startClassRoom$(params: IBizLiveStartClassRoomParams): Promise; -export default startClassRoom$; diff --git a/node_modules/dingtalk-jsapi/api/biz/live/startClassRoom.js b/node_modules/dingtalk-jsapi/api/biz/live/startClassRoom.js deleted file mode 100644 index 795642f8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/live/startClassRoom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startClassRoom$(s){return ddSdk_1.ddSdk.invokeAPI(apiName,s)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startClassRoom$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.live.startClassRoom";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.19"},_a)),exports.startClassRoom$=startClassRoom$,exports.default=startClassRoom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/live/startUnifiedLive.d.ts b/node_modules/dingtalk-jsapi/api/biz/live/startUnifiedLive.d.ts deleted file mode 100644 index e4083e6b..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/live/startUnifiedLive.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 发起公开直播 请求参数定义 - * @apiName biz.live.startUnifiedLive - */ -export interface IBizLiveStartUnifiedLiveParams { - /** 包含直播类型,以及直播的uuid */ - startParam: any; -} -/** - * 发起公开直播 返回结果定义 - * @apiName biz.live.startUnifiedLive - */ -export interface IBizLiveStartUnifiedLiveResult { -} -/** - * 发起公开直播 - * @apiName biz.live.startUnifiedLive - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author windows/mac:霁明 - */ -export declare function startUnifiedLive$(params: IBizLiveStartUnifiedLiveParams): Promise; -export default startUnifiedLive$; diff --git a/node_modules/dingtalk-jsapi/api/biz/live/startUnifiedLive.js b/node_modules/dingtalk-jsapi/api/biz/live/startUnifiedLive.js deleted file mode 100644 index 73cb6721..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/live/startUnifiedLive.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startUnifiedLive$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startUnifiedLive$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.live.startUnifiedLive";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.18"},_a)),exports.startUnifiedLive$=startUnifiedLive$,exports.default=startUnifiedLive$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/map/locate.d.ts b/node_modules/dingtalk-jsapi/api/biz/map/locate.d.ts deleted file mode 100644 index 8ff0b855..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/map/locate.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -/** - * 地图定位 请求参数定义 - * @apiName biz.map.locate - */ -export interface IBizMapLocateParams { - /** 非必须字段,需要和longitude组合成合法经纬度,高德坐标 */ - latitude?: number; - /** 非必须字段,需要和latitude组合成合法经纬度,高德坐标 */ - longitude?: number; -} -/** - * 地图定位 返回结果定义 - * @apiName biz.map.locate - */ -export interface IBizMapLocateResult { - /** POI所在省会,可能为空 */ - province: string; - /** POI所在省会编码,可能为空 */ - provinceCode: string; - /** POI所在城市,可能为空 */ - city: string; - /** POI所在城市的编码,可能为空 */ - cityCode: string; - /** POI所在区,可能为空 */ - adName: string; - /** POI所在区的编码,可能为空 */ - adCode: string; - /** POI与设备位置的距离 */ - distance: string; - /** POI的邮编,可能为空 */ - postCode: string; - /** POI的街道地址,可能为空 */ - snippet: string; - /** POI的名称 */ - title: string; - /** POI的纬度,高德坐标 */ - latitude: number; - /** POI的经度,高德坐标 */ - longitude: number; -} -/** - * 地图定位 - * 唤起地图页面,获取设备位置及设备附近的POI信息;若传入的合法经纬度则显示出入的位置信息及其附近的POI信息。 - * @apiName biz.map.locate - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function locate$(params: IBizMapLocateParams): Promise; -export default locate$; diff --git a/node_modules/dingtalk-jsapi/api/biz/map/locate.js b/node_modules/dingtalk-jsapi/api/biz/map/locate.js deleted file mode 100644 index eeb657df..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/map/locate.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function locate$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.locate$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.map.locate";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.locate$=locate$,exports.default=locate$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/map/search.d.ts b/node_modules/dingtalk-jsapi/api/biz/map/search.d.ts deleted file mode 100644 index 9034f75d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/map/search.d.ts +++ /dev/null @@ -1,50 +0,0 @@ -/** - * 地图搜索 请求参数定义 - * @apiName biz.map.search - */ -export interface IBizMapSearchParams { - /** 非必须字段,需要和longitude组合成合法经纬度,高德坐标 */ - latitude: number; - /** 非必须字段,需要和latitude组合成合法经纬度,高德坐标 */ - longitude: number; - /** 搜索范围,建议不要设置过低,否则可能搜索不到POI */ - scope: number; -} -/** - * 地图搜索 返回结果定义 - * @apiName biz.map.search - */ -export interface IBizMapSearchResult { - /** POI所在省会,可能为空 */ - province: string; - /** POI所在省会编码,可能为空 */ - provinceCode: string; - /** POI所在城市,可能为空 */ - city: string; - /** POI所在城市的编码,可能为空 */ - cityCode: string; - /** POI所在区,可能为空 */ - adName: string; - /** POI所在区的编码,可能为空 */ - adCode: string; - /** POI与设备位置的距离 */ - distance: string; - /** POI的邮编,可能为空 */ - postCode: string; - /** POI的街道地址,可能为空 */ - snippet: string; - /** POI的名称 */ - title: string; - /** POI的纬度,高德坐标 */ - latitude: number; - /** POI的经度,高德坐标 */ - longitude: number; -} -/** - * 地图搜索 - * 唤起地图页面,根据设备位置或者传入的经纬度搜索POI。 - * @apiName biz.map.search - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function search$(params: IBizMapSearchParams): Promise; -export default search$; diff --git a/node_modules/dingtalk-jsapi/api/biz/map/search.js b/node_modules/dingtalk-jsapi/api/biz/map/search.js deleted file mode 100644 index 709b1ab9..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/map/search.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function search$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.search$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.map.search",paramsDeal=apiHelper_1.genDefaultParamsDealFn({scope:500});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.search$=search$,exports.default=search$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/map/view.d.ts b/node_modules/dingtalk-jsapi/api/biz/map/view.d.ts deleted file mode 100644 index f022bfd3..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/map/view.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 查看定位 请求参数定义 - * @apiName biz.map.view - */ -export interface IBizMapViewParams { - /** 需要和longitude组合成合法经纬度,高德坐标 */ - latitude: number; - /** 需要和latitude组合成合法经纬度,高德坐标 */ - longitude: number; - /** 在地图锚点气泡显示的文案 */ - title: string; -} -/** - * 查看定位 返回结果定义 - * @apiName biz.map.view - */ -export interface IBizMapViewResult { -} -/** - * 查看定位 - * @apiName biz.map.view - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function view$(params: IBizMapViewParams): Promise; -export default view$; diff --git a/node_modules/dingtalk-jsapi/api/biz/map/view.js b/node_modules/dingtalk-jsapi/api/biz/map/view.js deleted file mode 100644 index b5cfc778..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/map/view.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function view$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.view$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.map.view";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.view$=view$,exports.default=view$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/media/compressVideo.d.ts b/node_modules/dingtalk-jsapi/api/biz/media/compressVideo.d.ts deleted file mode 100644 index ea563333..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/media/compressVideo.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 视频压缩 请求参数定义 - * @apiName biz.media.compressVideo - */ -export interface IBizMediaCompressVideoParams { - /** 要压缩的视频路径(只支持解析虚拟地址) */ - filePath: string; -} -/** - * 视频压缩 返回结果定义 - * @apiName biz.media.compressVideo - */ -export interface IBizMediaCompressVideoResult { - /** 压缩后的路径(虚拟路径) */ - filePath: string; -} -/** - * 视频压缩 - * @apiName biz.media.compressVideo - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function compressVideo$(params: IBizMediaCompressVideoParams): Promise; -export default compressVideo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/media/compressVideo.js b/node_modules/dingtalk-jsapi/api/biz/media/compressVideo.js deleted file mode 100644 index dbae7922..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/media/compressVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function compressVideo$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.compressVideo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.media.compressVideo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.37"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.37"},_a)),exports.compressVideo$=compressVideo$,exports.default=compressVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/microApp/openApp.d.ts b/node_modules/dingtalk-jsapi/api/biz/microApp/openApp.d.ts deleted file mode 100644 index da662d72..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/microApp/openApp.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 打开应用 请求参数定义 - * @apiName biz.microApp.openApp - */ -export interface IBizMicroAppOpenAppParams { - agentId: string; - appId: string; - corpId: string; -} -/** - * 打开应用 返回结果定义 - * @apiName biz.microApp.openApp - */ -export interface IBizMicroAppOpenAppResult { - /** 结果,int (-1 unkown,0 fail,1 success) */ - result: number; -} -/** - * 打开应用 - * @apiName biz.microApp.openApp - * @supportVersion ios: 4.5.6 android: 4.5.6 - */ -export declare function openApp$(params: IBizMicroAppOpenAppParams): Promise; -export default openApp$; diff --git a/node_modules/dingtalk-jsapi/api/biz/microApp/openApp.js b/node_modules/dingtalk-jsapi/api/biz/microApp/openApp.js deleted file mode 100644 index e794a37e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/microApp/openApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openApp$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openApp$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.microApp.openApp";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.5.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.5.6"},_a)),exports.openApp$=openApp$,exports.default=openApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/close.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/close.d.ts deleted file mode 100644 index 5c1d785c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/close.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * 关闭webview 请求参数定义 - * @apiName biz.navigation.close - */ -export interface IBizNavigationCloseParams { -} -/** - * 关闭webview 返回结果定义 - * @apiName biz.navigation.close - */ -export interface IBizNavigationCloseResult { -} -/** - * 关闭webview - * 调用此接口可以关闭当前浏览器窗口 - * @apiName biz.navigation.close - * @supportVersion ios: 2.4.0 android: 2.4.0 pc: 4.3.5 - */ -export declare function close$(params: IBizNavigationCloseParams): Promise; -export default close$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/close.js b/node_modules/dingtalk-jsapi/api/biz/navigation/close.js deleted file mode 100644 index cdff526b..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/close.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function close$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.close$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.close";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.3.5"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.close$=close$,exports.default=close$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/goBack.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/goBack.d.ts deleted file mode 100644 index eacbea65..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/goBack.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * 返回上一步 请求参数定义 - * @apiName biz.navigation.goBack - */ -export interface IBizNavigationGoBackParams { -} -/** - * 返回上一步 返回结果定义 - * @apiName biz.navigation.goBack - */ -export interface IBizNavigationGoBackResult { -} -/** - * 返回上一步 - * 调用此接口会返回前端页面的上级浏览页面,如果是H5的根页面,调用此接口会关闭当前浏览窗口。 - * @apiName biz.navigation.goBack - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function goBack$(params: IBizNavigationGoBackParams): Promise; -export default goBack$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/goBack.js b/node_modules/dingtalk-jsapi/api/biz/navigation/goBack.js deleted file mode 100644 index 1d8ca315..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/goBack.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function goBack$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.goBack$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.goBack";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.goBack$=goBack$,exports.default=goBack$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/hideBar.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/hideBar.d.ts deleted file mode 100644 index 00ac8924..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/hideBar.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * JS端控制容器导航栏的显示和隐藏 请求参数定义 - * @apiName biz.navigation.hideBar - */ -export interface IBizNavigationHideBarParams { - [key: string]: any; -} -/** - * JS端控制容器导航栏的显示和隐藏 返回结果定义 - * @apiName biz.navigation.hideBar - */ -export interface IBizNavigationHideBarResult { - [key: string]: any; -} -/** - * JS端控制容器导航栏的显示和隐藏 - * @apiName biz.navigation.hideBar - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function hideBar$(params: IBizNavigationHideBarParams): Promise; -export default hideBar$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/hideBar.js b/node_modules/dingtalk-jsapi/api/biz/navigation/hideBar.js deleted file mode 100644 index d7fffcf6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/hideBar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hideBar$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.hideBar$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.hideBar";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.6"},_a)),exports.hideBar$=hideBar$,exports.default=hideBar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateBackPage.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/navigateBackPage.d.ts deleted file mode 100644 index e299c416..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateBackPage.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 从H5应用返回 请求参数定义 - * @apiName biz.navigation.navigateBackPage - */ -export interface IBizNavigationNavigateBackPageParams { - [key: string]: any; -} -/** - * 从H5应用返回 返回结果定义 - * @apiName biz.navigation.navigateBackPage - */ -export interface IBizNavigationNavigateBackPageResult { - [key: string]: any; -} -/** - * 从H5应用返回 - * @apiName biz.navigation.navigateBackPage - * @supportVersion ios: 6.5.31 android: 6.5.31 - */ -export declare function navigateBackPage$(params: IBizNavigationNavigateBackPageParams): Promise; -export default navigateBackPage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateBackPage.js b/node_modules/dingtalk-jsapi/api/biz/navigation/navigateBackPage.js deleted file mode 100644 index 7af635b8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateBackPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function navigateBackPage$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.navigateBackPage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.navigateBackPage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.31"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.31"},_a)),exports.navigateBackPage$=navigateBackPage$,exports.default=navigateBackPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToMiniProgram.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToMiniProgram.d.ts deleted file mode 100644 index 194e4ff8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToMiniProgram.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * 从H5启动小程序的专用接口 请求参数定义 - * @apiName biz.navigation.navigateToMiniProgram - */ -export interface IBizNavigationNavigateToMiniProgramParams { - appId: string; - path?: string; - extraData?: string; - /** 小程序 buildId,用于打开特定小程序版本(目的方便测试,并且,A 跳 B,如果 A 小程序是线上版本,自动忽略该参数 */ - buildId?: string; - /** 目标小程序启动相关的参数 */ - ddAppParams?: any; -} -/** - * 从H5启动小程序的专用接口 返回结果定义 - * @apiName biz.navigation.navigateToMiniProgram - */ -export interface IBizNavigationNavigateToMiniProgramResult { -} -/** - * 从H5启动小程序的专用接口 - * @apiName biz.navigation.navigateToMiniProgram - * @supportVersion ios: 5.1.31 android: 5.1.31 - * @author Android:泠轩 iOS:序元 - */ -export declare function navigateToMiniProgram$(params: IBizNavigationNavigateToMiniProgramParams): Promise; -export default navigateToMiniProgram$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToMiniProgram.js b/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToMiniProgram.js deleted file mode 100644 index 4586436a..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToMiniProgram.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function navigateToMiniProgram$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.navigateToMiniProgram$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.navigateToMiniProgram";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.31"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.31"},_a)),exports.navigateToMiniProgram$=navigateToMiniProgram$,exports.default=navigateToMiniProgram$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToPage.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToPage.d.ts deleted file mode 100644 index 56759935..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToPage.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 启动H5应用 请求参数定义 - * @apiName biz.navigation.navigateToPage - */ -export interface IBizNavigationNavigateToPageParams { - [key: string]: any; -} -/** - * 启动H5应用 返回结果定义 - * @apiName biz.navigation.navigateToPage - */ -export interface IBizNavigationNavigateToPageResult { - [key: string]: any; -} -/** - * 启动H5应用 - * @apiName biz.navigation.navigateToPage - * @supportVersion ios: 6.5.31 android: 6.5.31 - */ -export declare function navigateToPage$(params: IBizNavigationNavigateToPageParams): Promise; -export default navigateToPage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToPage.js b/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToPage.js deleted file mode 100644 index acfd6765..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/navigateToPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function navigateToPage$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.navigateToPage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.navigateToPage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.31"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.31"},_a)),exports.navigateToPage$=navigateToPage$,exports.default=navigateToPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/quit.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/quit.d.ts deleted file mode 100644 index 45cce2a4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/quit.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 退出模态框或者侧边框 请求参数定义 - * @apiName biz.navigation.quit - */ -export interface IBizNavigationQuitParams { - [key: string]: any; -} -/** - * 退出模态框或者侧边框 返回结果定义 - * @apiName biz.navigation.quit - */ -export interface IBizNavigationQuitResult { - [key: string]: any; -} -/** - * 退出模态框或者侧边框 - * @apiName biz.navigation.quit - * @supportVersion pc: 2.5.0 - */ -export declare function quit$(params: IBizNavigationQuitParams): Promise; -export default quit$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/quit.js b/node_modules/dingtalk-jsapi/api/biz/navigation/quit.js deleted file mode 100644 index c0d143ee..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/quit.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function quit$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.quit$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.quit";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a)),exports.quit$=quit$,exports.default=quit$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/replace.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/replace.d.ts deleted file mode 100644 index e6f7c6c2..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/replace.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 页面替换 请求参数定义 - * @apiName biz.navigation.replace - */ -export interface IBizNavigationReplaceParams { - url: string; -} -/** - * 页面替换 返回结果定义 - * @apiName biz.navigation.replace - */ -export interface IBizNavigationReplaceResult { -} -/** - * 页面替换 - * 使用新的页面替换当前页面,当前页面会被立即销毁,展示新页面,无动画。 - * @apiName biz.navigation.replace - * @supportVersion ios: 3.4.6 android: 3.4.6 - */ -export declare function replace$(params: IBizNavigationReplaceParams): Promise; -export default replace$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/replace.js b/node_modules/dingtalk-jsapi/api/biz/navigation/replace.js deleted file mode 100644 index b71f5c63..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/replace.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function replace$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.replace$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.replace";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.4.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.4.6"},_a)),exports.replace$=replace$,exports.default=replace$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setIcon.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/setIcon.d.ts deleted file mode 100644 index 24d74bcf..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setIcon.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -/** - * 设置导航icon 请求参数定义 - * @apiName biz.navigation.setIcon - */ -export interface IBizNavigationSetIconParams { - /** 是否显示icon */ - showIcon?: boolean; - /** 显示的iconIndex,如文档的图 */ - iconIndex?: number; - /** onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 设置导航icon 返回结果定义 - * @apiName biz.navigation.setIcon - */ -export interface IBizNavigationSetIconResult { -} -/** - * 标题栏添加问号Icon - * 调用此jsapi之后,icon的显示位置在Android和iOS上有所区别,如下图 - * iOS:显示在导航栏标题的旁边,紧靠着标题 - * Android:显示在导航栏右侧按钮组的最左边 - * @apiName biz.navigation.setIcon - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function setIcon$(params: IBizNavigationSetIconParams): Promise; -export default setIcon$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setIcon.js b/node_modules/dingtalk-jsapi/api/biz/navigation/setIcon.js deleted file mode 100644 index d9431976..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setIcon.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setIcon$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setIcon$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.navigation.setIcon",paramsDeal=apiHelper_1.genDefaultParamsDealFn({watch:!0,showIcon:!0,iconIndex:1});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.setIcon$=setIcon$,exports.default=setIcon$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setLeft.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/setLeft.d.ts deleted file mode 100644 index a7fc0493..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setLeft.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -/** - * 设置导航左侧按钮 请求参数定义 - * @apiName biz.navigation.setLeft - */ -export interface IBizNavigationSetLeftParams { - /** 是否控制点击事件,true 控制,false 不控制, 默认false */ - control?: boolean; - /** 安卓端如果需要控制左上角返回事件加上这个字段,并设置为true(只给安卓使用) */ - android?: boolean; - /** 控制显示文本,空字符串表示显示默认文本 */ - text?: string; - /** 当control为true时,onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 设置导航左侧按钮 返回结果定义 - * @apiName biz.navigation.setLeft - */ -export interface IBizNavigationSetLeftResult { - [key: string]: any; -} -/** - * 设置导航左侧按钮 - * @apiName biz.navigation.setLeft - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function setLeft$(params: IBizNavigationSetLeftParams): Promise; -export default setLeft$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setLeft.js b/node_modules/dingtalk-jsapi/api/biz/navigation/setLeft.js deleted file mode 100644 index 67f4dd03..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setLeft.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setLeft$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setLeft$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.navigation.setLeft",paramsDeal=apiHelper_1.genDefaultParamsDealFn({watch:!0,show:!0,control:!1,showIcon:!0,text:""});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.setLeft$=setLeft$,exports.default=setLeft$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setMenu.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/setMenu.d.ts deleted file mode 100644 index 8da01e94..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setMenu.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * 设置导航栏右侧多个按钮 请求参数定义 - * @apiName biz.navigation.setMenu - */ -export interface IBizNavigationSetMenuParams { - /** 下拉菜单背景色,例如#ADD8E6 */ - backgroundColor?: string; - /** 下拉菜单文字颜色 例如#ADD8E611 */ - textColor?: string; - /** 多个按钮的属性数组 */ - items: Array<{ - /** 每一个item的唯一标示 */ - id: string; - /** 钉钉预置icon的索引值 */ - iconId?: string; - /** item的文字属性 */ - text: string; - /** 是否显示红点 */ - showRedDot?: boolean; - /** badge 内容 */ - badge?: string; - /** 定义图标url */ - url?: string; - }>; - /** 点击任一一个按钮将会回调onSuccess,并返回被点击item的id */ - onSuccess?: (data: IBizNavigationSetMenuResult) => void; -} -/** - * 设设置导航栏右侧多个按钮 返回结果定义 - * @apiName biz.navigation.setMenu - */ -export interface IBizNavigationSetMenuResult { - id: string; -} -/** - * 设置导航栏右侧多个按钮 - * 每一个item对应右上角的一个按钮 - * @apiName biz.navigation.setMenu - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function setMenu$(params: IBizNavigationSetMenuParams): Promise; -export default setMenu$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setMenu.js b/node_modules/dingtalk-jsapi/api/biz/navigation/setMenu.js deleted file mode 100644 index 2b34319f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setMenu.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setMenu$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setMenu$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.navigation.setMenu";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0",paramsDeal:apiHelper_1.addWatchParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0",paramsDeal:apiHelper_1.addWatchParamsDeal},_a)),exports.setMenu$=setMenu$,exports.default=setMenu$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setRight.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/setRight.d.ts deleted file mode 100644 index 6e74ed4f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setRight.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 设置导航右侧按钮 请求参数定义 - * @apiName biz.navigation.setRight - */ -export interface IBizNavigationSetRightParams { - /** 控制按钮显示, true 显示, false 隐藏, 默认true */ - show?: boolean; - /** 是否控制点击事件,true 控制,false 不控制, 默认false */ - control?: boolean; - /** 控制显示文本,空字符串表示显示默认文本 */ - text?: string; - /** 当control为true时,onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 设置导航右侧按钮 返回结果定义 - * @apiName biz.navigation.setRight - */ -export interface IBizNavigationSetRightResult { - [key: string]: any; -} -/** - * 设置导航栏右侧单个按钮 - * 调用jsapi-setRight可以设置导航栏最右侧按钮的文字,并且接收点击事件, - * 只能设置文本按钮,需要设置按钮的icon请查看 biz.navigation.setMenu - * @apiName biz.navigation.setRight - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function setRight$(params: IBizNavigationSetRightParams): Promise; -export default setRight$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setRight.js b/node_modules/dingtalk-jsapi/api/biz/navigation/setRight.js deleted file mode 100644 index 885eea27..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setRight.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setRight$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setRight$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.navigation.setRight",paramsDeal=apiHelper_1.genDefaultParamsDealFn({watch:!0,show:!0,control:!1,showIcon:!0,text:""});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.setRight$=setRight$,exports.default=setRight$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setTitle.d.ts b/node_modules/dingtalk-jsapi/api/biz/navigation/setTitle.d.ts deleted file mode 100644 index b9488d4f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setTitle.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 弹窗alert 请求参数定义 - * @apiName biz.navigation.setTitle - */ -export interface IBizNavigationSetTitleParams { - /** 控制标题文本,空字符串表示显示默认文本 */ - title?: string; - /** 副标题 */ - subTitle?: string; -} -/** - * 弹窗alert 返回结果定义 - * @apiName biz.navigation.setTitle - */ -export interface IBizNavigationSetTitleResult { -} -/** - * 设置导航栏标题 - * 此JSAPI在iOS和Android上的显示有所不同 - * IOS:根据iOS的设计规范,iOS的标题在导航栏正中央 - * Android:根据Android的设计规范,标题显示在导航栏左侧 - * @apiName biz.navigation.setTitle - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function setTitle$(params: IBizNavigationSetTitleParams): Promise; -export default setTitle$; diff --git a/node_modules/dingtalk-jsapi/api/biz/navigation/setTitle.js b/node_modules/dingtalk-jsapi/api/biz/navigation/setTitle.js deleted file mode 100644 index e9c29059..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/navigation/setTitle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setTitle$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setTitle$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.navigation.setTitle";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.setTitle$=setTitle$,exports.default=setTitle$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/pbp/componentPunchFromPartner.d.ts b/node_modules/dingtalk-jsapi/api/biz/pbp/componentPunchFromPartner.d.ts deleted file mode 100644 index 62acddb0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/pbp/componentPunchFromPartner.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * 组件打卡开放接口,前置调用位置匹配接口,此接口只提供给ISV运行期间内的多次相同入参调用会被拒绝 请求参数定义 - * @apiName biz.pbp.componentPunchFromPartner - */ -export interface IBizPbpComponentPunchFromPartnerParams { - /** 业务实例唯一标识 */ - bizInstId: string; - /** 业务code */ - bizCode: string; - /** 由匹配打卡规则获取到的sessionId */ - positionSessionId?: string; - /** 由调用人脸组件获取到的sessionId,本期暂不支持,因此positionSessionId必填 */ - faceSessionId?: string; - /** 最长1024个字节 该数据会透传给业务系统,打卡成功后,会将业务系统推送结果进行透传。建议可以传入标识唯一性的id用作上下文处理等 */ - extension?: string; -} -/** - * 组件打卡开放接口,前置调用位置匹配接口,此接口只提供给ISV运行期间内的多次相同入参调用会被拒绝 返回结果定义 - * @apiName biz.pbp.componentPunchFromPartner - */ -export interface IBizPbpComponentPunchFromPartnerResult { - /** 是否成功 */ - success: boolean; - /** 接口错误码 */ - code: string; - /** 接口错误信息 */ - message: string; - /** 推送事件 - * "pbp_punch_result":打卡平台打卡结果 - * "biz_punch_result": 业务系统打卡结果 - **/ - event: string; - /** 推送数据,如果为业务系统打卡结果,数据结构由业务方自己定义 为打卡平台打卡结果时,需要自己做反序列化 */ - data: string; -} -/** - * 组件打卡开放接口,前置调用位置匹配接口,此接口只提供给ISV运行期间内的多次相同入参调用会被拒绝 - * @apiName biz.pbp.componentPunchFromPartner - * @supportVersion ios: 5.1.10 android: 5.1.10 - * @author Android:序望,iOS:度尽 - */ -export declare function componentPunchFromPartner$(params: IBizPbpComponentPunchFromPartnerParams): Promise; -export default componentPunchFromPartner$; diff --git a/node_modules/dingtalk-jsapi/api/biz/pbp/componentPunchFromPartner.js b/node_modules/dingtalk-jsapi/api/biz/pbp/componentPunchFromPartner.js deleted file mode 100644 index 65c5f995..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/pbp/componentPunchFromPartner.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function componentPunchFromPartner$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.componentPunchFromPartner$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.pbp.componentPunchFromPartner";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.10"},_a)),exports.componentPunchFromPartner$=componentPunchFromPartner$,exports.default=componentPunchFromPartner$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/pbp/startMatchRuleFromPartner.d.ts b/node_modules/dingtalk-jsapi/api/biz/pbp/startMatchRuleFromPartner.d.ts deleted file mode 100644 index a4372172..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/pbp/startMatchRuleFromPartner.d.ts +++ /dev/null @@ -1,68 +0,0 @@ -/** - * 开始匹配打卡规则,多次回调如未成功回调,表示此时没有正常扫描到对应的资源,此时调用打卡接口不能得到对应的资源信息拒绝同一微应用、同一企业、同一bizInstId的连续多次调用,调用前需stop上一次操作 请求参数定义 - * @apiName biz.pbp.startMatchRuleFromPartner - */ -export interface IBizPbpStartMatchRuleFromPartnerParams { - /** 业务实例唯一标识 */ - bizInstId: string; - /** 需要满足的位置信息,与打卡方式映射。满足其中条件即视为。 key:positionType,定义如下 - * "1":地理位置 - * "2":Wi-Fi - * "101":蓝牙 - * value:positionList,可传空,空的情况下不做匹配,返回扫描到的资源信息,定义如下: - * 位置id - * String positionId - * 目前仅支持蓝牙 - * 蓝牙打卡方式下,key为"101",value为蓝牙匹配规则的JSON结构体, - * 如 - * { - * "101":{"positions": [{"positionId":"123123"}, {"positionId":"123123123"}]} - * } - **/ - positionMap: { - [key: string]: any; - }; -} -/** - * 开始匹配打卡规则,多次回调如未成功回调,表示此时没有正常扫描到对应的资源,此时调用打卡接口不能得到对应的资源信息拒绝同一微应用、同一企业、同一bizInstId的连续多次调用,调用前需stop上一次操作 返回结果定义 - * @apiName biz.pbp.startMatchRuleFromPartner - */ -export interface IBizPbpStartMatchRuleFromPartnerResult { - /** - * 匹配结果状态码,定义如下: - * "10000":卡点匹配成功 - * "10001":卡点未匹配 - * "10002":卡点匹配停止 - **/ - code: string; - /** - * 返回匹配数据,定义如下: - * 每次调用开始匹配接口为调用方生成唯一的ID,打卡用 - * 1: string positionSessionId - * // 位置类型,"101" 为蓝牙 - * 2: string positionType - * // 当前返回的位置信息,"positionName"为位置名称,"positionId"为位置ID - * 3: list positions - * // 预留字段 - * 4: map extension - * 目前仅支持蓝牙。蓝牙返回的结果是当前周边所有匹配到的蓝牙设备列表信息 - * 如 - * { - * "positionSessionId":"positionSessionId", - * "positionType":"101", - * "positions":[{ - * "positionName":"测试B1", - * "positionId":"123123" - * }] - * } - */ - data: any; -} -/** - * 开始匹配打卡规则,多次回调如未成功回调,表示此时没有正常扫描到对应的资源,此时调用打卡接口不能得到对应的资源信息拒绝同一微应用、同一企业、同一bizInstId的连续多次调用,调用前需stop上一次操作 - * @apiName biz.pbp.startMatchRuleFromPartner - * @supportVersion ios: 5.1.10 android: 5.1.10 - * @author Android:序望,iOS:度尽 - */ -export declare function startMatchRuleFromPartner$(params: IBizPbpStartMatchRuleFromPartnerParams): Promise; -export default startMatchRuleFromPartner$; diff --git a/node_modules/dingtalk-jsapi/api/biz/pbp/startMatchRuleFromPartner.js b/node_modules/dingtalk-jsapi/api/biz/pbp/startMatchRuleFromPartner.js deleted file mode 100644 index d9589d1c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/pbp/startMatchRuleFromPartner.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startMatchRuleFromPartner$(r){return ddSdk_1.ddSdk.invokeAPI(apiName,r)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startMatchRuleFromPartner$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.pbp.startMatchRuleFromPartner";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.10"},_a)),exports.startMatchRuleFromPartner$=startMatchRuleFromPartner$,exports.default=startMatchRuleFromPartner$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/pbp/stopMatchRuleFromPartner.d.ts b/node_modules/dingtalk-jsapi/api/biz/pbp/stopMatchRuleFromPartner.d.ts deleted file mode 100644 index c2f12ce5..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/pbp/stopMatchRuleFromPartner.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 停止匹配打卡规则 请求参数定义 - * @apiName biz.pbp.stopMatchRuleFromPartner - */ -export interface IBizPbpStopMatchRuleFromPartnerParams { - /** 业务实例唯一标识 */ - bizInstId: string; -} -/** - * 停止匹配打卡规则 返回结果定义 - * @apiName biz.pbp.stopMatchRuleFromPartner - */ -export interface IBizPbpStopMatchRuleFromPartnerResult { -} -/** - * 停止匹配打卡规则 - * @apiName biz.pbp.stopMatchRuleFromPartner - * @supportVersion ios: 5.1.10 android: 5.1.10 - * @author Android;序望,iOS:度尽 - */ -export declare function stopMatchRuleFromPartner$(params: IBizPbpStopMatchRuleFromPartnerParams): Promise; -export default stopMatchRuleFromPartner$; diff --git a/node_modules/dingtalk-jsapi/api/biz/pbp/stopMatchRuleFromPartner.js b/node_modules/dingtalk-jsapi/api/biz/pbp/stopMatchRuleFromPartner.js deleted file mode 100644 index becf9210..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/pbp/stopMatchRuleFromPartner.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopMatchRuleFromPartner$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopMatchRuleFromPartner$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.pbp.stopMatchRuleFromPartner";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.10"},_a)),exports.stopMatchRuleFromPartner$=stopMatchRuleFromPartner$,exports.default=stopMatchRuleFromPartner$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/phoneContact/add.d.ts b/node_modules/dingtalk-jsapi/api/biz/phoneContact/add.d.ts deleted file mode 100644 index 41de191c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/phoneContact/add.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 添加手机联系人 请求参数定义 - * @apiName biz.phoneContact.add - */ -export interface IBizPhoneContactAddParams extends ICommonAPIParams { - name: string; - email?: string; - remark?: string; - address?: string; - phoneNumber: string; - photoFilePath?: string; -} -/** - * 添加手机联系人 返回结果定义 - * @apiName biz.phoneContact.add - */ -export interface IBizPhoneContactAddResult { - success: boolean; -} -/** - * 添加手机联系人 - * @apiName biz.phoneContact.add - */ -export declare function add$(params: IBizPhoneContactAddParams): Promise; -export default add$; diff --git a/node_modules/dingtalk-jsapi/api/biz/phoneContact/add.js b/node_modules/dingtalk-jsapi/api/biz/phoneContact/add.js deleted file mode 100644 index 2631fe64..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/phoneContact/add.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function add$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.add$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.phoneContact.add";ddSdk_1.ddSdk.setAPI(apiName,{}),exports.add$=add$,exports.default=add$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/getRealtimeTracingStatus.d.ts b/node_modules/dingtalk-jsapi/api/biz/realm/getRealtimeTracingStatus.d.ts deleted file mode 100644 index 324ffc3d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/getRealtimeTracingStatus.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 专属包实时定位任务状态查询 请求参数定义 - * @apiName biz.realm.getRealtimeTracingStatus - */ -export interface IBizRealmGetRealtimeTracingStatusParams { -} -/** - * 专属包实时定位任务状态查询 返回结果定义 - * @apiName biz.realm.getRealtimeTracingStatus - */ -export interface IBizRealmGetRealtimeTracingStatusResult { - /** 巡检任务状态 */ - isTraceRunning: boolean; - /** 巡检位置数据上报周期 */ - reportPeriod: number; - /** 巡检位置数据获取周期 */ - collectPeriod: number; -} -/** - * 专属包实时定位任务状态查询 - * @apiName biz.realm.getRealtimeTracingStatus - * @supportVersion android: 6.0.13 - * @author Android:晤歌 - */ -export declare function getRealtimeTracingStatus$(params: IBizRealmGetRealtimeTracingStatusParams): Promise; -export default getRealtimeTracingStatus$; diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/getRealtimeTracingStatus.js b/node_modules/dingtalk-jsapi/api/biz/realm/getRealtimeTracingStatus.js deleted file mode 100644 index 3104859b..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/getRealtimeTracingStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getRealtimeTracingStatus$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getRealtimeTracingStatus$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.realm.getRealtimeTracingStatus";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.13"},_a)),exports.getRealtimeTracingStatus$=getRealtimeTracingStatus$,exports.default=getRealtimeTracingStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/getUserExclusiveInfo.d.ts b/node_modules/dingtalk-jsapi/api/biz/realm/getUserExclusiveInfo.d.ts deleted file mode 100644 index af4f2c85..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/getUserExclusiveInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 专属钉钉获取用户信息 请求参数定义 - * @apiName biz.realm.getUserExclusiveInfo - */ -export interface IBizRealmGetUserExclusiveInfoParams { -} -/** - * 专属钉钉获取用户信息 返回结果定义 - * @apiName biz.realm.getUserExclusiveInfo - */ -export interface IBizRealmGetUserExclusiveInfoResult { - /** 0:标准包;1:专属包 */ - isExclusiveApp: number; -} -/** - * 专属钉钉获取用户信息 - * @apiName biz.realm.getUserExclusiveInfo - * @supportVersion ios: 6.0.14 android: 6.0.14 - * @author Android:晤歌; iOS:路客; winodows: 秋酷 - */ -export declare function getUserExclusiveInfo$(params: IBizRealmGetUserExclusiveInfoParams): Promise; -export default getUserExclusiveInfo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/getUserExclusiveInfo.js b/node_modules/dingtalk-jsapi/api/biz/realm/getUserExclusiveInfo.js deleted file mode 100644 index f99fd2eb..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/getUserExclusiveInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getUserExclusiveInfo$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUserExclusiveInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.realm.getUserExclusiveInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.14"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.14"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.17"},_a)),exports.getUserExclusiveInfo$=getUserExclusiveInfo$,exports.default=getUserExclusiveInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/startRealtimeTracing.d.ts b/node_modules/dingtalk-jsapi/api/biz/realm/startRealtimeTracing.d.ts deleted file mode 100644 index 492411d7..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/startRealtimeTracing.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 专属包开启实时定位 请求参数定义 - * @apiName biz.realm.startRealtimeTracing - */ -export interface IBizRealmStartRealtimeTracingParams { -} -/** - * 专属包开启实时定位 返回结果定义 - * @apiName biz.realm.startRealtimeTracing - */ -export interface IBizRealmStartRealtimeTracingResult { - /** 当前定位任务是否开启 */ - isStartSuccess: boolean; - /** 定位收集周期 */ - collectPeriod: number; - /** 定位上报周期 */ - reportPeriod: number; - /** 结果代码 */ - resultCode: string; - /** 结果信息 */ - resultMsg: string; -} -/** - * 专属包开启实时定位 - * @apiName biz.realm.startRealtimeTracing - * @supportVersion android: 6.0.13 - * @author Android:晤歌 - */ -export declare function startRealtimeTracing$(params: IBizRealmStartRealtimeTracingParams): Promise; -export default startRealtimeTracing$; diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/startRealtimeTracing.js b/node_modules/dingtalk-jsapi/api/biz/realm/startRealtimeTracing.js deleted file mode 100644 index 3dd5756a..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/startRealtimeTracing.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startRealtimeTracing$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startRealtimeTracing$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.realm.startRealtimeTracing";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.13"},_a)),exports.startRealtimeTracing$=startRealtimeTracing$,exports.default=startRealtimeTracing$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/stopRealtimeTracing.d.ts b/node_modules/dingtalk-jsapi/api/biz/realm/stopRealtimeTracing.d.ts deleted file mode 100644 index c92e90ba..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/stopRealtimeTracing.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 专属包停止实时定位 请求参数定义 - * @apiName biz.realm.stopRealtimeTracing - */ -export interface IBizRealmStopRealtimeTracingParams { -} -/** - * 专属包停止实时定位 返回结果定义 - * @apiName biz.realm.stopRealtimeTracing - */ -export interface IBizRealmStopRealtimeTracingResult { - /** 定位任务关闭状态 */ - isTaskStopped: boolean; - /** 结果代码 */ - resultCode: string; - /** 结果信息 */ - resultMsg: string; -} -/** - * 专属包停止实时定位 - * @apiName biz.realm.stopRealtimeTracing - * @supportVersion android: 6.0.13 - * @author Android:晤歌 - */ -export declare function stopRealtimeTracing$(params: IBizRealmStopRealtimeTracingParams): Promise; -export default stopRealtimeTracing$; diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/stopRealtimeTracing.js b/node_modules/dingtalk-jsapi/api/biz/realm/stopRealtimeTracing.js deleted file mode 100644 index be5fc5d0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/stopRealtimeTracing.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopRealtimeTracing$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopRealtimeTracing$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.realm.stopRealtimeTracing";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.13"},_a)),exports.stopRealtimeTracing$=stopRealtimeTracing$,exports.default=stopRealtimeTracing$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/subscribe.d.ts b/node_modules/dingtalk-jsapi/api/biz/realm/subscribe.d.ts deleted file mode 100644 index dde4ca71..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/subscribe.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 大客户业务应用订阅事件 请求参数定义 - * @apiName biz.realm.subscribe - */ -export interface IBizRealmSubscribeParams { - channel: string; -} -/** - * 大客户业务应用订阅事件 返回结果定义 - * @apiName biz.realm.subscribe - */ -export interface IBizRealmSubscribeResult { - /** map形态的内容,和具体客户约定具体格式 */ - data: any; -} -/** - * 大客户业务应用订阅事件 - * @apiName biz.realm.subscribe - * @supportVersion ios: 4.7.18 android: 4.7.18 - * @author Android :笔歌; IOS: 怒龙 - */ -export declare function subscribe$(params: IBizRealmSubscribeParams): Promise; -export default subscribe$; diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/subscribe.js b/node_modules/dingtalk-jsapi/api/biz/realm/subscribe.js deleted file mode 100644 index 3f49adec..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/subscribe.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function subscribe$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.subscribe$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.realm.subscribe";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.7.18"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.7.18"},_a)),exports.subscribe$=subscribe$,exports.default=subscribe$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/unsubscribe.d.ts b/node_modules/dingtalk-jsapi/api/biz/realm/unsubscribe.d.ts deleted file mode 100644 index bbbdf759..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/unsubscribe.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 取消订阅专属sdk事件 请求参数定义 - * @apiName biz.realm.unsubscribe - */ -export interface IBizRealmUnsubscribeParams { - channel: string; -} -/** - * 取消订阅专属sdk事件 返回结果定义 - * @apiName biz.realm.unsubscribe - */ -export interface IBizRealmUnsubscribeResult { -} -/** - * 取消订阅专属sdk事件 - * @apiName biz.realm.unsubscribe - * @supportVersion ios: 4.7.18 android: 4.7.18 - * @author Android :笔歌; IOS: 怒龙 - */ -export declare function unsubscribe$(params: IBizRealmUnsubscribeParams): Promise; -export default unsubscribe$; diff --git a/node_modules/dingtalk-jsapi/api/biz/realm/unsubscribe.js b/node_modules/dingtalk-jsapi/api/biz/realm/unsubscribe.js deleted file mode 100644 index 13ab5948..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/realm/unsubscribe.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unsubscribe$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.unsubscribe$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.realm.unsubscribe";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.7.18"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.7.18"},_a)),exports.unsubscribe$=unsubscribe$,exports.default=unsubscribe$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/resource/getInfo.d.ts b/node_modules/dingtalk-jsapi/api/biz/resource/getInfo.d.ts deleted file mode 100644 index f150b481..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/resource/getInfo.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * 获取离线包信息 请求参数定义 - * @apiName biz.resource.getInfo - */ -export interface IBizResourceGetInfoParams { -} -/** - * 获取离线包信息 返回结果定义 - * @apiName biz.resource.getInfo - */ -export interface IBizResourceGetInfoResult { - /** prepare:命中离线包,但离线包当前不可用;enable:离线包当前生效;disable:离线包不可用(包括无效的dd_mini_app_id、离线包已过期,通过 JSAPI disable 等) */ - status: string; - /** 离线包信息;仅在 status 为 enable 时下发;*/ - detail: { - version: string; - id: string; - expireTimestamp: string; - [key: string]: any; - }; -} -/** - * 获取离线包信息 - * @apiName biz.resource.getInfo - * @supportVersion ios: 6.5.10 android: 6.5.10 - * @author Android:理致 iOS:犹树 - */ -export declare function getInfo$(params: IBizResourceGetInfoParams): Promise; -export default getInfo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/resource/getInfo.js b/node_modules/dingtalk-jsapi/api/biz/resource/getInfo.js deleted file mode 100644 index 7a81b70c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/resource/getInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getInfo$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.resource.getInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.10"},_a)),exports.getInfo$=getInfo$,exports.default=getInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/resource/reportDebugMessage.d.ts b/node_modules/dingtalk-jsapi/api/biz/resource/reportDebugMessage.d.ts deleted file mode 100644 index 0773bfae..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/resource/reportDebugMessage.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * 通知webview容器开始发送debug消息 请求参数定义 - * @apiName biz.resource.reportDebugMessage - */ -export interface IBizResourceReportDebugMessageParams { -} -/** - * 通知webview容器开始发送debug消息 返回结果定义 - * @apiName biz.resource.reportDebugMessage - */ -export interface IBizResourceReportDebugMessageResult { -} -/** - * 通知webview容器开始发送debug消息 - * @apiName biz.resource.reportDebugMessage - * @supportVersion ios: 6.5.20 android: 6.5.20 - * @author Android 理致 iOS 犹树 - */ -export declare function reportDebugMessage$(params: IBizResourceReportDebugMessageParams): Promise; -export default reportDebugMessage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/resource/reportDebugMessage.js b/node_modules/dingtalk-jsapi/api/biz/resource/reportDebugMessage.js deleted file mode 100644 index de429561..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/resource/reportDebugMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function reportDebugMessage$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.reportDebugMessage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.resource.reportDebugMessage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.20"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.20"},_a)),exports.reportDebugMessage$=reportDebugMessage$,exports.default=reportDebugMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/shortCut/addShortCut.d.ts b/node_modules/dingtalk-jsapi/api/biz/shortCut/addShortCut.d.ts deleted file mode 100644 index e5f1d78c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/shortCut/addShortCut.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 增加桌面快捷方式 请求参数定义 - * @apiName biz.shortCut.addShortCut - */ -export interface IBizShortCutAddShortCutParams { - name: string; - corpId: string; - agentId: number; -} -/** - * 增加桌面快捷方式 返回结果定义 - * @apiName biz.shortCut.addShortCut - */ -export interface IBizShortCutAddShortCutResult { -} -/** - * 增加桌面快捷方式 - * @apiName biz.shortCut.addShortCut - * @supportVersion android: 4.7.32 - * @author android: 攸元 - */ -export declare function addShortCut$(params: IBizShortCutAddShortCutParams): Promise; -export default addShortCut$; diff --git a/node_modules/dingtalk-jsapi/api/biz/shortCut/addShortCut.js b/node_modules/dingtalk-jsapi/api/biz/shortCut/addShortCut.js deleted file mode 100644 index fbd4d2d5..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/shortCut/addShortCut.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addShortCut$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.addShortCut$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.shortCut.addShortCut";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.7.32"},_a)),exports.addShortCut$=addShortCut$,exports.default=addShortCut$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthAuthorizationStatus.d.ts b/node_modules/dingtalk-jsapi/api/biz/sports/getHealthAuthorizationStatus.d.ts deleted file mode 100644 index b27c6ad8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthAuthorizationStatus.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 查询健康权限状态 请求参数定义 - * @apiName biz.sports.getHealthAuthorizationStatus - */ -export interface IBizSportsGetHealthAuthorizationStatusParams extends ICommonAPIParams { - type: number; -} -/** - * 查询健康权限状态 返回结果定义 - * @apiName biz.sports.getHealthAuthorizationStatus - */ -export interface IBizSportsGetHealthAuthorizationStatusResult { - status: number; -} -/** - * 查询健康权限状态 - * @apiName biz.sports.getHealthAuthorizationStatus - */ -export declare function getHealthAuthorizationStatus$(params: IBizSportsGetHealthAuthorizationStatusParams): Promise; -export default getHealthAuthorizationStatus$; diff --git a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthAuthorizationStatus.js b/node_modules/dingtalk-jsapi/api/biz/sports/getHealthAuthorizationStatus.js deleted file mode 100644 index 69b132c8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthAuthorizationStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getHealthAuthorizationStatus$(t){return ddSdk_1.ddSdk.invokeAPI(apiName,t)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getHealthAuthorizationStatus$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.sports.getHealthAuthorizationStatus";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.11"},_a)),exports.getHealthAuthorizationStatus$=getHealthAuthorizationStatus$,exports.default=getHealthAuthorizationStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthData.d.ts b/node_modules/dingtalk-jsapi/api/biz/sports/getHealthData.d.ts deleted file mode 100644 index fe3a8276..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthData.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 获取指定类型的健康数据 请求参数定义 - * @apiName biz.sports.getHealthData - */ -export interface IBizSportsGetHealthDataParams extends ICommonAPIParams { - type: number; - endTime: string; - startTime: string; - filterManualInput: boolean; -} -/** - * 获取指定类型的健康数据 返回结果定义 - * @apiName biz.sports.getHealthData - */ -export interface IBizSportsGetHealthDataResult { - healthDataList: { - value: number; - workout: { - dataId: string; - endDate: string; - duration: string; - startDate: string; - avgHeartrate: number; - maxHeartrate: number; - totalDistance: number; - totalEnergyBurned: number; - workoutActivityType: string; - }; - timeZone: string; - lastTimestamp: string; - }[]; -} -/** - * 获取指定类型的健康数据 - * @apiName biz.sports.getHealthData - */ -export declare function getHealthData$(params: IBizSportsGetHealthDataParams): Promise; -export default getHealthData$; diff --git a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthData.js b/node_modules/dingtalk-jsapi/api/biz/sports/getHealthData.js deleted file mode 100644 index 89f18fef..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getHealthData$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getHealthData$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.sports.getHealthData";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a)),exports.getHealthData$=getHealthData$,exports.default=getHealthData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthDeviceData.d.ts b/node_modules/dingtalk-jsapi/api/biz/sports/getHealthDeviceData.d.ts deleted file mode 100644 index 3c1951a5..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthDeviceData.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 获取健康数据所在设备信息 请求参数定义 - * @apiName biz.sports.getHealthDeviceData - */ -export interface IBizSportsGetHealthDeviceDataParams extends ICommonAPIParams { -} -/** - * 获取健康数据所在设备信息 返回结果定义 - * @apiName biz.sports.getHealthDeviceData - */ -export interface IBizSportsGetHealthDeviceDataResult { - channel: string; - deviceId: string; -} -/** - * 获取健康数据所在设备信息 - * @apiName biz.sports.getHealthDeviceData - */ -export declare function getHealthDeviceData$(params: IBizSportsGetHealthDeviceDataParams): Promise; -export default getHealthDeviceData$; diff --git a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthDeviceData.js b/node_modules/dingtalk-jsapi/api/biz/sports/getHealthDeviceData.js deleted file mode 100644 index 02852200..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/sports/getHealthDeviceData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getHealthDeviceData$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getHealthDeviceData$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.sports.getHealthDeviceData";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a)),exports.getHealthDeviceData$=getHealthDeviceData$,exports.default=getHealthDeviceData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/sports/requestHealthAuthorization.d.ts b/node_modules/dingtalk-jsapi/api/biz/sports/requestHealthAuthorization.d.ts deleted file mode 100644 index e21bc830..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/sports/requestHealthAuthorization.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 请求健康读取权限 请求参数定义 - * @apiName biz.sports.requestHealthAuthorization - */ -export interface IBizSportsRequestHealthAuthorizationParams extends ICommonAPIParams { - types: string; -} -/** - * 请求健康读取权限 返回结果定义 - * @apiName biz.sports.requestHealthAuthorization - */ -export interface IBizSportsRequestHealthAuthorizationResult { - success: boolean; -} -/** - * 请求健康读取权限 - * @apiName biz.sports.requestHealthAuthorization - */ -export declare function requestHealthAuthorization$(params: IBizSportsRequestHealthAuthorizationParams): Promise; -export default requestHealthAuthorization$; diff --git a/node_modules/dingtalk-jsapi/api/biz/sports/requestHealthAuthorization.js b/node_modules/dingtalk-jsapi/api/biz/sports/requestHealthAuthorization.js deleted file mode 100644 index 04871571..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/sports/requestHealthAuthorization.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestHealthAuthorization$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestHealthAuthorization$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.sports.requestHealthAuthorization";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a)),exports.requestHealthAuthorization$=requestHealthAuthorization$,exports.default=requestHealthAuthorization$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/store/closeUnpayOrder.d.ts b/node_modules/dingtalk-jsapi/api/biz/store/closeUnpayOrder.d.ts deleted file mode 100644 index f68a70d6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/store/closeUnpayOrder.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 关闭订单 请求参数定义 - * @apiName biz.store.closeUnpayOrder - */ -export interface IBizStoreCloseUnpayOrderParams { - params: string; -} -/** - * 关闭订单 返回结果定义 - * @apiName biz.store.closeUnpayOrder - */ -export interface IBizStoreCloseUnpayOrderResult { - success: boolean; -} -/** - * 关闭订单 - * @apiName biz.store.closeUnpayOrder - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function closeUnpayOrder$(params: IBizStoreCloseUnpayOrderParams): Promise; -export default closeUnpayOrder$; diff --git a/node_modules/dingtalk-jsapi/api/biz/store/closeUnpayOrder.js b/node_modules/dingtalk-jsapi/api/biz/store/closeUnpayOrder.js deleted file mode 100644 index aefbdddf..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/store/closeUnpayOrder.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closeUnpayOrder$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.closeUnpayOrder$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.store.closeUnpayOrder";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.3.7",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.3.7",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.5.3",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a)),exports.closeUnpayOrder$=closeUnpayOrder$,exports.default=closeUnpayOrder$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/store/createOrder.d.ts b/node_modules/dingtalk-jsapi/api/biz/store/createOrder.d.ts deleted file mode 100644 index b19a197c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/store/createOrder.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 创建订单 请求参数定义 - * @apiName biz.store.createOrder - */ -export interface IBizStoreCreateOrderParams { - params: string; -} -/** - * 创建订单 返回结果定义 - * @apiName biz.store.createOrder - */ -export interface IBizStoreCreateOrderResult { - bizOrderId: string; - totalFee: number; - totalActualPayFee: number; - totalActualPromFee: number; - refundFee: number; -} -/** - * 创建订单 - * @apiName biz.store.createOrder - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function createOrder$(params: IBizStoreCreateOrderParams): Promise; -export default createOrder$; diff --git a/node_modules/dingtalk-jsapi/api/biz/store/createOrder.js b/node_modules/dingtalk-jsapi/api/biz/store/createOrder.js deleted file mode 100644 index cd4cd234..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/store/createOrder.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createOrder$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createOrder$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.store.createOrder";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.3.7",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.3.7",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.5.3",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a)),exports.createOrder$=createOrder$,exports.default=createOrder$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/store/getPayUrl.d.ts b/node_modules/dingtalk-jsapi/api/biz/store/getPayUrl.d.ts deleted file mode 100644 index 7c0a4819..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/store/getPayUrl.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 获取支付链接 请求参数定义 - * @apiName biz.store.getPayUrl - */ -export interface IBizStoreGetPayUrlParams { - params: string; -} -/** - * 获取支付链接 返回结果定义 - * @apiName biz.store.getPayUrl - */ -export interface IBizStoreGetPayUrlResult { - payUrl: string; - unionPayUrl: string; -} -/** - * 获取支付链接 - * @apiName biz.store.getPayUrl - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function getPayUrl$(params: IBizStoreGetPayUrlParams): Promise; -export default getPayUrl$; diff --git a/node_modules/dingtalk-jsapi/api/biz/store/getPayUrl.js b/node_modules/dingtalk-jsapi/api/biz/store/getPayUrl.js deleted file mode 100644 index 595c709c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/store/getPayUrl.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPayUrl$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPayUrl$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.store.getPayUrl";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.3.7",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.3.7",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.5.3",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a)),exports.getPayUrl$=getPayUrl$,exports.default=getPayUrl$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/store/inquiry.d.ts b/node_modules/dingtalk-jsapi/api/biz/store/inquiry.d.ts deleted file mode 100644 index 7f4b9d7a..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/store/inquiry.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 内购查询 请求参数定义 - * @apiName biz.store.inquiry - */ -export interface IBizStoreInquiryParams { - params: string; -} -/** - * 内购查询 返回结果定义 - * @apiName biz.store.inquiry - */ -export interface IBizStoreInquiryResult { - bizOrderId: string; - totalFee: number; - totalActualPayFee: number; - totalActualPromFee: number; - refundFee: number; -} -/** - * 内购查询 - * @apiName biz.store.inquiry - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function inquiry$(params: IBizStoreInquiryParams): Promise; -export default inquiry$; diff --git a/node_modules/dingtalk-jsapi/api/biz/store/inquiry.js b/node_modules/dingtalk-jsapi/api/biz/store/inquiry.js deleted file mode 100644 index e81ca6e9..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/store/inquiry.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function inquiry$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.inquiry$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.store.inquiry";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.3.7",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.3.7",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.5.3",paramsDeal:apiHelper_1.genBizStoreParamsDealFn},_a)),exports.inquiry$=inquiry$,exports.default=inquiry$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/tabwindow/isTab.d.ts b/node_modules/dingtalk-jsapi/api/biz/tabwindow/isTab.d.ts deleted file mode 100644 index b407b0f4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/tabwindow/isTab.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 判断当前容器环境是否为妙聚窗口 请求参数定义 - * @apiName biz.tabwindow.isTab - */ -export interface IBizTabwindowIsTabParams { -} -/** - * 判断当前容器环境是否为妙聚窗口 返回结果定义 - * @apiName biz.tabwindow.isTab - */ -export interface IBizTabwindowIsTabResult { - /** 固定有一个字段result,值为bool,用于指示当前是否为妙聚窗口环境 */ - data: { - result: boolean; - [key: string]: any; - }; - [key: string]: any; -} -/** - * 判断当前容器环境是否为妙聚窗口 - * @apiName biz.tabwindow.isTab - * @supportVersion Mac: 6.5.10 Windows: 6.5.10 - * @author Mac:兔仔 Windows: 周镛 - */ -export declare function isTab$(params: IBizTabwindowIsTabParams): Promise; -export default isTab$; diff --git a/node_modules/dingtalk-jsapi/api/biz/tabwindow/isTab.js b/node_modules/dingtalk-jsapi/api/biz/tabwindow/isTab.js deleted file mode 100644 index 3484f29c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/tabwindow/isTab.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isTab$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.isTab$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.tabwindow.isTab";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.5.10"},_a)),exports.isTab$=isTab$,exports.default=isTab$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/telephone/call.d.ts b/node_modules/dingtalk-jsapi/api/biz/telephone/call.d.ts deleted file mode 100644 index bfc4376a..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/telephone/call.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 打电话 请求参数定义 - * @apiName biz.telephone.call - */ -export interface IBizTelephoneCallParams { - [key: string]: any; -} -/** - * 打电话 返回结果定义 - * @apiName biz.telephone.call - */ -export interface IBizTelephoneCallResult { - [key: string]: any; -} -/** - * 打电话 - * @apiName biz.telephone.call - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function call$(params: IBizTelephoneCallParams): Promise; -export default call$; diff --git a/node_modules/dingtalk-jsapi/api/biz/telephone/call.js b/node_modules/dingtalk-jsapi/api/biz/telephone/call.js deleted file mode 100644 index 0b72fa43..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/telephone/call.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function call$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.call$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.telephone.call";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.call$=call$,exports.default=call$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/telephone/checkBizCall.d.ts b/node_modules/dingtalk-jsapi/api/biz/telephone/checkBizCall.d.ts deleted file mode 100644 index 1761de84..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/telephone/checkBizCall.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 检查某个corpId下的办公电话是否开通 请求参数定义 - * @apiName biz.telephone.checkBizCall - */ -export interface IBizTelephoneCheckBizCallParams { - [key: string]: any; -} -/** - * 检查某个corpId下的办公电话是否开通 返回结果定义 - * @apiName biz.telephone.checkBizCall - */ -export interface IBizTelephoneCheckBizCallResult { - [key: string]: any; -} -/** - * 检查某个corpId下的办公电话是否开通 - * @apiName biz.telephone.checkBizCall - * @supportVersion pc: 4.0.0 ios: 3.5.6 android: 3.5.6 - */ -export declare function checkBizCall$(params: IBizTelephoneCheckBizCallParams): Promise; -export default checkBizCall$; diff --git a/node_modules/dingtalk-jsapi/api/biz/telephone/checkBizCall.js b/node_modules/dingtalk-jsapi/api/biz/telephone/checkBizCall.js deleted file mode 100644 index e7817198..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/telephone/checkBizCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkBizCall$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkBizCall$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.telephone.checkBizCall";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.6"},_a)),exports.checkBizCall$=checkBizCall$,exports.default=checkBizCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/telephone/quickCallList.d.ts b/node_modules/dingtalk-jsapi/api/biz/telephone/quickCallList.d.ts deleted file mode 100644 index 2ffcb06f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/telephone/quickCallList.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 拨打单人电话选项(可定制) 请求参数定义 - * @apiName biz.telephone.quickCallList - */ -export interface IBizTelephoneQuickCallListParams { - [key: string]: any; -} -/** - * 拨打单人电话选项(可定制) 返回结果定义 - * @apiName biz.telephone.quickCallList - */ -export interface IBizTelephoneQuickCallListResult { - [key: string]: any; -} -/** - * 拨打单人电话选项(可定制) - * @apiName biz.telephone.quickCallList - * @supportVersion pc: 3.5.6 ios: 3.5.6 android: 3.5.6 - */ -export declare function quickCallList$(params: IBizTelephoneQuickCallListParams): Promise; -export default quickCallList$; diff --git a/node_modules/dingtalk-jsapi/api/biz/telephone/quickCallList.js b/node_modules/dingtalk-jsapi/api/biz/telephone/quickCallList.js deleted file mode 100644 index c2918e99..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/telephone/quickCallList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function quickCallList$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.quickCallList$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.telephone.quickCallList";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.5.6"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.6"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.6"},_a)),exports.quickCallList$=quickCallList$,exports.default=quickCallList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/telephone/showCallMenu.d.ts b/node_modules/dingtalk-jsapi/api/biz/telephone/showCallMenu.d.ts deleted file mode 100644 index 6a247b7e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/telephone/showCallMenu.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 打电话选择面板 请求参数定义 - * @apiName biz.telephone.showCallMenu - */ -export interface IBizTelephoneShowCallMenuParams { - [key: string]: any; -} -/** - * 打电话选择面板 返回结果定义 - * @apiName biz.telephone.showCallMenu - */ -export interface IBizTelephoneShowCallMenuResult { - [key: string]: any; -} -/** - * 打电话选择面板 - * @apiName biz.telephone.showCallMenu - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function showCallMenu$(params: IBizTelephoneShowCallMenuParams): Promise; -export default showCallMenu$; diff --git a/node_modules/dingtalk-jsapi/api/biz/telephone/showCallMenu.js b/node_modules/dingtalk-jsapi/api/biz/telephone/showCallMenu.js deleted file mode 100644 index cd2b0843..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/telephone/showCallMenu.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showCallMenu$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.showCallMenu$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.telephone.showCallMenu";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.showCallMenu$=showCallMenu$,exports.default=showCallMenu$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/user/checkPassword.d.ts b/node_modules/dingtalk-jsapi/api/biz/user/checkPassword.d.ts deleted file mode 100644 index 307b25af..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/user/checkPassword.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 验证钉钉密码已验证当前用户是否当前钉钉账户持有人 请求参数定义 - * @apiName biz.user.checkPassword - */ -export interface IBizUserCheckPasswordParams { - [key: string]: any; -} -/** - * 验证钉钉密码已验证当前用户是否当前钉钉账户持有人 返回结果定义 - * @apiName biz.user.checkPassword - */ -export interface IBizUserCheckPasswordResult { - /** 结果,int (1 success,2 fail) */ - result: number; -} -/** - * 验证钉钉密码已验证当前用户是否当前钉钉账户持有人 - * @apiName biz.user.checkPassword - * @supportVersion ios: 4.5.8 android: 4.5.8 - */ -export declare function checkPassword$(params: IBizUserCheckPasswordParams): Promise; -export default checkPassword$; diff --git a/node_modules/dingtalk-jsapi/api/biz/user/checkPassword.js b/node_modules/dingtalk-jsapi/api/biz/user/checkPassword.js deleted file mode 100644 index df6dc14d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/user/checkPassword.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkPassword$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkPassword$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.user.checkPassword";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.5.8"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.5.8"},_a)),exports.checkPassword$=checkPassword$,exports.default=checkPassword$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/user/get.d.ts b/node_modules/dingtalk-jsapi/api/biz/user/get.d.ts deleted file mode 100644 index 6ec6c052..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/user/get.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 获取当前登录用户信息 请求参数定义 - * @apiName biz.user.get - */ -export interface IBizUserGetParams { - /** 是否允许无组织用户 (4.6.37以上版本支持) */ - allowNoOrgUser?: boolean; - [key: string]: any; -} -/** - * 获取当前登录用户信息 返回结果定义 - * @apiName biz.user.get - */ -export interface IBizUserGetResult { - [key: string]: any; -} -/** - * 获取当前登录用户信息 - * @apiName biz.user.get - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function get$(params: IBizUserGetParams): Promise; -export default get$; diff --git a/node_modules/dingtalk-jsapi/api/biz/user/get.js b/node_modules/dingtalk-jsapi/api/biz/user/get.js deleted file mode 100644 index f4ece703..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/user/get.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function get$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.get$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.user.get";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.get$=get$,exports.default=get$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/callComponent.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/callComponent.d.ts deleted file mode 100644 index f73ea9c9..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/callComponent.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * 打开一方授权页面 请求参数定义 - * @apiName biz.util.callComponent - */ -export interface IBizUtilCallComponentParams { - /** 打开一方H5 或 小程序,目前仅支持 h5 和 miniProgram 两个值 */ - componentType: string; - /** 参数说明 */ - params: { - [key: string]: any; - }; -} -/** - * 打开一方授权页面 返回结果定义 - * @apiName biz.util.callComponent - */ -export interface IBizUtilCallComponentResult { - [key: string]: any; -} -/** - * 打开一方授权页面 - * @apiName biz.util.callComponent - * @supportVersion ios: 6.3.35 android: 6.3.35 pc: 6.3.35 - * @author Android:理致 iOS:犹树 Mac: 千谋 win: 仟晨 - */ -export declare function callComponent$(params: IBizUtilCallComponentParams): Promise; -export default callComponent$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/callComponent.js b/node_modules/dingtalk-jsapi/api/biz/util/callComponent.js deleted file mode 100644 index e8da0dc4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/callComponent.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function callComponent$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.callComponent$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.callComponent";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.35"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.35"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.3.35"},_a)),exports.callComponent$=callComponent$,exports.default=callComponent$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/checkAuth.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/checkAuth.d.ts deleted file mode 100644 index aa281e66..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/checkAuth.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 检查手机权限授权状态 请求参数定义 - * @apiName biz.util.checkAuth - */ -export interface IBizUtilCheckAuthParams extends ICommonAPIParams { - authType: string; -} -/** - * 检查手机权限授权状态 返回结果定义 - * @apiName biz.util.checkAuth - */ -export interface IBizUtilCheckAuthResult { - granted: boolean; -} -/** - * 检查手机权限授权状态 - * @apiName biz.util.checkAuth - */ -export declare function checkAuth$(params: IBizUtilCheckAuthParams): Promise; -export default checkAuth$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/checkAuth.js b/node_modules/dingtalk-jsapi/api/biz/util/checkAuth.js deleted file mode 100644 index e9b410c9..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/checkAuth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkAuth$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkAuth$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.checkAuth";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.checkAuth$=checkAuth$,exports.default=checkAuth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/chooseImage.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/chooseImage.d.ts deleted file mode 100644 index 85624174..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/chooseImage.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 图片选择 请求参数定义 - * @apiName biz.util.chooseImage - */ -export interface IBizUtilChooseImageParams { - /** 最大可选照片数,默认1张 */ - count?: number; - /** 相册选取或者拍照,默认 ['camera','album'] */ - sourceType?: string[]; -} -/** - * 图片选择 返回结果定义 - * @apiName biz.util.chooseImage - */ -export interface IBizUtilChooseImageResult { - filePaths: string[]; - files: Array<{ - path: string; - size: number; - fileType: string; - }>; -} -/** - * 图片选择 - * @apiName biz.util.chooseImage - * @supportVersion ios: 5.1.1 android: 5.1.1 - * @author Android:狐斐 iOS:须莫 - */ -export declare function chooseImage$(params: IBizUtilChooseImageParams): Promise; -export default chooseImage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/chooseImage.js b/node_modules/dingtalk-jsapi/api/biz/util/chooseImage.js deleted file mode 100644 index 52bdbcf4..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/chooseImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseImage$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseImage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.chooseImage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.1"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.1"},_a)),exports.chooseImage$=chooseImage$,exports.default=chooseImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/chooseRegion.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/chooseRegion.d.ts deleted file mode 100644 index 094bc690..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/chooseRegion.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 打开地区选择器 请求参数定义 - * @apiName biz.util.chooseRegion - */ -export interface IBizUtilChooseRegionParams extends ICommonAPIParams { - selectedCode?: string; -} -/** - * 打开地区选择器 返回结果定义 - * @apiName biz.util.chooseRegion - */ -export interface IBizUtilChooseRegionResult { - region?: string; - regionCode: string; - regionName: string; - regionFullName: string; -} -/** - * 打开地区选择器 - * @apiName biz.util.chooseRegion - */ -export declare function chooseRegion$(params: IBizUtilChooseRegionParams): Promise; -export default chooseRegion$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/chooseRegion.js b/node_modules/dingtalk-jsapi/api/biz/util/chooseRegion.js deleted file mode 100644 index 13497069..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/chooseRegion.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseRegion$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseRegion$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.chooseRegion";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a)),exports.chooseRegion$=chooseRegion$,exports.default=chooseRegion$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/chosen.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/chosen.d.ts deleted file mode 100644 index d4a2bb77..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/chosen.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -/** - * 下拉控件 请求参数定义 - * @apiName biz.util.chosen - */ -export interface IBizUtilChosenParams { - /** 下拉控件的内容 */ - source: Array<{ - /** 显示文本 */ - key: string; - /** 文本对应的值 */ - value: string; - }>; - /** 默认选中的key */ - selectedKey: string; -} -/** - * 下拉控件 返回结果定义 - * @apiName biz.util.chosen - */ -export interface IBizUtilChosenResult { - /** 显示文本 */ - key: string; - /** 文本对应的值 */ - value: string; -} -/** - * 下拉控件 - * @apiName biz.util.chosen - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function chosen$(params: IBizUtilChosenParams): Promise; -export default chosen$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/chosen.js b/node_modules/dingtalk-jsapi/api/biz/util/chosen.js deleted file mode 100644 index 5986b6e6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/chosen.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chosen$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chosen$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.chosen";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.chosen$=chosen$,exports.default=chosen$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/clearWebStoreCache.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/clearWebStoreCache.d.ts deleted file mode 100644 index 6af10e44..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/clearWebStoreCache.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 清理Web缓存 请求参数定义 - * @apiName biz.util.clearWebStoreCache - */ -export interface IBizUtilClearWebStoreCacheParams { -} -/** - * 清理Web缓存 返回结果定义 - * @apiName biz.util.clearWebStoreCache - */ -export interface IBizUtilClearWebStoreCacheResult { - /** 用户是否选择清理 */ - choice_clear: boolean; -} -/** - * 清理Web缓存 - * @apiName biz.util.clearWebStoreCache - * @supportVersion Windows:6.0.22 - * @author Windows: 心存 - */ -export declare function clearWebStoreCache$(params: IBizUtilClearWebStoreCacheParams): Promise; -export default clearWebStoreCache$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/clearWebStoreCache.js b/node_modules/dingtalk-jsapi/api/biz/util/clearWebStoreCache.js deleted file mode 100644 index 45115fe1..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/clearWebStoreCache.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function clearWebStoreCache$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.clearWebStoreCache$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.clearWebStoreCache";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.22"},_a)),exports.clearWebStoreCache$=clearWebStoreCache$,exports.default=clearWebStoreCache$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/closePreviewImage.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/closePreviewImage.d.ts deleted file mode 100644 index ef703ab6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/closePreviewImage.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * 关闭图片预览 请求参数定义 - * @apiName biz.util.closePreviewImage - */ -export interface IBizUtilClosePreviewImageParams { -} -/** - * 关闭图片预览 返回结果定义 - * @apiName biz.util.closePreviewImage - */ -export interface IBizUtilClosePreviewImageResult { -} -/** - * 关闭图片预览 - * @apiName biz.util.closePreviewImage - * @supportVersion ios: 6.0.19 android: 6.0.17 - * @author Android:@风纭 iOS:@蒙歌 - */ -export declare function closePreviewImage$(params: IBizUtilClosePreviewImageParams): Promise; -export default closePreviewImage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/closePreviewImage.js b/node_modules/dingtalk-jsapi/api/biz/util/closePreviewImage.js deleted file mode 100644 index 84cb2afb..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/closePreviewImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closePreviewImage$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.closePreviewImage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.closePreviewImage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.19"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.17"},_a)),exports.closePreviewImage$=closePreviewImage$,exports.default=closePreviewImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/compressImage.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/compressImage.d.ts deleted file mode 100644 index 95c7c3c8..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/compressImage.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 图片压缩 请求参数定义 - * @apiName biz.util.compressImage - */ -export interface IBizUtilCompressImageParams { - /** 要压缩的图片地址数组 */ - filePaths: string[]; - /** 压缩级别,支持 0 ~ 4 的整数,默认 4。 */ - compressLevel?: number; -} -/** - * 图片压缩 返回结果定义 - * @apiName biz.util.compressImage - */ -export interface IBizUtilCompressImageResult { - /** 压缩后的路径数组 */ - filePaths: string[]; -} -/** - * 图片压缩 - * @apiName biz.util.compressImage - * @supportVersion ios: 5.1.1 android: 5.1.1 - */ -export declare function compressImage$(params: IBizUtilCompressImageParams): Promise; -export default compressImage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/compressImage.js b/node_modules/dingtalk-jsapi/api/biz/util/compressImage.js deleted file mode 100644 index 93f97639..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/compressImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function compressImage$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.compressImage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.compressImage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.1"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.1"},_a)),exports.compressImage$=compressImage$,exports.default=compressImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/datepicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/datepicker.d.ts deleted file mode 100644 index 9a7f7b54..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/datepicker.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 日期选择器 请求参数定义 - * @apiName biz.util.datepicker - */ -export interface IBizUtilDatepickerParams { - /** format只支持android系统规范,即2015-03-31格式为yyyy-MM-dd */ - format?: string; - /** 默认显示日期 */ - value?: string; -} -/** - * 日期选择器 返回结果定义 - * @apiName biz.util.datepicker - */ -export interface IBizUtilDatepickerResult { - /** 返回选择的日期 */ - value: string; -} -/** - * 日期选择器 - * @description 注意:format只支持android系统规范,即2015-03-31格式为yyyy-MM-dd - * @apiName biz.util.datepicker - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function datepicker$(params: IBizUtilDatepickerParams): Promise; -export default datepicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/datepicker.js b/node_modules/dingtalk-jsapi/api/biz/util/datepicker.js deleted file mode 100644 index 1beeb1bc..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/datepicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function datepicker$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.datepicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.datepicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.datepicker$=datepicker$,exports.default=datepicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/datetimepicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/datetimepicker.d.ts deleted file mode 100644 index 2d615620..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/datetimepicker.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 日期时间控件 请求参数定义 - * @apiName biz.util.datetimepicker - */ -export interface IBizUtilDatetimepickerParams { - /** 日期和时间的格式 */ - format?: string; - /** 默认显示日期和时间 */ - value?: string; -} -/** - * 日期时间控件 返回结果定义 - * @apiName biz.util.datetimepicker - */ -export interface IBizUtilDatetimepickerResult { - /** 返回选择的日期和时间 */ - value: string; -} -/** - * 日期时间控件 - * @apiName biz.util.datetimepicker - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function datetimepicker$(params: IBizUtilDatetimepickerParams): Promise; -export default datetimepicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/datetimepicker.js b/node_modules/dingtalk-jsapi/api/biz/util/datetimepicker.js deleted file mode 100644 index 16ebde79..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/datetimepicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function datetimepicker$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.datetimepicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.datetimepicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.datetimepicker$=datetimepicker$,exports.default=datetimepicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/decrypt.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/decrypt.d.ts deleted file mode 100644 index 5cf96090..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/decrypt.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 解密 请求参数定义 - * @apiName biz.util.decrypt - */ -export interface IBizUtilDecryptParams { - [key: string]: any; -} -/** - * 解密 返回结果定义 - * @apiName biz.util.decrypt - */ -export interface IBizUtilDecryptResult { - [key: string]: any; -} -/** - * 解密 - * @apiName biz.util.decrypt - * @supportVersion pc: 3.0.0 ios: 2.9.1 android: 2.9.1 - */ -export declare function decrypt$(params: IBizUtilDecryptParams): Promise; -export default decrypt$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/decrypt.js b/node_modules/dingtalk-jsapi/api/biz/util/decrypt.js deleted file mode 100644 index 87098d6f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/decrypt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function decrypt$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.decrypt$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.decrypt";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.9.1"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.9.1"},_a)),exports.decrypt$=decrypt$,exports.default=decrypt$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/downloadFile.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/downloadFile.d.ts deleted file mode 100644 index 07644bfc..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/downloadFile.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 下载文件 请求参数定义 - * @apiName biz.util.downloadFile - */ -export interface IBizUtilDownloadFileParams { - [key: string]: any; -} -/** - * 下载文件 返回结果定义 - * @apiName biz.util.downloadFile - */ -export interface IBizUtilDownloadFileResult { - [key: string]: any; -} -/** - * 下载文件 - * @apiName biz.util.downloadFile - * @supportVersion pc: 2.5.0 - */ -export declare function downloadFile$(params: IBizUtilDownloadFileParams): Promise; -export default downloadFile$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/downloadFile.js b/node_modules/dingtalk-jsapi/api/biz/util/downloadFile.js deleted file mode 100644 index cdc5f8c1..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/downloadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function downloadFile$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.downloadFile$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.downloadFile";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a)),exports.downloadFile$=downloadFile$,exports.default=downloadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/encrypt.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/encrypt.d.ts deleted file mode 100644 index 0dacc69e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/encrypt.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 加密 请求参数定义 - * @apiName biz.util.encrypt - */ -export interface IBizUtilEncryptParams { - [key: string]: any; -} -/** - * 加密 返回结果定义 - * @apiName biz.util.encrypt - */ -export interface IBizUtilEncryptResult { - [key: string]: any; -} -/** - * 加密 - * @apiName biz.util.encrypt - * @supportVersion pc: 3.0.0 ios: 2.9.1 android: 2.9.1 - */ -export declare function encrypt$(params: IBizUtilEncryptParams): Promise; -export default encrypt$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/encrypt.js b/node_modules/dingtalk-jsapi/api/biz/util/encrypt.js deleted file mode 100644 index f4745eb7..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/encrypt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function encrypt$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.encrypt$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.encrypt";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.9.1"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.9.1"},_a)),exports.encrypt$=encrypt$,exports.default=encrypt$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/getPerfInfo.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/getPerfInfo.d.ts deleted file mode 100644 index d7ac3e65..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/getPerfInfo.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -/** - * 返回小程序此次打开的关键性能数据 请求参数定义 - * @apiName biz.util.getPerfInfo - */ -export interface IBizUtilGetPerfInfoParams { -} -/** - * 返回小程序此次打开的关键性能数据 返回结果定义 - * @apiName biz.util.getPerfInfo - */ -export interface IBizUtilGetPerfInfoResult { - /** 小程序打开的时间戳(单位是秒,1970开始) */ - prepareStartTime: number; - /** appLoad开销 */ - appLoadedCost: number; - /** pageLoad开销 */ - pageLoadedCost: number; - /** renderFramework加载开销 */ - renderFrameworkLoadCost: number; - /** workerFramework加载开销 */ - workerFrameworkLoadCost: number; - /** 包准备开销 */ - prepareAppCost: number; - /** 是否需要下载zip包 */ - prepareNeedDownload: boolean; - /** 包元数据请求开销 */ - prepareReqInfoCost: number; - /** Zip包下载开销 */ - prepareDownloadCost: number; - /** Zip包解压开销 */ - prepareUnZipCost: number; - /** 包Version */ - metaPackageVersion: string; - /** 包Nick */ - metaPackageNick: string; - /** Appx包Nick */ - metaAppxPackageNick: string; - /** bizReadyTime-prepareStartTime的时长 */ - bizReadyCost: number; -} -/** - * 返回小程序此次打开的关键性能数据 - * @apiName biz.util.getPerfInfo - * @supportVersion ios: 5.1.14 android: 5.1.14 - * @author Android: 攸元 iOS: 贾逵 - */ -export declare function getPerfInfo$(params: IBizUtilGetPerfInfoParams): Promise; -export default getPerfInfo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/getPerfInfo.js b/node_modules/dingtalk-jsapi/api/biz/util/getPerfInfo.js deleted file mode 100644 index f2613838..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/getPerfInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPerfInfo$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPerfInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.getPerfInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.14"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.14"},_a)),exports.getPerfInfo$=getPerfInfo$,exports.default=getPerfInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/invokeWorkbench.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/invokeWorkbench.d.ts deleted file mode 100644 index 304f10e7..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/invokeWorkbench.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 打开一个标签 请求参数定义 - * @apiName biz.util.invokeWorkbench - */ -export interface IBizUtilInvokeWorkbenchParams { - app_url: string; - app_info: any; -} -/** - * 打开一个标签 返回结果定义 - * @apiName biz.util.invokeWorkbench - */ -export interface IBizUtilInvokeWorkbenchResult { -} -/** - * 打开一个标签 - * @apiName biz.util.invokeWorkbench - * @supportVersion win: 6.0.8 mac: 6.0.8 - * @author win: 周镛, mac: 伯温 - */ -export declare function invokeWorkbench$(params: IBizUtilInvokeWorkbenchParams): Promise; -export default invokeWorkbench$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/invokeWorkbench.js b/node_modules/dingtalk-jsapi/api/biz/util/invokeWorkbench.js deleted file mode 100644 index ee8b0bd1..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/invokeWorkbench.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function invokeWorkbench$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.invokeWorkbench$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.invokeWorkbench";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.8"},_a)),exports.invokeWorkbench$=invokeWorkbench$,exports.default=invokeWorkbench$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/isEnableGPUAcceleration.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/isEnableGPUAcceleration.d.ts deleted file mode 100644 index 6324f8a9..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/isEnableGPUAcceleration.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 获取当前GPU加速设置是否开启 请求参数定义 - * @apiName biz.util.isEnableGPUAcceleration - */ -export interface IBizUtilIsEnableGPUAccelerationParams { -} -/** - * 获取当前GPU加速设置是否开启 返回结果定义 - * @apiName biz.util.isEnableGPUAcceleration - */ -export interface IBizUtilIsEnableGPUAccelerationResult { - /** 当前GPU是否开启 */ - current_enabled: boolean; - /** 下次启动是否开启GPU */ - next_start_enabled: boolean; -} -/** - * 获取当前GPU加速设置是否开启 - * @apiName biz.util.isEnableGPUAcceleration - * @supportVersion Windows:6.0.22 - * @author Windows: 心存 - */ -export declare function isEnableGPUAcceleration$(params: IBizUtilIsEnableGPUAccelerationParams): Promise; -export default isEnableGPUAcceleration$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/isEnableGPUAcceleration.js b/node_modules/dingtalk-jsapi/api/biz/util/isEnableGPUAcceleration.js deleted file mode 100644 index b4efb540..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/isEnableGPUAcceleration.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isEnableGPUAcceleration$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.isEnableGPUAcceleration$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.isEnableGPUAcceleration";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.22"},_a)),exports.isEnableGPUAcceleration$=isEnableGPUAcceleration$,exports.default=isEnableGPUAcceleration$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/isLocalFileExist.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/isLocalFileExist.d.ts deleted file mode 100644 index 1db34b37..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/isLocalFileExist.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 检测本地文件存在 请求参数定义 - * @apiName biz.util.isLocalFileExist - */ -export interface IBizUtilIsLocalFileExistParams { - [key: string]: any; -} -/** - * 检测本地文件存在 返回结果定义 - * @apiName biz.util.isLocalFileExist - */ -export interface IBizUtilIsLocalFileExistResult { - [key: string]: any; -} -/** - * 检测本地文件存在 - * @apiName biz.util.isLocalFileExist - * @supportVersion pc: 2.5.0 - */ -export declare function isLocalFileExist$(params: IBizUtilIsLocalFileExistParams): Promise; -export default isLocalFileExist$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/isLocalFileExist.js b/node_modules/dingtalk-jsapi/api/biz/util/isLocalFileExist.js deleted file mode 100644 index e722fb20..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/isLocalFileExist.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isLocalFileExist$(i){return ddSdk_1.ddSdk.invokeAPI(apiName,i)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.isLocalFileExist$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.isLocalFileExist";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a)),exports.isLocalFileExist$=isLocalFileExist$,exports.default=isLocalFileExist$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/multiSelect.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/multiSelect.d.ts deleted file mode 100644 index 0be9cdc2..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/multiSelect.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 下拉多选 请求参数定义 - * @apiName biz.util.multiSelect - */ -export interface IBizUtilMultiSelectParams { - /** 待选项列表 */ - options: string[]; - /** 已选选项列表 */ - selectOption: string[]; -} -/** - * 下拉多选 返回结果定义 - * 返回用户选中的index数组,从0开始。 例如 [ 2, 3 ] - * @apiName biz.util.multiSelect - */ -export declare type IBizUtilMultiSelectResult = string[]; -/** - * 下拉多选 - * 依赖钉钉客户端版本v3.0.0 - * @apiName biz.util.multiSelect - * @supportVersion ios: 3.0.0 android: 3.0.0 - */ -export declare function multiSelect$(params: IBizUtilMultiSelectParams): Promise; -export default multiSelect$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/multiSelect.js b/node_modules/dingtalk-jsapi/api/biz/util/multiSelect.js deleted file mode 100644 index a029f485..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/multiSelect.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function multiSelect$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.multiSelect$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.multiSelect";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.0.0"},_a)),exports.multiSelect$=multiSelect$,exports.default=multiSelect$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/open.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/open.d.ts deleted file mode 100644 index 449bc47d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/open.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 打开应用内页面 请求参数定义 - * @apiName biz.util.open - */ -export interface IBizUtilOpenParams { - /** 页面名称 */ - name: string; - /** 传参 */ - params?: any; -} -/** - * 打开应用内页面 返回结果定义 - * @apiName biz.util.open - */ -export interface IBizUtilOpenResult { -} -/** - * 打开应用内页面 - * @apiName biz.util.open - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function open$(params: IBizUtilOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/open.js b/node_modules/dingtalk-jsapi/api/biz/util/open.js deleted file mode 100644 index ac1f207f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.open";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.7.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openBrowser.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/openBrowser.d.ts deleted file mode 100644 index 6fe0569e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openBrowser.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 打开系统浏览器 请求参数定义 - * @apiName biz.util.openBrowser - */ -export interface IBizUtilOpenBrowserParams extends ICommonAPIParams { - url: string; - className?: string; - packageName?: string; -} -/** - * 打开系统浏览器 返回结果定义 - * @apiName biz.util.openBrowser - */ -export interface IBizUtilOpenBrowserResult { - undefined: undefined; -} -/** - * 打开系统浏览器 - * @apiName biz.util.openBrowser - */ -export declare function openBrowser$(params: IBizUtilOpenBrowserParams): Promise; -export default openBrowser$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openBrowser.js b/node_modules/dingtalk-jsapi/api/biz/util/openBrowser.js deleted file mode 100644 index f5869b76..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openBrowser.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openBrowser$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openBrowser$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.openBrowser";ddSdk_1.ddSdk.setAPI(apiName,{}),exports.openBrowser$=openBrowser$,exports.default=openBrowser$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openDocument.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/openDocument.d.ts deleted file mode 100644 index 1c2369fc..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openDocument.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 在新页面打开文档 请求参数定义 - * @apiName biz.util.openDocument - */ -export interface IBizUtilOpenDocumentParams extends ICommonAPIParams { - filePath: string; - fileType?: string; -} -/** - * 在新页面打开文档 返回结果定义 - * @apiName biz.util.openDocument - */ -export interface IBizUtilOpenDocumentResult { -} -/** - * 在新页面打开文档 - * @apiName biz.util.openDocument - */ -export declare function openDocument$(params: IBizUtilOpenDocumentParams): Promise; -export default openDocument$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openDocument.js b/node_modules/dingtalk-jsapi/api/biz/util/openDocument.js deleted file mode 100644 index 7d618ade..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openDocument.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openDocument$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openDocument$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.openDocument";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.10"},_a)),exports.openDocument$=openDocument$,exports.default=openDocument$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openLink.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/openLink.d.ts deleted file mode 100644 index b7217f8c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openLink.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 新开页面 请求参数定义 - * @apiName biz.util.openLink - */ -export interface IBizUtilOpenLinkParams { - /** 要打开链接的地址 */ - url: string; - /** 新页面是否展示分享按钮 */ - enableShare?: boolean; -} -/** - * 新开页面 返回结果定义 - * @apiName biz.util.openLink - */ -export interface IBizUtilOpenLinkResult { -} -/** - * 新开页面/在新窗口上打开链接 - * @apiName biz.util.openLink - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function openLink$(params: IBizUtilOpenLinkParams): Promise; -export default openLink$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openLink.js b/node_modules/dingtalk-jsapi/api/biz/util/openLink.js deleted file mode 100644 index 4d1cf4dc..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openLink.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openLink$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openLink$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.util.openLink",paramsDeal=apiHelper_1.genDefaultParamsDealFn({credible:!0,showMenuBar:!0});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.7.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.openLink$=openLink$,exports.default=openLink$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openLocalFile.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/openLocalFile.d.ts deleted file mode 100644 index 8b0e6152..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openLocalFile.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 打开本地文件 请求参数定义 - * @apiName biz.util.openLocalFile - */ -export interface IBizUtilOpenLocalFileParams { - [key: string]: any; -} -/** - * 打开本地文件 返回结果定义 - * @apiName biz.util.openLocalFile - */ -export interface IBizUtilOpenLocalFileResult { - [key: string]: any; -} -/** - * 打开本地文件 - * @apiName biz.util.openLocalFile - * @supportVersion pc: 2.5.0 - */ -export declare function openLocalFile$(params: IBizUtilOpenLocalFileParams): Promise; -export default openLocalFile$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openLocalFile.js b/node_modules/dingtalk-jsapi/api/biz/util/openLocalFile.js deleted file mode 100644 index 07b5d35c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openLocalFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openLocalFile$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openLocalFile$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.openLocalFile";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a)),exports.openLocalFile$=openLocalFile$,exports.default=openLocalFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openModal.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/openModal.d.ts deleted file mode 100644 index 485d53f3..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openModal.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 打开模态框 请求参数定义 - * @apiName biz.util.openModal - */ -export interface IBizUtilOpenModalParams { - [key: string]: any; -} -/** - * 打开模态框 返回结果定义 - * @apiName biz.util.openModal - */ -export interface IBizUtilOpenModalResult { - [key: string]: any; -} -/** - * 打开模态框 - * @apiName biz.util.openModal - * @supportVersion pc: 2.5.0 - */ -export declare function openModal$(params: IBizUtilOpenModalParams): Promise; -export default openModal$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openModal.js b/node_modules/dingtalk-jsapi/api/biz/util/openModal.js deleted file mode 100644 index f34ac444..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openModal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openModal$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openModal$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.openModal";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a)),exports.openModal$=openModal$,exports.default=openModal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openSlidePanel.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/openSlidePanel.d.ts deleted file mode 100644 index 529301d5..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openSlidePanel.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 打开侧边框 请求参数定义 - * @apiName biz.util.openSlidePanel - */ -export interface IBizUtilOpenSlidePanelParams { - [key: string]: any; -} -/** - * 打开侧边框 返回结果定义 - * @apiName biz.util.openSlidePanel - */ -export interface IBizUtilOpenSlidePanelResult { - [key: string]: any; -} -/** - * 打开侧边框 - * @apiName biz.util.openSlidePanel - * @supportVersion pc: 2.5.0 - */ -export declare function openSlidePanel$(params: IBizUtilOpenSlidePanelParams): Promise; -export default openSlidePanel$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/openSlidePanel.js b/node_modules/dingtalk-jsapi/api/biz/util/openSlidePanel.js deleted file mode 100644 index 58065fa7..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/openSlidePanel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openSlidePanel$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openSlidePanel$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.openSlidePanel";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a)),exports.openSlidePanel$=openSlidePanel$,exports.default=openSlidePanel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/presentWindow.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/presentWindow.d.ts deleted file mode 100644 index 6198bb3d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/presentWindow.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 打开窗口 请求参数定义 - * @apiName biz.util.presentWindow - */ -export interface IBizUtilPresentWindowParams { - [key: string]: any; -} -/** - * 打开窗口 返回结果定义 - * @apiName biz.util.presentWindow - */ -export interface IBizUtilPresentWindowResult { - [key: string]: any; -} -/** - * 打开窗口 - * @apiName biz.util.presentWindow - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function presentWindow$(params: IBizUtilPresentWindowParams): Promise; -export default presentWindow$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/presentWindow.js b/node_modules/dingtalk-jsapi/api/biz/util/presentWindow.js deleted file mode 100644 index cc2dd12e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/presentWindow.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function presentWindow$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.presentWindow$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.presentWindow";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.presentWindow$=presentWindow$,exports.default=presentWindow$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/previewImage.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/previewImage.d.ts deleted file mode 100644 index 128dff61..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/previewImage.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -/** - * 弹窗alert 请求参数定义 - * @apiName biz.util.previewImage - */ -export interface IBizUtilPreviewImageParams { - /** 图片地址列表 */ - urls: string[]; - /** 当前显示的图片链接 */ - current?: string; - /** 是否显示删除按钮 默认 'false'*/ - showRemoveButton?: string; - /** 预览后长按图片是否显示长按菜单,默认显示 默认 'true'*/ - enableLongPress?: string; - /** 预览后图片是否显示保存按钮,默认显示 默认 'true'*/ - showDownload?: string; -} -/** - * 弹窗alert 返回结果定义 - * @apiName biz.util.previewImage - */ -export interface IBizUtilPreviewImageResult { - [key: string]: any; -} -/** - * 弹窗alert - * @description 调用此api,将显示一个图片浏览器 - * @apiName biz.util.previewImage - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - * @author Android:石涅 iOS:驽良 - */ -export declare function previewImage$(params: IBizUtilPreviewImageParams): Promise; -export default previewImage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/previewImage.js b/node_modules/dingtalk-jsapi/api/biz/util/previewImage.js deleted file mode 100644 index 60d4fbb7..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/previewImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewImage$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewImage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.previewImage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.7.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.previewImage$=previewImage$,exports.default=previewImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/previewVideo.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/previewVideo.d.ts deleted file mode 100644 index 86d30080..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/previewVideo.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 在新零售的场景下,支持在本地进行预览视频 请求参数定义 - * @apiName biz.util.previewVideo - */ -export interface IBizUtilPreviewVideoParams { - /** 视频的远端路径或者本地路径(必填) */ - url: string; - /** 视频的名字(必填) */ - fileName: string; - /** 视频的预览缩略图 (非必填的) */ - thumbnail?: string; -} -/** - * 在新零售的场景下,支持在本地进行预览视频 返回结果定义 - * @apiName biz.util.previewVideo - */ -export interface IBizUtilPreviewVideoResult { -} -/** - * 在新零售的场景下,支持在本地进行预览视频 - * @apiName biz.util.previewVideo - * @supportVersion ios: 4.3.7 android: 4.3.7 pc: 4.6.33 - */ -export declare function previewVideo$(params: IBizUtilPreviewVideoParams): Promise; -export default previewVideo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/previewVideo.js b/node_modules/dingtalk-jsapi/api/biz/util/previewVideo.js deleted file mode 100644 index e6cddd2c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/previewVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewVideo$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewVideo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.previewVideo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.3.7"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.3.7"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.6.33"},_a)),exports.previewVideo$=previewVideo$,exports.default=previewVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/saveImage.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/saveImage.d.ts deleted file mode 100644 index b8d2b3e6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/saveImage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 保存图片,可传入图片链接,也可由容器自动抓取当前容器内容 请求参数定义 - * @apiName biz.util.saveImage - */ -export interface IBizUtilSaveImageParams { - /** 图片URL */ - image: string; -} -/** - * 保存图片,可传入图片链接,也可由容器自动抓取当前容器内容 返回结果定义 - * @apiName biz.util.saveImage - */ -export interface IBizUtilSaveImageResult { -} -/** - * 保存图片,可传入图片链接,也可由容器自动抓取当前容器内容 - * @apiName biz.util.saveImage - * @supportVersion ios: 4.1 android: 4.1 - * @author android: 朴文 ios: 驽良 - */ -export declare function saveImage$(params: IBizUtilSaveImageParams): Promise; -export default saveImage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/saveImage.js b/node_modules/dingtalk-jsapi/api/biz/util/saveImage.js deleted file mode 100644 index 76b0dd9d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/saveImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveImage$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveImage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.saveImage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.1"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.1"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.saveImage$=saveImage$,exports.default=saveImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/saveImageToPhotosAlbum.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/saveImageToPhotosAlbum.d.ts deleted file mode 100644 index 68d71190..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/saveImageToPhotosAlbum.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 保存图片到系统相册 请求参数定义 - * @apiName biz.util.saveImageToPhotosAlbum - */ -export interface IBizUtilSaveImageToPhotosAlbumParams extends ICommonAPIParams { - filePath: string; -} -/** - * 保存图片到系统相册 返回结果定义 - * @apiName biz.util.saveImageToPhotosAlbum - */ -export interface IBizUtilSaveImageToPhotosAlbumResult { -} -/** - * 保存图片到系统相册 - * @apiName biz.util.saveImageToPhotosAlbum - */ -export declare function saveImageToPhotosAlbum$(params: IBizUtilSaveImageToPhotosAlbumParams): Promise; -export default saveImageToPhotosAlbum$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/saveImageToPhotosAlbum.js b/node_modules/dingtalk-jsapi/api/biz/util/saveImageToPhotosAlbum.js deleted file mode 100644 index 1ef3e0f9..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/saveImageToPhotosAlbum.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveImageToPhotosAlbum$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveImageToPhotosAlbum$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.saveImageToPhotosAlbum";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.saveImageToPhotosAlbum$=saveImageToPhotosAlbum$,exports.default=saveImageToPhotosAlbum$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/scan.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/scan.d.ts deleted file mode 100644 index f93eed0c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/scan.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 扫码(支持二维码和条形码) 请求参数定义 - * @apiName biz.util.scan - */ -export interface IBizUtilScanParams { - [key: string]: any; -} -/** - * 扫码(支持二维码和条形码) 返回结果定义 - * @apiName biz.util.scan - */ -export interface IBizUtilScanResult { - [key: string]: any; -} -/** - * 扫码(支持二维码和条形码) - * @apiName biz.util.scan - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function scan$(params: IBizUtilScanParams): Promise; -export default scan$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/scan.js b/node_modules/dingtalk-jsapi/api/biz/util/scan.js deleted file mode 100644 index ccd4d5ab..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/scan.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scan$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.scan$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.util.scan",paramsDeal=apiHelper_1.genDefaultParamsDealFn({type:"qrCode"});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.scan$=scan$,exports.default=scan$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/scanCard.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/scanCard.d.ts deleted file mode 100644 index e102a422..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/scanCard.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 名片扫描 请求参数定义 - * @apiName biz.util.scanCard - */ -export interface IBizUtilScanCardParams { - [key: string]: any; -} -/** - * 名片扫描 返回结果定义 - * @apiName biz.util.scanCard - */ -export interface IBizUtilScanCardResult { - [key: string]: any; -} -/** - * 名片扫描 - * @apiName biz.util.scanCard - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function scanCard$(params: IBizUtilScanCardParams): Promise; -export default scanCard$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/scanCard.js b/node_modules/dingtalk-jsapi/api/biz/util/scanCard.js deleted file mode 100644 index 51300875..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/scanCard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scanCard$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.scanCard$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.scanCard";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.scanCard$=scanCard$,exports.default=scanCard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/setGPUAcceleration.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/setGPUAcceleration.d.ts deleted file mode 100644 index de6936d2..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/setGPUAcceleration.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 设置GPU加速状态 请求参数定义 - * @apiName biz.util.setGPUAcceleration - */ -export interface IBizUtilSetGPUAccelerationParams { - /** 设置下次启动时候是否启用GPU加速 */ - next_start_enable: boolean; -} -/** - * 设置GPU加速状态 返回结果定义 - * @apiName biz.util.setGPUAcceleration - */ -export interface IBizUtilSetGPUAccelerationResult { - /** 调用设置是否成功 */ - result: boolean; -} -/** - * 设置GPU加速状态 - * @apiName biz.util.setGPUAcceleration - * @supportVersion Windows:6.0.22 - * @author Windows: 心存 - */ -export declare function setGPUAcceleration$(params: IBizUtilSetGPUAccelerationParams): Promise; -export default setGPUAcceleration$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/setGPUAcceleration.js b/node_modules/dingtalk-jsapi/api/biz/util/setGPUAcceleration.js deleted file mode 100644 index 1d698e93..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/setGPUAcceleration.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setGPUAcceleration$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setGPUAcceleration$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.setGPUAcceleration";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.22"},_a)),exports.setGPUAcceleration$=setGPUAcceleration$,exports.default=setGPUAcceleration$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/setScreenBrightnessAndKeepOn.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/setScreenBrightnessAndKeepOn.d.ts deleted file mode 100644 index 34716167..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/setScreenBrightnessAndKeepOn.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 设置屏幕亮度和常亮 请求参数定义 - * @apiName biz.util.setScreenBrightnessAndKeepOn - */ -export interface IBizUtilSetScreenBrightnessAndKeepOnParams { - /** 屏幕亮度,支持 0.1~1.0 范围内的值 */ - brightness: number; - /** true(常亮),false(不常亮) */ - isKeep: boolean; -} -/** - * 设置屏幕亮度和常亮 返回结果定义 - * @apiName biz.util.setScreenBrightnessAndKeepOn - */ -export interface IBizUtilSetScreenBrightnessAndKeepOnResult { -} -/** - * 设置屏幕亮度和常亮 - * @apiName biz.util.setScreenBrightnessAndKeepOn - * @supportVersion ios: 4.3.3 android: 4.3.3 - */ -export declare function setScreenBrightnessAndKeepOn$(params: IBizUtilSetScreenBrightnessAndKeepOnParams): Promise; -export default setScreenBrightnessAndKeepOn$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/setScreenBrightnessAndKeepOn.js b/node_modules/dingtalk-jsapi/api/biz/util/setScreenBrightnessAndKeepOn.js deleted file mode 100644 index 5ffe284e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/setScreenBrightnessAndKeepOn.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setScreenBrightnessAndKeepOn$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setScreenBrightnessAndKeepOn$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.setScreenBrightnessAndKeepOn";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.37"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.3.3"},_a)),exports.setScreenBrightnessAndKeepOn$=setScreenBrightnessAndKeepOn$,exports.default=setScreenBrightnessAndKeepOn$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/setScreenKeepOn.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/setScreenKeepOn.d.ts deleted file mode 100644 index e5f71109..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/setScreenKeepOn.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 设置屏幕常亮 请求参数定义 - * @apiName biz.util.setScreenKeepOn - */ -export interface IBizUtilSetScreenKeepOnParams { - /** 是否保持常亮 默认false */ - isKeep: boolean; -} -/** - * 设置屏幕常亮 返回结果定义 - * @apiName biz.util.setScreenKeepOn - */ -export interface IBizUtilSetScreenKeepOnResult { -} -/** - * 设置屏幕常亮,防止熄屏 H5容器关闭后自动失效 - * @apiName biz.util.setScreenKeepOn - * @supportVersion ios: 5.1.26 android: 5.1.26 - * @author Android:峰砺 iOS:新鹏 - */ -export declare function setScreenKeepOn$(params: IBizUtilSetScreenKeepOnParams): Promise; -export default setScreenKeepOn$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/setScreenKeepOn.js b/node_modules/dingtalk-jsapi/api/biz/util/setScreenKeepOn.js deleted file mode 100644 index 5055355e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/setScreenKeepOn.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setScreenKeepOn$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setScreenKeepOn$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.setScreenKeepOn";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.26"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.26"},_a)),exports.setScreenKeepOn$=setScreenKeepOn$,exports.default=setScreenKeepOn$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/share.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/share.d.ts deleted file mode 100644 index 4e01aeaf..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/share.d.ts +++ /dev/null @@ -1,60 +0,0 @@ -/** - * 分享 请求参数定义 - * @apiName biz.util.share - */ -export interface IBizUtilShareParams { - /** 分享类型,0:全部组件默认; 1:只能分享到钉钉;2:不能分享,只有刷新按钮 */ - type: number; - /** url地址 */ - url: string; - /** 分享标题 */ - title: string; - /** 分享内容 */ - content: string; - /** 分享的图片 */ - image: string; - /** 每个平台自定义的内容 */ - custom?: { - [key: string]: { - content: string; - image: string; - url: string; - title: string; - }; - }; - /** 数组代表需要使用那几个平台,并且按序显示 */ - order?: string[]; - /** 按钮名 */ - buttonName?: string; - /** 是否只显示分享平台,布尔值,true:只显示分享平台,false:不仅显示分享平台,也显示收藏,复制等操作选项 */ - onlyShare?: boolean; - /** 不用选择平台,直接跳到指定平台分享,值与下表key值相同 */ - destChannelStyle?: string; - /** 用于传递手机号,进行短信的分享 */ - smsRecipients?: string[]; - /** 提供前端支持额外增加分享item的展示,item点击后返回对应的key提供前端进行业务处理 >5.1.1以上支持 移动端 */ - custom_addon?: { - [customShareType: string]: { - title: string; - iconUrl: string; - }; - }; -} -/** - * 分享 返回结果定义 - * @apiName biz.util.share - */ -export interface IBizUtilShareResult { - /** 分享平台类型 */ - shareType?: string; - /** result */ - result?: 0 | 1 | 2; -} -/** - * 分享 - * @apiName biz.util.share - * @supportVersion ios: 2.4.0 android: 2.4.0 - * @author android:长岚 iOS: 文算 - */ -export declare function share$(params: IBizUtilShareParams): Promise; -export default share$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/share.js b/node_modules/dingtalk-jsapi/api/biz/util/share.js deleted file mode 100644 index 998ca085..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/share.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function share$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.share$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.util.share",paramsDeal=apiHelper_1.genDefaultParamsDealFn({title:"",buttonName:"确定"});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.6.37",paramsDeal:paramsDeal},_a)),exports.share$=share$,exports.default=share$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/shareImage.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/shareImage.d.ts deleted file mode 100644 index 5dbc8499..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/shareImage.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 分享图片,可传入图片链接,也可由容器自动抓取当前容器内容 请求参数定义 - * @apiName biz.util.shareImage - */ -export interface IBizUtilShareImageParams { - /** 本地文件地址 */ - fileURL?: string; - /** dd/wxhy。钉钉/微信好友 */ - destChannelStyle?: string; - autoCapture?: boolean; -} -/** - * 分享图片,可传入图片链接,也可由容器自动抓取当前容器内容 返回结果定义 - * @apiName biz.util.shareImage - */ -export interface IBizUtilShareImageResult { -} -/** - * 分享图片,可传入图片链接,也可由容器自动抓取当前容器内容 - * @apiName biz.util.shareImage - * @supportVersion ios: 4.1 android: 4.1 - * @author android: 朴文 ios: 驽良 - */ -export declare function shareImage$(params: IBizUtilShareImageParams): Promise; -export default shareImage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/shareImage.js b/node_modules/dingtalk-jsapi/api/biz/util/shareImage.js deleted file mode 100644 index 88530ba0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/shareImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function shareImage$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.shareImage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.shareImage";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.1"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.1"},_a)),exports.shareImage$=shareImage$,exports.default=shareImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/showAuthGuide.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/showAuthGuide.d.ts deleted file mode 100644 index 785fe912..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/showAuthGuide.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 授权引导 请求参数定义 - * @apiName biz.util.showAuthGuide - */ -export interface IBizUtilShowAuthGuideParams extends ICommonAPIParams { - authType: string; -} -/** - * 授权引导 返回结果定义 - * @apiName biz.util.showAuthGuide - */ -export interface IBizUtilShowAuthGuideResult { - shown: boolean; -} -/** - * 授权引导 - * @apiName biz.util.showAuthGuide - */ -export declare function showAuthGuide$(params: IBizUtilShowAuthGuideParams): Promise; -export default showAuthGuide$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/showAuthGuide.js b/node_modules/dingtalk-jsapi/api/biz/util/showAuthGuide.js deleted file mode 100644 index 4f806e89..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/showAuthGuide.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showAuthGuide$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.showAuthGuide$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.showAuthGuide";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a)),exports.showAuthGuide$=showAuthGuide$,exports.default=showAuthGuide$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/showSharePanel.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/showSharePanel.d.ts deleted file mode 100644 index 75c7ca0f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/showSharePanel.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 展示分享面板 请求参数定义 - * @apiName biz.util.showSharePanel - */ -export interface IBizUtilShowSharePanelParams extends ICommonAPIParams { -} -/** - * 展示分享面板 返回结果定义 - * @apiName biz.util.showSharePanel - */ -export interface IBizUtilShowSharePanelResult { -} -/** - * 展示分享面板 - * @apiName biz.util.showSharePanel - */ -export declare function showSharePanel$(params: IBizUtilShowSharePanelParams): Promise; -export default showSharePanel$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/showSharePanel.js b/node_modules/dingtalk-jsapi/api/biz/util/showSharePanel.js deleted file mode 100644 index b8ff7023..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/showSharePanel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showSharePanel$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.showSharePanel$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.showSharePanel";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a)),exports.showSharePanel$=showSharePanel$,exports.default=showSharePanel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/startDocSign.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/startDocSign.d.ts deleted file mode 100644 index aa0f477f..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/startDocSign.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 开始签批(pdf全文批注或表单签批 ) 请求参数定义 - * @apiName biz.util.startDocSign - */ -export interface IBizUtilStartDocSignParams { - [key: string]: any; -} -/** - * 开始签批(pdf全文批注或表单签批 ) 返回结果定义 - * @apiName biz.util.startDocSign - */ -export interface IBizUtilStartDocSignResult { - [key: string]: any; -} -/** - * 开始签批(pdf全文批注或表单签批 ) - * @apiName biz.util.startDocSign - * @supportVersion ios: 4.6.33 android: 4.6.33 - */ -export declare function startDocSign$(params: IBizUtilStartDocSignParams): Promise; -export default startDocSign$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/startDocSign.js b/node_modules/dingtalk-jsapi/api/biz/util/startDocSign.js deleted file mode 100644 index b9fbb2b7..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/startDocSign.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startDocSign$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startDocSign$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.startDocSign";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.33"},_a)),exports.startDocSign$=startDocSign$,exports.default=startDocSign$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/systemShare.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/systemShare.d.ts deleted file mode 100644 index 21c8c685..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/systemShare.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 唤起iOS & Android系统分享菜单 请求参数定义 - * @apiName biz.util.systemShare - */ -export interface IBizUtilSystemShareParams { - /** 1.Link 2.图片,限制 images 数组长度1-9 3.图片,图文限制 images 数组长度1-9, title:可选 4.纯文本,仅支持Android微信好友 */ - type: number; - /** 分享标题,可选 */ - title?: string; - /** 分享链接,可选 */ - url?: string; - /** 分享链接缩略图,可选 */ - thumbImage?: string; - /** 分享图片,可选 */ - images: string[]; -} -/** - * 唤起iOS & Android系统分享菜单 返回结果定义 - * @apiName biz.util.systemShare - */ -export interface IBizUtilSystemShareResult { - [key: string]: any; -} -/** - * 唤起iOS & Android系统分享菜单 - * @apiName biz.util.systemShare - * @supportVersion ios: 4.5.10 android: 4.5.10 - */ -export declare function systemShare$(params: IBizUtilSystemShareParams): Promise; -export default systemShare$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/systemShare.js b/node_modules/dingtalk-jsapi/api/biz/util/systemShare.js deleted file mode 100644 index 9b2f0462..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/systemShare.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function systemShare$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.systemShare$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.systemShare";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.5.11"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.5.11"},_a)),exports.systemShare$=systemShare$,exports.default=systemShare$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/timepicker.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/timepicker.d.ts deleted file mode 100644 index c8479dc0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/timepicker.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 时间选择器 请求参数定义 - * @apiName biz.util.timepicker - */ -export interface IBizUtilTimepickerParams { - /** 时间格式 */ - format?: string; - /** 默认显示时间 */ - value?: string; -} -/** - * 时间选择器 返回结果定义 - * @apiName biz.util.timepicker - */ -export interface IBizUtilTimepickerResult { - /** 返回选择的时间 */ - value: string; -} -/** - * 时间选择器 - * @apiName biz.util.timepicker - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function timepicker$(params: IBizUtilTimepickerParams): Promise; -export default timepicker$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/timepicker.js b/node_modules/dingtalk-jsapi/api/biz/util/timepicker.js deleted file mode 100644 index 7f7cad1c..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/timepicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function timepicker$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.timepicker$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.timepicker";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.timepicker$=timepicker$,exports.default=timepicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/uploadAttachment.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/uploadAttachment.d.ts deleted file mode 100644 index 6ec05f07..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/uploadAttachment.d.ts +++ /dev/null @@ -1,67 +0,0 @@ -/** - * 附件上传 请求参数定义 - * @apiName biz.util.uploadAttachment - */ -export interface IBizUtilUploadAttachmentParams { - /** types这个数组里有photo、camera参数需要构建这个数据 */ - image?: { - /** 是否多选,默认为false */ - multiple?: boolean; - /** 是否压缩,默认为true */ - compress?: boolean; - /** 最多选择的图片数目,最多支持9张 */ - max?: number; - /** 企业自定义空间 */ - spaceId: string; - }; - space?: { - /** 企业ID */ - corpId: string; - /** 企业自定义空间 */ - spaceId: string; - /** 1复制,0不复制 */ - isCopy?: number; - /** 最多选择的图片数目,最多支持9张 */ - max?: number; - }; - file: { - /** 企业自定义空间 */ - spaceId: string; - /** 最多选择的图片数目,最多支持9张 */ - max?: number; - }; - /** 支持上传附件的文件类型,至少一个,最多支持四种类型 */ - types: Array<'photo' | 'camera' | 'file' | 'space'>; -} -/** - * 附件上传 返回结果定义 - * @apiName biz.util.uploadAttachment - */ -export interface IBizUtilUploadAttachmentResult { - /** 用户选择了哪种文件类型 ,image(图片)、file(手机文件)、space(钉盘文件) */ - type: 'photo' | 'camera' | 'file' | 'space'; - /** 文件上传成功后的数据信息 */ - data: Array<{ - /** 目标空间id */ - spaceId: string; - /** 文件id */ - fileId: string; - /** 文件名称 */ - fileName: string; - /** 文件大小 */ - fileSize: number; - /** 文件类型 */ - fileType: string; - }>; -} -/** - * 附件上传 - * 该接口支持照片,拍照,本地系统文件和从已有钉盘文件选择,返回值为文件在钉盘系统内的数据信息 - * 例如SpaceID、FileID等。其中照片、拍照和本地系统文件将先上传到参数SpaceID指定的钉盘空间再返回 - * 上传过程对开发者透明。为此调用该接口前需先获取企业自定义空间并授予当前用户对该空间的上传操作权限。 - * 获取自定义空间与授权参见服务端开发文档中“获取企业下自定义空间”和“授权用户访问企业下自定义空间”接口 - * @apiName biz.util.uploadAttachment - * @supportVersion pc: 3.0.0 ios: 2.7.0 android: 2.7.0 - */ -export declare function uploadAttachment$(params: IBizUtilUploadAttachmentParams): Promise; -export default uploadAttachment$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/uploadAttachment.js b/node_modules/dingtalk-jsapi/api/biz/util/uploadAttachment.js deleted file mode 100644 index 89d276ec..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/uploadAttachment.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadAttachment$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadAttachment$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.uploadAttachment";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.7.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.7.0"},_a)),exports.uploadAttachment$=uploadAttachment$,exports.default=uploadAttachment$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/uploadFile.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/uploadFile.d.ts deleted file mode 100644 index 95263a52..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/uploadFile.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * 上传文件 请求参数定义 - * @apiName biz.util.uploadFile - */ -export interface IBizUtilUploadFileParams { - /** 开发者服务器地址 */ - url: string; - /** 要上传文件资源的本地定位符,仅支持虚拟路径 */ - filePath: string; - /** 文件名,即对应的 key, 开发者在服务器端通过这个 key 可以获取到文件二进制内容 */ - fileName: string; - /** HTTP 请求 Header */ - header: any; - /** HTTP 请求中其他额外的 form 数据。 */ - formData: any; -} -/** - * 上传文件 返回结果定义 - * @apiName biz.util.uploadFile - */ -export interface IBizUtilUploadFileResult { - /** 服务器返回的数据 */ - data: any; - /** HTTP 状态码 */ - statusCode: string; - /** 服务器返回的 header */ - header: any; -} -/** - * 上传文件 - * @apiName biz.util.uploadFile - * @supportVersion ios: 6.5.28 android: 6.5.27 - * @author Android:泠轩 iOS:无最 - */ -export declare function uploadFile$(params: IBizUtilUploadFileParams): Promise; -export default uploadFile$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/uploadFile.js b/node_modules/dingtalk-jsapi/api/biz/util/uploadFile.js deleted file mode 100644 index 127a0595..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/uploadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadFile$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadFile$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.uploadFile";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.28"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.27"},_a)),exports.uploadFile$=uploadFile$,exports.default=uploadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/uploadImage.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/uploadImage.d.ts deleted file mode 100644 index d7713b85..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/uploadImage.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -/** - * 上传图片 请求参数定义 - * @apiName biz.util.uploadImage - */ -export interface IBizUtilUploadImageParams { - /** 默认 jsapi (>= 5.0.0) */ - bizType?: string; - /** - * (>= 5.0.0) - * 1,STRICT_AUTH, 严格鉴权,下载文件时需要回调业务方进行鉴权,默认值 。 - * 4,TEMP_AUTH, 临时文件,过期后删除文件,无法访问。 - * 6,CDN_ONLY,公开文件,上传后只可以通过https下载 - */ - authType?: number; - /** 是否多选,默认false */ - multiple?: boolean; - /** 最多可选个数 */ - max?: number; - /** 是否压缩 */ - compression?: boolean; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小压缩越严重 */ - quality?: number; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小缩放越多 */ - resize?: number; - /** 水印信息,钉钉v2.11.0之后版本支持 */ - stickers?: { - time?: string; - dateWeather?: string; - username?: string; - address?: string; - }; -} -/** - * 上传图片 返回结果定义 - * @apiName biz.util.uploadImage - * @returnDemo ['https://static.dingtalk.com/media/lADOA9bQH8zIzMg_200_200.jpg'] - */ -export declare type IBizUtilUploadImageResult = string[]; -/** - * 上传图片 - * 选择图片+上传,防止恶意上传。注意:在工作tab页自定义主页不能使用该组件,工作tab页一级页面会阻塞该组件的执行。 - * 将在成功上传之后回调onSuccess方法,返回alicdn上的图片链接。微应用也可以调用来自定义上传图片,此标签钉钉客户端版本2.5及以上支持。 - * @apiName biz.util.uploadImage - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - * @author android:卓剑, ios:须莫 - */ -export declare function uploadImage$(params: IBizUtilUploadImageParams): Promise; -export default uploadImage$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/uploadImage.js b/node_modules/dingtalk-jsapi/api/biz/util/uploadImage.js deleted file mode 100644 index ad98e598..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/uploadImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadImage$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadImage$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="biz.util.uploadImage",paramsDeal=apiHelper_1.genDefaultParamsDealFn({multiple:!1});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.uploadImage$=uploadImage$,exports.default=uploadImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/uploadImageFromCamera.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/uploadImageFromCamera.d.ts deleted file mode 100644 index 1231beb6..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/uploadImageFromCamera.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * 上传图片 请求参数定义 - * @apiName biz.util.uploadImageFromCamera - */ -export interface IBizUtilUploadImageFromCameraParams { - /** 是否压缩 */ - compression?: boolean; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小压缩越严重 */ - quality?: number; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小缩放越多 */ - resize?: number; - /** 水印信息,钉钉v2.11.0之后版本支持 */ - stickers?: { - time?: string; - dateWeather?: string; - username?: string; - address?: string; - }; -} -/** - * 上传图片 返回结果定义 - * @apiName biz.util.uploadImageFromCamera - * @returnDemo ['https://static.dingtalk.com/media/lADOA9bQH8zIzMg_200_200.jpg'] - */ -export declare type IBizUtilUploadImageFromCameraResult = string[]; -/** - * 上传图片(仅支持拍照上传) - * 只支持直接拍照上传,即调用这个API之后将直接调起相机界面 - * 比如可以应用在,需要用户上传即时照片的场景。成功上传之后回调onSuccess方法,返回图片链接 - * @apiName biz.util.uploadImageFromCamera - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function uploadImageFromCamera$(params: IBizUtilUploadImageFromCameraParams): Promise; -export default uploadImageFromCamera$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/uploadImageFromCamera.js b/node_modules/dingtalk-jsapi/api/biz/util/uploadImageFromCamera.js deleted file mode 100644 index 9a38dc2d..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/uploadImageFromCamera.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadImageFromCamera$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadImageFromCamera$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.uploadImageFromCamera";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.uploadImageFromCamera$=uploadImageFromCamera$,exports.default=uploadImageFromCamera$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/util/ut.d.ts b/node_modules/dingtalk-jsapi/api/biz/util/ut.d.ts deleted file mode 100644 index 17034525..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/ut.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 上报埋点 请求参数定义 - * @apiName biz.util.ut - */ -export interface IBizUtilUtParams { - /** gmkey */ - key: string; - /** gokey, jsapi层填obj */ - value?: { - [key: string]: string; - }; -} -/** - * 上报埋点 返回结果定义 - * @apiName biz.util.ut - */ -export interface IBizUtilUtResult { - [key: string]: any; -} -/** - * 上报埋点 - * @apiName biz.util.ut - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function ut$(params: IBizUtilUtParams): Promise; -export default ut$; diff --git a/node_modules/dingtalk-jsapi/api/biz/util/ut.js b/node_modules/dingtalk-jsapi/api/biz/util/ut.js deleted file mode 100644 index 37caed18..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/util/ut.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function ut$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.ut$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.util.ut",utParamsObj2Str=function(a){var t=Object.assign({},a),d=t.value,e=[];if(d&&"object"==typeof d){for(var r in d)void 0!==d[r]&&e.push(r+"="+d[r]);d=e.join(",")}return t.value=d||"",t};ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.5.0",paramsDeal:utParamsObj2Str},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:function(a){var t=Object.assign({},a),d=t.value;return d&&"object"==typeof d&&(d=JSON.stringify(d)),t.value=d,t}},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:utParamsObj2Str},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:utParamsObj2Str},_a)),exports.ut$=ut$,exports.default=ut$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/verify/openBindIDCard.d.ts b/node_modules/dingtalk-jsapi/api/biz/verify/openBindIDCard.d.ts deleted file mode 100644 index e73dc1de..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/verify/openBindIDCard.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * 跳转到实名身份绑定页面 请求参数定义 - * @apiName biz.verify.openBindIDCard - */ -export interface IBizVerifyOpenBindIDCardParams { -} -/** - * 跳转到实名身份绑定页面 返回结果定义 - * @apiName biz.verify.openBindIDCard - */ -export interface IBizVerifyOpenBindIDCardResult { -} -/** - * 跳转到实名身份绑定页面 - * @apiName biz.verify.openBindIDCard - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function openBindIDCard$(params: IBizVerifyOpenBindIDCardParams): Promise; -export default openBindIDCard$; diff --git a/node_modules/dingtalk-jsapi/api/biz/verify/openBindIDCard.js b/node_modules/dingtalk-jsapi/api/biz/verify/openBindIDCard.js deleted file mode 100644 index eca195dc..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/verify/openBindIDCard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openBindIDCard$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openBindIDCard$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.verify.openBindIDCard";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.5.21"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.5.21"},_a)),exports.openBindIDCard$=openBindIDCard$,exports.default=openBindIDCard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/verify/startAuth.d.ts b/node_modules/dingtalk-jsapi/api/biz/verify/startAuth.d.ts deleted file mode 100644 index 3ca6a1b0..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/verify/startAuth.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * 对用户进行人脸认证,判断是否与当前钉钉账号实名绑定的身份一致 请求参数定义 - * @apiName biz.verify.startAuth - */ -export interface IBizVerifyStartAuthParams { - /** 对账单号,开发者输入,用于跟踪 */ - bizId: string; - /** 认证方式,目前只支持 "byDingtalk" */ - authType: string; - /** 用户信息 */ - userInfo?: { - /** 姓名 */ - name: string; - /** 身份证号 */ - IDCardNo: string; - }; - [key: string]: any; -} -/** - * 对用户进行人脸认证,判断是否与当前钉钉账号实名绑定的身份一致 返回结果定义 - * @apiName biz.verify.startAuth - */ -export interface IBizVerifyStartAuthResult { - /** 认证通过时,返回的授权码,用于服务端确认认证结果 */ - tmpAuthCode: string; -} -/** - * 对用户进行人脸认证,判断是否与当前钉钉账号实名绑定的身份一致 - * @apiName biz.verify.startAuth - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function startAuth$(params: IBizVerifyStartAuthParams): Promise; -export default startAuth$; diff --git a/node_modules/dingtalk-jsapi/api/biz/verify/startAuth.js b/node_modules/dingtalk-jsapi/api/biz/verify/startAuth.js deleted file mode 100644 index 3c11540e..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/verify/startAuth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startAuth$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startAuth$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.verify.startAuth";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.5.21"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.5.21"},_a)),exports.startAuth$=startAuth$,exports.default=startAuth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/voice/makeCall.d.ts b/node_modules/dingtalk-jsapi/api/biz/voice/makeCall.d.ts deleted file mode 100644 index d30c099b..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/voice/makeCall.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 语音通话 请求参数定义 - * @apiName biz.voice.makeCall - */ -export interface IBizVoiceMakeCallParams extends ICommonAPIParams { - corpId: string; - staffId: string; -} -/** - * 语音通话 返回结果定义 - * @apiName biz.voice.makeCall - */ -export interface IBizVoiceMakeCallResult { -} -/** - * 语音通话 - * @apiName biz.voice.makeCall - */ -export declare function makeCall$(params: IBizVoiceMakeCallParams): Promise; -export default makeCall$; diff --git a/node_modules/dingtalk-jsapi/api/biz/voice/makeCall.js b/node_modules/dingtalk-jsapi/api/biz/voice/makeCall.js deleted file mode 100644 index 583c6499..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/voice/makeCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function makeCall$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.makeCall$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.voice.makeCall";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.40"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.40"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.40"},_a)),exports.makeCall$=makeCall$,exports.default=makeCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/getWatermarkInfo.d.ts b/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/getWatermarkInfo.d.ts deleted file mode 100644 index 8c1d9fd2..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/getWatermarkInfo.d.ts +++ /dev/null @@ -1,46 +0,0 @@ -/** - * 水印相机读取水印信息 请求参数定义 - * @apiName biz.watermarkCamera.getWatermarkInfo - */ -export interface IBizWatermarkCameraGetWatermarkInfoParams { -} -/** - * 水印相机读取水印信息 返回结果定义 - * @apiName biz.watermarkCamera.getWatermarkInfo - */ -export interface IBizWatermarkCameraGetWatermarkInfoResult { - /** 位置信息 */ - position: { - [key: string]: any; - }; - /** 日期时间 */ - datetime: { - [key: string]: any; - }; - /** 模版ID */ - templateId: string; - /** AppID */ - appId: string; - /** 组件ID */ - widgetName: string; - /** 宽度 */ - width: string; - /** 扩展数据 */ - extendData: any; - /** 卡片透传数据 */ - extraInfo: { - [key: string]: any; - }; - /** 编辑链接 */ - editUrl: string; - /** 场景码 */ - sceneCode: string; -} -/** - * 水印相机读取水印信息 - * @apiName biz.watermarkCamera.getWatermarkInfo - * @supportVersion ios: 6.5.25 android: 6.5.25 - * @author Android:朴文 iOS:新鹏 - */ -export declare function getWatermarkInfo$(params: IBizWatermarkCameraGetWatermarkInfoParams): Promise; -export default getWatermarkInfo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/getWatermarkInfo.js b/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/getWatermarkInfo.js deleted file mode 100644 index 02ccb170..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/getWatermarkInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getWatermarkInfo$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getWatermarkInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.watermarkCamera.getWatermarkInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.25"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.25"},_a)),exports.getWatermarkInfo$=getWatermarkInfo$,exports.default=getWatermarkInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/setWatermarkInfo.d.ts b/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/setWatermarkInfo.d.ts deleted file mode 100644 index 4ef62829..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/setWatermarkInfo.d.ts +++ /dev/null @@ -1,61 +0,0 @@ -/** - * 水印相机设置水印信息 请求参数定义 - * @apiName biz.watermarkCamera.setWatermarkInfo - */ -export interface IBizWatermarkCameraSetWatermarkInfoParams { - /** 位置信息 */ - position?: { - lat: number; - lng: number; - place: string; - detailPlace: string; - country: string; - province: string; - city: string; - district: string; - street: string; - }; - /** 地址设置页传过来的地址失效时间 */ - positionTimeout?: number; - /** 水印卡片模版ID */ - templateId: string; - /** 水印卡片 AppID */ - appId: string; - /** 水印卡片组件ID */ - widgetName: string; - /** 水印卡片宽度,支持绝对值(如 200,单位pt)和百分比(如 percent80) */ - width: string; - /** 水印卡片扩展数据(客户端会缓存) */ - extendData: any; - /** 水印卡片扩展数据(客户端不缓存) */ - extendDataNoCache?: any; - /** 水印模版表单Code */ - formCode: string; - /** 水印模版表单数据 */ - formDataLists?: { - [key: string]: any; - }[]; - /** 水印卡片服务端透传信息 */ - extraInfo?: { - [key: string]: any; - }; - /** 水印卡片编辑页自定义链接 */ - editUrl?: string; - /** 水印模版场景码 */ - sceneCode?: string; - [key: string]: any; -} -/** - * 水印相机设置水印信息 返回结果定义 - * @apiName biz.watermarkCamera.setWatermarkInfo - */ -export interface IBizWatermarkCameraSetWatermarkInfoResult { -} -/** - * 水印相机设置水印信息 - * @apiName biz.watermarkCamera.setWatermarkInfo - * @supportVersion ios: 6.5.25 android: 6.5.25 - * @author Android:朴文 iOS:新鹏 - */ -export declare function setWatermarkInfo$(params: IBizWatermarkCameraSetWatermarkInfoParams): Promise; -export default setWatermarkInfo$; diff --git a/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/setWatermarkInfo.js b/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/setWatermarkInfo.js deleted file mode 100644 index 4fb21fc2..00000000 --- a/node_modules/dingtalk-jsapi/api/biz/watermarkCamera/setWatermarkInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setWatermarkInfo$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setWatermarkInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="biz.watermarkCamera.setWatermarkInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.25"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.25"},_a)),exports.setWatermarkInfo$=setWatermarkInfo$,exports.default=setWatermarkInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/channel/permission/requestAuthCode.d.ts b/node_modules/dingtalk-jsapi/api/channel/permission/requestAuthCode.d.ts deleted file mode 100644 index c40f6a5e..00000000 --- a/node_modules/dingtalk-jsapi/api/channel/permission/requestAuthCode.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 服务窗请求授权码,免登改造用 请求参数定义 - * @apiName channel.permission.requestAuthCode - */ -export interface IChannelPermissionRequestAuthCodeParams { - corpId: string; -} -/** - * 服务窗请求授权码,免登改造用 返回结果定义 - * @apiName channel.permission.requestAuthCode - */ -export interface IChannelPermissionRequestAuthCodeResult { - code: string; -} -/** - * 服务窗请求授权码,免登改造用 - * @apiName channel.permission.requestAuthCode - * @supportVersion ios: 3.0.0 android: 3.0.0 - */ -export declare function requestAuthCode$(params: IChannelPermissionRequestAuthCodeParams): Promise; -export default requestAuthCode$; diff --git a/node_modules/dingtalk-jsapi/api/channel/permission/requestAuthCode.js b/node_modules/dingtalk-jsapi/api/channel/permission/requestAuthCode.js deleted file mode 100644 index c876c27c..00000000 --- a/node_modules/dingtalk-jsapi/api/channel/permission/requestAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestAuthCode$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestAuthCode$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="channel.permission.requestAuthCode";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.0.0"},_a)),exports.requestAuthCode$=requestAuthCode$,exports.default=requestAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/accelerometer/clearShake.d.ts b/node_modules/dingtalk-jsapi/api/device/accelerometer/clearShake.d.ts deleted file mode 100644 index 3a435938..00000000 --- a/node_modules/dingtalk-jsapi/api/device/accelerometer/clearShake.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * 停止摇一摇 请求参数定义 - * @apiName device.accelerometer.clearShake - */ -export interface IDeviceAccelerometerClearShakeParams { -} -/** - * 停止摇一摇 返回结果定义 - * @apiName device.accelerometer.clearShake - */ -export interface IDeviceAccelerometerClearShakeResult { -} -/** - * 停止摇一摇 清除监听 - * @apiName device.accelerometer.clearShake - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function clearShake$(params: IDeviceAccelerometerClearShakeParams): Promise; -export default clearShake$; diff --git a/node_modules/dingtalk-jsapi/api/device/accelerometer/clearShake.js b/node_modules/dingtalk-jsapi/api/device/accelerometer/clearShake.js deleted file mode 100644 index 5e07fc64..00000000 --- a/node_modules/dingtalk-jsapi/api/device/accelerometer/clearShake.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function clearShake$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.clearShake$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.accelerometer.clearShake";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.clearShake$=clearShake$,exports.default=clearShake$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/accelerometer/watchShake.d.ts b/node_modules/dingtalk-jsapi/api/device/accelerometer/watchShake.d.ts deleted file mode 100644 index c436c8da..00000000 --- a/node_modules/dingtalk-jsapi/api/device/accelerometer/watchShake.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -/** - * 启动摇一摇 请求参数定义 - * @apiName device.accelerometer.watchShake - */ -export interface IDeviceAccelerometerWatchShakeParams { - /** 振动幅度,Number类型,加速度变化超过这个值后触发shake */ - sensitivity: number; - /** 采样间隔(毫秒),Number类型,指每隔多长时间对加速度进行一次采样, 然后对比前后变化,判断是否触发shake */ - frequency: number; - /** 触发『摇一摇』后的等待时间(毫秒),Number类型,防止频繁调用 */ - callbackDelay: number; - /** onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 启动摇一摇 返回结果定义 - * @apiName device.accelerometer.watchShake - */ -export interface IDeviceAccelerometerWatchShakeResult { -} -/** - * 启动摇一摇 - * 开启监听 - * @apiName device.accelerometer.watchShake - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function watchShake$(params: IDeviceAccelerometerWatchShakeParams): Promise; -export default watchShake$; diff --git a/node_modules/dingtalk-jsapi/api/device/accelerometer/watchShake.js b/node_modules/dingtalk-jsapi/api/device/accelerometer/watchShake.js deleted file mode 100644 index 124853b1..00000000 --- a/node_modules/dingtalk-jsapi/api/device/accelerometer/watchShake.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function watchShake$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.watchShake$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="device.accelerometer.watchShake";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:function(a){return apiHelper_1.forceChangeParamsDealFn({sensitivity:3.2})(apiHelper_1.addWatchParamsDeal(a))}},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:apiHelper_1.addWatchParamsDeal},_a)),exports.watchShake$=watchShake$,exports.default=watchShake$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/download.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/download.d.ts deleted file mode 100644 index 84062616..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/download.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 下载音频 请求参数定义 - * @apiName device.audio.download - */ -export interface IDeviceAudioDownloadParams { - [key: string]: any; -} -/** - * 下载音频 返回结果定义 - * @apiName device.audio.download - */ -export interface IDeviceAudioDownloadResult { - [key: string]: any; -} -/** - * 下载音频 - * @apiName device.audio.download - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function download$(params: IDeviceAudioDownloadParams): Promise; -export default download$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/download.js b/node_modules/dingtalk-jsapi/api/device/audio/download.js deleted file mode 100644 index 953f7b60..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/download.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function download$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.download$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.download";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.download$=download$,exports.default=download$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/onPlayEnd.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/onPlayEnd.d.ts deleted file mode 100644 index a48542fb..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/onPlayEnd.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 监听播放音频停止的事件接口 请求参数定义 - * @apiName device.audio.onPlayEnd - */ -export interface IDeviceAudioOnPlayEndParams { - [key: string]: any; -} -/** - * 监听播放音频停止的事件接口 返回结果定义 - * @apiName device.audio.onPlayEnd - */ -export interface IDeviceAudioOnPlayEndResult { - [key: string]: any; -} -/** - * 监听播放音频停止的事件接口 - * @apiName device.audio.onPlayEnd - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function onPlayEnd$(params: IDeviceAudioOnPlayEndParams): Promise; -export default onPlayEnd$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/onPlayEnd.js b/node_modules/dingtalk-jsapi/api/device/audio/onPlayEnd.js deleted file mode 100644 index a09a33f4..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/onPlayEnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onPlayEnd$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onPlayEnd$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.onPlayEnd";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.onPlayEnd$=onPlayEnd$,exports.default=onPlayEnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/onRecordEnd.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/onRecordEnd.d.ts deleted file mode 100644 index 7bc612a0..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/onRecordEnd.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 监听录音自动停止 请求参数定义 - * @apiName device.audio.onRecordEnd - */ -export interface IDeviceAudioOnRecordEndParams { - [key: string]: any; -} -/** - * 监听录音自动停止 返回结果定义 - * @apiName device.audio.onRecordEnd - */ -export interface IDeviceAudioOnRecordEndResult { - [key: string]: any; -} -/** - * 监听录音自动停止 - * @apiName device.audio.onRecordEnd - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function onRecordEnd$(params: IDeviceAudioOnRecordEndParams): Promise; -export default onRecordEnd$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/onRecordEnd.js b/node_modules/dingtalk-jsapi/api/device/audio/onRecordEnd.js deleted file mode 100644 index 9ac01a52..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/onRecordEnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onRecordEnd$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onRecordEnd$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.onRecordEnd";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.onRecordEnd$=onRecordEnd$,exports.default=onRecordEnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/pause.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/pause.d.ts deleted file mode 100644 index bb85e6ba..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/pause.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 暂停播放音频 请求参数定义 - * @apiName device.audio.pause - */ -export interface IDeviceAudioPauseParams { - [key: string]: any; -} -/** - * 暂停播放音频 返回结果定义 - * @apiName device.audio.pause - */ -export interface IDeviceAudioPauseResult { - [key: string]: any; -} -/** - * 暂停播放音频 - * @apiName device.audio.pause - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function pause$(params: IDeviceAudioPauseParams): Promise; -export default pause$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/pause.js b/node_modules/dingtalk-jsapi/api/device/audio/pause.js deleted file mode 100644 index 582bd484..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/pause.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pause$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.pause$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.pause";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.pause$=pause$,exports.default=pause$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/play.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/play.d.ts deleted file mode 100644 index f6e5618a..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/play.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 播放音频 请求参数定义 - * @apiName device.audio.play - */ -export interface IDeviceAudioPlayParams { - [key: string]: any; -} -/** - * 播放音频 返回结果定义 - * @apiName device.audio.play - */ -export interface IDeviceAudioPlayResult { - [key: string]: any; -} -/** - * 播放音频 - * @apiName device.audio.play - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function play$(params: IDeviceAudioPlayParams): Promise; -export default play$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/play.js b/node_modules/dingtalk-jsapi/api/device/audio/play.js deleted file mode 100644 index ec887276..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/play.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function play$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.play$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.play";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.play$=play$,exports.default=play$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/resume.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/resume.d.ts deleted file mode 100644 index ea9f8df4..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/resume.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 暂停之后继续播放音频 请求参数定义 - * @apiName device.audio.resume - */ -export interface IDeviceAudioResumeParams { - [key: string]: any; -} -/** - * 暂停之后继续播放音频 返回结果定义 - * @apiName device.audio.resume - */ -export interface IDeviceAudioResumeResult { - [key: string]: any; -} -/** - * 暂停之后继续播放音频 - * @apiName device.audio.resume - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function resume$(params: IDeviceAudioResumeParams): Promise; -export default resume$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/resume.js b/node_modules/dingtalk-jsapi/api/device/audio/resume.js deleted file mode 100644 index e61b4617..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/resume.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resume$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.resume$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.resume";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.resume$=resume$,exports.default=resume$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/startRecord.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/startRecord.d.ts deleted file mode 100644 index a08fe8d8..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/startRecord.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 开始录制音频 请求参数定义 - * @apiName device.audio.startRecord - */ -export interface IDeviceAudioStartRecordParams { - [key: string]: any; -} -/** - * 开始录制音频 返回结果定义 - * @apiName device.audio.startRecord - */ -export interface IDeviceAudioStartRecordResult { - [key: string]: any; -} -/** - * 开始录制音频 - * @apiName device.audio.startRecord - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function startRecord$(params: IDeviceAudioStartRecordParams): Promise; -export default startRecord$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/startRecord.js b/node_modules/dingtalk-jsapi/api/device/audio/startRecord.js deleted file mode 100644 index 80966557..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/startRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startRecord$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startRecord$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.startRecord";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.30"},_a)),exports.startRecord$=startRecord$,exports.default=startRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/stop.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/stop.d.ts deleted file mode 100644 index d025d792..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/stop.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 停止播放音频 请求参数定义 - * @apiName device.audio.stop - */ -export interface IDeviceAudioStopParams { - [key: string]: any; -} -/** - * 停止播放音频 返回结果定义 - * @apiName device.audio.stop - */ -export interface IDeviceAudioStopResult { - [key: string]: any; -} -/** - * 停止播放音频 - * @apiName device.audio.stop - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function stop$(params: IDeviceAudioStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/stop.js b/node_modules/dingtalk-jsapi/api/device/audio/stop.js deleted file mode 100644 index 399d0742..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.stop";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/stopRecord.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/stopRecord.d.ts deleted file mode 100644 index 34661911..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/stopRecord.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 停止录制音频 请求参数定义 - * @apiName device.audio.stopRecord - */ -export interface IDeviceAudioStopRecordParams { - [key: string]: any; -} -/** - * 停止录制音频 返回结果定义 - * @apiName device.audio.stopRecord - */ -export interface IDeviceAudioStopRecordResult { - [key: string]: any; -} -/** - * 停止录制音频 - * @apiName device.audio.stopRecord - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function stopRecord$(params: IDeviceAudioStopRecordParams): Promise; -export default stopRecord$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/stopRecord.js b/node_modules/dingtalk-jsapi/api/device/audio/stopRecord.js deleted file mode 100644 index 5853ad45..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/stopRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopRecord$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopRecord$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.stopRecord";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.30"},_a)),exports.stopRecord$=stopRecord$,exports.default=stopRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/audio/translateVoice.d.ts b/node_modules/dingtalk-jsapi/api/device/audio/translateVoice.d.ts deleted file mode 100644 index 54513aa7..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/translateVoice.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 音频转文字 请求参数定义 - * @apiName device.audio.translateVoice - */ -export interface IDeviceAudioTranslateVoiceParams { - [key: string]: any; -} -/** - * 音频转文字 返回结果定义 - * @apiName device.audio.translateVoice - */ -export interface IDeviceAudioTranslateVoiceResult { - [key: string]: any; -} -/** - * 音频转文字 - * @apiName device.audio.translateVoice - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function translateVoice$(params: IDeviceAudioTranslateVoiceParams): Promise; -export default translateVoice$; diff --git a/node_modules/dingtalk-jsapi/api/device/audio/translateVoice.js b/node_modules/dingtalk-jsapi/api/device/audio/translateVoice.js deleted file mode 100644 index 3552a5b5..00000000 --- a/node_modules/dingtalk-jsapi/api/device/audio/translateVoice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function translateVoice$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.translateVoice$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.audio.translateVoice";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.8.0"},_a)),exports.translateVoice$=translateVoice$,exports.default=translateVoice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/base/getBatteryInfo.d.ts b/node_modules/dingtalk-jsapi/api/device/base/getBatteryInfo.d.ts deleted file mode 100644 index a1cada68..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getBatteryInfo.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 获取设备电量 请求参数定义 - * @apiName device.base.getBatteryInfo - */ -export interface IDeviceBaseGetBatteryInfoParams extends ICommonAPIParams { -} -/** - * 获取设备电量 返回结果定义 - * @apiName device.base.getBatteryInfo - */ -export interface IDeviceBaseGetBatteryInfoResult { - level: number; - isCharging: boolean; -} -/** - * 获取设备电量 - * @apiName device.base.getBatteryInfo - */ -export declare function getBatteryInfo$(params: IDeviceBaseGetBatteryInfoParams): Promise; -export default getBatteryInfo$; diff --git a/node_modules/dingtalk-jsapi/api/device/base/getBatteryInfo.js b/node_modules/dingtalk-jsapi/api/device/base/getBatteryInfo.js deleted file mode 100644 index 350c0367..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getBatteryInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBatteryInfo$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getBatteryInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.base.getBatteryInfo";ddSdk_1.ddSdk.setAPI(apiName,{}),exports.getBatteryInfo$=getBatteryInfo$,exports.default=getBatteryInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/base/getInterface.d.ts b/node_modules/dingtalk-jsapi/api/device/base/getInterface.d.ts deleted file mode 100644 index a53b3dd9..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getInterface.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 获取热点接入信息 请求参数定义 - * @apiName device.base.getInterface - */ -export interface IDeviceBaseGetInterfaceParams { -} -/** - * 获取热点接入信息 返回结果定义 - * @apiName device.base.getInterface - */ -export interface IDeviceBaseGetInterfaceResult { - /** 热点ssid */ - ssid: string; - /** 热点mac地址 */ - macIp: string; -} -/** - * 获取热点接入信息 - * @apiName device.base.getInterface - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function getInterface$(params: IDeviceBaseGetInterfaceParams): Promise; -export default getInterface$; diff --git a/node_modules/dingtalk-jsapi/api/device/base/getInterface.js b/node_modules/dingtalk-jsapi/api/device/base/getInterface.js deleted file mode 100644 index 438243f0..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getInterface.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getInterface$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getInterface$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.base.getInterface";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"8.1.0"},_a)),exports.getInterface$=getInterface$,exports.default=getInterface$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/base/getPhoneInfo.d.ts b/node_modules/dingtalk-jsapi/api/device/base/getPhoneInfo.d.ts deleted file mode 100644 index 7d3bcb9d..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getPhoneInfo.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * 获取手机基础信息 请求参数定义 - * @apiName device.base.getPhoneInfo - */ -export interface IDeviceBaseGetPhoneInfoParams { -} -/** - * 获取手机基础信息 返回结果定义 - * @apiName device.base.getPhoneInfo - */ -export interface IDeviceBaseGetPhoneInfoResult { - /** 手机屏幕宽度 */ - screenWidth: number; - /** 手机屏幕高度 */ - screenHeight: number; - /** 手机品牌 */ - brand: string; - /** 手机型号 */ - model: string; - /** 版本 */ - version: string; - /** 网络类型 wifi/4g/3g */ - netInfo: 'wifi' | '4g' | '3g'; - /** 运营商信息 */ - operatorType: string; -} -/** - * 获取手机基础信息 - * @apiName device.base.getPhoneInfo - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function getPhoneInfo$(params: IDeviceBaseGetPhoneInfoParams): Promise; -export default getPhoneInfo$; diff --git a/node_modules/dingtalk-jsapi/api/device/base/getPhoneInfo.js b/node_modules/dingtalk-jsapi/api/device/base/getPhoneInfo.js deleted file mode 100644 index 5b73b1c4..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getPhoneInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPhoneInfo$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPhoneInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.base.getPhoneInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.5.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.5.0"},_a)),exports.getPhoneInfo$=getPhoneInfo$,exports.default=getPhoneInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/base/getScanWifiListAsync.d.ts b/node_modules/dingtalk-jsapi/api/device/base/getScanWifiListAsync.d.ts deleted file mode 100644 index 850d6ce7..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getScanWifiListAsync.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * 获取WIFI 请求参数定义 - * @apiName device.base.getScanWifiListAsync - */ -export interface IDeviceBaseGetScanWifiListAsyncParams { - /** 超时时间 int 必选 */ - timeout: number; - /** 缓存时间 int 必选 */ - cacheTime: number; -} -/** - * 获取WIFI 返回结果定义 - * @apiName device.base.getScanWifiListAsync - */ -export interface IDeviceBaseGetScanWifiListAsyncResult { - /** 错误码 int枚举值 必选 取值{ 0:成功 1:json错误 2:系统错误 3:超时 } */ - resultCode: number; - /** WiFi列表 */ - wifiList?: any[]; - /** 成功或错误信息 */ - resultMessage?: string; -} -/** - * 获取WIFI - * @apiName device.base.getScanWifiListAsync - * @supportVersion ios: 3.3.0 android: 3.3.0 - */ -export declare function getScanWifiListAsync$(params: IDeviceBaseGetScanWifiListAsyncParams): Promise; -export default getScanWifiListAsync$; diff --git a/node_modules/dingtalk-jsapi/api/device/base/getScanWifiListAsync.js b/node_modules/dingtalk-jsapi/api/device/base/getScanWifiListAsync.js deleted file mode 100644 index 148e42ae..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getScanWifiListAsync.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getScanWifiListAsync$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getScanWifiListAsync$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.base.getScanWifiListAsync";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.41"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.3.0"},_a)),exports.getScanWifiListAsync$=getScanWifiListAsync$,exports.default=getScanWifiListAsync$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/base/getUUID.d.ts b/node_modules/dingtalk-jsapi/api/device/base/getUUID.d.ts deleted file mode 100644 index 863ac6d5..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getUUID.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 获取通用唯一识别码(卸载重新安装会改变) 请求参数定义 - * @apiName device.base.getUUID - */ -export interface IDeviceBaseGetUUIDParams { -} -/** - * 获取通用唯一识别码(卸载重新安装会改变) 返回结果定义 - * @apiName device.base.getUUID - */ -export interface IDeviceBaseGetUUIDResult { - /** 通用唯一识别码 */ - uuid: string; -} -/** - * 获取通用唯一识别码(卸载重新安装会改变) - * @apiName device.base.getUUID - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function getUUID$(params: IDeviceBaseGetUUIDParams): Promise; -export default getUUID$; diff --git a/node_modules/dingtalk-jsapi/api/device/base/getUUID.js b/node_modules/dingtalk-jsapi/api/device/base/getUUID.js deleted file mode 100644 index 4456c67e..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getUUID.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getUUID$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUUID$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.base.getUUID";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.7.6"},_a)),exports.getUUID$=getUUID$,exports.default=getUUID$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/base/getWifiStatus.d.ts b/node_modules/dingtalk-jsapi/api/device/base/getWifiStatus.d.ts deleted file mode 100644 index 4056b416..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getWifiStatus.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 获取wifi是否打开 请求参数定义 - * @apiName device.base.getWifiStatus - */ -export interface IDeviceBaseGetWifiStatusParams { -} -/** - * 获取wifi是否打开 返回结果定义 - * @apiName device.base.getWifiStatus - */ -export interface IDeviceBaseGetWifiStatusResult { - /** 当前连接wifi的状态 1 :enable;0 : disable */ - status: 1 | 0; -} -/** - * 获取wifi是否打开 - * @apiName device.base.getWifiStatus - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function getWifiStatus$(params: IDeviceBaseGetWifiStatusParams): Promise; -export default getWifiStatus$; diff --git a/node_modules/dingtalk-jsapi/api/device/base/getWifiStatus.js b/node_modules/dingtalk-jsapi/api/device/base/getWifiStatus.js deleted file mode 100644 index 9e79d7e5..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/getWifiStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getWifiStatus$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getWifiStatus$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.base.getWifiStatus";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.11.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.11.0"},_a)),exports.getWifiStatus$=getWifiStatus$,exports.default=getWifiStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/base/openSystemSetting.d.ts b/node_modules/dingtalk-jsapi/api/device/base/openSystemSetting.d.ts deleted file mode 100644 index 0aed4682..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/openSystemSetting.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 打开系统设置 请求参数定义 - * @apiName device.base.openSystemSetting - */ -export interface IDeviceBaseOpenSystemSettingParams { - /** Android系统中action的概念,如android.settings.BLUETOOTH_SETTINGS打开蓝牙设置页面 */ - action?: string; - /** Android系统中跳转系统应用所需的参数 */ - param?: string; - /** Android系统中跳转系统应用所需的data参数 */ - data?: string; -} -/** - * 打开系统设置 返回结果定义 - * @apiName device.base.openSystemSetting - */ -export interface IDeviceBaseOpenSystemSettingResult { -} -/** - * 打开系统设置 - * @apiName device.base.openSystemSetting - * @supportVersion android: 6.0.27 ios: 6.3.15 - * @author Android:序望 iOS:轻罗 - */ -export declare function openSystemSetting$(params: IDeviceBaseOpenSystemSettingParams): Promise; -export default openSystemSetting$; diff --git a/node_modules/dingtalk-jsapi/api/device/base/openSystemSetting.js b/node_modules/dingtalk-jsapi/api/device/base/openSystemSetting.js deleted file mode 100644 index 92a01250..00000000 --- a/node_modules/dingtalk-jsapi/api/device/base/openSystemSetting.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openSystemSetting$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openSystemSetting$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.base.openSystemSetting";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.27"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.15"},_a)),exports.openSystemSetting$=openSystemSetting$,exports.default=openSystemSetting$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/connection/getNetworkType.d.ts b/node_modules/dingtalk-jsapi/api/device/connection/getNetworkType.d.ts deleted file mode 100644 index a26622a1..00000000 --- a/node_modules/dingtalk-jsapi/api/device/connection/getNetworkType.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 获取当前网络类型 请求参数定义 - * @apiName device.connection.getNetworkType - */ -export interface IDeviceConnectionGetNetworkTypeParams { -} -/** - * 获取当前网络类型 返回结果定义 - * @apiName device.connection.getNetworkType - */ -export interface IDeviceConnectionGetNetworkTypeResult { - /** result值: wifi 2g 3g 4g unknown none none表示离线 */ - result: 'wifi' | '2g' | '3g' | '4g' | 'unknown' | 'none'; -} -/** - * 获取当前网络类型 - * @apiName device.connection.getNetworkType - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function getNetworkType$(params: IDeviceConnectionGetNetworkTypeParams): Promise; -export default getNetworkType$; diff --git a/node_modules/dingtalk-jsapi/api/device/connection/getNetworkType.js b/node_modules/dingtalk-jsapi/api/device/connection/getNetworkType.js deleted file mode 100644 index 4493fa0a..00000000 --- a/node_modules/dingtalk-jsapi/api/device/connection/getNetworkType.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getNetworkType$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getNetworkType$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.connection.getNetworkType";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.getNetworkType$=getNetworkType$,exports.default=getNetworkType$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/checkPermission.d.ts b/node_modules/dingtalk-jsapi/api/device/geolocation/checkPermission.d.ts deleted file mode 100644 index 1f309556..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/checkPermission.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 检查当前系统是否给钉钉授予定位权限 请求参数定义 - * @apiName device.geolocation.checkPermission - */ -export interface IDeviceGeolocationCheckPermissionParams { -} -/** - * 检查当前系统是否给钉钉授予定位权限 返回结果定义 - * @apiName device.geolocation.checkPermission - */ -export interface IDeviceGeolocationCheckPermissionResult { - hasPermission: boolean; -} -/** - * 检查当前系统是否给钉钉授予定位权限 - * @apiName device.geolocation.checkPermission - * @supportVersion android: 4.5.0 - * @author android:珑一 - */ -export declare function checkPermission$(params: IDeviceGeolocationCheckPermissionParams): Promise; -export default checkPermission$; diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/checkPermission.js b/node_modules/dingtalk-jsapi/api/device/geolocation/checkPermission.js deleted file mode 100644 index 77ce354c..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/checkPermission.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkPermission$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkPermission$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.geolocation.checkPermission";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.5.0"},_a)),exports.checkPermission$=checkPermission$,exports.default=checkPermission$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/get.d.ts b/node_modules/dingtalk-jsapi/api/device/geolocation/get.d.ts deleted file mode 100644 index f28c7d04..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/get.d.ts +++ /dev/null @@ -1,68 +0,0 @@ -/** - * 获取经纬度 请求参数定义 - * @apiName device.geolocation.get - */ -export interface IDeviceGeolocationGetParams { - /** - * 期望定位精度半径(单位米),定位结果尽量满足该参数要求,但是不一定能保证小于该误差, - * 开发者需要读取返回结果的 accuracy 字段校验坐标精度; - * 建议按照业务需求设置定位精度,推荐采用200m, - * 可获得较好的精度和较短的响应时长 - */ - targetAccuracy: number; - /** 1:获取高德坐标, 0:获取标准坐标;推荐使用高德坐标;标准坐标没有address字段 */ - coordinate: number; - /** 是否需要带有逆地理编码信息;该功能需要网络请求,请更具自己的业务场景使用 */ - withReGeocode: boolean; - /** 是否缓存地理位置信息。默认是true。如果true,客户端会对定位的地理位置信息缓存,在缓存期内(2分钟)再次定位会返回旧的定位 */ - useCache: boolean; -} -/** - * 获取经纬度 返回结果定义 - * @apiName device.geolocation.get - */ -export interface IDeviceGeolocationGetResult { - /** 经度 */ - longitude: number; - /** 纬度 */ - latitude: number; - /** 实际的定位精度半径(单位米) */ - accuracy: number; - /** 格式化地址,如:北京市朝阳区南磨房镇北京国家广告产业园区 */ - address: string; - /** 省份,如:北京市 */ - province: string; - /** 城市,直辖市会返回空 */ - city: string; - /** 行政区,如:朝阳区 */ - district: string; - /** 街道,如:西大望路甲12-2号楼 */ - road: string; - /** 当前设备网络类型,如:wifi、3g等 */ - netType: string; - /** 当前设备使用移动运营商,如:CMCC等 */ - operatorType: string; - /** 对错误码的描述 */ - errorMessage?: string; - /** 错误码 */ - errorCode?: number; - /** 仅Android支持,wifi设置是否开启,不保证已连接上 */ - isWifiEnabled?: boolean; - /** 仅Android支持,gps设置是否开启,不保证已经连接上 */ - isGpsEnabled?: boolean; - /** 仅Android支持,定位返回的经纬度是否是模拟的结果 */ - isFromMock?: boolean; - /** 仅Android支持,我们使用的是混合定位,具体定位提供者有wifi/lbs/gps" 这三种 */ - provider?: 'wifi' | 'lbs' | 'gps'; - /** 仅Android支持,移动网络是设置是否开启,不保证已经连接上 */ - isMobileEnabled: boolean; -} -/** - * 获取当前地理位置(单次定位) - * Android客户端返回坐标是高德坐标,iOS客户端2.7.6及以后版本支持返回高德坐标;IOS客户端低于2.7.6版本仅支持返回标准坐标,如需使用高德坐标,可对返回的坐标做转换,具体请参考转换方法和坐标转换APIDemo演示页面 - * 钉钉Android客户端2.1及之前版本返回的数据结构比iOS客户端多嵌套一层location字段,2.2及之后版本返回的数据结构与钉钉iOS客户端一致,建议对返回的数据先判断存在location,做向后兼容处理。 - * @apiName device.geolocation.get - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function get$(params: IDeviceGeolocationGetParams): Promise; -export default get$; diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/get.js b/node_modules/dingtalk-jsapi/api/device/geolocation/get.js deleted file mode 100644 index 360a793c..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/get.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function get$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.get$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.geolocation.get";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.get$=get$,exports.default=get$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/start.d.ts b/node_modules/dingtalk-jsapi/api/device/geolocation/start.d.ts deleted file mode 100644 index 2946bb1d..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/start.d.ts +++ /dev/null @@ -1,71 +0,0 @@ -/** - * 开启持续定位 请求参数定义 - * @apiName device.geolocation.start - */ -export interface IDeviceGeolocationStartParams { - /** 期望定位精度半径(单位米),定位结果尽量满足该参数要求, - * 但是不一定能保证小于该误差,开发者需要读取返回结果的 accuracy 字段校验坐标精度; - * 建议按照业务需求设置定位精度,推荐采用200m,可获得较好的精度和较短的响应时长 - */ - targetAccuracy: number; - /** iOS端位置变更敏感度,单位为m,此值会影响iOS端callback回调速率 */ - iOSDistanceFilter: number; - /** 是否缓存地理位置信息。默认是true。如果true,客户端会对定位的地理位置信息缓存,在缓存期内(2分钟)再次定位会返回旧的定位 */ - useCache?: boolean; - /** 是否需要带有逆地理编码信息;该功能需要网络请求,请更具自己的业务场景使用,默认否 */ - withReGeocode?: boolean; - /** 数据回传最小时间间隔,单位ms */ - callBackInterval: number; - /** 定位场景id,对于同一id的,不可连续start,否则会报错。不同scenceId的互不影响 */ - sceneId: string; -} -/** - * 开启持续定位 返回结果定义 - * @apiName device.geolocation.start - */ -export interface IDeviceGeolocationStartResult { - /** 经度 */ - longitude: number; - /** 纬度 */ - latitude: number; - /** 实际的定位精度半径(单位米) */ - accuracy: number; - /** 格式化地址,如:北京市朝阳区南磨房镇北京国家广告产业园区 */ - address: string; - /** 省份,如:北京市 */ - province: string; - /** 城市,直辖市会返回空 */ - city: string; - /** 行政区,如:朝阳区 */ - district: string; - /** 街道,如:西大望路甲12-2号楼 */ - road: string; - /** 当前设备网络类型,如:wifi、3g等 */ - netType: string; - /** 当前设备使用移动运营商,如:CMCC等 */ - operatorType: string; - /** 对错误码的描述 */ - errorMessage?: string; - /** 错误码 */ - errorCode?: number; - /** 仅Android支持,wifi设置是否开启,不保证已连接上 */ - isWifiEnabled?: boolean; - /** 仅Android支持,gps设置是否开启,不保证已经连接上 */ - isGpsEnabled?: boolean; - /** 仅Android支持,定位返回的经纬度是否是模拟的结果 */ - isFromMock?: boolean; - /** 仅Android支持,我们使用的是混合定位,具体定位提供者有wifi/lbs/gps" 这三种 */ - provider?: 'wifi' | 'lbs' | 'gps'; - /** 仅Android支持,移动网络是设置是否开启,不保证已经连接上 */ - isMobileEnabled: boolean; -} -/** - * 连续获取当前地理位置信息(持续定位) - * 连续定位接口可以通过持续接收callback的方式,不断获取到用户当前的位置信息。 - * 相比单次定位JSAPI,持续定位可以通过延长定位时间、增加定位次数的方式,不断接收用户位置信息,提高定位精度。可用于对定位精度要求较高以及需要持续更新用户位置的场景。 - * 连续定位功能(需要钉钉v3.4.8及以上版本支持),由以下三个接口组成,分别表示开始连续定位(start)、停止连续定位(stop)、以及获取当前定位状态(status)。 - * @apiName device.geolocation.start - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function start$(params: IDeviceGeolocationStartParams): Promise; -export default start$; diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/start.js b/node_modules/dingtalk-jsapi/api/device/geolocation/start.js deleted file mode 100644 index e89f8da8..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/start.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function start$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.start$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.geolocation.start";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.4.7"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.4.7"},_a)),exports.start$=start$,exports.default=start$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/status.d.ts b/node_modules/dingtalk-jsapi/api/device/geolocation/status.d.ts deleted file mode 100644 index 1da3ed4b..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/status.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 批量查询持续定位JS-API状态 请求参数定义 - * @apiName device.geolocation.status - */ -export interface IDeviceGeolocationStatusParams { - /** 需要查询定位场景id列表 */ - sceneIds: string[]; -} -/** - * 批量查询持续定位JS-API状态 返回结果定义 - * 返回的值是一个数组,每一个元素为一个map,标志了一个定位场景的状态。map的key为场景id,value为其对应的状态 - * @apiName device.geolocation.status - */ -export declare type IDeviceGeolocationStatusResult = Array<{ - /** 场景id以及对应的开启状态,1 表示正在持续定位, 0 表示未开始持续 */ - [sceneId: string]: 0 | 1; -}>; -/** - * 批量查询持续定位JS-API状态 - * @apiName device.geolocation.status - * @supportVersion ios: 3.4.8 android: 3.4.8 - */ -export declare function status$(params: IDeviceGeolocationStatusParams): Promise; -export default status$; diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/status.js b/node_modules/dingtalk-jsapi/api/device/geolocation/status.js deleted file mode 100644 index d82ba020..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/status.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function status$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.status$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.geolocation.status";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.4.8"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.4.8"},_a)),exports.status$=status$,exports.default=status$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/stop.d.ts b/node_modules/dingtalk-jsapi/api/device/geolocation/stop.d.ts deleted file mode 100644 index ab670f08..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/stop.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 关闭持续定位 请求参数定义 - * @apiName device.geolocation.stop - */ -export interface IDeviceGeolocationStopParams { - /** 需要停止定位场景id */ - sceneId: string; -} -/** - * 关闭持续定位 返回结果定义 - * @apiName device.geolocation.stop - */ -export interface IDeviceGeolocationStopResult { - /** 停止的定位场景id,或者null */ - sceneId: string; -} -/** - * 关闭持续定位 - * @apiName device.geolocation.stop - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function stop$(params: IDeviceGeolocationStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/api/device/geolocation/stop.js b/node_modules/dingtalk-jsapi/api/device/geolocation/stop.js deleted file mode 100644 index fb3f56cc..00000000 --- a/node_modules/dingtalk-jsapi/api/device/geolocation/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.geolocation.stop";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.4.7"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.4.7"},_a)),exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/launcher/checkInstalledApps.d.ts b/node_modules/dingtalk-jsapi/api/device/launcher/checkInstalledApps.d.ts deleted file mode 100644 index afc701ef..00000000 --- a/node_modules/dingtalk-jsapi/api/device/launcher/checkInstalledApps.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 检测应用是否安装 请求参数定义 - * @apiName device.launcher.checkInstalledApps - */ -export interface IDeviceLauncherCheckInstalledAppsParams { - /** 你要检测的应用列表 iOS:应用scheme;Android:应用包名 */ - apps: string[]; -} -/** - * 检测应用是否安装 返回结果定义 - * @apiName device.launcher.checkInstalledApps - */ -export interface IDeviceLauncherCheckInstalledAppsResult { - /** 安装过的应用列表 iOS:应用scheme;Android:应用包名 */ - installed: string[]; -} -/** - * 检测应用是否安装 - * iOS平台仅对iOS9之前的系统有效 - * @apiName device.launcher.checkInstalledApps - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function checkInstalledApps$(params: IDeviceLauncherCheckInstalledAppsParams): Promise; -export default checkInstalledApps$; diff --git a/node_modules/dingtalk-jsapi/api/device/launcher/checkInstalledApps.js b/node_modules/dingtalk-jsapi/api/device/launcher/checkInstalledApps.js deleted file mode 100644 index 798cb2fc..00000000 --- a/node_modules/dingtalk-jsapi/api/device/launcher/checkInstalledApps.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkInstalledApps$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkInstalledApps$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.launcher.checkInstalledApps";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.checkInstalledApps$=checkInstalledApps$,exports.default=checkInstalledApps$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/launcher/launchApp.d.ts b/node_modules/dingtalk-jsapi/api/device/launcher/launchApp.d.ts deleted file mode 100644 index f7cf9afd..00000000 --- a/node_modules/dingtalk-jsapi/api/device/launcher/launchApp.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 启动第三方app 请求参数定义 - * @apiName device.launcher.launchApp - */ -export interface IDeviceLauncherLaunchAppParams { - /** iOS:应用scheme;Android:应用包名 */ - app: string; -} -/** - * 启动第三方app 返回结果定义 - * @apiName device.launcher.launchApp - */ -export interface IDeviceLauncherLaunchAppResult { - /** 唤起状态: true 唤起成功 false 唤起失败 */ - result: boolean; -} -/** - * 启动第三方app - * @apiName device.launcher.launchApp - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function launchApp$(params: IDeviceLauncherLaunchAppParams): Promise; -export default launchApp$; diff --git a/node_modules/dingtalk-jsapi/api/device/launcher/launchApp.js b/node_modules/dingtalk-jsapi/api/device/launcher/launchApp.js deleted file mode 100644 index e44790a1..00000000 --- a/node_modules/dingtalk-jsapi/api/device/launcher/launchApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function launchApp$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.launchApp$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.launcher.launchApp";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.launchApp$=launchApp$,exports.default=launchApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/nfc/nfcRead.d.ts b/node_modules/dingtalk-jsapi/api/device/nfc/nfcRead.d.ts deleted file mode 100644 index 03bf3c7a..00000000 --- a/node_modules/dingtalk-jsapi/api/device/nfc/nfcRead.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * nfc读取接口 请求参数定义 - * @apiName device.nfc.nfcRead - */ -export interface IDeviceNfcNfcReadParams { -} -/** - * nfc读取接口 返回结果定义 - * @apiName device.nfc.nfcRead - */ -export interface IDeviceNfcNfcReadResult { - /** NFC芯片的内容 */ - content: string; -} -/** - * nfc读取接口 - * 只支持有nfc功能的android手机 - * 支持NDEF的数据交换格式 - * 使用方法:首先调用此jsapi,然后再把芯片放上去,即可读取,jspai调用一次读取一次信息 - * @apiName device.nfc.nfcRead - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function nfcRead$(params: IDeviceNfcNfcReadParams): Promise; -export default nfcRead$; diff --git a/node_modules/dingtalk-jsapi/api/device/nfc/nfcRead.js b/node_modules/dingtalk-jsapi/api/device/nfc/nfcRead.js deleted file mode 100644 index cea078dc..00000000 --- a/node_modules/dingtalk-jsapi/api/device/nfc/nfcRead.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nfcRead$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.nfcRead$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.nfc.nfcRead";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.11.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.11.0"},_a)),exports.nfcRead$=nfcRead$,exports.default=nfcRead$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/nfc/nfcStop.d.ts b/node_modules/dingtalk-jsapi/api/device/nfc/nfcStop.d.ts deleted file mode 100644 index eb6a98f3..00000000 --- a/node_modules/dingtalk-jsapi/api/device/nfc/nfcStop.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 停止NFC功能的读或写 请求参数定义 - * @apiName device.nfc.nfcStop - */ -export interface IDeviceNfcNfcStopParams { - [key: string]: any; -} -/** - * 停止NFC功能的读或写 返回结果定义 - * @apiName device.nfc.nfcStop - */ -export interface IDeviceNfcNfcStopResult { - [key: string]: any; -} -/** - * 停止NFC功能的读或写 - * @apiName device.nfc.nfcStop - * @supportVersion ios: 4.3.9 android: 4.3.9 - */ -export declare function nfcStop$(params: IDeviceNfcNfcStopParams): Promise; -export default nfcStop$; diff --git a/node_modules/dingtalk-jsapi/api/device/nfc/nfcStop.js b/node_modules/dingtalk-jsapi/api/device/nfc/nfcStop.js deleted file mode 100644 index 30cffb54..00000000 --- a/node_modules/dingtalk-jsapi/api/device/nfc/nfcStop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nfcStop$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.nfcStop$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.nfc.nfcStop";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.3.9"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.3.9"},_a)),exports.nfcStop$=nfcStop$,exports.default=nfcStop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/nfc/nfcWrite.d.ts b/node_modules/dingtalk-jsapi/api/device/nfc/nfcWrite.d.ts deleted file mode 100644 index c48b7b04..00000000 --- a/node_modules/dingtalk-jsapi/api/device/nfc/nfcWrite.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * nfc写接口 请求参数定义 - * @apiName device.nfc.nfcWrite - */ -export interface IDeviceNfcNfcWriteParams { - /** NFC芯片的内容 */ - content: string; -} -/** - * nfc写接口 返回结果定义 - * @apiName device.nfc.nfcWrite - */ -export interface IDeviceNfcNfcWriteResult { -} -/** - * nfc写接口 - * 只支持有nfc功能的android手机 - * 支持NDEF的数据交换格式 - * 使用方法:首先调用此jsapi,然后再把芯片放上去,即可写入,jsapi调用一次写一次内容 - * @apiName device.nfc.nfcWrite - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function nfcWrite$(params: IDeviceNfcNfcWriteParams): Promise; -export default nfcWrite$; diff --git a/node_modules/dingtalk-jsapi/api/device/nfc/nfcWrite.js b/node_modules/dingtalk-jsapi/api/device/nfc/nfcWrite.js deleted file mode 100644 index 0cb9143c..00000000 --- a/node_modules/dingtalk-jsapi/api/device/nfc/nfcWrite.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nfcWrite$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.nfcWrite$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.nfc.nfcWrite";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.11.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.11.0"},_a)),exports.nfcWrite$=nfcWrite$,exports.default=nfcWrite$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/actionSheet.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/actionSheet.d.ts deleted file mode 100644 index 956a609f..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/actionSheet.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * ActionSheet控件 请求参数定义 - * @apiName device.notification.actionSheet - */ -export interface IDeviceNotificationActionSheetParams { - /** 标题 */ - title: string; - /** 取消按钮文本 */ - cancelButton: string; - /** 其他按钮列表 */ - otherButtons: string[]; -} -/** - * ActionSheet控件 返回结果定义 - * @apiName device.notification.actionSheet - */ -export interface IDeviceNotificationActionSheetResult { - /** 被点击按钮的索引值,Number,从0开始, 取消按钮为-1 */ - buttonIndex: number; -} -/** - * ActionSheet控件 单选列表 - * @apiName device.notification.actionSheet - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function actionSheet$(params: IDeviceNotificationActionSheetParams): Promise; -export default actionSheet$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/actionSheet.js b/node_modules/dingtalk-jsapi/api/device/notification/actionSheet.js deleted file mode 100644 index 677b1d95..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/actionSheet.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function actionSheet$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.actionSheet$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.notification.actionSheet";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.actionSheet$=actionSheet$,exports.default=actionSheet$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/alert.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/alert.d.ts deleted file mode 100644 index a125c340..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/alert.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 弹窗alert 请求参数定义 - * @apiName device.notification.alert - */ -export interface IDeviceNotificationAlertParams { - /** 消息内容 */ - message?: string; - /** 弹窗标题 */ - title?: string; - /** 按钮名称 */ - buttonName?: string; -} -/** - * 弹窗alert 返回结果定义, 将在点击button之后触发 - * @apiName device.notification.alert - */ -export interface IDeviceNotificationAlertResult { -} -/** - * 弹窗alert - * @apiName device.notification.alert - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function alert$(params: IDeviceNotificationAlertParams): Promise; -export default alert$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/alert.js b/node_modules/dingtalk-jsapi/api/device/notification/alert.js deleted file mode 100644 index 93b1ba97..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/alert.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function alert$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.alert$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="device.notification.alert",paramsDeal=apiHelper_1.genDefaultParamsDealFn({title:"",buttonName:"确定"});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.alert$=alert$,exports.default=alert$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/confirm.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/confirm.d.ts deleted file mode 100644 index ff037b0f..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/confirm.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * 弹窗confirm 请求参数定义 - * @apiName device.notification.confirm - */ -export interface IDeviceNotificationConfirmParams { - /** 消息说明 */ - message?: string; - /** 标题 */ - title?: string; - /** 按钮名称 */ - buttonLabels?: string[]; -} -/** - * 弹窗confirm 返回结果定义 - * @apiName device.notification.confirm - */ -export interface IDeviceNotificationConfirmResult { - /** 被点击按钮的索引值,Number类型,从0开始 */ - buttonIndex: number; -} -/** - * 弹窗confirm - * @apiName device.notification.confirm - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function confirm$(params: IDeviceNotificationConfirmParams): Promise; -export default confirm$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/confirm.js b/node_modules/dingtalk-jsapi/api/device/notification/confirm.js deleted file mode 100644 index 876631c9..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/confirm.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function confirm$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.confirm$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="device.notification.confirm",paramsDeal=apiHelper_1.genDefaultParamsDealFn({title:"",buttonLabels:["确定","取消"]});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.confirm$=confirm$,exports.default=confirm$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/extendModal.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/extendModal.d.ts deleted file mode 100644 index ba6fe4ce..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/extendModal.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * 弹层,支持多张图片 请求参数定义 - * @apiName device.notification.extendModal - */ -export interface IDeviceNotificationExtendModalParams { - /** 浮层元素数组,每一个item为一个包含image、title、content内容的对象 */ - cells: Array<{ - /** 图片地址 */ - image: string; - /** 标题 */ - title: string; - /** 文本内容 */ - content: string; - }>; - /** 最多两个按钮,至少有一个按钮。 */ - buttonLabels: string[]; -} -/** - * 弹层,支持多张图片 返回结果定义 - * @apiName device.notification.extendModal - */ -export interface IDeviceNotificationExtendModalResult { - /** 被点击按钮的索引值,Number,从0开始 */ - buttonIndex: number; -} -/** - * 弹层,支持多张图片 - * 增强版modal弹浮层,支持自定义每一个Cell的内容 - * @apiName device.notification.extendModal - * @supportVersion ios: 2.5.0 android: 2.5.0 - */ -export declare function extendModal$(params: IDeviceNotificationExtendModalParams): Promise; -export default extendModal$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/extendModal.js b/node_modules/dingtalk-jsapi/api/device/notification/extendModal.js deleted file mode 100644 index 0f09c001..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/extendModal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function extendModal$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.extendModal$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.notification.extendModal";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.5.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.5.0"},_a)),exports.extendModal$=extendModal$,exports.default=extendModal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/hidePreloader.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/hidePreloader.d.ts deleted file mode 100644 index 6bf84d9a..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/hidePreloader.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * 隐藏浮层 请求参数定义 - * @apiName device.notification.hidePreloader - */ -export interface IDeviceNotificationHidePreloaderParams { -} -/** - * 隐藏浮层 返回结果定义 - * @apiName device.notification.hidePreloader - */ -export interface IDeviceNotificationHidePreloaderResult { -} -/** - * 隐藏浮层 - * @apiName device.notification.hidePreloader - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function hidePreloader$(params: IDeviceNotificationHidePreloaderParams): Promise; -export default hidePreloader$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/hidePreloader.js b/node_modules/dingtalk-jsapi/api/device/notification/hidePreloader.js deleted file mode 100644 index ccdf3fc9..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/hidePreloader.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hidePreloader$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.hidePreloader$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.notification.hidePreloader";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.hidePreloader$=hidePreloader$,exports.default=hidePreloader$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/modal.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/modal.d.ts deleted file mode 100644 index b27d1da7..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/modal.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * 弹浮层 请求参数定义 - * @apiName device.notification.modal - */ -export interface IDeviceNotificationModalParams { - /** 图片地址 */ - image?: string; - /** 图片地址数组。此参数与image互斥,冲突时优先使用此参数。 */ - banner?: string[]; - /** 标题 */ - title?: string; - /** 文本内容 */ - content?: string; - /** 其他按钮列表 */ - buttonLabels?: string[]; -} -/** - * 弹浮层 返回结果定义 - * @apiName device.notification.modal - */ -export interface IDeviceNotificationModalResult { - /** 被点击按钮的索引值,Number,从0开始 */ - buttonIndex: number; -} -/** - * 弹浮层 - * @apiName device.notification.modal - * @supportVersion pc: 4.2.5 ios: 2.4.0 android: 2.4.0 - */ -export declare function modal$(params: IDeviceNotificationModalParams): Promise; -export default modal$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/modal.js b/node_modules/dingtalk-jsapi/api/device/notification/modal.js deleted file mode 100644 index caac64fd..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/modal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function modal$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.modal$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.notification.modal";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.2.5"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.modal$=modal$,exports.default=modal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/prompt.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/prompt.d.ts deleted file mode 100644 index 55a51136..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/prompt.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * 弹窗prompt 请求参数定义 - * @apiName device.notification.prompt - */ -export interface IDeviceNotificationPromptParams { - /** 消息内容 */ - message: string; - /** 标题 */ - title?: string; - /** 默认提示 */ - defaultText?: string; - /** 按钮名称 */ - buttonLabels?: string[]; -} -/** - * 弹窗prompt 返回结果定义 - * @apiName device.notification.prompt - */ -export interface IDeviceNotificationPromptResult { - /** 被点击按钮的索引值,Number类型,从0开始 */ - buttonIndex: number; - /** 输入的值 */ - value: string; -} -/** - * 弹窗prompt - * @apiName device.notification.prompt - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function prompt$(params: IDeviceNotificationPromptParams): Promise; -export default prompt$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/prompt.js b/node_modules/dingtalk-jsapi/api/device/notification/prompt.js deleted file mode 100644 index fdb51256..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/prompt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function prompt$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.prompt$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="device.notification.prompt",paramsDeal=apiHelper_1.genDefaultParamsDealFn({title:"",buttonLabels:["确定","取消"]});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.7.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.prompt$=prompt$,exports.default=prompt$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/showPreloader.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/showPreloader.d.ts deleted file mode 100644 index 70cdda15..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/showPreloader.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 显示浮层 请求参数定义 - * @apiName device.notification.showPreloader - */ -export interface IDeviceNotificationShowPreloaderParams { - /** loading显示的字符,空表示不显示文字 */ - text?: string; - /** 是否显示icon,默认true */ - showIcon?: boolean; -} -/** - * 显示浮层 返回结果定义 - * @apiName device.notification.showPreloader - */ -export interface IDeviceNotificationShowPreloaderResult { -} -/** - * 显示浮层 - * (显示浮层,请和hidePreloader配对使用) - * @apiName device.notification.showPreloader - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function showPreloader$(params: IDeviceNotificationShowPreloaderParams): Promise; -export default showPreloader$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/showPreloader.js b/node_modules/dingtalk-jsapi/api/device/notification/showPreloader.js deleted file mode 100644 index a26ee85e..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/showPreloader.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showPreloader$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.showPreloader$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="device.notification.showPreloader",paramsDeal=apiHelper_1.genDefaultParamsDealFn({text:"加载中...",showIcon:!0});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.showPreloader$=showPreloader$,exports.default=showPreloader$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/toast.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/toast.d.ts deleted file mode 100644 index ca673293..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/toast.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Toast 请求参数定义 - * @apiName device.notification.toast - */ -export interface IDeviceNotificationToastParams { - /** 移动端 icon样式,有success和error,默认为空 0.0.2, PC端参数则代表样式类型 */ - icon?: 'success' | 'error'; - /** @deprecated PC端参数特有 toast的类型 alert, success, error, warning, information, confirm */ - type?: 'alert' | 'success' | 'error' | 'warning' | 'information'; - /** 提示信息 */ - text?: string; - /** 显示持续时间,单位秒,默认按系统规范[android只有两种(<=2s >2s)] */ - duration?: number; - /** 延迟显示,单位秒,默认0 */ - delay?: number; -} -/** - * Toast 返回结果定义 - * @apiName device.notification.toast - */ -export interface IDeviceNotificationToastResult { -} -/** - * Toast - * @apiName device.notification.toast - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function toast$(params: IDeviceNotificationToastParams): Promise; -export default toast$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/toast.js b/node_modules/dingtalk-jsapi/api/device/notification/toast.js deleted file mode 100644 index 84dfcd03..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/toast.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function toast$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.toast$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="device.notification.toast",paramsDeal=apiHelper_1.genDefaultParamsDealFn({text:"toast",duration:3,delay:0});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"2.5.0",paramsDeal:function(a){return a.icon&&!a.type&&("success"===a.icon?a.type="success":"error"===a.icon&&(a.type="error")),a}},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.toast$=toast$,exports.default=toast$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/notification/vibrate.d.ts b/node_modules/dingtalk-jsapi/api/device/notification/vibrate.d.ts deleted file mode 100644 index 57ffe3b1..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/vibrate.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 震动 请求参数定义 - * @apiName device.notification.vibrate - */ -export interface IDeviceNotificationVibrateParams { - /** 震动时间,android可配置 iOS忽略 */ - duration?: number; -} -/** - * 震动 返回结果定义 - * @apiName device.notification.vibrate - */ -export interface IDeviceNotificationVibrateResult { -} -/** - * 震动 - * @apiName device.notification.vibrate - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function vibrate$(params: IDeviceNotificationVibrateParams): Promise; -export default vibrate$; diff --git a/node_modules/dingtalk-jsapi/api/device/notification/vibrate.js b/node_modules/dingtalk-jsapi/api/device/notification/vibrate.js deleted file mode 100644 index 72bd028f..00000000 --- a/node_modules/dingtalk-jsapi/api/device/notification/vibrate.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function vibrate$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.vibrate$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="device.notification.vibrate",paramsDeal=apiHelper_1.genDefaultParamsDealFn({duration:300});ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:paramsDeal},_a)),exports.vibrate$=vibrate$,exports.default=vibrate$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/screen/getScreenBrightness.d.ts b/node_modules/dingtalk-jsapi/api/device/screen/getScreenBrightness.d.ts deleted file mode 100644 index 315872f7..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/getScreenBrightness.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 获取屏幕亮度 请求参数定义 - * @apiName device.screen.getScreenBrightness - */ -export interface IDeviceScreenGetScreenBrightnessParams extends ICommonAPIParams { -} -/** - * 获取屏幕亮度 返回结果定义 - * @apiName device.screen.getScreenBrightness - */ -export interface IDeviceScreenGetScreenBrightnessResult { - brightness: number; -} -/** - * 获取屏幕亮度 - * @apiName device.screen.getScreenBrightness - */ -export declare function getScreenBrightness$(params: IDeviceScreenGetScreenBrightnessParams): Promise; -export default getScreenBrightness$; diff --git a/node_modules/dingtalk-jsapi/api/device/screen/getScreenBrightness.js b/node_modules/dingtalk-jsapi/api/device/screen/getScreenBrightness.js deleted file mode 100644 index bef50fe3..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/getScreenBrightness.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getScreenBrightness$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getScreenBrightness$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.screen.getScreenBrightness";ddSdk_1.ddSdk.setAPI(apiName,{}),exports.getScreenBrightness$=getScreenBrightness$,exports.default=getScreenBrightness$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/screen/insetAdjust.d.ts b/node_modules/dingtalk-jsapi/api/device/screen/insetAdjust.d.ts deleted file mode 100644 index a724457f..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/insetAdjust.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * iOS11系统数上,支持从H5端,动态调整调整webview的contentInsetAdjustmentBehavior。影响iPhone X等场景H5页面布局与安全区域 请求参数定义 - * @apiName device.screen.insetAdjust - */ -export interface IDeviceScreenInsetAdjustParams { - /** 0-自动(默认); 1-特殊case, JsApi场景同0; 2-不自动适配安全区域,全屏布局; 3-自动适配安全区域 */ - contentInsetAdjustmentBehavior: number; -} -/** - * iOS11系统数上,支持从H5端,动态调整调整webview的contentInsetAdjustmentBehavior。影响iPhone X等场景H5页面布局与安全区域 返回结果定义 - * @apiName device.screen.insetAdjust - */ -export interface IDeviceScreenInsetAdjustResult { - [key: string]: any; -} -/** - * iOS11系统数上,支持从H5端,动态调整调整webview的contentInsetAdjustmentBehavior。影响iPhone X等场景H5页面布局与安全区域 - * @apiName device.screen.insetAdjust - * @supportVersion ios: 4.6.18 - */ -export declare function insetAdjust$(params: IDeviceScreenInsetAdjustParams): Promise; -export default insetAdjust$; diff --git a/node_modules/dingtalk-jsapi/api/device/screen/insetAdjust.js b/node_modules/dingtalk-jsapi/api/device/screen/insetAdjust.js deleted file mode 100644 index afc04c18..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/insetAdjust.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function insetAdjust$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.insetAdjust$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.screen.insetAdjust";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.18"},_a)),exports.insetAdjust$=insetAdjust$,exports.default=insetAdjust$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/screen/isScreenReaderEnabled.d.ts b/node_modules/dingtalk-jsapi/api/device/screen/isScreenReaderEnabled.d.ts deleted file mode 100644 index 93549b65..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/isScreenReaderEnabled.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 是否开启无障碍模式 请求参数定义 - * @apiName device.screen.isScreenReaderEnabled - */ -export interface IDeviceScreenIsScreenReaderEnabledParams extends ICommonAPIParams { -} -/** - * 是否开启无障碍模式 返回结果定义 - * @apiName device.screen.isScreenReaderEnabled - */ -export interface IDeviceScreenIsScreenReaderEnabledResult { - screenReaderEnabled: boolean; -} -/** - * 是否开启无障碍模式 - * @apiName device.screen.isScreenReaderEnabled - */ -export declare function isScreenReaderEnabled$(params: IDeviceScreenIsScreenReaderEnabledParams): Promise; -export default isScreenReaderEnabled$; diff --git a/node_modules/dingtalk-jsapi/api/device/screen/isScreenReaderEnabled.js b/node_modules/dingtalk-jsapi/api/device/screen/isScreenReaderEnabled.js deleted file mode 100644 index 81b59b93..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/isScreenReaderEnabled.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isScreenReaderEnabled$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isScreenReaderEnabled$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.screen.isScreenReaderEnabled";ddSdk_1.ddSdk.setAPI(apiName,{}),exports.isScreenReaderEnabled$=isScreenReaderEnabled$,exports.default=isScreenReaderEnabled$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/screen/resetView.d.ts b/node_modules/dingtalk-jsapi/api/device/screen/resetView.d.ts deleted file mode 100644 index 5a3e0c1c..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/resetView.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 重置旋转状态,并在恢复导航栏 请求参数定义 - * @apiName device.screen.resetView - */ -export interface IDeviceScreenResetViewParams { - [key: string]: any; -} -/** - * 重置旋转状态,并在恢复导航栏 返回结果定义 - * @apiName device.screen.resetView - */ -export interface IDeviceScreenResetViewResult { - [key: string]: any; -} -/** - * 重置旋转状态,并在恢复导航栏 - * @apiName device.screen.resetView - * @supportVersion android: 4.0 - */ -export declare function resetView$(params: IDeviceScreenResetViewParams): Promise; -export default resetView$; diff --git a/node_modules/dingtalk-jsapi/api/device/screen/resetView.js b/node_modules/dingtalk-jsapi/api/device/screen/resetView.js deleted file mode 100644 index 7a015850..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/resetView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resetView$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.resetView$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.screen.resetView";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.0.0"},_a)),exports.resetView$=resetView$,exports.default=resetView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/screen/rotateView.d.ts b/node_modules/dingtalk-jsapi/api/device/screen/rotateView.d.ts deleted file mode 100644 index 7608965a..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/rotateView.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 旋转WebView,并在旋转的同时隐藏导航栏 请求参数定义 - * @apiName device.screen.rotateView - */ -export interface IDeviceScreenRotateViewParams { - [key: string]: any; -} -/** - * 旋转WebView,并在旋转的同时隐藏导航栏 返回结果定义 - * @apiName device.screen.rotateView - */ -export interface IDeviceScreenRotateViewResult { - [key: string]: any; -} -/** - * 旋转WebView,并在旋转的同时隐藏导航栏 - * @apiName device.screen.rotateView - * @supportVersion android: 4.0 - */ -export declare function rotateView$(params: IDeviceScreenRotateViewParams): Promise; -export default rotateView$; diff --git a/node_modules/dingtalk-jsapi/api/device/screen/rotateView.js b/node_modules/dingtalk-jsapi/api/device/screen/rotateView.js deleted file mode 100644 index a0d42fdb..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/rotateView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function rotateView$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.rotateView$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.screen.rotateView";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.0.0"},_a)),exports.rotateView$=rotateView$,exports.default=rotateView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/device/screen/setScreenBrightness.d.ts b/node_modules/dingtalk-jsapi/api/device/screen/setScreenBrightness.d.ts deleted file mode 100644 index 3d75f1c4..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/setScreenBrightness.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../../constant/types'; -/** - * 设置屏幕亮度 请求参数定义 - * @apiName device.screen.setScreenBrightness - */ -export interface IDeviceScreenSetScreenBrightnessParams extends ICommonAPIParams { - brightness: number; -} -/** - * 设置屏幕亮度 返回结果定义 - * @apiName device.screen.setScreenBrightness - */ -export interface IDeviceScreenSetScreenBrightnessResult { -} -/** - * 设置屏幕亮度 - * @apiName device.screen.setScreenBrightness - */ -export declare function setScreenBrightness$(params: IDeviceScreenSetScreenBrightnessParams): Promise; -export default setScreenBrightness$; diff --git a/node_modules/dingtalk-jsapi/api/device/screen/setScreenBrightness.js b/node_modules/dingtalk-jsapi/api/device/screen/setScreenBrightness.js deleted file mode 100644 index 8a7a0eaf..00000000 --- a/node_modules/dingtalk-jsapi/api/device/screen/setScreenBrightness.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setScreenBrightness$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setScreenBrightness$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="device.screen.setScreenBrightness";ddSdk_1.ddSdk.setAPI(apiName,{}),exports.setScreenBrightness$=setScreenBrightness$,exports.default=setScreenBrightness$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/index.d.ts b/node_modules/dingtalk-jsapi/api/index.d.ts deleted file mode 100644 index 8d77ecf9..00000000 --- a/node_modules/dingtalk-jsapi/api/index.d.ts +++ /dev/null @@ -1,1493 +0,0 @@ -import { beaconPicker$ as biz_ATMBle_beaconPicker } from './biz/ATMBle/beaconPicker'; -export { IBizATMBleBeaconPickerParams, IBizATMBleBeaconPickerResult } from './biz/ATMBle/beaconPicker'; -import { detectFace$ as biz_ATMBle_detectFace } from './biz/ATMBle/detectFace'; -export { IBizATMBleDetectFaceParams, IBizATMBleDetectFaceResult } from './biz/ATMBle/detectFace'; -import { detectFaceFullScreen$ as biz_ATMBle_detectFaceFullScreen } from './biz/ATMBle/detectFaceFullScreen'; -export { IBizATMBleDetectFaceFullScreenParams, IBizATMBleDetectFaceFullScreenResult } from './biz/ATMBle/detectFaceFullScreen'; -import { exclusiveLiveCheck$ as biz_ATMBle_exclusiveLiveCheck } from './biz/ATMBle/exclusiveLiveCheck'; -export { IBizATMBleExclusiveLiveCheckParams, IBizATMBleExclusiveLiveCheckResult } from './biz/ATMBle/exclusiveLiveCheck'; -import { faceManager$ as biz_ATMBle_faceManager } from './biz/ATMBle/faceManager'; -export { IBizATMBleFaceManagerParams, IBizATMBleFaceManagerResult } from './biz/ATMBle/faceManager'; -import { punchModePicker$ as biz_ATMBle_punchModePicker } from './biz/ATMBle/punchModePicker'; -export { IBizATMBlePunchModePickerParams, IBizATMBlePunchModePickerResult } from './biz/ATMBle/punchModePicker'; -import { bindAlipay$ as biz_alipay_bindAlipay } from './biz/alipay/bindAlipay'; -export { IBizAlipayBindAlipayParams, IBizAlipayBindAlipayResult } from './biz/alipay/bindAlipay'; -import { openAuth$ as biz_alipay_openAuth } from './biz/alipay/openAuth'; -export { IBizAlipayOpenAuthParams, IBizAlipayOpenAuthResult } from './biz/alipay/openAuth'; -import { pay$ as biz_alipay_pay } from './biz/alipay/pay'; -export { IBizAlipayPayParams, IBizAlipayPayResult } from './biz/alipay/pay'; -import { getLBSWua$ as biz_attend_getLBSWua } from './biz/attend/getLBSWua'; -export { IBizAttendGetLBSWuaParams, IBizAttendGetLBSWuaResult } from './biz/attend/getLBSWua'; -import { openAccountPwdLoginPage$ as biz_auth_openAccountPwdLoginPage } from './biz/auth/openAccountPwdLoginPage'; -export { IBizAuthOpenAccountPwdLoginPageParams, IBizAuthOpenAccountPwdLoginPageResult } from './biz/auth/openAccountPwdLoginPage'; -import { requestAuthInfo$ as biz_auth_requestAuthInfo } from './biz/auth/requestAuthInfo'; -export { IBizAuthRequestAuthInfoParams, IBizAuthRequestAuthInfoResult } from './biz/auth/requestAuthInfo'; -import { chooseDateTime$ as biz_calendar_chooseDateTime } from './biz/calendar/chooseDateTime'; -export { IBizCalendarChooseDateTimeParams, IBizCalendarChooseDateTimeResult } from './biz/calendar/chooseDateTime'; -import { chooseHalfDay$ as biz_calendar_chooseHalfDay } from './biz/calendar/chooseHalfDay'; -export { IBizCalendarChooseHalfDayParams, IBizCalendarChooseHalfDayResult } from './biz/calendar/chooseHalfDay'; -import { chooseInterval$ as biz_calendar_chooseInterval } from './biz/calendar/chooseInterval'; -export { IBizCalendarChooseIntervalParams, IBizCalendarChooseIntervalResult } from './biz/calendar/chooseInterval'; -import { chooseOneDay$ as biz_calendar_chooseOneDay } from './biz/calendar/chooseOneDay'; -export { IBizCalendarChooseOneDayParams, IBizCalendarChooseOneDayResult } from './biz/calendar/chooseOneDay'; -import { chooseConversationByCorpId$ as biz_chat_chooseConversationByCorpId } from './biz/chat/chooseConversationByCorpId'; -export { IBizChatChooseConversationByCorpIdParams, IBizChatChooseConversationByCorpIdResult } from './biz/chat/chooseConversationByCorpId'; -import { collectSticker$ as biz_chat_collectSticker } from './biz/chat/collectSticker'; -export { IBizChatCollectStickerParams, IBizChatCollectStickerResult } from './biz/chat/collectSticker'; -import { createSceneGroup$ as biz_chat_createSceneGroup } from './biz/chat/createSceneGroup'; -export { IBizChatCreateSceneGroupParams, IBizChatCreateSceneGroupResult } from './biz/chat/createSceneGroup'; -import { getRealmCid$ as biz_chat_getRealmCid } from './biz/chat/getRealmCid'; -export { IBizChatGetRealmCidParams, IBizChatGetRealmCidResult } from './biz/chat/getRealmCid'; -import { locationChatMessage$ as biz_chat_locationChatMessage } from './biz/chat/locationChatMessage'; -export { IBizChatLocationChatMessageParams, IBizChatLocationChatMessageResult } from './biz/chat/locationChatMessage'; -import { openSingleChat$ as biz_chat_openSingleChat } from './biz/chat/openSingleChat'; -export { IBizChatOpenSingleChatParams, IBizChatOpenSingleChatResult } from './biz/chat/openSingleChat'; -import { pickConversation$ as biz_chat_pickConversation } from './biz/chat/pickConversation'; -export { IBizChatPickConversationParams, IBizChatPickConversationResult } from './biz/chat/pickConversation'; -import { sendEmotion$ as biz_chat_sendEmotion } from './biz/chat/sendEmotion'; -export { IBizChatSendEmotionParams, IBizChatSendEmotionResult } from './biz/chat/sendEmotion'; -import { toConversation$ as biz_chat_toConversation } from './biz/chat/toConversation'; -export { IBizChatToConversationParams, IBizChatToConversationResult } from './biz/chat/toConversation'; -import { toConversationByOpenConversationId$ as biz_chat_toConversationByOpenConversationId } from './biz/chat/toConversationByOpenConversationId'; -export { IBizChatToConversationByOpenConversationIdParams, IBizChatToConversationByOpenConversationIdResult } from './biz/chat/toConversationByOpenConversationId'; -import { setData$ as biz_clipboardData_setData } from './biz/clipboardData/setData'; -export { IBizClipboardDataSetDataParams, IBizClipboardDataSetDataResult } from './biz/clipboardData/setData'; -import { createCloudCall$ as biz_conference_createCloudCall } from './biz/conference/createCloudCall'; -export { IBizConferenceCreateCloudCallParams, IBizConferenceCreateCloudCallResult } from './biz/conference/createCloudCall'; -import { getCloudCallInfo$ as biz_conference_getCloudCallInfo } from './biz/conference/getCloudCallInfo'; -export { IBizConferenceGetCloudCallInfoParams, IBizConferenceGetCloudCallInfoResult } from './biz/conference/getCloudCallInfo'; -import { getCloudCallList$ as biz_conference_getCloudCallList } from './biz/conference/getCloudCallList'; -export { IBizConferenceGetCloudCallListParams, IBizConferenceGetCloudCallListResult } from './biz/conference/getCloudCallList'; -import { videoConfCall$ as biz_conference_videoConfCall } from './biz/conference/videoConfCall'; -export { IBizConferenceVideoConfCallParams, IBizConferenceVideoConfCallResult } from './biz/conference/videoConfCall'; -import { choose$ as biz_contact_choose } from './biz/contact/choose'; -export { IBizContactChooseParams, IBizContactChooseResult } from './biz/contact/choose'; -import { chooseMobileContacts$ as biz_contact_chooseMobileContacts } from './biz/contact/chooseMobileContacts'; -export { IBizContactChooseMobileContactsParams, IBizContactChooseMobileContactsResult } from './biz/contact/chooseMobileContacts'; -import { complexPicker$ as biz_contact_complexPicker } from './biz/contact/complexPicker'; -export { IBizContactComplexPickerParams, IBizContactComplexPickerResult } from './biz/contact/complexPicker'; -import { createGroup$ as biz_contact_createGroup } from './biz/contact/createGroup'; -export { IBizContactCreateGroupParams, IBizContactCreateGroupResult } from './biz/contact/createGroup'; -import { departmentsPicker$ as biz_contact_departmentsPicker } from './biz/contact/departmentsPicker'; -export { IBizContactDepartmentsPickerParams, IBizContactDepartmentsPickerResult } from './biz/contact/departmentsPicker'; -import { externalComplexPicker$ as biz_contact_externalComplexPicker } from './biz/contact/externalComplexPicker'; -export { IBizContactExternalComplexPickerParams, IBizContactExternalComplexPickerResult } from './biz/contact/externalComplexPicker'; -import { externalEditForm$ as biz_contact_externalEditForm } from './biz/contact/externalEditForm'; -export { IBizContactExternalEditFormParams, IBizContactExternalEditFormResult } from './biz/contact/externalEditForm'; -import { rolesPicker$ as biz_contact_rolesPicker } from './biz/contact/rolesPicker'; -export { IBizContactRolesPickerParams, IBizContactRolesPickerResult } from './biz/contact/rolesPicker'; -import { setRule$ as biz_contact_setRule } from './biz/contact/setRule'; -export { IBizContactSetRuleParams, IBizContactSetRuleResult } from './biz/contact/setRule'; -import { chooseSpaceDir$ as biz_cspace_chooseSpaceDir } from './biz/cspace/chooseSpaceDir'; -export { IBizCspaceChooseSpaceDirParams, IBizCspaceChooseSpaceDirResult } from './biz/cspace/chooseSpaceDir'; -import { delete$ as biz_cspace_delete } from './biz/cspace/delete'; -export { IBizCspaceDeleteParams, IBizCspaceDeleteResult } from './biz/cspace/delete'; -import { preview$ as biz_cspace_preview } from './biz/cspace/preview'; -export { IBizCspacePreviewParams, IBizCspacePreviewResult } from './biz/cspace/preview'; -import { previewDentryImages$ as biz_cspace_previewDentryImages } from './biz/cspace/previewDentryImages'; -export { IBizCspacePreviewDentryImagesParams, IBizCspacePreviewDentryImagesResult } from './biz/cspace/previewDentryImages'; -import { saveFile$ as biz_cspace_saveFile } from './biz/cspace/saveFile'; -export { IBizCspaceSaveFileParams, IBizCspaceSaveFileResult } from './biz/cspace/saveFile'; -import { choose$ as biz_customContact_choose } from './biz/customContact/choose'; -export { IBizCustomContactChooseParams, IBizCustomContactChooseResult } from './biz/customContact/choose'; -import { multipleChoose$ as biz_customContact_multipleChoose } from './biz/customContact/multipleChoose'; -export { IBizCustomContactMultipleChooseParams, IBizCustomContactMultipleChooseResult } from './biz/customContact/multipleChoose'; -import { rsa$ as biz_data_rsa } from './biz/data/rsa'; -export { IBizDataRsaParams, IBizDataRsaResult } from './biz/data/rsa'; -import { create$ as biz_ding_create } from './biz/ding/create'; -export { IBizDingCreateParams, IBizDingCreateResult } from './biz/ding/create'; -import { post$ as biz_ding_post } from './biz/ding/post'; -export { IBizDingPostParams, IBizDingPostResult } from './biz/ding/post'; -import { finishMiniCourseByRecordId$ as biz_edu_finishMiniCourseByRecordId } from './biz/edu/finishMiniCourseByRecordId'; -export { IBizEduFinishMiniCourseByRecordIdParams, IBizEduFinishMiniCourseByRecordIdResult } from './biz/edu/finishMiniCourseByRecordId'; -import { getMiniCourseDraftList$ as biz_edu_getMiniCourseDraftList } from './biz/edu/getMiniCourseDraftList'; -export { IBizEduGetMiniCourseDraftListParams, IBizEduGetMiniCourseDraftListResult } from './biz/edu/getMiniCourseDraftList'; -import { joinClassroom$ as biz_edu_joinClassroom } from './biz/edu/joinClassroom'; -export { IBizEduJoinClassroomParams, IBizEduJoinClassroomResult } from './biz/edu/joinClassroom'; -import { makeMiniCourse$ as biz_edu_makeMiniCourse } from './biz/edu/makeMiniCourse'; -export { IBizEduMakeMiniCourseParams, IBizEduMakeMiniCourseResult } from './biz/edu/makeMiniCourse'; -import { newMsgNotificationStatus$ as biz_edu_newMsgNotificationStatus } from './biz/edu/newMsgNotificationStatus'; -export { IBizEduNewMsgNotificationStatusParams, IBizEduNewMsgNotificationStatusResult } from './biz/edu/newMsgNotificationStatus'; -import { startAuth$ as biz_edu_startAuth } from './biz/edu/startAuth'; -export { IBizEduStartAuthParams, IBizEduStartAuthResult } from './biz/edu/startAuth'; -import { tokenFaceImg$ as biz_edu_tokenFaceImg } from './biz/edu/tokenFaceImg'; -export { IBizEduTokenFaceImgParams, IBizEduTokenFaceImgResult } from './biz/edu/tokenFaceImg'; -import { notifyWeex$ as biz_event_notifyWeex } from './biz/event/notifyWeex'; -export { IBizEventNotifyWeexParams, IBizEventNotifyWeexResult } from './biz/event/notifyWeex'; -import { downloadFile$ as biz_file_downloadFile } from './biz/file/downloadFile'; -export { IBizFileDownloadFileParams, IBizFileDownloadFileResult } from './biz/file/downloadFile'; -import { fetchData$ as biz_intent_fetchData } from './biz/intent/fetchData'; -export { IBizIntentFetchDataParams, IBizIntentFetchDataResult } from './biz/intent/fetchData'; -import { bind$ as biz_iot_bind } from './biz/iot/bind'; -export { IBizIotBindParams, IBizIotBindResult } from './biz/iot/bind'; -import { bindMeetingRoom$ as biz_iot_bindMeetingRoom } from './biz/iot/bindMeetingRoom'; -export { IBizIotBindMeetingRoomParams, IBizIotBindMeetingRoomResult } from './biz/iot/bindMeetingRoom'; -import { getDeviceProperties$ as biz_iot_getDeviceProperties } from './biz/iot/getDeviceProperties'; -export { IBizIotGetDevicePropertiesParams, IBizIotGetDevicePropertiesResult } from './biz/iot/getDeviceProperties'; -import { invokeThingService$ as biz_iot_invokeThingService } from './biz/iot/invokeThingService'; -export { IBizIotInvokeThingServiceParams, IBizIotInvokeThingServiceResult } from './biz/iot/invokeThingService'; -import { queryMeetingRoomList$ as biz_iot_queryMeetingRoomList } from './biz/iot/queryMeetingRoomList'; -export { IBizIotQueryMeetingRoomListParams, IBizIotQueryMeetingRoomListResult } from './biz/iot/queryMeetingRoomList'; -import { setDeviceProperties$ as biz_iot_setDeviceProperties } from './biz/iot/setDeviceProperties'; -export { IBizIotSetDevicePropertiesParams, IBizIotSetDevicePropertiesResult } from './biz/iot/setDeviceProperties'; -import { unbind$ as biz_iot_unbind } from './biz/iot/unbind'; -export { IBizIotUnbindParams, IBizIotUnbindResult } from './biz/iot/unbind'; -import { startClassRoom$ as biz_live_startClassRoom } from './biz/live/startClassRoom'; -export { IBizLiveStartClassRoomParams, IBizLiveStartClassRoomResult } from './biz/live/startClassRoom'; -import { startUnifiedLive$ as biz_live_startUnifiedLive } from './biz/live/startUnifiedLive'; -export { IBizLiveStartUnifiedLiveParams, IBizLiveStartUnifiedLiveResult } from './biz/live/startUnifiedLive'; -import { locate$ as biz_map_locate } from './biz/map/locate'; -export { IBizMapLocateParams, IBizMapLocateResult } from './biz/map/locate'; -import { search$ as biz_map_search } from './biz/map/search'; -export { IBizMapSearchParams, IBizMapSearchResult } from './biz/map/search'; -import { view$ as biz_map_view } from './biz/map/view'; -export { IBizMapViewParams, IBizMapViewResult } from './biz/map/view'; -import { compressVideo$ as biz_media_compressVideo } from './biz/media/compressVideo'; -export { IBizMediaCompressVideoParams, IBizMediaCompressVideoResult } from './biz/media/compressVideo'; -import { openApp$ as biz_microApp_openApp } from './biz/microApp/openApp'; -export { IBizMicroAppOpenAppParams, IBizMicroAppOpenAppResult } from './biz/microApp/openApp'; -import { close$ as biz_navigation_close } from './biz/navigation/close'; -export { IBizNavigationCloseParams, IBizNavigationCloseResult } from './biz/navigation/close'; -import { goBack$ as biz_navigation_goBack } from './biz/navigation/goBack'; -export { IBizNavigationGoBackParams, IBizNavigationGoBackResult } from './biz/navigation/goBack'; -import { hideBar$ as biz_navigation_hideBar } from './biz/navigation/hideBar'; -export { IBizNavigationHideBarParams, IBizNavigationHideBarResult } from './biz/navigation/hideBar'; -import { navigateBackPage$ as biz_navigation_navigateBackPage } from './biz/navigation/navigateBackPage'; -export { IBizNavigationNavigateBackPageParams, IBizNavigationNavigateBackPageResult } from './biz/navigation/navigateBackPage'; -import { navigateToMiniProgram$ as biz_navigation_navigateToMiniProgram } from './biz/navigation/navigateToMiniProgram'; -export { IBizNavigationNavigateToMiniProgramParams, IBizNavigationNavigateToMiniProgramResult } from './biz/navigation/navigateToMiniProgram'; -import { navigateToPage$ as biz_navigation_navigateToPage } from './biz/navigation/navigateToPage'; -export { IBizNavigationNavigateToPageParams, IBizNavigationNavigateToPageResult } from './biz/navigation/navigateToPage'; -import { quit$ as biz_navigation_quit } from './biz/navigation/quit'; -export { IBizNavigationQuitParams, IBizNavigationQuitResult } from './biz/navigation/quit'; -import { replace$ as biz_navigation_replace } from './biz/navigation/replace'; -export { IBizNavigationReplaceParams, IBizNavigationReplaceResult } from './biz/navigation/replace'; -import { setIcon$ as biz_navigation_setIcon } from './biz/navigation/setIcon'; -export { IBizNavigationSetIconParams, IBizNavigationSetIconResult } from './biz/navigation/setIcon'; -import { setLeft$ as biz_navigation_setLeft } from './biz/navigation/setLeft'; -export { IBizNavigationSetLeftParams, IBizNavigationSetLeftResult } from './biz/navigation/setLeft'; -import { setMenu$ as biz_navigation_setMenu } from './biz/navigation/setMenu'; -export { IBizNavigationSetMenuParams, IBizNavigationSetMenuResult } from './biz/navigation/setMenu'; -import { setRight$ as biz_navigation_setRight } from './biz/navigation/setRight'; -export { IBizNavigationSetRightParams, IBizNavigationSetRightResult } from './biz/navigation/setRight'; -import { setTitle$ as biz_navigation_setTitle } from './biz/navigation/setTitle'; -export { IBizNavigationSetTitleParams, IBizNavigationSetTitleResult } from './biz/navigation/setTitle'; -import { componentPunchFromPartner$ as biz_pbp_componentPunchFromPartner } from './biz/pbp/componentPunchFromPartner'; -export { IBizPbpComponentPunchFromPartnerParams, IBizPbpComponentPunchFromPartnerResult } from './biz/pbp/componentPunchFromPartner'; -import { startMatchRuleFromPartner$ as biz_pbp_startMatchRuleFromPartner } from './biz/pbp/startMatchRuleFromPartner'; -export { IBizPbpStartMatchRuleFromPartnerParams, IBizPbpStartMatchRuleFromPartnerResult } from './biz/pbp/startMatchRuleFromPartner'; -import { stopMatchRuleFromPartner$ as biz_pbp_stopMatchRuleFromPartner } from './biz/pbp/stopMatchRuleFromPartner'; -export { IBizPbpStopMatchRuleFromPartnerParams, IBizPbpStopMatchRuleFromPartnerResult } from './biz/pbp/stopMatchRuleFromPartner'; -import { add$ as biz_phoneContact_add } from './biz/phoneContact/add'; -export { IBizPhoneContactAddParams, IBizPhoneContactAddResult } from './biz/phoneContact/add'; -import { getRealtimeTracingStatus$ as biz_realm_getRealtimeTracingStatus } from './biz/realm/getRealtimeTracingStatus'; -export { IBizRealmGetRealtimeTracingStatusParams, IBizRealmGetRealtimeTracingStatusResult } from './biz/realm/getRealtimeTracingStatus'; -import { getUserExclusiveInfo$ as biz_realm_getUserExclusiveInfo } from './biz/realm/getUserExclusiveInfo'; -export { IBizRealmGetUserExclusiveInfoParams, IBizRealmGetUserExclusiveInfoResult } from './biz/realm/getUserExclusiveInfo'; -import { startRealtimeTracing$ as biz_realm_startRealtimeTracing } from './biz/realm/startRealtimeTracing'; -export { IBizRealmStartRealtimeTracingParams, IBizRealmStartRealtimeTracingResult } from './biz/realm/startRealtimeTracing'; -import { stopRealtimeTracing$ as biz_realm_stopRealtimeTracing } from './biz/realm/stopRealtimeTracing'; -export { IBizRealmStopRealtimeTracingParams, IBizRealmStopRealtimeTracingResult } from './biz/realm/stopRealtimeTracing'; -import { subscribe$ as biz_realm_subscribe } from './biz/realm/subscribe'; -export { IBizRealmSubscribeParams, IBizRealmSubscribeResult } from './biz/realm/subscribe'; -import { unsubscribe$ as biz_realm_unsubscribe } from './biz/realm/unsubscribe'; -export { IBizRealmUnsubscribeParams, IBizRealmUnsubscribeResult } from './biz/realm/unsubscribe'; -import { getInfo$ as biz_resource_getInfo } from './biz/resource/getInfo'; -export { IBizResourceGetInfoParams, IBizResourceGetInfoResult } from './biz/resource/getInfo'; -import { reportDebugMessage$ as biz_resource_reportDebugMessage } from './biz/resource/reportDebugMessage'; -export { IBizResourceReportDebugMessageParams, IBizResourceReportDebugMessageResult } from './biz/resource/reportDebugMessage'; -import { addShortCut$ as biz_shortCut_addShortCut } from './biz/shortCut/addShortCut'; -export { IBizShortCutAddShortCutParams, IBizShortCutAddShortCutResult } from './biz/shortCut/addShortCut'; -import { getHealthAuthorizationStatus$ as biz_sports_getHealthAuthorizationStatus } from './biz/sports/getHealthAuthorizationStatus'; -export { IBizSportsGetHealthAuthorizationStatusParams, IBizSportsGetHealthAuthorizationStatusResult } from './biz/sports/getHealthAuthorizationStatus'; -import { getHealthData$ as biz_sports_getHealthData } from './biz/sports/getHealthData'; -export { IBizSportsGetHealthDataParams, IBizSportsGetHealthDataResult } from './biz/sports/getHealthData'; -import { getHealthDeviceData$ as biz_sports_getHealthDeviceData } from './biz/sports/getHealthDeviceData'; -export { IBizSportsGetHealthDeviceDataParams, IBizSportsGetHealthDeviceDataResult } from './biz/sports/getHealthDeviceData'; -import { requestHealthAuthorization$ as biz_sports_requestHealthAuthorization } from './biz/sports/requestHealthAuthorization'; -export { IBizSportsRequestHealthAuthorizationParams, IBizSportsRequestHealthAuthorizationResult } from './biz/sports/requestHealthAuthorization'; -import { closeUnpayOrder$ as biz_store_closeUnpayOrder } from './biz/store/closeUnpayOrder'; -export { IBizStoreCloseUnpayOrderParams, IBizStoreCloseUnpayOrderResult } from './biz/store/closeUnpayOrder'; -import { createOrder$ as biz_store_createOrder } from './biz/store/createOrder'; -export { IBizStoreCreateOrderParams, IBizStoreCreateOrderResult } from './biz/store/createOrder'; -import { getPayUrl$ as biz_store_getPayUrl } from './biz/store/getPayUrl'; -export { IBizStoreGetPayUrlParams, IBizStoreGetPayUrlResult } from './biz/store/getPayUrl'; -import { inquiry$ as biz_store_inquiry } from './biz/store/inquiry'; -export { IBizStoreInquiryParams, IBizStoreInquiryResult } from './biz/store/inquiry'; -import { isTab$ as biz_tabwindow_isTab } from './biz/tabwindow/isTab'; -export { IBizTabwindowIsTabParams, IBizTabwindowIsTabResult } from './biz/tabwindow/isTab'; -import { call$ as biz_telephone_call } from './biz/telephone/call'; -export { IBizTelephoneCallParams, IBizTelephoneCallResult } from './biz/telephone/call'; -import { checkBizCall$ as biz_telephone_checkBizCall } from './biz/telephone/checkBizCall'; -export { IBizTelephoneCheckBizCallParams, IBizTelephoneCheckBizCallResult } from './biz/telephone/checkBizCall'; -import { quickCallList$ as biz_telephone_quickCallList } from './biz/telephone/quickCallList'; -export { IBizTelephoneQuickCallListParams, IBizTelephoneQuickCallListResult } from './biz/telephone/quickCallList'; -import { showCallMenu$ as biz_telephone_showCallMenu } from './biz/telephone/showCallMenu'; -export { IBizTelephoneShowCallMenuParams, IBizTelephoneShowCallMenuResult } from './biz/telephone/showCallMenu'; -import { checkPassword$ as biz_user_checkPassword } from './biz/user/checkPassword'; -export { IBizUserCheckPasswordParams, IBizUserCheckPasswordResult } from './biz/user/checkPassword'; -import { get$ as biz_user_get } from './biz/user/get'; -export { IBizUserGetParams, IBizUserGetResult } from './biz/user/get'; -import { callComponent$ as biz_util_callComponent } from './biz/util/callComponent'; -export { IBizUtilCallComponentParams, IBizUtilCallComponentResult } from './biz/util/callComponent'; -import { checkAuth$ as biz_util_checkAuth } from './biz/util/checkAuth'; -export { IBizUtilCheckAuthParams, IBizUtilCheckAuthResult } from './biz/util/checkAuth'; -import { chooseImage$ as biz_util_chooseImage } from './biz/util/chooseImage'; -export { IBizUtilChooseImageParams, IBizUtilChooseImageResult } from './biz/util/chooseImage'; -import { chooseRegion$ as biz_util_chooseRegion } from './biz/util/chooseRegion'; -export { IBizUtilChooseRegionParams, IBizUtilChooseRegionResult } from './biz/util/chooseRegion'; -import { chosen$ as biz_util_chosen } from './biz/util/chosen'; -export { IBizUtilChosenParams, IBizUtilChosenResult } from './biz/util/chosen'; -import { clearWebStoreCache$ as biz_util_clearWebStoreCache } from './biz/util/clearWebStoreCache'; -export { IBizUtilClearWebStoreCacheParams, IBizUtilClearWebStoreCacheResult } from './biz/util/clearWebStoreCache'; -import { closePreviewImage$ as biz_util_closePreviewImage } from './biz/util/closePreviewImage'; -export { IBizUtilClosePreviewImageParams, IBizUtilClosePreviewImageResult } from './biz/util/closePreviewImage'; -import { compressImage$ as biz_util_compressImage } from './biz/util/compressImage'; -export { IBizUtilCompressImageParams, IBizUtilCompressImageResult } from './biz/util/compressImage'; -import { datepicker$ as biz_util_datepicker } from './biz/util/datepicker'; -export { IBizUtilDatepickerParams, IBizUtilDatepickerResult } from './biz/util/datepicker'; -import { datetimepicker$ as biz_util_datetimepicker } from './biz/util/datetimepicker'; -export { IBizUtilDatetimepickerParams, IBizUtilDatetimepickerResult } from './biz/util/datetimepicker'; -import { decrypt$ as biz_util_decrypt } from './biz/util/decrypt'; -export { IBizUtilDecryptParams, IBizUtilDecryptResult } from './biz/util/decrypt'; -import { downloadFile$ as biz_util_downloadFile } from './biz/util/downloadFile'; -export { IBizUtilDownloadFileParams, IBizUtilDownloadFileResult } from './biz/util/downloadFile'; -import { encrypt$ as biz_util_encrypt } from './biz/util/encrypt'; -export { IBizUtilEncryptParams, IBizUtilEncryptResult } from './biz/util/encrypt'; -import { getPerfInfo$ as biz_util_getPerfInfo } from './biz/util/getPerfInfo'; -export { IBizUtilGetPerfInfoParams, IBizUtilGetPerfInfoResult } from './biz/util/getPerfInfo'; -import { invokeWorkbench$ as biz_util_invokeWorkbench } from './biz/util/invokeWorkbench'; -export { IBizUtilInvokeWorkbenchParams, IBizUtilInvokeWorkbenchResult } from './biz/util/invokeWorkbench'; -import { isEnableGPUAcceleration$ as biz_util_isEnableGPUAcceleration } from './biz/util/isEnableGPUAcceleration'; -export { IBizUtilIsEnableGPUAccelerationParams, IBizUtilIsEnableGPUAccelerationResult } from './biz/util/isEnableGPUAcceleration'; -import { isLocalFileExist$ as biz_util_isLocalFileExist } from './biz/util/isLocalFileExist'; -export { IBizUtilIsLocalFileExistParams, IBizUtilIsLocalFileExistResult } from './biz/util/isLocalFileExist'; -import { multiSelect$ as biz_util_multiSelect } from './biz/util/multiSelect'; -export { IBizUtilMultiSelectParams, IBizUtilMultiSelectResult } from './biz/util/multiSelect'; -import { open$ as biz_util_open } from './biz/util/open'; -export { IBizUtilOpenParams, IBizUtilOpenResult } from './biz/util/open'; -import { openBrowser$ as biz_util_openBrowser } from './biz/util/openBrowser'; -export { IBizUtilOpenBrowserParams, IBizUtilOpenBrowserResult } from './biz/util/openBrowser'; -import { openDocument$ as biz_util_openDocument } from './biz/util/openDocument'; -export { IBizUtilOpenDocumentParams, IBizUtilOpenDocumentResult } from './biz/util/openDocument'; -import { openLink$ as biz_util_openLink } from './biz/util/openLink'; -export { IBizUtilOpenLinkParams, IBizUtilOpenLinkResult } from './biz/util/openLink'; -import { openLocalFile$ as biz_util_openLocalFile } from './biz/util/openLocalFile'; -export { IBizUtilOpenLocalFileParams, IBizUtilOpenLocalFileResult } from './biz/util/openLocalFile'; -import { openModal$ as biz_util_openModal } from './biz/util/openModal'; -export { IBizUtilOpenModalParams, IBizUtilOpenModalResult } from './biz/util/openModal'; -import { openSlidePanel$ as biz_util_openSlidePanel } from './biz/util/openSlidePanel'; -export { IBizUtilOpenSlidePanelParams, IBizUtilOpenSlidePanelResult } from './biz/util/openSlidePanel'; -import { presentWindow$ as biz_util_presentWindow } from './biz/util/presentWindow'; -export { IBizUtilPresentWindowParams, IBizUtilPresentWindowResult } from './biz/util/presentWindow'; -import { previewImage$ as biz_util_previewImage } from './biz/util/previewImage'; -export { IBizUtilPreviewImageParams, IBizUtilPreviewImageResult } from './biz/util/previewImage'; -import { previewVideo$ as biz_util_previewVideo } from './biz/util/previewVideo'; -export { IBizUtilPreviewVideoParams, IBizUtilPreviewVideoResult } from './biz/util/previewVideo'; -import { saveImage$ as biz_util_saveImage } from './biz/util/saveImage'; -export { IBizUtilSaveImageParams, IBizUtilSaveImageResult } from './biz/util/saveImage'; -import { saveImageToPhotosAlbum$ as biz_util_saveImageToPhotosAlbum } from './biz/util/saveImageToPhotosAlbum'; -export { IBizUtilSaveImageToPhotosAlbumParams, IBizUtilSaveImageToPhotosAlbumResult } from './biz/util/saveImageToPhotosAlbum'; -import { scan$ as biz_util_scan } from './biz/util/scan'; -export { IBizUtilScanParams, IBizUtilScanResult } from './biz/util/scan'; -import { scanCard$ as biz_util_scanCard } from './biz/util/scanCard'; -export { IBizUtilScanCardParams, IBizUtilScanCardResult } from './biz/util/scanCard'; -import { setGPUAcceleration$ as biz_util_setGPUAcceleration } from './biz/util/setGPUAcceleration'; -export { IBizUtilSetGPUAccelerationParams, IBizUtilSetGPUAccelerationResult } from './biz/util/setGPUAcceleration'; -import { setScreenBrightnessAndKeepOn$ as biz_util_setScreenBrightnessAndKeepOn } from './biz/util/setScreenBrightnessAndKeepOn'; -export { IBizUtilSetScreenBrightnessAndKeepOnParams, IBizUtilSetScreenBrightnessAndKeepOnResult } from './biz/util/setScreenBrightnessAndKeepOn'; -import { setScreenKeepOn$ as biz_util_setScreenKeepOn } from './biz/util/setScreenKeepOn'; -export { IBizUtilSetScreenKeepOnParams, IBizUtilSetScreenKeepOnResult } from './biz/util/setScreenKeepOn'; -import { share$ as biz_util_share } from './biz/util/share'; -export { IBizUtilShareParams, IBizUtilShareResult } from './biz/util/share'; -import { shareImage$ as biz_util_shareImage } from './biz/util/shareImage'; -export { IBizUtilShareImageParams, IBizUtilShareImageResult } from './biz/util/shareImage'; -import { showAuthGuide$ as biz_util_showAuthGuide } from './biz/util/showAuthGuide'; -export { IBizUtilShowAuthGuideParams, IBizUtilShowAuthGuideResult } from './biz/util/showAuthGuide'; -import { showSharePanel$ as biz_util_showSharePanel } from './biz/util/showSharePanel'; -export { IBizUtilShowSharePanelParams, IBizUtilShowSharePanelResult } from './biz/util/showSharePanel'; -import { startDocSign$ as biz_util_startDocSign } from './biz/util/startDocSign'; -export { IBizUtilStartDocSignParams, IBizUtilStartDocSignResult } from './biz/util/startDocSign'; -import { systemShare$ as biz_util_systemShare } from './biz/util/systemShare'; -export { IBizUtilSystemShareParams, IBizUtilSystemShareResult } from './biz/util/systemShare'; -import { timepicker$ as biz_util_timepicker } from './biz/util/timepicker'; -export { IBizUtilTimepickerParams, IBizUtilTimepickerResult } from './biz/util/timepicker'; -import { uploadAttachment$ as biz_util_uploadAttachment } from './biz/util/uploadAttachment'; -export { IBizUtilUploadAttachmentParams, IBizUtilUploadAttachmentResult } from './biz/util/uploadAttachment'; -import { uploadFile$ as biz_util_uploadFile } from './biz/util/uploadFile'; -export { IBizUtilUploadFileParams, IBizUtilUploadFileResult } from './biz/util/uploadFile'; -import { uploadImage$ as biz_util_uploadImage } from './biz/util/uploadImage'; -export { IBizUtilUploadImageParams, IBizUtilUploadImageResult } from './biz/util/uploadImage'; -import { uploadImageFromCamera$ as biz_util_uploadImageFromCamera } from './biz/util/uploadImageFromCamera'; -export { IBizUtilUploadImageFromCameraParams, IBizUtilUploadImageFromCameraResult } from './biz/util/uploadImageFromCamera'; -import { ut$ as biz_util_ut } from './biz/util/ut'; -export { IBizUtilUtParams, IBizUtilUtResult } from './biz/util/ut'; -import { openBindIDCard$ as biz_verify_openBindIDCard } from './biz/verify/openBindIDCard'; -export { IBizVerifyOpenBindIDCardParams, IBizVerifyOpenBindIDCardResult } from './biz/verify/openBindIDCard'; -import { startAuth$ as biz_verify_startAuth } from './biz/verify/startAuth'; -export { IBizVerifyStartAuthParams, IBizVerifyStartAuthResult } from './biz/verify/startAuth'; -import { makeCall$ as biz_voice_makeCall } from './biz/voice/makeCall'; -export { IBizVoiceMakeCallParams, IBizVoiceMakeCallResult } from './biz/voice/makeCall'; -import { getWatermarkInfo$ as biz_watermarkCamera_getWatermarkInfo } from './biz/watermarkCamera/getWatermarkInfo'; -export { IBizWatermarkCameraGetWatermarkInfoParams, IBizWatermarkCameraGetWatermarkInfoResult } from './biz/watermarkCamera/getWatermarkInfo'; -import { setWatermarkInfo$ as biz_watermarkCamera_setWatermarkInfo } from './biz/watermarkCamera/setWatermarkInfo'; -export { IBizWatermarkCameraSetWatermarkInfoParams, IBizWatermarkCameraSetWatermarkInfoResult } from './biz/watermarkCamera/setWatermarkInfo'; -import { requestAuthCode$ as channel_permission_requestAuthCode } from './channel/permission/requestAuthCode'; -export { IChannelPermissionRequestAuthCodeParams, IChannelPermissionRequestAuthCodeResult } from './channel/permission/requestAuthCode'; -import { clearShake$ as device_accelerometer_clearShake } from './device/accelerometer/clearShake'; -export { IDeviceAccelerometerClearShakeParams, IDeviceAccelerometerClearShakeResult } from './device/accelerometer/clearShake'; -import { watchShake$ as device_accelerometer_watchShake } from './device/accelerometer/watchShake'; -export { IDeviceAccelerometerWatchShakeParams, IDeviceAccelerometerWatchShakeResult } from './device/accelerometer/watchShake'; -import { download$ as device_audio_download } from './device/audio/download'; -export { IDeviceAudioDownloadParams, IDeviceAudioDownloadResult } from './device/audio/download'; -import { onPlayEnd$ as device_audio_onPlayEnd } from './device/audio/onPlayEnd'; -export { IDeviceAudioOnPlayEndParams, IDeviceAudioOnPlayEndResult } from './device/audio/onPlayEnd'; -import { onRecordEnd$ as device_audio_onRecordEnd } from './device/audio/onRecordEnd'; -export { IDeviceAudioOnRecordEndParams, IDeviceAudioOnRecordEndResult } from './device/audio/onRecordEnd'; -import { pause$ as device_audio_pause } from './device/audio/pause'; -export { IDeviceAudioPauseParams, IDeviceAudioPauseResult } from './device/audio/pause'; -import { play$ as device_audio_play } from './device/audio/play'; -export { IDeviceAudioPlayParams, IDeviceAudioPlayResult } from './device/audio/play'; -import { resume$ as device_audio_resume } from './device/audio/resume'; -export { IDeviceAudioResumeParams, IDeviceAudioResumeResult } from './device/audio/resume'; -import { startRecord$ as device_audio_startRecord } from './device/audio/startRecord'; -export { IDeviceAudioStartRecordParams, IDeviceAudioStartRecordResult } from './device/audio/startRecord'; -import { stop$ as device_audio_stop } from './device/audio/stop'; -export { IDeviceAudioStopParams, IDeviceAudioStopResult } from './device/audio/stop'; -import { stopRecord$ as device_audio_stopRecord } from './device/audio/stopRecord'; -export { IDeviceAudioStopRecordParams, IDeviceAudioStopRecordResult } from './device/audio/stopRecord'; -import { translateVoice$ as device_audio_translateVoice } from './device/audio/translateVoice'; -export { IDeviceAudioTranslateVoiceParams, IDeviceAudioTranslateVoiceResult } from './device/audio/translateVoice'; -import { getBatteryInfo$ as device_base_getBatteryInfo } from './device/base/getBatteryInfo'; -export { IDeviceBaseGetBatteryInfoParams, IDeviceBaseGetBatteryInfoResult } from './device/base/getBatteryInfo'; -import { getInterface$ as device_base_getInterface } from './device/base/getInterface'; -export { IDeviceBaseGetInterfaceParams, IDeviceBaseGetInterfaceResult } from './device/base/getInterface'; -import { getPhoneInfo$ as device_base_getPhoneInfo } from './device/base/getPhoneInfo'; -export { IDeviceBaseGetPhoneInfoParams, IDeviceBaseGetPhoneInfoResult } from './device/base/getPhoneInfo'; -import { getScanWifiListAsync$ as device_base_getScanWifiListAsync } from './device/base/getScanWifiListAsync'; -export { IDeviceBaseGetScanWifiListAsyncParams, IDeviceBaseGetScanWifiListAsyncResult } from './device/base/getScanWifiListAsync'; -import { getUUID$ as device_base_getUUID } from './device/base/getUUID'; -export { IDeviceBaseGetUUIDParams, IDeviceBaseGetUUIDResult } from './device/base/getUUID'; -import { getWifiStatus$ as device_base_getWifiStatus } from './device/base/getWifiStatus'; -export { IDeviceBaseGetWifiStatusParams, IDeviceBaseGetWifiStatusResult } from './device/base/getWifiStatus'; -import { openSystemSetting$ as device_base_openSystemSetting } from './device/base/openSystemSetting'; -export { IDeviceBaseOpenSystemSettingParams, IDeviceBaseOpenSystemSettingResult } from './device/base/openSystemSetting'; -import { getNetworkType$ as device_connection_getNetworkType } from './device/connection/getNetworkType'; -export { IDeviceConnectionGetNetworkTypeParams, IDeviceConnectionGetNetworkTypeResult } from './device/connection/getNetworkType'; -import { checkPermission$ as device_geolocation_checkPermission } from './device/geolocation/checkPermission'; -export { IDeviceGeolocationCheckPermissionParams, IDeviceGeolocationCheckPermissionResult } from './device/geolocation/checkPermission'; -import { get$ as device_geolocation_get } from './device/geolocation/get'; -export { IDeviceGeolocationGetParams, IDeviceGeolocationGetResult } from './device/geolocation/get'; -import { start$ as device_geolocation_start } from './device/geolocation/start'; -export { IDeviceGeolocationStartParams, IDeviceGeolocationStartResult } from './device/geolocation/start'; -import { status$ as device_geolocation_status } from './device/geolocation/status'; -export { IDeviceGeolocationStatusParams, IDeviceGeolocationStatusResult } from './device/geolocation/status'; -import { stop$ as device_geolocation_stop } from './device/geolocation/stop'; -export { IDeviceGeolocationStopParams, IDeviceGeolocationStopResult } from './device/geolocation/stop'; -import { checkInstalledApps$ as device_launcher_checkInstalledApps } from './device/launcher/checkInstalledApps'; -export { IDeviceLauncherCheckInstalledAppsParams, IDeviceLauncherCheckInstalledAppsResult } from './device/launcher/checkInstalledApps'; -import { launchApp$ as device_launcher_launchApp } from './device/launcher/launchApp'; -export { IDeviceLauncherLaunchAppParams, IDeviceLauncherLaunchAppResult } from './device/launcher/launchApp'; -import { nfcRead$ as device_nfc_nfcRead } from './device/nfc/nfcRead'; -export { IDeviceNfcNfcReadParams, IDeviceNfcNfcReadResult } from './device/nfc/nfcRead'; -import { nfcStop$ as device_nfc_nfcStop } from './device/nfc/nfcStop'; -export { IDeviceNfcNfcStopParams, IDeviceNfcNfcStopResult } from './device/nfc/nfcStop'; -import { nfcWrite$ as device_nfc_nfcWrite } from './device/nfc/nfcWrite'; -export { IDeviceNfcNfcWriteParams, IDeviceNfcNfcWriteResult } from './device/nfc/nfcWrite'; -import { actionSheet$ as device_notification_actionSheet } from './device/notification/actionSheet'; -export { IDeviceNotificationActionSheetParams, IDeviceNotificationActionSheetResult } from './device/notification/actionSheet'; -import { alert$ as device_notification_alert } from './device/notification/alert'; -export { IDeviceNotificationAlertParams, IDeviceNotificationAlertResult } from './device/notification/alert'; -import { confirm$ as device_notification_confirm } from './device/notification/confirm'; -export { IDeviceNotificationConfirmParams, IDeviceNotificationConfirmResult } from './device/notification/confirm'; -import { extendModal$ as device_notification_extendModal } from './device/notification/extendModal'; -export { IDeviceNotificationExtendModalParams, IDeviceNotificationExtendModalResult } from './device/notification/extendModal'; -import { hidePreloader$ as device_notification_hidePreloader } from './device/notification/hidePreloader'; -export { IDeviceNotificationHidePreloaderParams, IDeviceNotificationHidePreloaderResult } from './device/notification/hidePreloader'; -import { modal$ as device_notification_modal } from './device/notification/modal'; -export { IDeviceNotificationModalParams, IDeviceNotificationModalResult } from './device/notification/modal'; -import { prompt$ as device_notification_prompt } from './device/notification/prompt'; -export { IDeviceNotificationPromptParams, IDeviceNotificationPromptResult } from './device/notification/prompt'; -import { showPreloader$ as device_notification_showPreloader } from './device/notification/showPreloader'; -export { IDeviceNotificationShowPreloaderParams, IDeviceNotificationShowPreloaderResult } from './device/notification/showPreloader'; -import { toast$ as device_notification_toast } from './device/notification/toast'; -export { IDeviceNotificationToastParams, IDeviceNotificationToastResult } from './device/notification/toast'; -import { vibrate$ as device_notification_vibrate } from './device/notification/vibrate'; -export { IDeviceNotificationVibrateParams, IDeviceNotificationVibrateResult } from './device/notification/vibrate'; -import { getScreenBrightness$ as device_screen_getScreenBrightness } from './device/screen/getScreenBrightness'; -export { IDeviceScreenGetScreenBrightnessParams, IDeviceScreenGetScreenBrightnessResult } from './device/screen/getScreenBrightness'; -import { insetAdjust$ as device_screen_insetAdjust } from './device/screen/insetAdjust'; -export { IDeviceScreenInsetAdjustParams, IDeviceScreenInsetAdjustResult } from './device/screen/insetAdjust'; -import { isScreenReaderEnabled$ as device_screen_isScreenReaderEnabled } from './device/screen/isScreenReaderEnabled'; -export { IDeviceScreenIsScreenReaderEnabledParams, IDeviceScreenIsScreenReaderEnabledResult } from './device/screen/isScreenReaderEnabled'; -import { resetView$ as device_screen_resetView } from './device/screen/resetView'; -export { IDeviceScreenResetViewParams, IDeviceScreenResetViewResult } from './device/screen/resetView'; -import { rotateView$ as device_screen_rotateView } from './device/screen/rotateView'; -export { IDeviceScreenRotateViewParams, IDeviceScreenRotateViewResult } from './device/screen/rotateView'; -import { setScreenBrightness$ as device_screen_setScreenBrightness } from './device/screen/setScreenBrightness'; -export { IDeviceScreenSetScreenBrightnessParams, IDeviceScreenSetScreenBrightnessResult } from './device/screen/setScreenBrightness'; -import { keepAlive$ as media_voiceRecorder_keepAlive } from './media/voiceRecorder/keepAlive'; -export { IMediaVoiceRecorderKeepAliveParams, IMediaVoiceRecorderKeepAliveResult } from './media/voiceRecorder/keepAlive'; -import { pause$ as media_voiceRecorder_pause } from './media/voiceRecorder/pause'; -export { IMediaVoiceRecorderPauseParams, IMediaVoiceRecorderPauseResult } from './media/voiceRecorder/pause'; -import { resume$ as media_voiceRecorder_resume } from './media/voiceRecorder/resume'; -export { IMediaVoiceRecorderResumeParams, IMediaVoiceRecorderResumeResult } from './media/voiceRecorder/resume'; -import { start$ as media_voiceRecorder_start } from './media/voiceRecorder/start'; -export { IMediaVoiceRecorderStartParams, IMediaVoiceRecorderStartResult } from './media/voiceRecorder/start'; -import { stop$ as media_voiceRecorder_stop } from './media/voiceRecorder/stop'; -export { IMediaVoiceRecorderStopParams, IMediaVoiceRecorderStopResult } from './media/voiceRecorder/stop'; -import { loginGovNet$ as net_bjGovApn_loginGovNet } from './net/bjGovApn/loginGovNet'; -export { INetBjGovApnLoginGovNetParams, INetBjGovApnLoginGovNetResult } from './net/bjGovApn/loginGovNet'; -import { exec$ as runtime_h5nuvabridge_exec } from './runtime/h5nuvabridge/exec'; -export { IRuntimeH5nuvabridgeExecParams, IRuntimeH5nuvabridgeExecResult } from './runtime/h5nuvabridge/exec'; -import { fetch$ as runtime_message_fetch } from './runtime/message/fetch'; -export { IRuntimeMessageFetchParams, IRuntimeMessageFetchResult } from './runtime/message/fetch'; -import { post$ as runtime_message_post } from './runtime/message/post'; -export { IRuntimeMessagePostParams, IRuntimeMessagePostResult } from './runtime/message/post'; -import { getLoadTime$ as runtime_monitor_getLoadTime } from './runtime/monitor/getLoadTime'; -export { IRuntimeMonitorGetLoadTimeParams, IRuntimeMonitorGetLoadTimeResult } from './runtime/monitor/getLoadTime'; -import { requestAuthCode$ as runtime_permission_requestAuthCode } from './runtime/permission/requestAuthCode'; -export { IRuntimePermissionRequestAuthCodeParams, IRuntimePermissionRequestAuthCodeResult } from './runtime/permission/requestAuthCode'; -import { requestOperateAuthCode$ as runtime_permission_requestOperateAuthCode } from './runtime/permission/requestOperateAuthCode'; -export { IRuntimePermissionRequestOperateAuthCodeParams, IRuntimePermissionRequestOperateAuthCodeResult } from './runtime/permission/requestOperateAuthCode'; -import { plain$ as ui_input_plain } from './ui/input/plain'; -export { IUiInputPlainParams, IUiInputPlainResult } from './ui/input/plain'; -import { addToFloat$ as ui_multitask_addToFloat } from './ui/multitask/addToFloat'; -export { IUiMultitaskAddToFloatParams, IUiMultitaskAddToFloatResult } from './ui/multitask/addToFloat'; -import { removeFromFloat$ as ui_multitask_removeFromFloat } from './ui/multitask/removeFromFloat'; -export { IUiMultitaskRemoveFromFloatParams, IUiMultitaskRemoveFromFloatResult } from './ui/multitask/removeFromFloat'; -import { close$ as ui_nav_close } from './ui/nav/close'; -export { IUiNavCloseParams, IUiNavCloseResult } from './ui/nav/close'; -import { getCurrentId$ as ui_nav_getCurrentId } from './ui/nav/getCurrentId'; -export { IUiNavGetCurrentIdParams, IUiNavGetCurrentIdResult } from './ui/nav/getCurrentId'; -import { go$ as ui_nav_go } from './ui/nav/go'; -export { IUiNavGoParams, IUiNavGoResult } from './ui/nav/go'; -import { preload$ as ui_nav_preload } from './ui/nav/preload'; -export { IUiNavPreloadParams, IUiNavPreloadResult } from './ui/nav/preload'; -import { recycle$ as ui_nav_recycle } from './ui/nav/recycle'; -export { IUiNavRecycleParams, IUiNavRecycleResult } from './ui/nav/recycle'; -import { setColors$ as ui_progressBar_setColors } from './ui/progressBar/setColors'; -export { IUiProgressBarSetColorsParams, IUiProgressBarSetColorsResult } from './ui/progressBar/setColors'; -import { disable$ as ui_pullToRefresh_disable } from './ui/pullToRefresh/disable'; -export { IUiPullToRefreshDisableParams, IUiPullToRefreshDisableResult } from './ui/pullToRefresh/disable'; -import { enable$ as ui_pullToRefresh_enable } from './ui/pullToRefresh/enable'; -export { IUiPullToRefreshEnableParams, IUiPullToRefreshEnableResult } from './ui/pullToRefresh/enable'; -import { stop$ as ui_pullToRefresh_stop } from './ui/pullToRefresh/stop'; -export { IUiPullToRefreshStopParams, IUiPullToRefreshStopResult } from './ui/pullToRefresh/stop'; -import { disable$ as ui_webViewBounce_disable } from './ui/webViewBounce/disable'; -export { IUiWebViewBounceDisableParams, IUiWebViewBounceDisableResult } from './ui/webViewBounce/disable'; -import { enable$ as ui_webViewBounce_enable } from './ui/webViewBounce/enable'; -export { IUiWebViewBounceEnableParams, IUiWebViewBounceEnableResult } from './ui/webViewBounce/enable'; -import { ExternalChannelPublish$ as union_ExternalChannelPublish } from './union/ExternalChannelPublish'; -export { IUnionExternalChannelPublishParams, IUnionExternalChannelPublishResult, ExternalChannelPublish$ as ExternalChannelPublish } from './union/ExternalChannelPublish'; -import { addPhoneContact$ as union_addPhoneContact } from './union/addPhoneContact'; -export { IUnionAddPhoneContactParams, IUnionAddPhoneContactResult, addPhoneContact$ as addPhoneContact } from './union/addPhoneContact'; -import { alert$ as union_alert } from './union/alert'; -export { IUnionAlertParams, IUnionAlertResult, alert$ as alert } from './union/alert'; -import { callUsers$ as union_callUsers } from './union/callUsers'; -export { IUnionCallUsersParams, IUnionCallUsersResult, callUsers$ as callUsers } from './union/callUsers'; -import { checkAuth$ as union_checkAuth } from './union/checkAuth'; -export { IUnionCheckAuthParams, IUnionCheckAuthResult, checkAuth$ as checkAuth } from './union/checkAuth'; -import { checkBizCall$ as union_checkBizCall } from './union/checkBizCall'; -export { IUnionCheckBizCallParams, IUnionCheckBizCallResult, checkBizCall$ as checkBizCall } from './union/checkBizCall'; -import { chooseChat$ as union_chooseChat } from './union/chooseChat'; -export { IUnionChooseChatParams, IUnionChooseChatResult, chooseChat$ as chooseChat } from './union/chooseChat'; -import { chooseConversation$ as union_chooseConversation } from './union/chooseConversation'; -export { IUnionChooseConversationParams, IUnionChooseConversationResult, chooseConversation$ as chooseConversation } from './union/chooseConversation'; -import { chooseDateRangeInCalendar$ as union_chooseDateRangeInCalendar } from './union/chooseDateRangeInCalendar'; -export { IUnionChooseDateRangeInCalendarParams, IUnionChooseDateRangeInCalendarResult, chooseDateRangeInCalendar$ as chooseDateRangeInCalendar } from './union/chooseDateRangeInCalendar'; -import { chooseDateTime$ as union_chooseDateTime } from './union/chooseDateTime'; -export { IUnionChooseDateTimeParams, IUnionChooseDateTimeResult, chooseDateTime$ as chooseDateTime } from './union/chooseDateTime'; -import { chooseDepartments$ as union_chooseDepartments } from './union/chooseDepartments'; -export { IUnionChooseDepartmentsParams, IUnionChooseDepartmentsResult, chooseDepartments$ as chooseDepartments } from './union/chooseDepartments'; -import { chooseDingTalkDir$ as union_chooseDingTalkDir } from './union/chooseDingTalkDir'; -export { IUnionChooseDingTalkDirParams, IUnionChooseDingTalkDirResult, chooseDingTalkDir$ as chooseDingTalkDir } from './union/chooseDingTalkDir'; -import { chooseDistrict$ as union_chooseDistrict } from './union/chooseDistrict'; -export { IUnionChooseDistrictParams, IUnionChooseDistrictResult, chooseDistrict$ as chooseDistrict } from './union/chooseDistrict'; -import { chooseExternalUsers$ as union_chooseExternalUsers } from './union/chooseExternalUsers'; -export { IUnionChooseExternalUsersParams, IUnionChooseExternalUsersResult, chooseExternalUsers$ as chooseExternalUsers } from './union/chooseExternalUsers'; -import { chooseFile$ as union_chooseFile } from './union/chooseFile'; -export { IUnionChooseFileParams, IUnionChooseFileResult, chooseFile$ as chooseFile } from './union/chooseFile'; -import { chooseHalfDayInCalendar$ as union_chooseHalfDayInCalendar } from './union/chooseHalfDayInCalendar'; -export { IUnionChooseHalfDayInCalendarParams, IUnionChooseHalfDayInCalendarResult, chooseHalfDayInCalendar$ as chooseHalfDayInCalendar } from './union/chooseHalfDayInCalendar'; -import { chooseImage$ as union_chooseImage } from './union/chooseImage'; -export { IUnionChooseImageParams, IUnionChooseImageResult, chooseImage$ as chooseImage } from './union/chooseImage'; -import { chooseMedia$ as union_chooseMedia } from './union/chooseMedia'; -export { IUnionChooseMediaParams, IUnionChooseMediaResult, chooseMedia$ as chooseMedia } from './union/chooseMedia'; -import { chooseOneDayInCalendar$ as union_chooseOneDayInCalendar } from './union/chooseOneDayInCalendar'; -export { IUnionChooseOneDayInCalendarParams, IUnionChooseOneDayInCalendarResult, chooseOneDayInCalendar$ as chooseOneDayInCalendar } from './union/chooseOneDayInCalendar'; -import { chooseOrg$ as union_chooseOrg } from './union/chooseOrg'; -export { IUnionChooseOrgParams, IUnionChooseOrgResult, chooseOrg$ as chooseOrg } from './union/chooseOrg'; -import { choosePhonebook$ as union_choosePhonebook } from './union/choosePhonebook'; -export { IUnionChoosePhonebookParams, IUnionChoosePhonebookResult, choosePhonebook$ as choosePhonebook } from './union/choosePhonebook'; -import { chooseStaffForPC$ as union_chooseStaffForPC } from './union/chooseStaffForPC'; -export { IUnionChooseStaffForPCParams, IUnionChooseStaffForPCResult, chooseStaffForPC$ as chooseStaffForPC } from './union/chooseStaffForPC'; -import { chooseUserFromList$ as union_chooseUserFromList } from './union/chooseUserFromList'; -export { IUnionChooseUserFromListParams, IUnionChooseUserFromListResult, chooseUserFromList$ as chooseUserFromList } from './union/chooseUserFromList'; -import { clearShake$ as union_clearShake } from './union/clearShake'; -export { IUnionClearShakeParams, IUnionClearShakeResult, clearShake$ as clearShake } from './union/clearShake'; -import { closeBluetoothAdapter$ as union_closeBluetoothAdapter } from './union/closeBluetoothAdapter'; -export { IUnionCloseBluetoothAdapterParams, IUnionCloseBluetoothAdapterResult, closeBluetoothAdapter$ as closeBluetoothAdapter } from './union/closeBluetoothAdapter'; -import { closePage$ as union_closePage } from './union/closePage'; -export { IUnionClosePageParams, IUnionClosePageResult, closePage$ as closePage } from './union/closePage'; -import { complexChoose$ as union_complexChoose } from './union/complexChoose'; -export { IUnionComplexChooseParams, IUnionComplexChooseResult, complexChoose$ as complexChoose } from './union/complexChoose'; -import { compressImage$ as union_compressImage } from './union/compressImage'; -export { IUnionCompressImageParams, IUnionCompressImageResult, compressImage$ as compressImage } from './union/compressImage'; -import { confirm$ as union_confirm } from './union/confirm'; -export { IUnionConfirmParams, IUnionConfirmResult, confirm$ as confirm } from './union/confirm'; -import { connectBLEDevice$ as union_connectBLEDevice } from './union/connectBLEDevice'; -export { IUnionConnectBLEDeviceParams, IUnionConnectBLEDeviceResult, connectBLEDevice$ as connectBLEDevice } from './union/connectBLEDevice'; -import { createBLEPeripheralServer$ as union_createBLEPeripheralServer } from './union/createBLEPeripheralServer'; -export { IUnionCreateBLEPeripheralServerParams, IUnionCreateBLEPeripheralServerResult, createBLEPeripheralServer$ as createBLEPeripheralServer } from './union/createBLEPeripheralServer'; -import { createDing$ as union_createDing } from './union/createDing'; -export { IUnionCreateDingParams, IUnionCreateDingResult, createDing$ as createDing } from './union/createDing'; -import { createDingForPC$ as union_createDingForPC } from './union/createDingForPC'; -export { IUnionCreateDingForPCParams, IUnionCreateDingForPCResult, createDingForPC$ as createDingForPC } from './union/createDingForPC'; -import { createGroupChat$ as union_createGroupChat } from './union/createGroupChat'; -export { IUnionCreateGroupChatParams, IUnionCreateGroupChatResult, createGroupChat$ as createGroupChat } from './union/createGroupChat'; -import { createLiveClassRoom$ as union_createLiveClassRoom } from './union/createLiveClassRoom'; -export { IUnionCreateLiveClassRoomParams, IUnionCreateLiveClassRoomResult, createLiveClassRoom$ as createLiveClassRoom } from './union/createLiveClassRoom'; -import { createPayOrder$ as union_createPayOrder } from './union/createPayOrder'; -export { IUnionCreatePayOrderParams, IUnionCreatePayOrderResult, createPayOrder$ as createPayOrder } from './union/createPayOrder'; -import { cropImage$ as union_cropImage } from './union/cropImage'; -export { IUnionCropImageParams, IUnionCropImageResult, cropImage$ as cropImage } from './union/cropImage'; -import { customChooseUsers$ as union_customChooseUsers } from './union/customChooseUsers'; -export { IUnionCustomChooseUsersParams, IUnionCustomChooseUsersResult, customChooseUsers$ as customChooseUsers } from './union/customChooseUsers'; -import { datePicker$ as union_datePicker } from './union/datePicker'; -export { IUnionDatePickerParams, IUnionDatePickerResult, datePicker$ as datePicker } from './union/datePicker'; -import { dateRangePicker$ as union_dateRangePicker } from './union/dateRangePicker'; -export { IUnionDateRangePickerParams, IUnionDateRangePickerResult, dateRangePicker$ as dateRangePicker } from './union/dateRangePicker'; -import { decrypt$ as union_decrypt } from './union/decrypt'; -export { IUnionDecryptParams, IUnionDecryptResult, decrypt$ as decrypt } from './union/decrypt'; -import { disablePullDownRefresh$ as union_disablePullDownRefresh } from './union/disablePullDownRefresh'; -export { IUnionDisablePullDownRefreshParams, IUnionDisablePullDownRefreshResult, disablePullDownRefresh$ as disablePullDownRefresh } from './union/disablePullDownRefresh'; -import { disableWebViewBounce$ as union_disableWebViewBounce } from './union/disableWebViewBounce'; -export { IUnionDisableWebViewBounceParams, IUnionDisableWebViewBounceResult, disableWebViewBounce$ as disableWebViewBounce } from './union/disableWebViewBounce'; -import { disconnectBLEDevice$ as union_disconnectBLEDevice } from './union/disconnectBLEDevice'; -export { IUnionDisconnectBLEDeviceParams, IUnionDisconnectBLEDeviceResult, disconnectBLEDevice$ as disconnectBLEDevice } from './union/disconnectBLEDevice'; -import { downloadAudio$ as union_downloadAudio } from './union/downloadAudio'; -export { IUnionDownloadAudioParams, IUnionDownloadAudioResult, downloadAudio$ as downloadAudio } from './union/downloadAudio'; -import { downloadFile$ as union_downloadFile } from './union/downloadFile'; -export { IUnionDownloadFileParams, IUnionDownloadFileResult, downloadFile$ as downloadFile } from './union/downloadFile'; -import { editExternalUser$ as union_editExternalUser } from './union/editExternalUser'; -export { IUnionEditExternalUserParams, IUnionEditExternalUserResult, editExternalUser$ as editExternalUser } from './union/editExternalUser'; -import { editPicture$ as union_editPicture } from './union/editPicture'; -export { IUnionEditPictureParams, IUnionEditPictureResult, editPicture$ as editPicture } from './union/editPicture'; -import { enablePullDownRefresh$ as union_enablePullDownRefresh } from './union/enablePullDownRefresh'; -export { IUnionEnablePullDownRefreshParams, IUnionEnablePullDownRefreshResult, enablePullDownRefresh$ as enablePullDownRefresh } from './union/enablePullDownRefresh'; -import { enableWebViewBounce$ as union_enableWebViewBounce } from './union/enableWebViewBounce'; -export { IUnionEnableWebViewBounceParams, IUnionEnableWebViewBounceResult, enableWebViewBounce$ as enableWebViewBounce } from './union/enableWebViewBounce'; -import { encrypt$ as union_encrypt } from './union/encrypt'; -export { IUnionEncryptParams, IUnionEncryptResult, encrypt$ as encrypt } from './union/encrypt'; -import { exclusiveLiveCheck$ as union_exclusiveLiveCheck } from './union/exclusiveLiveCheck'; -export { IUnionExclusiveLiveCheckParams, IUnionExclusiveLiveCheckResult, exclusiveLiveCheck$ as exclusiveLiveCheck } from './union/exclusiveLiveCheck'; -import { generateImageFromCode$ as union_generateImageFromCode } from './union/generateImageFromCode'; -export { IUnionGenerateImageFromCodeParams, IUnionGenerateImageFromCodeResult, generateImageFromCode$ as generateImageFromCode } from './union/generateImageFromCode'; -import { getAccountType$ as union_getAccountType } from './union/getAccountType'; -export { IUnionGetAccountTypeParams, IUnionGetAccountTypeResult, getAccountType$ as getAccountType } from './union/getAccountType'; -import { getActiveConferenceInfo$ as union_getActiveConferenceInfo } from './union/getActiveConferenceInfo'; -export { IUnionGetActiveConferenceInfoParams, IUnionGetActiveConferenceInfoResult, getActiveConferenceInfo$ as getActiveConferenceInfo } from './union/getActiveConferenceInfo'; -import { getAdvertisingStatus$ as union_getAdvertisingStatus } from './union/getAdvertisingStatus'; -export { IUnionGetAdvertisingStatusParams, IUnionGetAdvertisingStatusResult, getAdvertisingStatus$ as getAdvertisingStatus } from './union/getAdvertisingStatus'; -import { getAuthCode$ as union_getAuthCode } from './union/getAuthCode'; -export { IUnionGetAuthCodeParams, IUnionGetAuthCodeResult, getAuthCode$ as getAuthCode } from './union/getAuthCode'; -import { getAuthCodeV2$ as union_getAuthCodeV2 } from './union/getAuthCodeV2'; -export { IUnionGetAuthCodeV2Params, IUnionGetAuthCodeV2Result, getAuthCodeV2$ as getAuthCodeV2 } from './union/getAuthCodeV2'; -import { getAuthInfo$ as union_getAuthInfo } from './union/getAuthInfo'; -export { IUnionGetAuthInfoParams, IUnionGetAuthInfoResult, getAuthInfo$ as getAuthInfo } from './union/getAuthInfo'; -import { getBLEDeviceCharacteristics$ as union_getBLEDeviceCharacteristics } from './union/getBLEDeviceCharacteristics'; -export { IUnionGetBLEDeviceCharacteristicsParams, IUnionGetBLEDeviceCharacteristicsResult, getBLEDeviceCharacteristics$ as getBLEDeviceCharacteristics } from './union/getBLEDeviceCharacteristics'; -import { getBLEDeviceServices$ as union_getBLEDeviceServices } from './union/getBLEDeviceServices'; -export { IUnionGetBLEDeviceServicesParams, IUnionGetBLEDeviceServicesResult, getBLEDeviceServices$ as getBLEDeviceServices } from './union/getBLEDeviceServices'; -import { getBatteryInfo$ as union_getBatteryInfo } from './union/getBatteryInfo'; -export { IUnionGetBatteryInfoParams, IUnionGetBatteryInfoResult, getBatteryInfo$ as getBatteryInfo } from './union/getBatteryInfo'; -import { getBeacons$ as union_getBeacons } from './union/getBeacons'; -export { IUnionGetBeaconsParams, IUnionGetBeaconsResult, getBeacons$ as getBeacons } from './union/getBeacons'; -import { getBluetoothAdapterState$ as union_getBluetoothAdapterState } from './union/getBluetoothAdapterState'; -export { IUnionGetBluetoothAdapterStateParams, IUnionGetBluetoothAdapterStateResult, getBluetoothAdapterState$ as getBluetoothAdapterState } from './union/getBluetoothAdapterState'; -import { getBluetoothDevices$ as union_getBluetoothDevices } from './union/getBluetoothDevices'; -export { IUnionGetBluetoothDevicesParams, IUnionGetBluetoothDevicesResult, getBluetoothDevices$ as getBluetoothDevices } from './union/getBluetoothDevices'; -import { getCachedAPIResponse$ as union_getCachedAPIResponse } from './union/getCachedAPIResponse'; -export { IUnionGetCachedAPIResponseParams, IUnionGetCachedAPIResponseResult, getCachedAPIResponse$ as getCachedAPIResponse } from './union/getCachedAPIResponse'; -import { getCloudCallInfo$ as union_getCloudCallInfo } from './union/getCloudCallInfo'; -export { IUnionGetCloudCallInfoParams, IUnionGetCloudCallInfoResult, getCloudCallInfo$ as getCloudCallInfo } from './union/getCloudCallInfo'; -import { getCloudCallList$ as union_getCloudCallList } from './union/getCloudCallList'; -export { IUnionGetCloudCallListParams, IUnionGetCloudCallListResult, getCloudCallList$ as getCloudCallList } from './union/getCloudCallList'; -import { getCurrentCorpId$ as union_getCurrentCorpId } from './union/getCurrentCorpId'; -export { IUnionGetCurrentCorpIdParams, IUnionGetCurrentCorpIdResult, getCurrentCorpId$ as getCurrentCorpId } from './union/getCurrentCorpId'; -import { getDeviceId$ as union_getDeviceId } from './union/getDeviceId'; -export { IUnionGetDeviceIdParams, IUnionGetDeviceIdResult, getDeviceId$ as getDeviceId } from './union/getDeviceId'; -import { getDeviceUUID$ as union_getDeviceUUID } from './union/getDeviceUUID'; -export { IUnionGetDeviceUUIDParams, IUnionGetDeviceUUIDResult, getDeviceUUID$ as getDeviceUUID } from './union/getDeviceUUID'; -import { getDingerDeviceStatus$ as union_getDingerDeviceStatus } from './union/getDingerDeviceStatus'; -export { IUnionGetDingerDeviceStatusParams, IUnionGetDingerDeviceStatusResult, getDingerDeviceStatus$ as getDingerDeviceStatus } from './union/getDingerDeviceStatus'; -import { getImageInfo$ as union_getImageInfo } from './union/getImageInfo'; -export { IUnionGetImageInfoParams, IUnionGetImageInfoResult, getImageInfo$ as getImageInfo } from './union/getImageInfo'; -import { getLocatingStatus$ as union_getLocatingStatus } from './union/getLocatingStatus'; -export { IUnionGetLocatingStatusParams, IUnionGetLocatingStatusResult, getLocatingStatus$ as getLocatingStatus } from './union/getLocatingStatus'; -import { getLocation$ as union_getLocation } from './union/getLocation'; -export { IUnionGetLocationParams, IUnionGetLocationResult, getLocation$ as getLocation } from './union/getLocation'; -import { getNetworkType$ as union_getNetworkType } from './union/getNetworkType'; -export { IUnionGetNetworkTypeParams, IUnionGetNetworkTypeResult, getNetworkType$ as getNetworkType } from './union/getNetworkType'; -import { getOperateAuthCode$ as union_getOperateAuthCode } from './union/getOperateAuthCode'; -export { IUnionGetOperateAuthCodeParams, IUnionGetOperateAuthCodeResult, getOperateAuthCode$ as getOperateAuthCode } from './union/getOperateAuthCode'; -import { getPageTerminateInfo$ as union_getPageTerminateInfo } from './union/getPageTerminateInfo'; -export { IUnionGetPageTerminateInfoParams, IUnionGetPageTerminateInfoResult, getPageTerminateInfo$ as getPageTerminateInfo } from './union/getPageTerminateInfo'; -import { getPersonalWorkInfo$ as union_getPersonalWorkInfo } from './union/getPersonalWorkInfo'; -export { IUnionGetPersonalWorkInfoParams, IUnionGetPersonalWorkInfoResult, getPersonalWorkInfo$ as getPersonalWorkInfo } from './union/getPersonalWorkInfo'; -import { getScreenBrightness$ as union_getScreenBrightness } from './union/getScreenBrightness'; -export { IUnionGetScreenBrightnessParams, IUnionGetScreenBrightnessResult, getScreenBrightness$ as getScreenBrightness } from './union/getScreenBrightness'; -import { getStorage$ as union_getStorage } from './union/getStorage'; -export { IUnionGetStorageParams, IUnionGetStorageResult, getStorage$ as getStorage } from './union/getStorage'; -import { getSystemInfo$ as union_getSystemInfo } from './union/getSystemInfo'; -export { IUnionGetSystemInfoParams, IUnionGetSystemInfoResult, getSystemInfo$ as getSystemInfo } from './union/getSystemInfo'; -import { getSystemSettings$ as union_getSystemSettings } from './union/getSystemSettings'; -export { IUnionGetSystemSettingsParams, IUnionGetSystemSettingsResult, getSystemSettings$ as getSystemSettings } from './union/getSystemSettings'; -import { getThirdAppConfCustomData$ as union_getThirdAppConfCustomData } from './union/getThirdAppConfCustomData'; -export { IUnionGetThirdAppConfCustomDataParams, IUnionGetThirdAppConfCustomDataResult, getThirdAppConfCustomData$ as getThirdAppConfCustomData } from './union/getThirdAppConfCustomData'; -import { getThirdAppUserCustomData$ as union_getThirdAppUserCustomData } from './union/getThirdAppUserCustomData'; -export { IUnionGetThirdAppUserCustomDataParams, IUnionGetThirdAppUserCustomDataResult, getThirdAppUserCustomData$ as getThirdAppUserCustomData } from './union/getThirdAppUserCustomData'; -import { getTodaysStepCount$ as union_getTodaysStepCount } from './union/getTodaysStepCount'; -export { IUnionGetTodaysStepCountParams, IUnionGetTodaysStepCountResult, getTodaysStepCount$ as getTodaysStepCount } from './union/getTodaysStepCount'; -import { getTranslateStatus$ as union_getTranslateStatus } from './union/getTranslateStatus'; -export { IUnionGetTranslateStatusParams, IUnionGetTranslateStatusResult, getTranslateStatus$ as getTranslateStatus } from './union/getTranslateStatus'; -import { getUserExclusiveInfo$ as union_getUserExclusiveInfo } from './union/getUserExclusiveInfo'; -export { IUnionGetUserExclusiveInfoParams, IUnionGetUserExclusiveInfoResult, getUserExclusiveInfo$ as getUserExclusiveInfo } from './union/getUserExclusiveInfo'; -import { getWifiHotspotStatus$ as union_getWifiHotspotStatus } from './union/getWifiHotspotStatus'; -export { IUnionGetWifiHotspotStatusParams, IUnionGetWifiHotspotStatusResult, getWifiHotspotStatus$ as getWifiHotspotStatus } from './union/getWifiHotspotStatus'; -import { getWifiStatus$ as union_getWifiStatus } from './union/getWifiStatus'; -export { IUnionGetWifiStatusParams, IUnionGetWifiStatusResult, getWifiStatus$ as getWifiStatus } from './union/getWifiStatus'; -import { goBackPage$ as union_goBackPage } from './union/goBackPage'; -export { IUnionGoBackPageParams, IUnionGoBackPageResult, goBackPage$ as goBackPage } from './union/goBackPage'; -import { hideLoading$ as union_hideLoading } from './union/hideLoading'; -export { IUnionHideLoadingParams, IUnionHideLoadingResult, hideLoading$ as hideLoading } from './union/hideLoading'; -import { hideToast$ as union_hideToast } from './union/hideToast'; -export { IUnionHideToastParams, IUnionHideToastResult, hideToast$ as hideToast } from './union/hideToast'; -import { isInTabWindow$ as union_isInTabWindow } from './union/isInTabWindow'; -export { IUnionIsInTabWindowParams, IUnionIsInTabWindowResult, isInTabWindow$ as isInTabWindow } from './union/isInTabWindow'; -import { isLocalFileExist$ as union_isLocalFileExist } from './union/isLocalFileExist'; -export { IUnionIsLocalFileExistParams, IUnionIsLocalFileExistResult, isLocalFileExist$ as isLocalFileExist } from './union/isLocalFileExist'; -import { isScreenReaderEnabled$ as union_isScreenReaderEnabled } from './union/isScreenReaderEnabled'; -export { IUnionIsScreenReaderEnabledParams, IUnionIsScreenReaderEnabledResult, isScreenReaderEnabled$ as isScreenReaderEnabled } from './union/isScreenReaderEnabled'; -import { locateInMap$ as union_locateInMap } from './union/locateInMap'; -export { IUnionLocateInMapParams, IUnionLocateInMapResult, locateInMap$ as locateInMap } from './union/locateInMap'; -import { makeCloudCall$ as union_makeCloudCall } from './union/makeCloudCall'; -export { IUnionMakeCloudCallParams, IUnionMakeCloudCallResult, makeCloudCall$ as makeCloudCall } from './union/makeCloudCall'; -import { makeVideoConfCall$ as union_makeVideoConfCall } from './union/makeVideoConfCall'; -export { IUnionMakeVideoConfCallParams, IUnionMakeVideoConfCallResult, makeVideoConfCall$ as makeVideoConfCall } from './union/makeVideoConfCall'; -import { minutesCreateFromVideo$ as union_minutesCreateFromVideo } from './union/minutesCreateFromVideo'; -export { IUnionMinutesCreateFromVideoParams, IUnionMinutesCreateFromVideoResult, minutesCreateFromVideo$ as minutesCreateFromVideo } from './union/minutesCreateFromVideo'; -import { minutesStart$ as union_minutesStart } from './union/minutesStart'; -export { IUnionMinutesStartParams, IUnionMinutesStartResult, minutesStart$ as minutesStart } from './union/minutesStart'; -import { minutesUploadVideo$ as union_minutesUploadVideo } from './union/minutesUploadVideo'; -export { IUnionMinutesUploadVideoParams, IUnionMinutesUploadVideoResult, minutesUploadVideo$ as minutesUploadVideo } from './union/minutesUploadVideo'; -import { minutesViewDetail$ as union_minutesViewDetail } from './union/minutesViewDetail'; -export { IUnionMinutesViewDetailParams, IUnionMinutesViewDetailResult, minutesViewDetail$ as minutesViewDetail } from './union/minutesViewDetail'; -import { multiSelect$ as union_multiSelect } from './union/multiSelect'; -export { IUnionMultiSelectParams, IUnionMultiSelectResult, multiSelect$ as multiSelect } from './union/multiSelect'; -import { navigateBackPage$ as union_navigateBackPage } from './union/navigateBackPage'; -export { IUnionNavigateBackPageParams, IUnionNavigateBackPageResult, navigateBackPage$ as navigateBackPage } from './union/navigateBackPage'; -import { navigateToPage$ as union_navigateToPage } from './union/navigateToPage'; -export { IUnionNavigateToPageParams, IUnionNavigateToPageResult, navigateToPage$ as navigateToPage } from './union/navigateToPage'; -import { nfcReadCardNumber$ as union_nfcReadCardNumber } from './union/nfcReadCardNumber'; -export { IUnionNfcReadCardNumberParams, IUnionNfcReadCardNumberResult, nfcReadCardNumber$ as nfcReadCardNumber } from './union/nfcReadCardNumber'; -import { notifyBLECharacteristicValueChange$ as union_notifyBLECharacteristicValueChange } from './union/notifyBLECharacteristicValueChange'; -export { IUnionNotifyBLECharacteristicValueChangeParams, IUnionNotifyBLECharacteristicValueChangeResult, notifyBLECharacteristicValueChange$ as notifyBLECharacteristicValueChange } from './union/notifyBLECharacteristicValueChange'; -import { notifyTranslateEvent$ as union_notifyTranslateEvent } from './union/notifyTranslateEvent'; -export { IUnionNotifyTranslateEventParams, IUnionNotifyTranslateEventResult, notifyTranslateEvent$ as notifyTranslateEvent } from './union/notifyTranslateEvent'; -import { offBLECharacteristicValueChange$ as union_offBLECharacteristicValueChange } from './union/offBLECharacteristicValueChange'; -export { IUnionOffBLECharacteristicValueChangeParams, IUnionOffBLECharacteristicValueChangeResult, offBLECharacteristicValueChange$ as offBLECharacteristicValueChange } from './union/offBLECharacteristicValueChange'; -import { offBLEConnectionStateChanged$ as union_offBLEConnectionStateChanged } from './union/offBLEConnectionStateChanged'; -export { IUnionOffBLEConnectionStateChangedParams, IUnionOffBLEConnectionStateChangedResult, offBLEConnectionStateChanged$ as offBLEConnectionStateChanged } from './union/offBLEConnectionStateChanged'; -import { offBluetoothAdapterStateChange$ as union_offBluetoothAdapterStateChange } from './union/offBluetoothAdapterStateChange'; -export { IUnionOffBluetoothAdapterStateChangeParams, IUnionOffBluetoothAdapterStateChangeResult, offBluetoothAdapterStateChange$ as offBluetoothAdapterStateChange } from './union/offBluetoothAdapterStateChange'; -import { offBluetoothDeviceFound$ as union_offBluetoothDeviceFound } from './union/offBluetoothDeviceFound'; -export { IUnionOffBluetoothDeviceFoundParams, IUnionOffBluetoothDeviceFoundResult, offBluetoothDeviceFound$ as offBluetoothDeviceFound } from './union/offBluetoothDeviceFound'; -import { onBLECharacteristicValueChange$ as union_onBLECharacteristicValueChange } from './union/onBLECharacteristicValueChange'; -export { IUnionOnBLECharacteristicValueChangeParams, IUnionOnBLECharacteristicValueChangeResult, onBLECharacteristicValueChange$ as onBLECharacteristicValueChange } from './union/onBLECharacteristicValueChange'; -import { onBLEConnectionStateChanged$ as union_onBLEConnectionStateChanged } from './union/onBLEConnectionStateChanged'; -export { IUnionOnBLEConnectionStateChangedParams, IUnionOnBLEConnectionStateChangedResult, onBLEConnectionStateChanged$ as onBLEConnectionStateChanged } from './union/onBLEConnectionStateChanged'; -import { onBLEPeripheralCharacteristicReadRequest$ as union_onBLEPeripheralCharacteristicReadRequest } from './union/onBLEPeripheralCharacteristicReadRequest'; -export { IUnionOnBLEPeripheralCharacteristicReadRequestParams, IUnionOnBLEPeripheralCharacteristicReadRequestResult, onBLEPeripheralCharacteristicReadRequest$ as onBLEPeripheralCharacteristicReadRequest } from './union/onBLEPeripheralCharacteristicReadRequest'; -import { onBLEPeripheralCharacteristicWriteRequest$ as union_onBLEPeripheralCharacteristicWriteRequest } from './union/onBLEPeripheralCharacteristicWriteRequest'; -export { IUnionOnBLEPeripheralCharacteristicWriteRequestParams, IUnionOnBLEPeripheralCharacteristicWriteRequestResult, onBLEPeripheralCharacteristicWriteRequest$ as onBLEPeripheralCharacteristicWriteRequest } from './union/onBLEPeripheralCharacteristicWriteRequest'; -import { onBLEPeripheralConnectionStateChanged$ as union_onBLEPeripheralConnectionStateChanged } from './union/onBLEPeripheralConnectionStateChanged'; -export { IUnionOnBLEPeripheralConnectionStateChangedParams, IUnionOnBLEPeripheralConnectionStateChangedResult, onBLEPeripheralConnectionStateChanged$ as onBLEPeripheralConnectionStateChanged } from './union/onBLEPeripheralConnectionStateChanged'; -import { onBeaconServiceChange$ as union_onBeaconServiceChange } from './union/onBeaconServiceChange'; -export { IUnionOnBeaconServiceChangeParams, IUnionOnBeaconServiceChangeResult, onBeaconServiceChange$ as onBeaconServiceChange } from './union/onBeaconServiceChange'; -import { onBeaconUpdate$ as union_onBeaconUpdate } from './union/onBeaconUpdate'; -export { IUnionOnBeaconUpdateParams, IUnionOnBeaconUpdateResult, onBeaconUpdate$ as onBeaconUpdate } from './union/onBeaconUpdate'; -import { onBluetoothAdapterStateChange$ as union_onBluetoothAdapterStateChange } from './union/onBluetoothAdapterStateChange'; -export { IUnionOnBluetoothAdapterStateChangeParams, IUnionOnBluetoothAdapterStateChangeResult, onBluetoothAdapterStateChange$ as onBluetoothAdapterStateChange } from './union/onBluetoothAdapterStateChange'; -import { onBluetoothDeviceFound$ as union_onBluetoothDeviceFound } from './union/onBluetoothDeviceFound'; -export { IUnionOnBluetoothDeviceFoundParams, IUnionOnBluetoothDeviceFoundResult, onBluetoothDeviceFound$ as onBluetoothDeviceFound } from './union/onBluetoothDeviceFound'; -import { onPlayAudioEnd$ as union_onPlayAudioEnd } from './union/onPlayAudioEnd'; -export { IUnionOnPlayAudioEndParams, IUnionOnPlayAudioEndResult, onPlayAudioEnd$ as onPlayAudioEnd } from './union/onPlayAudioEnd'; -import { onRecordEnd$ as union_onRecordEnd } from './union/onRecordEnd'; -export { IUnionOnRecordEndParams, IUnionOnRecordEndResult, onRecordEnd$ as onRecordEnd } from './union/onRecordEnd'; -import { openBluetoothAdapter$ as union_openBluetoothAdapter } from './union/openBluetoothAdapter'; -export { IUnionOpenBluetoothAdapterParams, IUnionOpenBluetoothAdapterResult, openBluetoothAdapter$ as openBluetoothAdapter } from './union/openBluetoothAdapter'; -import { openChatByChatId$ as union_openChatByChatId } from './union/openChatByChatId'; -export { IUnionOpenChatByChatIdParams, IUnionOpenChatByChatIdResult, openChatByChatId$ as openChatByChatId } from './union/openChatByChatId'; -import { openChatByConversationId$ as union_openChatByConversationId } from './union/openChatByConversationId'; -export { IUnionOpenChatByConversationIdParams, IUnionOpenChatByConversationIdResult, openChatByConversationId$ as openChatByConversationId } from './union/openChatByConversationId'; -import { openChatByUserId$ as union_openChatByUserId } from './union/openChatByUserId'; -export { IUnionOpenChatByUserIdParams, IUnionOpenChatByUserIdResult, openChatByUserId$ as openChatByUserId } from './union/openChatByUserId'; -import { openDocument$ as union_openDocument } from './union/openDocument'; -export { IUnionOpenDocumentParams, IUnionOpenDocumentResult, openDocument$ as openDocument } from './union/openDocument'; -import { openLink$ as union_openLink } from './union/openLink'; -export { IUnionOpenLinkParams, IUnionOpenLinkResult, openLink$ as openLink } from './union/openLink'; -import { openLocalFile$ as union_openLocalFile } from './union/openLocalFile'; -export { IUnionOpenLocalFileParams, IUnionOpenLocalFileResult, openLocalFile$ as openLocalFile } from './union/openLocalFile'; -import { openLocation$ as union_openLocation } from './union/openLocation'; -export { IUnionOpenLocationParams, IUnionOpenLocationResult, openLocation$ as openLocation } from './union/openLocation'; -import { openMicroApp$ as union_openMicroApp } from './union/openMicroApp'; -export { IUnionOpenMicroAppParams, IUnionOpenMicroAppResult, openMicroApp$ as openMicroApp } from './union/openMicroApp'; -import { openPageInMicroApp$ as union_openPageInMicroApp } from './union/openPageInMicroApp'; -export { IUnionOpenPageInMicroAppParams, IUnionOpenPageInMicroAppResult, openPageInMicroApp$ as openPageInMicroApp } from './union/openPageInMicroApp'; -import { openPageInModalForPC$ as union_openPageInModalForPC } from './union/openPageInModalForPC'; -export { IUnionOpenPageInModalForPCParams, IUnionOpenPageInModalForPCResult, openPageInModalForPC$ as openPageInModalForPC } from './union/openPageInModalForPC'; -import { openPageInSlidePanelForPC$ as union_openPageInSlidePanelForPC } from './union/openPageInSlidePanelForPC'; -export { IUnionOpenPageInSlidePanelForPCParams, IUnionOpenPageInSlidePanelForPCResult, openPageInSlidePanelForPC$ as openPageInSlidePanelForPC } from './union/openPageInSlidePanelForPC'; -import { openPageInWorkBenchForPC$ as union_openPageInWorkBenchForPC } from './union/openPageInWorkBenchForPC'; -export { IUnionOpenPageInWorkBenchForPCParams, IUnionOpenPageInWorkBenchForPCResult, openPageInWorkBenchForPC$ as openPageInWorkBenchForPC } from './union/openPageInWorkBenchForPC'; -import { pauseAudio$ as union_pauseAudio } from './union/pauseAudio'; -export { IUnionPauseAudioParams, IUnionPauseAudioResult, pauseAudio$ as pauseAudio } from './union/pauseAudio'; -import { playAudio$ as union_playAudio } from './union/playAudio'; -export { IUnionPlayAudioParams, IUnionPlayAudioResult, playAudio$ as playAudio } from './union/playAudio'; -import { popGesture$ as union_popGesture } from './union/popGesture'; -export { IUnionPopGestureParams, IUnionPopGestureResult, popGesture$ as popGesture } from './union/popGesture'; -import { previewFileInDingTalk$ as union_previewFileInDingTalk } from './union/previewFileInDingTalk'; -export { IUnionPreviewFileInDingTalkParams, IUnionPreviewFileInDingTalkResult, previewFileInDingTalk$ as previewFileInDingTalk } from './union/previewFileInDingTalk'; -import { previewImage$ as union_previewImage } from './union/previewImage'; -export { IUnionPreviewImageParams, IUnionPreviewImageResult, previewImage$ as previewImage } from './union/previewImage'; -import { previewImagesInDingTalkBatch$ as union_previewImagesInDingTalkBatch } from './union/previewImagesInDingTalkBatch'; -export { IUnionPreviewImagesInDingTalkBatchParams, IUnionPreviewImagesInDingTalkBatchResult, previewImagesInDingTalkBatch$ as previewImagesInDingTalkBatch } from './union/previewImagesInDingTalkBatch'; -import { previewMedia$ as union_previewMedia } from './union/previewMedia'; -export { IUnionPreviewMediaParams, IUnionPreviewMediaResult, previewMedia$ as previewMedia } from './union/previewMedia'; -import { prompt$ as union_prompt } from './union/prompt'; -export { IUnionPromptParams, IUnionPromptResult, prompt$ as prompt } from './union/prompt'; -import { quickCallList$ as union_quickCallList } from './union/quickCallList'; -export { IUnionQuickCallListParams, IUnionQuickCallListResult, quickCallList$ as quickCallList } from './union/quickCallList'; -import { quitPage$ as union_quitPage } from './union/quitPage'; -export { IUnionQuitPageParams, IUnionQuitPageResult, quitPage$ as quitPage } from './union/quitPage'; -import { readBLECharacteristicValue$ as union_readBLECharacteristicValue } from './union/readBLECharacteristicValue'; -export { IUnionReadBLECharacteristicValueParams, IUnionReadBLECharacteristicValueResult, readBLECharacteristicValue$ as readBLECharacteristicValue } from './union/readBLECharacteristicValue'; -import { readNFC$ as union_readNFC } from './union/readNFC'; -export { IUnionReadNFCParams, IUnionReadNFCResult, readNFC$ as readNFC } from './union/readNFC'; -import { removeCachedAPIResponse$ as union_removeCachedAPIResponse } from './union/removeCachedAPIResponse'; -export { IUnionRemoveCachedAPIResponseParams, IUnionRemoveCachedAPIResponseResult, removeCachedAPIResponse$ as removeCachedAPIResponse } from './union/removeCachedAPIResponse'; -import { removeStorage$ as union_removeStorage } from './union/removeStorage'; -export { IUnionRemoveStorageParams, IUnionRemoveStorageResult, removeStorage$ as removeStorage } from './union/removeStorage'; -import { replacePage$ as union_replacePage } from './union/replacePage'; -export { IUnionReplacePageParams, IUnionReplacePageResult, replacePage$ as replacePage } from './union/replacePage'; -import { requestAuthCode$ as union_requestAuthCode } from './union/requestAuthCode'; -export { IUnionRequestAuthCodeParams, IUnionRequestAuthCodeResult, requestAuthCode$ as requestAuthCode } from './union/requestAuthCode'; -import { requestMoneySubmmitOrder$ as union_requestMoneySubmmitOrder } from './union/requestMoneySubmmitOrder'; -export { IUnionRequestMoneySubmmitOrderParams, IUnionRequestMoneySubmmitOrderResult, requestMoneySubmmitOrder$ as requestMoneySubmmitOrder } from './union/requestMoneySubmmitOrder'; -import { resetScreenView$ as union_resetScreenView } from './union/resetScreenView'; -export { IUnionResetScreenViewParams, IUnionResetScreenViewResult, resetScreenView$ as resetScreenView } from './union/resetScreenView'; -import { resumeAudio$ as union_resumeAudio } from './union/resumeAudio'; -export { IUnionResumeAudioParams, IUnionResumeAudioResult, resumeAudio$ as resumeAudio } from './union/resumeAudio'; -import { rotateScreenView$ as union_rotateScreenView } from './union/rotateScreenView'; -export { IUnionRotateScreenViewParams, IUnionRotateScreenViewResult, rotateScreenView$ as rotateScreenView } from './union/rotateScreenView'; -import { rsa$ as union_rsa } from './union/rsa'; -export { IUnionRsaParams, IUnionRsaResult, rsa$ as rsa } from './union/rsa'; -import { saveFileToDingTalk$ as union_saveFileToDingTalk } from './union/saveFileToDingTalk'; -export { IUnionSaveFileToDingTalkParams, IUnionSaveFileToDingTalkResult, saveFileToDingTalk$ as saveFileToDingTalk } from './union/saveFileToDingTalk'; -import { saveImageToPhotosAlbum$ as union_saveImageToPhotosAlbum } from './union/saveImageToPhotosAlbum'; -export { IUnionSaveImageToPhotosAlbumParams, IUnionSaveImageToPhotosAlbumResult, saveImageToPhotosAlbum$ as saveImageToPhotosAlbum } from './union/saveImageToPhotosAlbum'; -import { saveVideoToPhotosAlbum$ as union_saveVideoToPhotosAlbum } from './union/saveVideoToPhotosAlbum'; -export { IUnionSaveVideoToPhotosAlbumParams, IUnionSaveVideoToPhotosAlbumResult, saveVideoToPhotosAlbum$ as saveVideoToPhotosAlbum } from './union/saveVideoToPhotosAlbum'; -import { scan$ as union_scan } from './union/scan'; -export { IUnionScanParams, IUnionScanResult, scan$ as scan } from './union/scan'; -import { scanCard$ as union_scanCard } from './union/scanCard'; -export { IUnionScanCardParams, IUnionScanCardResult, scanCard$ as scanCard } from './union/scanCard'; -import { searchMap$ as union_searchMap } from './union/searchMap'; -export { IUnionSearchMapParams, IUnionSearchMapResult, searchMap$ as searchMap } from './union/searchMap'; -import { setClipboard$ as union_setClipboard } from './union/setClipboard'; -export { IUnionSetClipboardParams, IUnionSetClipboardResult, setClipboard$ as setClipboard } from './union/setClipboard'; -import { setGestures$ as union_setGestures } from './union/setGestures'; -export { IUnionSetGesturesParams, IUnionSetGesturesResult, setGestures$ as setGestures } from './union/setGestures'; -import { setKeepScreenOn$ as union_setKeepScreenOn } from './union/setKeepScreenOn'; -export { IUnionSetKeepScreenOnParams, IUnionSetKeepScreenOnResult, setKeepScreenOn$ as setKeepScreenOn } from './union/setKeepScreenOn'; -import { setNavigationIcon$ as union_setNavigationIcon } from './union/setNavigationIcon'; -export { IUnionSetNavigationIconParams, IUnionSetNavigationIconResult, setNavigationIcon$ as setNavigationIcon } from './union/setNavigationIcon'; -import { setNavigationLeft$ as union_setNavigationLeft } from './union/setNavigationLeft'; -export { IUnionSetNavigationLeftParams, IUnionSetNavigationLeftResult, setNavigationLeft$ as setNavigationLeft } from './union/setNavigationLeft'; -import { setNavigationTitle$ as union_setNavigationTitle } from './union/setNavigationTitle'; -export { IUnionSetNavigationTitleParams, IUnionSetNavigationTitleResult, setNavigationTitle$ as setNavigationTitle } from './union/setNavigationTitle'; -import { setScreenBrightness$ as union_setScreenBrightness } from './union/setScreenBrightness'; -export { IUnionSetScreenBrightnessParams, IUnionSetScreenBrightnessResult, setScreenBrightness$ as setScreenBrightness } from './union/setScreenBrightness'; -import { setStorage$ as union_setStorage } from './union/setStorage'; -export { IUnionSetStorageParams, IUnionSetStorageResult, setStorage$ as setStorage } from './union/setStorage'; -import { share$ as union_share } from './union/share'; -export { IUnionShareParams, IUnionShareResult, share$ as share } from './union/share'; -import { showActionSheet$ as union_showActionSheet } from './union/showActionSheet'; -export { IUnionShowActionSheetParams, IUnionShowActionSheetResult, showActionSheet$ as showActionSheet } from './union/showActionSheet'; -import { showAuthGuide$ as union_showAuthGuide } from './union/showAuthGuide'; -export { IUnionShowAuthGuideParams, IUnionShowAuthGuideResult, showAuthGuide$ as showAuthGuide } from './union/showAuthGuide'; -import { showCallMenu$ as union_showCallMenu } from './union/showCallMenu'; -export { IUnionShowCallMenuParams, IUnionShowCallMenuResult, showCallMenu$ as showCallMenu } from './union/showCallMenu'; -import { showLoading$ as union_showLoading } from './union/showLoading'; -export { IUnionShowLoadingParams, IUnionShowLoadingResult, showLoading$ as showLoading } from './union/showLoading'; -import { showModal$ as union_showModal } from './union/showModal'; -export { IUnionShowModalParams, IUnionShowModalResult, showModal$ as showModal } from './union/showModal'; -import { showSharePanel$ as union_showSharePanel } from './union/showSharePanel'; -export { IUnionShowSharePanelParams, IUnionShowSharePanelResult, showSharePanel$ as showSharePanel } from './union/showSharePanel'; -import { showToast$ as union_showToast } from './union/showToast'; -export { IUnionShowToastParams, IUnionShowToastResult, showToast$ as showToast } from './union/showToast'; -import { singleSelect$ as union_singleSelect } from './union/singleSelect'; -export { IUnionSingleSelectParams, IUnionSingleSelectResult, singleSelect$ as singleSelect } from './union/singleSelect'; -import { startAdvertising$ as union_startAdvertising } from './union/startAdvertising'; -export { IUnionStartAdvertisingParams, IUnionStartAdvertisingResult, startAdvertising$ as startAdvertising } from './union/startAdvertising'; -import { startBeaconDiscovery$ as union_startBeaconDiscovery } from './union/startBeaconDiscovery'; -export { IUnionStartBeaconDiscoveryParams, IUnionStartBeaconDiscoveryResult, startBeaconDiscovery$ as startBeaconDiscovery } from './union/startBeaconDiscovery'; -import { startBluetoothDevicesDiscovery$ as union_startBluetoothDevicesDiscovery } from './union/startBluetoothDevicesDiscovery'; -export { IUnionStartBluetoothDevicesDiscoveryParams, IUnionStartBluetoothDevicesDiscoveryResult, startBluetoothDevicesDiscovery$ as startBluetoothDevicesDiscovery } from './union/startBluetoothDevicesDiscovery'; -import { startDingerRecord$ as union_startDingerRecord } from './union/startDingerRecord'; -export { IUnionStartDingerRecordParams, IUnionStartDingerRecordResult, startDingerRecord$ as startDingerRecord } from './union/startDingerRecord'; -import { startLocating$ as union_startLocating } from './union/startLocating'; -export { IUnionStartLocatingParams, IUnionStartLocatingResult, startLocating$ as startLocating } from './union/startLocating'; -import { startRecord$ as union_startRecord } from './union/startRecord'; -export { IUnionStartRecordParams, IUnionStartRecordResult, startRecord$ as startRecord } from './union/startRecord'; -import { stopAdvertising$ as union_stopAdvertising } from './union/stopAdvertising'; -export { IUnionStopAdvertisingParams, IUnionStopAdvertisingResult, stopAdvertising$ as stopAdvertising } from './union/stopAdvertising'; -import { stopAudio$ as union_stopAudio } from './union/stopAudio'; -export { IUnionStopAudioParams, IUnionStopAudioResult, stopAudio$ as stopAudio } from './union/stopAudio'; -import { stopBeaconDiscovery$ as union_stopBeaconDiscovery } from './union/stopBeaconDiscovery'; -export { IUnionStopBeaconDiscoveryParams, IUnionStopBeaconDiscoveryResult, stopBeaconDiscovery$ as stopBeaconDiscovery } from './union/stopBeaconDiscovery'; -import { stopBluetoothDevicesDiscovery$ as union_stopBluetoothDevicesDiscovery } from './union/stopBluetoothDevicesDiscovery'; -export { IUnionStopBluetoothDevicesDiscoveryParams, IUnionStopBluetoothDevicesDiscoveryResult, stopBluetoothDevicesDiscovery$ as stopBluetoothDevicesDiscovery } from './union/stopBluetoothDevicesDiscovery'; -import { stopDingerRecord$ as union_stopDingerRecord } from './union/stopDingerRecord'; -export { IUnionStopDingerRecordParams, IUnionStopDingerRecordResult, stopDingerRecord$ as stopDingerRecord } from './union/stopDingerRecord'; -import { stopLocating$ as union_stopLocating } from './union/stopLocating'; -export { IUnionStopLocatingParams, IUnionStopLocatingResult, stopLocating$ as stopLocating } from './union/stopLocating'; -import { stopPullDownRefresh$ as union_stopPullDownRefresh } from './union/stopPullDownRefresh'; -export { IUnionStopPullDownRefreshParams, IUnionStopPullDownRefreshResult, stopPullDownRefresh$ as stopPullDownRefresh } from './union/stopPullDownRefresh'; -import { stopRecord$ as union_stopRecord } from './union/stopRecord'; -export { IUnionStopRecordParams, IUnionStopRecordResult, stopRecord$ as stopRecord } from './union/stopRecord'; -import { subscribe$ as union_subscribe } from './union/subscribe'; -export { IUnionSubscribeParams, IUnionSubscribeResult, subscribe$ as subscribe } from './union/subscribe'; -import { timePicker$ as union_timePicker } from './union/timePicker'; -export { IUnionTimePickerParams, IUnionTimePickerResult, timePicker$ as timePicker } from './union/timePicker'; -import { translate$ as union_translate } from './union/translate'; -export { IUnionTranslateParams, IUnionTranslateResult, translate$ as translate } from './union/translate'; -import { translateVoice$ as union_translateVoice } from './union/translateVoice'; -export { IUnionTranslateVoiceParams, IUnionTranslateVoiceResult, translateVoice$ as translateVoice } from './union/translateVoice'; -import { uploadAttachmentToDingTalk$ as union_uploadAttachmentToDingTalk } from './union/uploadAttachmentToDingTalk'; -export { IUnionUploadAttachmentToDingTalkParams, IUnionUploadAttachmentToDingTalkResult, uploadAttachmentToDingTalk$ as uploadAttachmentToDingTalk } from './union/uploadAttachmentToDingTalk'; -import { uploadFile$ as union_uploadFile } from './union/uploadFile'; -export { IUnionUploadFileParams, IUnionUploadFileResult, uploadFile$ as uploadFile } from './union/uploadFile'; -import { vibrate$ as union_vibrate } from './union/vibrate'; -export { IUnionVibrateParams, IUnionVibrateResult, vibrate$ as vibrate } from './union/vibrate'; -import { watchShake$ as union_watchShake } from './union/watchShake'; -export { IUnionWatchShakeParams, IUnionWatchShakeResult, watchShake$ as watchShake } from './union/watchShake'; -import { writeBLECharacteristicValue$ as union_writeBLECharacteristicValue } from './union/writeBLECharacteristicValue'; -export { IUnionWriteBLECharacteristicValueParams, IUnionWriteBLECharacteristicValueResult, writeBLECharacteristicValue$ as writeBLECharacteristicValue } from './union/writeBLECharacteristicValue'; -import { writeBLEPeripheralCharacteristicValue$ as union_writeBLEPeripheralCharacteristicValue } from './union/writeBLEPeripheralCharacteristicValue'; -export { IUnionWriteBLEPeripheralCharacteristicValueParams, IUnionWriteBLEPeripheralCharacteristicValueResult, writeBLEPeripheralCharacteristicValue$ as writeBLEPeripheralCharacteristicValue } from './union/writeBLEPeripheralCharacteristicValue'; -import { writeNFC$ as union_writeNFC } from './union/writeNFC'; -export { IUnionWriteNFCParams, IUnionWriteNFCResult, writeNFC$ as writeNFC } from './union/writeNFC'; -import { getItem$ as util_domainStorage_getItem } from './util/domainStorage/getItem'; -export { IUtilDomainStorageGetItemParams, IUtilDomainStorageGetItemResult } from './util/domainStorage/getItem'; -import { getStorageInfo$ as util_domainStorage_getStorageInfo } from './util/domainStorage/getStorageInfo'; -export { IUtilDomainStorageGetStorageInfoParams, IUtilDomainStorageGetStorageInfoResult } from './util/domainStorage/getStorageInfo'; -import { removeItem$ as util_domainStorage_removeItem } from './util/domainStorage/removeItem'; -export { IUtilDomainStorageRemoveItemParams, IUtilDomainStorageRemoveItemResult } from './util/domainStorage/removeItem'; -import { setItem$ as util_domainStorage_setItem } from './util/domainStorage/setItem'; -export { IUtilDomainStorageSetItemParams, IUtilDomainStorageSetItemResult } from './util/domainStorage/setItem'; -import { getData$ as util_openTemporary_getData } from './util/openTemporary/getData'; -export { IUtilOpenTemporaryGetDataParams, IUtilOpenTemporaryGetDataResult } from './util/openTemporary/getData'; -export declare const apiObj: { - biz: { - ATMBle: { - beaconPicker: typeof biz_ATMBle_beaconPicker; - detectFace: typeof biz_ATMBle_detectFace; - detectFaceFullScreen: typeof biz_ATMBle_detectFaceFullScreen; - exclusiveLiveCheck: typeof biz_ATMBle_exclusiveLiveCheck; - faceManager: typeof biz_ATMBle_faceManager; - punchModePicker: typeof biz_ATMBle_punchModePicker; - }; - alipay: { - bindAlipay: typeof biz_alipay_bindAlipay; - openAuth: typeof biz_alipay_openAuth; - pay: typeof biz_alipay_pay; - }; - attend: { - getLBSWua: typeof biz_attend_getLBSWua; - }; - auth: { - openAccountPwdLoginPage: typeof biz_auth_openAccountPwdLoginPage; - requestAuthInfo: typeof biz_auth_requestAuthInfo; - }; - calendar: { - chooseDateTime: typeof biz_calendar_chooseDateTime; - chooseHalfDay: typeof biz_calendar_chooseHalfDay; - chooseInterval: typeof biz_calendar_chooseInterval; - chooseOneDay: typeof biz_calendar_chooseOneDay; - }; - chat: { - chooseConversationByCorpId: typeof biz_chat_chooseConversationByCorpId; - collectSticker: typeof biz_chat_collectSticker; - createSceneGroup: typeof biz_chat_createSceneGroup; - getRealmCid: typeof biz_chat_getRealmCid; - locationChatMessage: typeof biz_chat_locationChatMessage; - openSingleChat: typeof biz_chat_openSingleChat; - pickConversation: typeof biz_chat_pickConversation; - sendEmotion: typeof biz_chat_sendEmotion; - toConversation: typeof biz_chat_toConversation; - toConversationByOpenConversationId: typeof biz_chat_toConversationByOpenConversationId; - }; - clipboardData: { - setData: typeof biz_clipboardData_setData; - }; - conference: { - createCloudCall: typeof biz_conference_createCloudCall; - getCloudCallInfo: typeof biz_conference_getCloudCallInfo; - getCloudCallList: typeof biz_conference_getCloudCallList; - videoConfCall: typeof biz_conference_videoConfCall; - }; - contact: { - choose: typeof biz_contact_choose; - chooseMobileContacts: typeof biz_contact_chooseMobileContacts; - complexPicker: typeof biz_contact_complexPicker; - createGroup: typeof biz_contact_createGroup; - departmentsPicker: typeof biz_contact_departmentsPicker; - externalComplexPicker: typeof biz_contact_externalComplexPicker; - externalEditForm: typeof biz_contact_externalEditForm; - rolesPicker: typeof biz_contact_rolesPicker; - setRule: typeof biz_contact_setRule; - }; - cspace: { - chooseSpaceDir: typeof biz_cspace_chooseSpaceDir; - delete: typeof biz_cspace_delete; - preview: typeof biz_cspace_preview; - previewDentryImages: typeof biz_cspace_previewDentryImages; - saveFile: typeof biz_cspace_saveFile; - }; - customContact: { - choose: typeof biz_customContact_choose; - multipleChoose: typeof biz_customContact_multipleChoose; - }; - data: { - rsa: typeof biz_data_rsa; - }; - ding: { - create: typeof biz_ding_create; - post: typeof biz_ding_post; - }; - edu: { - finishMiniCourseByRecordId: typeof biz_edu_finishMiniCourseByRecordId; - getMiniCourseDraftList: typeof biz_edu_getMiniCourseDraftList; - joinClassroom: typeof biz_edu_joinClassroom; - makeMiniCourse: typeof biz_edu_makeMiniCourse; - newMsgNotificationStatus: typeof biz_edu_newMsgNotificationStatus; - startAuth: typeof biz_edu_startAuth; - tokenFaceImg: typeof biz_edu_tokenFaceImg; - }; - event: { - notifyWeex: typeof biz_event_notifyWeex; - }; - file: { - downloadFile: typeof biz_file_downloadFile; - }; - intent: { - fetchData: typeof biz_intent_fetchData; - }; - iot: { - bind: typeof biz_iot_bind; - bindMeetingRoom: typeof biz_iot_bindMeetingRoom; - getDeviceProperties: typeof biz_iot_getDeviceProperties; - invokeThingService: typeof biz_iot_invokeThingService; - queryMeetingRoomList: typeof biz_iot_queryMeetingRoomList; - setDeviceProperties: typeof biz_iot_setDeviceProperties; - unbind: typeof biz_iot_unbind; - }; - live: { - startClassRoom: typeof biz_live_startClassRoom; - startUnifiedLive: typeof biz_live_startUnifiedLive; - }; - map: { - locate: typeof biz_map_locate; - search: typeof biz_map_search; - view: typeof biz_map_view; - }; - media: { - compressVideo: typeof biz_media_compressVideo; - }; - microApp: { - openApp: typeof biz_microApp_openApp; - }; - navigation: { - close: typeof biz_navigation_close; - goBack: typeof biz_navigation_goBack; - hideBar: typeof biz_navigation_hideBar; - navigateBackPage: typeof biz_navigation_navigateBackPage; - navigateToMiniProgram: typeof biz_navigation_navigateToMiniProgram; - navigateToPage: typeof biz_navigation_navigateToPage; - quit: typeof biz_navigation_quit; - replace: typeof biz_navigation_replace; - setIcon: typeof biz_navigation_setIcon; - setLeft: typeof biz_navigation_setLeft; - setMenu: typeof biz_navigation_setMenu; - setRight: typeof biz_navigation_setRight; - setTitle: typeof biz_navigation_setTitle; - }; - pbp: { - componentPunchFromPartner: typeof biz_pbp_componentPunchFromPartner; - startMatchRuleFromPartner: typeof biz_pbp_startMatchRuleFromPartner; - stopMatchRuleFromPartner: typeof biz_pbp_stopMatchRuleFromPartner; - }; - phoneContact: { - add: typeof biz_phoneContact_add; - }; - realm: { - getRealtimeTracingStatus: typeof biz_realm_getRealtimeTracingStatus; - getUserExclusiveInfo: typeof biz_realm_getUserExclusiveInfo; - startRealtimeTracing: typeof biz_realm_startRealtimeTracing; - stopRealtimeTracing: typeof biz_realm_stopRealtimeTracing; - subscribe: typeof biz_realm_subscribe; - unsubscribe: typeof biz_realm_unsubscribe; - }; - resource: { - getInfo: typeof biz_resource_getInfo; - reportDebugMessage: typeof biz_resource_reportDebugMessage; - }; - shortCut: { - addShortCut: typeof biz_shortCut_addShortCut; - }; - sports: { - getHealthAuthorizationStatus: typeof biz_sports_getHealthAuthorizationStatus; - getHealthData: typeof biz_sports_getHealthData; - getHealthDeviceData: typeof biz_sports_getHealthDeviceData; - requestHealthAuthorization: typeof biz_sports_requestHealthAuthorization; - }; - store: { - closeUnpayOrder: typeof biz_store_closeUnpayOrder; - createOrder: typeof biz_store_createOrder; - getPayUrl: typeof biz_store_getPayUrl; - inquiry: typeof biz_store_inquiry; - }; - tabwindow: { - isTab: typeof biz_tabwindow_isTab; - }; - telephone: { - call: typeof biz_telephone_call; - checkBizCall: typeof biz_telephone_checkBizCall; - quickCallList: typeof biz_telephone_quickCallList; - showCallMenu: typeof biz_telephone_showCallMenu; - }; - user: { - checkPassword: typeof biz_user_checkPassword; - get: typeof biz_user_get; - }; - util: { - callComponent: typeof biz_util_callComponent; - checkAuth: typeof biz_util_checkAuth; - chooseImage: typeof biz_util_chooseImage; - chooseRegion: typeof biz_util_chooseRegion; - chosen: typeof biz_util_chosen; - clearWebStoreCache: typeof biz_util_clearWebStoreCache; - closePreviewImage: typeof biz_util_closePreviewImage; - compressImage: typeof biz_util_compressImage; - datepicker: typeof biz_util_datepicker; - datetimepicker: typeof biz_util_datetimepicker; - decrypt: typeof biz_util_decrypt; - downloadFile: typeof biz_util_downloadFile; - encrypt: typeof biz_util_encrypt; - getPerfInfo: typeof biz_util_getPerfInfo; - invokeWorkbench: typeof biz_util_invokeWorkbench; - isEnableGPUAcceleration: typeof biz_util_isEnableGPUAcceleration; - isLocalFileExist: typeof biz_util_isLocalFileExist; - multiSelect: typeof biz_util_multiSelect; - open: typeof biz_util_open; - openBrowser: typeof biz_util_openBrowser; - openDocument: typeof biz_util_openDocument; - openLink: typeof biz_util_openLink; - openLocalFile: typeof biz_util_openLocalFile; - openModal: typeof biz_util_openModal; - openSlidePanel: typeof biz_util_openSlidePanel; - presentWindow: typeof biz_util_presentWindow; - previewImage: typeof biz_util_previewImage; - previewVideo: typeof biz_util_previewVideo; - saveImage: typeof biz_util_saveImage; - saveImageToPhotosAlbum: typeof biz_util_saveImageToPhotosAlbum; - scan: typeof biz_util_scan; - scanCard: typeof biz_util_scanCard; - setGPUAcceleration: typeof biz_util_setGPUAcceleration; - setScreenBrightnessAndKeepOn: typeof biz_util_setScreenBrightnessAndKeepOn; - setScreenKeepOn: typeof biz_util_setScreenKeepOn; - share: typeof biz_util_share; - shareImage: typeof biz_util_shareImage; - showAuthGuide: typeof biz_util_showAuthGuide; - showSharePanel: typeof biz_util_showSharePanel; - startDocSign: typeof biz_util_startDocSign; - systemShare: typeof biz_util_systemShare; - timepicker: typeof biz_util_timepicker; - uploadAttachment: typeof biz_util_uploadAttachment; - uploadFile: typeof biz_util_uploadFile; - uploadImage: typeof biz_util_uploadImage; - uploadImageFromCamera: typeof biz_util_uploadImageFromCamera; - ut: typeof biz_util_ut; - }; - verify: { - openBindIDCard: typeof biz_verify_openBindIDCard; - startAuth: typeof biz_verify_startAuth; - }; - voice: { - makeCall: typeof biz_voice_makeCall; - }; - watermarkCamera: { - getWatermarkInfo: typeof biz_watermarkCamera_getWatermarkInfo; - setWatermarkInfo: typeof biz_watermarkCamera_setWatermarkInfo; - }; - }; - channel: { - permission: { - requestAuthCode: typeof channel_permission_requestAuthCode; - }; - }; - device: { - accelerometer: { - clearShake: typeof device_accelerometer_clearShake; - watchShake: typeof device_accelerometer_watchShake; - }; - audio: { - download: typeof device_audio_download; - onPlayEnd: typeof device_audio_onPlayEnd; - onRecordEnd: typeof device_audio_onRecordEnd; - pause: typeof device_audio_pause; - play: typeof device_audio_play; - resume: typeof device_audio_resume; - startRecord: typeof device_audio_startRecord; - stop: typeof device_audio_stop; - stopRecord: typeof device_audio_stopRecord; - translateVoice: typeof device_audio_translateVoice; - }; - base: { - getBatteryInfo: typeof device_base_getBatteryInfo; - getInterface: typeof device_base_getInterface; - getPhoneInfo: typeof device_base_getPhoneInfo; - getScanWifiListAsync: typeof device_base_getScanWifiListAsync; - getUUID: typeof device_base_getUUID; - getWifiStatus: typeof device_base_getWifiStatus; - openSystemSetting: typeof device_base_openSystemSetting; - }; - connection: { - getNetworkType: typeof device_connection_getNetworkType; - }; - geolocation: { - checkPermission: typeof device_geolocation_checkPermission; - get: typeof device_geolocation_get; - start: typeof device_geolocation_start; - status: typeof device_geolocation_status; - stop: typeof device_geolocation_stop; - }; - launcher: { - checkInstalledApps: typeof device_launcher_checkInstalledApps; - launchApp: typeof device_launcher_launchApp; - }; - nfc: { - nfcRead: typeof device_nfc_nfcRead; - nfcStop: typeof device_nfc_nfcStop; - nfcWrite: typeof device_nfc_nfcWrite; - }; - notification: { - actionSheet: typeof device_notification_actionSheet; - alert: typeof device_notification_alert; - confirm: typeof device_notification_confirm; - extendModal: typeof device_notification_extendModal; - hidePreloader: typeof device_notification_hidePreloader; - modal: typeof device_notification_modal; - prompt: typeof device_notification_prompt; - showPreloader: typeof device_notification_showPreloader; - toast: typeof device_notification_toast; - vibrate: typeof device_notification_vibrate; - }; - screen: { - getScreenBrightness: typeof device_screen_getScreenBrightness; - insetAdjust: typeof device_screen_insetAdjust; - isScreenReaderEnabled: typeof device_screen_isScreenReaderEnabled; - resetView: typeof device_screen_resetView; - rotateView: typeof device_screen_rotateView; - setScreenBrightness: typeof device_screen_setScreenBrightness; - }; - }; - media: { - voiceRecorder: { - keepAlive: typeof media_voiceRecorder_keepAlive; - pause: typeof media_voiceRecorder_pause; - resume: typeof media_voiceRecorder_resume; - start: typeof media_voiceRecorder_start; - stop: typeof media_voiceRecorder_stop; - }; - }; - net: { - bjGovApn: { - loginGovNet: typeof net_bjGovApn_loginGovNet; - }; - }; - runtime: { - h5nuvabridge: { - exec: typeof runtime_h5nuvabridge_exec; - }; - message: { - fetch: typeof runtime_message_fetch; - post: typeof runtime_message_post; - }; - monitor: { - getLoadTime: typeof runtime_monitor_getLoadTime; - }; - permission: { - requestAuthCode: typeof runtime_permission_requestAuthCode; - requestOperateAuthCode: typeof runtime_permission_requestOperateAuthCode; - }; - }; - ui: { - input: { - plain: typeof ui_input_plain; - }; - multitask: { - addToFloat: typeof ui_multitask_addToFloat; - removeFromFloat: typeof ui_multitask_removeFromFloat; - }; - nav: { - close: typeof ui_nav_close; - getCurrentId: typeof ui_nav_getCurrentId; - go: typeof ui_nav_go; - preload: typeof ui_nav_preload; - recycle: typeof ui_nav_recycle; - }; - progressBar: { - setColors: typeof ui_progressBar_setColors; - }; - pullToRefresh: { - disable: typeof ui_pullToRefresh_disable; - enable: typeof ui_pullToRefresh_enable; - stop: typeof ui_pullToRefresh_stop; - }; - webViewBounce: { - disable: typeof ui_webViewBounce_disable; - enable: typeof ui_webViewBounce_enable; - }; - }; - ExternalChannelPublish: typeof union_ExternalChannelPublish; - addPhoneContact: typeof union_addPhoneContact; - alert: typeof union_alert; - callUsers: typeof union_callUsers; - checkAuth: typeof union_checkAuth; - checkBizCall: typeof union_checkBizCall; - chooseChat: typeof union_chooseChat; - chooseConversation: typeof union_chooseConversation; - chooseDateRangeInCalendar: typeof union_chooseDateRangeInCalendar; - chooseDateTime: typeof union_chooseDateTime; - chooseDepartments: typeof union_chooseDepartments; - chooseDingTalkDir: typeof union_chooseDingTalkDir; - chooseDistrict: typeof union_chooseDistrict; - chooseExternalUsers: typeof union_chooseExternalUsers; - chooseFile: typeof union_chooseFile; - chooseHalfDayInCalendar: typeof union_chooseHalfDayInCalendar; - chooseImage: typeof union_chooseImage; - chooseMedia: typeof union_chooseMedia; - chooseOneDayInCalendar: typeof union_chooseOneDayInCalendar; - chooseOrg: typeof union_chooseOrg; - choosePhonebook: typeof union_choosePhonebook; - chooseStaffForPC: typeof union_chooseStaffForPC; - chooseUserFromList: typeof union_chooseUserFromList; - clearShake: typeof union_clearShake; - closeBluetoothAdapter: typeof union_closeBluetoothAdapter; - closePage: typeof union_closePage; - complexChoose: typeof union_complexChoose; - compressImage: typeof union_compressImage; - confirm: typeof union_confirm; - connectBLEDevice: typeof union_connectBLEDevice; - createBLEPeripheralServer: typeof union_createBLEPeripheralServer; - createDing: typeof union_createDing; - createDingForPC: typeof union_createDingForPC; - createGroupChat: typeof union_createGroupChat; - createLiveClassRoom: typeof union_createLiveClassRoom; - createPayOrder: typeof union_createPayOrder; - cropImage: typeof union_cropImage; - customChooseUsers: typeof union_customChooseUsers; - datePicker: typeof union_datePicker; - dateRangePicker: typeof union_dateRangePicker; - decrypt: typeof union_decrypt; - disablePullDownRefresh: typeof union_disablePullDownRefresh; - disableWebViewBounce: typeof union_disableWebViewBounce; - disconnectBLEDevice: typeof union_disconnectBLEDevice; - downloadAudio: typeof union_downloadAudio; - downloadFile: typeof union_downloadFile; - editExternalUser: typeof union_editExternalUser; - editPicture: typeof union_editPicture; - enablePullDownRefresh: typeof union_enablePullDownRefresh; - enableWebViewBounce: typeof union_enableWebViewBounce; - encrypt: typeof union_encrypt; - exclusiveLiveCheck: typeof union_exclusiveLiveCheck; - generateImageFromCode: typeof union_generateImageFromCode; - getAccountType: typeof union_getAccountType; - getActiveConferenceInfo: typeof union_getActiveConferenceInfo; - getAdvertisingStatus: typeof union_getAdvertisingStatus; - getAuthCode: typeof union_getAuthCode; - getAuthCodeV2: typeof union_getAuthCodeV2; - getAuthInfo: typeof union_getAuthInfo; - getBLEDeviceCharacteristics: typeof union_getBLEDeviceCharacteristics; - getBLEDeviceServices: typeof union_getBLEDeviceServices; - getBatteryInfo: typeof union_getBatteryInfo; - getBeacons: typeof union_getBeacons; - getBluetoothAdapterState: typeof union_getBluetoothAdapterState; - getBluetoothDevices: typeof union_getBluetoothDevices; - getCachedAPIResponse: typeof union_getCachedAPIResponse; - getCloudCallInfo: typeof union_getCloudCallInfo; - getCloudCallList: typeof union_getCloudCallList; - getCurrentCorpId: typeof union_getCurrentCorpId; - getDeviceId: typeof union_getDeviceId; - getDeviceUUID: typeof union_getDeviceUUID; - getDingerDeviceStatus: typeof union_getDingerDeviceStatus; - getImageInfo: typeof union_getImageInfo; - getLocatingStatus: typeof union_getLocatingStatus; - getLocation: typeof union_getLocation; - getNetworkType: typeof union_getNetworkType; - getOperateAuthCode: typeof union_getOperateAuthCode; - getPageTerminateInfo: typeof union_getPageTerminateInfo; - getPersonalWorkInfo: typeof union_getPersonalWorkInfo; - getScreenBrightness: typeof union_getScreenBrightness; - getStorage: typeof union_getStorage; - getSystemInfo: typeof union_getSystemInfo; - getSystemSettings: typeof union_getSystemSettings; - getThirdAppConfCustomData: typeof union_getThirdAppConfCustomData; - getThirdAppUserCustomData: typeof union_getThirdAppUserCustomData; - getTodaysStepCount: typeof union_getTodaysStepCount; - getTranslateStatus: typeof union_getTranslateStatus; - getUserExclusiveInfo: typeof union_getUserExclusiveInfo; - getWifiHotspotStatus: typeof union_getWifiHotspotStatus; - getWifiStatus: typeof union_getWifiStatus; - goBackPage: typeof union_goBackPage; - hideLoading: typeof union_hideLoading; - hideToast: typeof union_hideToast; - isInTabWindow: typeof union_isInTabWindow; - isLocalFileExist: typeof union_isLocalFileExist; - isScreenReaderEnabled: typeof union_isScreenReaderEnabled; - locateInMap: typeof union_locateInMap; - makeCloudCall: typeof union_makeCloudCall; - makeVideoConfCall: typeof union_makeVideoConfCall; - minutesCreateFromVideo: typeof union_minutesCreateFromVideo; - minutesStart: typeof union_minutesStart; - minutesUploadVideo: typeof union_minutesUploadVideo; - minutesViewDetail: typeof union_minutesViewDetail; - multiSelect: typeof union_multiSelect; - navigateBackPage: typeof union_navigateBackPage; - navigateToPage: typeof union_navigateToPage; - nfcReadCardNumber: typeof union_nfcReadCardNumber; - notifyBLECharacteristicValueChange: typeof union_notifyBLECharacteristicValueChange; - notifyTranslateEvent: typeof union_notifyTranslateEvent; - offBLECharacteristicValueChange: typeof union_offBLECharacteristicValueChange; - offBLEConnectionStateChanged: typeof union_offBLEConnectionStateChanged; - offBluetoothAdapterStateChange: typeof union_offBluetoothAdapterStateChange; - offBluetoothDeviceFound: typeof union_offBluetoothDeviceFound; - onBLECharacteristicValueChange: typeof union_onBLECharacteristicValueChange; - onBLEConnectionStateChanged: typeof union_onBLEConnectionStateChanged; - onBLEPeripheralCharacteristicReadRequest: typeof union_onBLEPeripheralCharacteristicReadRequest; - onBLEPeripheralCharacteristicWriteRequest: typeof union_onBLEPeripheralCharacteristicWriteRequest; - onBLEPeripheralConnectionStateChanged: typeof union_onBLEPeripheralConnectionStateChanged; - onBeaconServiceChange: typeof union_onBeaconServiceChange; - onBeaconUpdate: typeof union_onBeaconUpdate; - onBluetoothAdapterStateChange: typeof union_onBluetoothAdapterStateChange; - onBluetoothDeviceFound: typeof union_onBluetoothDeviceFound; - onPlayAudioEnd: typeof union_onPlayAudioEnd; - onRecordEnd: typeof union_onRecordEnd; - openBluetoothAdapter: typeof union_openBluetoothAdapter; - openChatByChatId: typeof union_openChatByChatId; - openChatByConversationId: typeof union_openChatByConversationId; - openChatByUserId: typeof union_openChatByUserId; - openDocument: typeof union_openDocument; - openLink: typeof union_openLink; - openLocalFile: typeof union_openLocalFile; - openLocation: typeof union_openLocation; - openMicroApp: typeof union_openMicroApp; - openPageInMicroApp: typeof union_openPageInMicroApp; - openPageInModalForPC: typeof union_openPageInModalForPC; - openPageInSlidePanelForPC: typeof union_openPageInSlidePanelForPC; - openPageInWorkBenchForPC: typeof union_openPageInWorkBenchForPC; - pauseAudio: typeof union_pauseAudio; - playAudio: typeof union_playAudio; - popGesture: typeof union_popGesture; - previewFileInDingTalk: typeof union_previewFileInDingTalk; - previewImage: typeof union_previewImage; - previewImagesInDingTalkBatch: typeof union_previewImagesInDingTalkBatch; - previewMedia: typeof union_previewMedia; - prompt: typeof union_prompt; - quickCallList: typeof union_quickCallList; - quitPage: typeof union_quitPage; - readBLECharacteristicValue: typeof union_readBLECharacteristicValue; - readNFC: typeof union_readNFC; - removeCachedAPIResponse: typeof union_removeCachedAPIResponse; - removeStorage: typeof union_removeStorage; - replacePage: typeof union_replacePage; - requestAuthCode: typeof union_requestAuthCode; - requestMoneySubmmitOrder: typeof union_requestMoneySubmmitOrder; - resetScreenView: typeof union_resetScreenView; - resumeAudio: typeof union_resumeAudio; - rotateScreenView: typeof union_rotateScreenView; - rsa: typeof union_rsa; - saveFileToDingTalk: typeof union_saveFileToDingTalk; - saveImageToPhotosAlbum: typeof union_saveImageToPhotosAlbum; - saveVideoToPhotosAlbum: typeof union_saveVideoToPhotosAlbum; - scan: typeof union_scan; - scanCard: typeof union_scanCard; - searchMap: typeof union_searchMap; - setClipboard: typeof union_setClipboard; - setGestures: typeof union_setGestures; - setKeepScreenOn: typeof union_setKeepScreenOn; - setNavigationIcon: typeof union_setNavigationIcon; - setNavigationLeft: typeof union_setNavigationLeft; - setNavigationTitle: typeof union_setNavigationTitle; - setScreenBrightness: typeof union_setScreenBrightness; - setStorage: typeof union_setStorage; - share: typeof union_share; - showActionSheet: typeof union_showActionSheet; - showAuthGuide: typeof union_showAuthGuide; - showCallMenu: typeof union_showCallMenu; - showLoading: typeof union_showLoading; - showModal: typeof union_showModal; - showSharePanel: typeof union_showSharePanel; - showToast: typeof union_showToast; - singleSelect: typeof union_singleSelect; - startAdvertising: typeof union_startAdvertising; - startBeaconDiscovery: typeof union_startBeaconDiscovery; - startBluetoothDevicesDiscovery: typeof union_startBluetoothDevicesDiscovery; - startDingerRecord: typeof union_startDingerRecord; - startLocating: typeof union_startLocating; - startRecord: typeof union_startRecord; - stopAdvertising: typeof union_stopAdvertising; - stopAudio: typeof union_stopAudio; - stopBeaconDiscovery: typeof union_stopBeaconDiscovery; - stopBluetoothDevicesDiscovery: typeof union_stopBluetoothDevicesDiscovery; - stopDingerRecord: typeof union_stopDingerRecord; - stopLocating: typeof union_stopLocating; - stopPullDownRefresh: typeof union_stopPullDownRefresh; - stopRecord: typeof union_stopRecord; - subscribe: typeof union_subscribe; - timePicker: typeof union_timePicker; - translate: typeof union_translate; - translateVoice: typeof union_translateVoice; - uploadAttachmentToDingTalk: typeof union_uploadAttachmentToDingTalk; - uploadFile: typeof union_uploadFile; - vibrate: typeof union_vibrate; - watchShake: typeof union_watchShake; - writeBLECharacteristicValue: typeof union_writeBLECharacteristicValue; - writeBLEPeripheralCharacteristicValue: typeof union_writeBLEPeripheralCharacteristicValue; - writeNFC: typeof union_writeNFC; - util: { - domainStorage: { - getItem: typeof util_domainStorage_getItem; - getStorageInfo: typeof util_domainStorage_getStorageInfo; - removeItem: typeof util_domainStorage_removeItem; - setItem: typeof util_domainStorage_setItem; - }; - openTemporary: { - getData: typeof util_openTemporary_getData; - }; - }; -}; diff --git a/node_modules/dingtalk-jsapi/api/index.js b/node_modules/dingtalk-jsapi/api/index.js deleted file mode 100644 index 70ef702e..00000000 --- a/node_modules/dingtalk-jsapi/api/index.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.apiObj=void 0;var beaconPicker_1=require("./biz/ATMBle/beaconPicker"),detectFace_1=require("./biz/ATMBle/detectFace"),detectFaceFullScreen_1=require("./biz/ATMBle/detectFaceFullScreen"),exclusiveLiveCheck_1=require("./biz/ATMBle/exclusiveLiveCheck"),faceManager_1=require("./biz/ATMBle/faceManager"),punchModePicker_1=require("./biz/ATMBle/punchModePicker"),bindAlipay_1=require("./biz/alipay/bindAlipay"),openAuth_1=require("./biz/alipay/openAuth"),pay_1=require("./biz/alipay/pay"),getLBSWua_1=require("./biz/attend/getLBSWua"),openAccountPwdLoginPage_1=require("./biz/auth/openAccountPwdLoginPage"),requestAuthInfo_1=require("./biz/auth/requestAuthInfo"),chooseDateTime_1=require("./biz/calendar/chooseDateTime"),chooseHalfDay_1=require("./biz/calendar/chooseHalfDay"),chooseInterval_1=require("./biz/calendar/chooseInterval"),chooseOneDay_1=require("./biz/calendar/chooseOneDay"),chooseConversationByCorpId_1=require("./biz/chat/chooseConversationByCorpId"),collectSticker_1=require("./biz/chat/collectSticker"),createSceneGroup_1=require("./biz/chat/createSceneGroup"),getRealmCid_1=require("./biz/chat/getRealmCid"),locationChatMessage_1=require("./biz/chat/locationChatMessage"),openSingleChat_1=require("./biz/chat/openSingleChat"),pickConversation_1=require("./biz/chat/pickConversation"),sendEmotion_1=require("./biz/chat/sendEmotion"),toConversation_1=require("./biz/chat/toConversation"),toConversationByOpenConversationId_1=require("./biz/chat/toConversationByOpenConversationId"),setData_1=require("./biz/clipboardData/setData"),createCloudCall_1=require("./biz/conference/createCloudCall"),getCloudCallInfo_1=require("./biz/conference/getCloudCallInfo"),getCloudCallList_1=require("./biz/conference/getCloudCallList"),videoConfCall_1=require("./biz/conference/videoConfCall"),choose_1=require("./biz/contact/choose"),chooseMobileContacts_1=require("./biz/contact/chooseMobileContacts"),complexPicker_1=require("./biz/contact/complexPicker"),createGroup_1=require("./biz/contact/createGroup"),departmentsPicker_1=require("./biz/contact/departmentsPicker"),externalComplexPicker_1=require("./biz/contact/externalComplexPicker"),externalEditForm_1=require("./biz/contact/externalEditForm"),rolesPicker_1=require("./biz/contact/rolesPicker"),setRule_1=require("./biz/contact/setRule"),chooseSpaceDir_1=require("./biz/cspace/chooseSpaceDir"),delete_1=require("./biz/cspace/delete"),preview_1=require("./biz/cspace/preview"),previewDentryImages_1=require("./biz/cspace/previewDentryImages"),saveFile_1=require("./biz/cspace/saveFile"),choose_2=require("./biz/customContact/choose"),multipleChoose_1=require("./biz/customContact/multipleChoose"),rsa_1=require("./biz/data/rsa"),create_1=require("./biz/ding/create"),post_1=require("./biz/ding/post"),finishMiniCourseByRecordId_1=require("./biz/edu/finishMiniCourseByRecordId"),getMiniCourseDraftList_1=require("./biz/edu/getMiniCourseDraftList"),joinClassroom_1=require("./biz/edu/joinClassroom"),makeMiniCourse_1=require("./biz/edu/makeMiniCourse"),newMsgNotificationStatus_1=require("./biz/edu/newMsgNotificationStatus"),startAuth_1=require("./biz/edu/startAuth"),tokenFaceImg_1=require("./biz/edu/tokenFaceImg"),notifyWeex_1=require("./biz/event/notifyWeex"),downloadFile_1=require("./biz/file/downloadFile"),fetchData_1=require("./biz/intent/fetchData"),bind_1=require("./biz/iot/bind"),bindMeetingRoom_1=require("./biz/iot/bindMeetingRoom"),getDeviceProperties_1=require("./biz/iot/getDeviceProperties"),invokeThingService_1=require("./biz/iot/invokeThingService"),queryMeetingRoomList_1=require("./biz/iot/queryMeetingRoomList"),setDeviceProperties_1=require("./biz/iot/setDeviceProperties"),unbind_1=require("./biz/iot/unbind"),startClassRoom_1=require("./biz/live/startClassRoom"),startUnifiedLive_1=require("./biz/live/startUnifiedLive"),locate_1=require("./biz/map/locate"),search_1=require("./biz/map/search"),view_1=require("./biz/map/view"),compressVideo_1=require("./biz/media/compressVideo"),openApp_1=require("./biz/microApp/openApp"),close_1=require("./biz/navigation/close"),goBack_1=require("./biz/navigation/goBack"),hideBar_1=require("./biz/navigation/hideBar"),navigateBackPage_1=require("./biz/navigation/navigateBackPage"),navigateToMiniProgram_1=require("./biz/navigation/navigateToMiniProgram"),navigateToPage_1=require("./biz/navigation/navigateToPage"),quit_1=require("./biz/navigation/quit"),replace_1=require("./biz/navigation/replace"),setIcon_1=require("./biz/navigation/setIcon"),setLeft_1=require("./biz/navigation/setLeft"),setMenu_1=require("./biz/navigation/setMenu"),setRight_1=require("./biz/navigation/setRight"),setTitle_1=require("./biz/navigation/setTitle"),componentPunchFromPartner_1=require("./biz/pbp/componentPunchFromPartner"),startMatchRuleFromPartner_1=require("./biz/pbp/startMatchRuleFromPartner"),stopMatchRuleFromPartner_1=require("./biz/pbp/stopMatchRuleFromPartner"),add_1=require("./biz/phoneContact/add"),getRealtimeTracingStatus_1=require("./biz/realm/getRealtimeTracingStatus"),getUserExclusiveInfo_1=require("./biz/realm/getUserExclusiveInfo"),startRealtimeTracing_1=require("./biz/realm/startRealtimeTracing"),stopRealtimeTracing_1=require("./biz/realm/stopRealtimeTracing"),subscribe_1=require("./biz/realm/subscribe"),unsubscribe_1=require("./biz/realm/unsubscribe"),getInfo_1=require("./biz/resource/getInfo"),reportDebugMessage_1=require("./biz/resource/reportDebugMessage"),addShortCut_1=require("./biz/shortCut/addShortCut"),getHealthAuthorizationStatus_1=require("./biz/sports/getHealthAuthorizationStatus"),getHealthData_1=require("./biz/sports/getHealthData"),getHealthDeviceData_1=require("./biz/sports/getHealthDeviceData"),requestHealthAuthorization_1=require("./biz/sports/requestHealthAuthorization"),closeUnpayOrder_1=require("./biz/store/closeUnpayOrder"),createOrder_1=require("./biz/store/createOrder"),getPayUrl_1=require("./biz/store/getPayUrl"),inquiry_1=require("./biz/store/inquiry"),isTab_1=require("./biz/tabwindow/isTab"),call_1=require("./biz/telephone/call"),checkBizCall_1=require("./biz/telephone/checkBizCall"),quickCallList_1=require("./biz/telephone/quickCallList"),showCallMenu_1=require("./biz/telephone/showCallMenu"),checkPassword_1=require("./biz/user/checkPassword"),get_1=require("./biz/user/get"),callComponent_1=require("./biz/util/callComponent"),checkAuth_1=require("./biz/util/checkAuth"),chooseImage_1=require("./biz/util/chooseImage"),chooseRegion_1=require("./biz/util/chooseRegion"),chosen_1=require("./biz/util/chosen"),clearWebStoreCache_1=require("./biz/util/clearWebStoreCache"),closePreviewImage_1=require("./biz/util/closePreviewImage"),compressImage_1=require("./biz/util/compressImage"),datepicker_1=require("./biz/util/datepicker"),datetimepicker_1=require("./biz/util/datetimepicker"),decrypt_1=require("./biz/util/decrypt"),downloadFile_2=require("./biz/util/downloadFile"),encrypt_1=require("./biz/util/encrypt"),getPerfInfo_1=require("./biz/util/getPerfInfo"),invokeWorkbench_1=require("./biz/util/invokeWorkbench"),isEnableGPUAcceleration_1=require("./biz/util/isEnableGPUAcceleration"),isLocalFileExist_1=require("./biz/util/isLocalFileExist"),multiSelect_1=require("./biz/util/multiSelect"),open_1=require("./biz/util/open"),openBrowser_1=require("./biz/util/openBrowser"),openDocument_1=require("./biz/util/openDocument"),openLink_1=require("./biz/util/openLink"),openLocalFile_1=require("./biz/util/openLocalFile"),openModal_1=require("./biz/util/openModal"),openSlidePanel_1=require("./biz/util/openSlidePanel"),presentWindow_1=require("./biz/util/presentWindow"),previewImage_1=require("./biz/util/previewImage"),previewVideo_1=require("./biz/util/previewVideo"),saveImage_1=require("./biz/util/saveImage"),saveImageToPhotosAlbum_1=require("./biz/util/saveImageToPhotosAlbum"),scan_1=require("./biz/util/scan"),scanCard_1=require("./biz/util/scanCard"),setGPUAcceleration_1=require("./biz/util/setGPUAcceleration"),setScreenBrightnessAndKeepOn_1=require("./biz/util/setScreenBrightnessAndKeepOn"),setScreenKeepOn_1=require("./biz/util/setScreenKeepOn"),share_1=require("./biz/util/share"),shareImage_1=require("./biz/util/shareImage"),showAuthGuide_1=require("./biz/util/showAuthGuide"),showSharePanel_1=require("./biz/util/showSharePanel"),startDocSign_1=require("./biz/util/startDocSign"),systemShare_1=require("./biz/util/systemShare"),timepicker_1=require("./biz/util/timepicker"),uploadAttachment_1=require("./biz/util/uploadAttachment"),uploadFile_1=require("./biz/util/uploadFile"),uploadImage_1=require("./biz/util/uploadImage"),uploadImageFromCamera_1=require("./biz/util/uploadImageFromCamera"),ut_1=require("./biz/util/ut"),openBindIDCard_1=require("./biz/verify/openBindIDCard"),startAuth_2=require("./biz/verify/startAuth"),makeCall_1=require("./biz/voice/makeCall"),getWatermarkInfo_1=require("./biz/watermarkCamera/getWatermarkInfo"),setWatermarkInfo_1=require("./biz/watermarkCamera/setWatermarkInfo"),requestAuthCode_1=require("./channel/permission/requestAuthCode"),clearShake_1=require("./device/accelerometer/clearShake"),watchShake_1=require("./device/accelerometer/watchShake"),download_1=require("./device/audio/download"),onPlayEnd_1=require("./device/audio/onPlayEnd"),onRecordEnd_1=require("./device/audio/onRecordEnd"),pause_1=require("./device/audio/pause"),play_1=require("./device/audio/play"),resume_1=require("./device/audio/resume"),startRecord_1=require("./device/audio/startRecord"),stop_1=require("./device/audio/stop"),stopRecord_1=require("./device/audio/stopRecord"),translateVoice_1=require("./device/audio/translateVoice"),getBatteryInfo_1=require("./device/base/getBatteryInfo"),getInterface_1=require("./device/base/getInterface"),getPhoneInfo_1=require("./device/base/getPhoneInfo"),getScanWifiListAsync_1=require("./device/base/getScanWifiListAsync"),getUUID_1=require("./device/base/getUUID"),getWifiStatus_1=require("./device/base/getWifiStatus"),openSystemSetting_1=require("./device/base/openSystemSetting"),getNetworkType_1=require("./device/connection/getNetworkType"),checkPermission_1=require("./device/geolocation/checkPermission"),get_2=require("./device/geolocation/get"),start_1=require("./device/geolocation/start"),status_1=require("./device/geolocation/status"),stop_2=require("./device/geolocation/stop"),checkInstalledApps_1=require("./device/launcher/checkInstalledApps"),launchApp_1=require("./device/launcher/launchApp"),nfcRead_1=require("./device/nfc/nfcRead"),nfcStop_1=require("./device/nfc/nfcStop"),nfcWrite_1=require("./device/nfc/nfcWrite"),actionSheet_1=require("./device/notification/actionSheet"),alert_1=require("./device/notification/alert"),confirm_1=require("./device/notification/confirm"),extendModal_1=require("./device/notification/extendModal"),hidePreloader_1=require("./device/notification/hidePreloader"),modal_1=require("./device/notification/modal"),prompt_1=require("./device/notification/prompt"),showPreloader_1=require("./device/notification/showPreloader"),toast_1=require("./device/notification/toast"),vibrate_1=require("./device/notification/vibrate"),getScreenBrightness_1=require("./device/screen/getScreenBrightness"),insetAdjust_1=require("./device/screen/insetAdjust"),isScreenReaderEnabled_1=require("./device/screen/isScreenReaderEnabled"),resetView_1=require("./device/screen/resetView"),rotateView_1=require("./device/screen/rotateView"),setScreenBrightness_1=require("./device/screen/setScreenBrightness"),keepAlive_1=require("./media/voiceRecorder/keepAlive"),pause_2=require("./media/voiceRecorder/pause"),resume_2=require("./media/voiceRecorder/resume"),start_2=require("./media/voiceRecorder/start"),stop_3=require("./media/voiceRecorder/stop"),loginGovNet_1=require("./net/bjGovApn/loginGovNet"),exec_1=require("./runtime/h5nuvabridge/exec"),fetch_1=require("./runtime/message/fetch"),post_2=require("./runtime/message/post"),getLoadTime_1=require("./runtime/monitor/getLoadTime"),requestAuthCode_2=require("./runtime/permission/requestAuthCode"),requestOperateAuthCode_1=require("./runtime/permission/requestOperateAuthCode"),plain_1=require("./ui/input/plain"),addToFloat_1=require("./ui/multitask/addToFloat"),removeFromFloat_1=require("./ui/multitask/removeFromFloat"),close_2=require("./ui/nav/close"),getCurrentId_1=require("./ui/nav/getCurrentId"),go_1=require("./ui/nav/go"),preload_1=require("./ui/nav/preload"),recycle_1=require("./ui/nav/recycle"),setColors_1=require("./ui/progressBar/setColors"),disable_1=require("./ui/pullToRefresh/disable"),enable_1=require("./ui/pullToRefresh/enable"),stop_4=require("./ui/pullToRefresh/stop"),disable_2=require("./ui/webViewBounce/disable"),enable_2=require("./ui/webViewBounce/enable"),ExternalChannelPublish_1=require("./union/ExternalChannelPublish"),ExternalChannelPublish_2=require("./union/ExternalChannelPublish");Object.defineProperty(exports,"ExternalChannelPublish",{enumerable:!0,get:function(){return ExternalChannelPublish_2.ExternalChannelPublish$}});var addPhoneContact_1=require("./union/addPhoneContact"),addPhoneContact_2=require("./union/addPhoneContact");Object.defineProperty(exports,"addPhoneContact",{enumerable:!0,get:function(){return addPhoneContact_2.addPhoneContact$}});var alert_2=require("./union/alert"),alert_3=require("./union/alert");Object.defineProperty(exports,"alert",{enumerable:!0,get:function(){return alert_3.alert$}});var callUsers_1=require("./union/callUsers"),callUsers_2=require("./union/callUsers");Object.defineProperty(exports,"callUsers",{enumerable:!0,get:function(){return callUsers_2.callUsers$}});var checkAuth_2=require("./union/checkAuth"),checkAuth_3=require("./union/checkAuth");Object.defineProperty(exports,"checkAuth",{enumerable:!0,get:function(){return checkAuth_3.checkAuth$}});var checkBizCall_2=require("./union/checkBizCall"),checkBizCall_3=require("./union/checkBizCall");Object.defineProperty(exports,"checkBizCall",{enumerable:!0,get:function(){return checkBizCall_3.checkBizCall$}});var chooseChat_1=require("./union/chooseChat"),chooseChat_2=require("./union/chooseChat");Object.defineProperty(exports,"chooseChat",{enumerable:!0,get:function(){return chooseChat_2.chooseChat$}});var chooseConversation_1=require("./union/chooseConversation"),chooseConversation_2=require("./union/chooseConversation");Object.defineProperty(exports,"chooseConversation",{enumerable:!0,get:function(){return chooseConversation_2.chooseConversation$}});var chooseDateRangeInCalendar_1=require("./union/chooseDateRangeInCalendar"),chooseDateRangeInCalendar_2=require("./union/chooseDateRangeInCalendar");Object.defineProperty(exports,"chooseDateRangeInCalendar",{enumerable:!0,get:function(){return chooseDateRangeInCalendar_2.chooseDateRangeInCalendar$}});var chooseDateTime_2=require("./union/chooseDateTime"),chooseDateTime_3=require("./union/chooseDateTime");Object.defineProperty(exports,"chooseDateTime",{enumerable:!0,get:function(){return chooseDateTime_3.chooseDateTime$}});var chooseDepartments_1=require("./union/chooseDepartments"),chooseDepartments_2=require("./union/chooseDepartments");Object.defineProperty(exports,"chooseDepartments",{enumerable:!0,get:function(){return chooseDepartments_2.chooseDepartments$}});var chooseDingTalkDir_1=require("./union/chooseDingTalkDir"),chooseDingTalkDir_2=require("./union/chooseDingTalkDir");Object.defineProperty(exports,"chooseDingTalkDir",{enumerable:!0,get:function(){return chooseDingTalkDir_2.chooseDingTalkDir$}});var chooseDistrict_1=require("./union/chooseDistrict"),chooseDistrict_2=require("./union/chooseDistrict");Object.defineProperty(exports,"chooseDistrict",{enumerable:!0,get:function(){return chooseDistrict_2.chooseDistrict$}});var chooseExternalUsers_1=require("./union/chooseExternalUsers"),chooseExternalUsers_2=require("./union/chooseExternalUsers");Object.defineProperty(exports,"chooseExternalUsers",{enumerable:!0,get:function(){return chooseExternalUsers_2.chooseExternalUsers$}});var chooseFile_1=require("./union/chooseFile"),chooseFile_2=require("./union/chooseFile");Object.defineProperty(exports,"chooseFile",{enumerable:!0,get:function(){return chooseFile_2.chooseFile$}});var chooseHalfDayInCalendar_1=require("./union/chooseHalfDayInCalendar"),chooseHalfDayInCalendar_2=require("./union/chooseHalfDayInCalendar");Object.defineProperty(exports,"chooseHalfDayInCalendar",{enumerable:!0,get:function(){return chooseHalfDayInCalendar_2.chooseHalfDayInCalendar$}});var chooseImage_2=require("./union/chooseImage"),chooseImage_3=require("./union/chooseImage");Object.defineProperty(exports,"chooseImage",{enumerable:!0,get:function(){return chooseImage_3.chooseImage$}});var chooseMedia_1=require("./union/chooseMedia"),chooseMedia_2=require("./union/chooseMedia");Object.defineProperty(exports,"chooseMedia",{enumerable:!0,get:function(){return chooseMedia_2.chooseMedia$}});var chooseOneDayInCalendar_1=require("./union/chooseOneDayInCalendar"),chooseOneDayInCalendar_2=require("./union/chooseOneDayInCalendar");Object.defineProperty(exports,"chooseOneDayInCalendar",{enumerable:!0,get:function(){return chooseOneDayInCalendar_2.chooseOneDayInCalendar$}});var chooseOrg_1=require("./union/chooseOrg"),chooseOrg_2=require("./union/chooseOrg");Object.defineProperty(exports,"chooseOrg",{enumerable:!0,get:function(){return chooseOrg_2.chooseOrg$}});var choosePhonebook_1=require("./union/choosePhonebook"),choosePhonebook_2=require("./union/choosePhonebook");Object.defineProperty(exports,"choosePhonebook",{enumerable:!0,get:function(){return choosePhonebook_2.choosePhonebook$}});var chooseStaffForPC_1=require("./union/chooseStaffForPC"),chooseStaffForPC_2=require("./union/chooseStaffForPC");Object.defineProperty(exports,"chooseStaffForPC",{enumerable:!0,get:function(){return chooseStaffForPC_2.chooseStaffForPC$}});var chooseUserFromList_1=require("./union/chooseUserFromList"),chooseUserFromList_2=require("./union/chooseUserFromList");Object.defineProperty(exports,"chooseUserFromList",{enumerable:!0,get:function(){return chooseUserFromList_2.chooseUserFromList$}});var clearShake_2=require("./union/clearShake"),clearShake_3=require("./union/clearShake");Object.defineProperty(exports,"clearShake",{enumerable:!0,get:function(){return clearShake_3.clearShake$}});var closeBluetoothAdapter_1=require("./union/closeBluetoothAdapter"),closeBluetoothAdapter_2=require("./union/closeBluetoothAdapter");Object.defineProperty(exports,"closeBluetoothAdapter",{enumerable:!0,get:function(){return closeBluetoothAdapter_2.closeBluetoothAdapter$}});var closePage_1=require("./union/closePage"),closePage_2=require("./union/closePage");Object.defineProperty(exports,"closePage",{enumerable:!0,get:function(){return closePage_2.closePage$}});var complexChoose_1=require("./union/complexChoose"),complexChoose_2=require("./union/complexChoose");Object.defineProperty(exports,"complexChoose",{enumerable:!0,get:function(){return complexChoose_2.complexChoose$}});var compressImage_2=require("./union/compressImage"),compressImage_3=require("./union/compressImage");Object.defineProperty(exports,"compressImage",{enumerable:!0,get:function(){return compressImage_3.compressImage$}});var confirm_2=require("./union/confirm"),confirm_3=require("./union/confirm");Object.defineProperty(exports,"confirm",{enumerable:!0,get:function(){return confirm_3.confirm$}});var connectBLEDevice_1=require("./union/connectBLEDevice"),connectBLEDevice_2=require("./union/connectBLEDevice");Object.defineProperty(exports,"connectBLEDevice",{enumerable:!0,get:function(){return connectBLEDevice_2.connectBLEDevice$}});var createBLEPeripheralServer_1=require("./union/createBLEPeripheralServer"),createBLEPeripheralServer_2=require("./union/createBLEPeripheralServer");Object.defineProperty(exports,"createBLEPeripheralServer",{enumerable:!0,get:function(){return createBLEPeripheralServer_2.createBLEPeripheralServer$}});var createDing_1=require("./union/createDing"),createDing_2=require("./union/createDing");Object.defineProperty(exports,"createDing",{enumerable:!0,get:function(){return createDing_2.createDing$}});var createDingForPC_1=require("./union/createDingForPC"),createDingForPC_2=require("./union/createDingForPC");Object.defineProperty(exports,"createDingForPC",{enumerable:!0,get:function(){return createDingForPC_2.createDingForPC$}});var createGroupChat_1=require("./union/createGroupChat"),createGroupChat_2=require("./union/createGroupChat");Object.defineProperty(exports,"createGroupChat",{enumerable:!0,get:function(){return createGroupChat_2.createGroupChat$}});var createLiveClassRoom_1=require("./union/createLiveClassRoom"),createLiveClassRoom_2=require("./union/createLiveClassRoom");Object.defineProperty(exports,"createLiveClassRoom",{enumerable:!0,get:function(){return createLiveClassRoom_2.createLiveClassRoom$}});var createPayOrder_1=require("./union/createPayOrder"),createPayOrder_2=require("./union/createPayOrder");Object.defineProperty(exports,"createPayOrder",{enumerable:!0,get:function(){return createPayOrder_2.createPayOrder$}});var cropImage_1=require("./union/cropImage"),cropImage_2=require("./union/cropImage");Object.defineProperty(exports,"cropImage",{enumerable:!0,get:function(){return cropImage_2.cropImage$}});var customChooseUsers_1=require("./union/customChooseUsers"),customChooseUsers_2=require("./union/customChooseUsers");Object.defineProperty(exports,"customChooseUsers",{enumerable:!0,get:function(){return customChooseUsers_2.customChooseUsers$}});var datePicker_1=require("./union/datePicker"),datePicker_2=require("./union/datePicker");Object.defineProperty(exports,"datePicker",{enumerable:!0,get:function(){return datePicker_2.datePicker$}});var dateRangePicker_1=require("./union/dateRangePicker"),dateRangePicker_2=require("./union/dateRangePicker");Object.defineProperty(exports,"dateRangePicker",{enumerable:!0,get:function(){return dateRangePicker_2.dateRangePicker$}});var decrypt_2=require("./union/decrypt"),decrypt_3=require("./union/decrypt");Object.defineProperty(exports,"decrypt",{enumerable:!0,get:function(){return decrypt_3.decrypt$}});var disablePullDownRefresh_1=require("./union/disablePullDownRefresh"),disablePullDownRefresh_2=require("./union/disablePullDownRefresh");Object.defineProperty(exports,"disablePullDownRefresh",{enumerable:!0,get:function(){return disablePullDownRefresh_2.disablePullDownRefresh$}});var disableWebViewBounce_1=require("./union/disableWebViewBounce"),disableWebViewBounce_2=require("./union/disableWebViewBounce");Object.defineProperty(exports,"disableWebViewBounce",{enumerable:!0,get:function(){return disableWebViewBounce_2.disableWebViewBounce$}});var disconnectBLEDevice_1=require("./union/disconnectBLEDevice"),disconnectBLEDevice_2=require("./union/disconnectBLEDevice");Object.defineProperty(exports,"disconnectBLEDevice",{enumerable:!0,get:function(){return disconnectBLEDevice_2.disconnectBLEDevice$}});var downloadAudio_1=require("./union/downloadAudio"),downloadAudio_2=require("./union/downloadAudio");Object.defineProperty(exports,"downloadAudio",{enumerable:!0,get:function(){return downloadAudio_2.downloadAudio$}});var downloadFile_3=require("./union/downloadFile"),downloadFile_4=require("./union/downloadFile");Object.defineProperty(exports,"downloadFile",{enumerable:!0,get:function(){return downloadFile_4.downloadFile$}});var editExternalUser_1=require("./union/editExternalUser"),editExternalUser_2=require("./union/editExternalUser");Object.defineProperty(exports,"editExternalUser",{enumerable:!0,get:function(){return editExternalUser_2.editExternalUser$}});var editPicture_1=require("./union/editPicture"),editPicture_2=require("./union/editPicture");Object.defineProperty(exports,"editPicture",{enumerable:!0,get:function(){return editPicture_2.editPicture$}});var enablePullDownRefresh_1=require("./union/enablePullDownRefresh"),enablePullDownRefresh_2=require("./union/enablePullDownRefresh");Object.defineProperty(exports,"enablePullDownRefresh",{enumerable:!0,get:function(){return enablePullDownRefresh_2.enablePullDownRefresh$}});var enableWebViewBounce_1=require("./union/enableWebViewBounce"),enableWebViewBounce_2=require("./union/enableWebViewBounce");Object.defineProperty(exports,"enableWebViewBounce",{enumerable:!0,get:function(){return enableWebViewBounce_2.enableWebViewBounce$}});var encrypt_2=require("./union/encrypt"),encrypt_3=require("./union/encrypt");Object.defineProperty(exports,"encrypt",{enumerable:!0,get:function(){return encrypt_3.encrypt$}});var exclusiveLiveCheck_2=require("./union/exclusiveLiveCheck"),exclusiveLiveCheck_3=require("./union/exclusiveLiveCheck");Object.defineProperty(exports,"exclusiveLiveCheck",{enumerable:!0,get:function(){return exclusiveLiveCheck_3.exclusiveLiveCheck$}});var generateImageFromCode_1=require("./union/generateImageFromCode"),generateImageFromCode_2=require("./union/generateImageFromCode");Object.defineProperty(exports,"generateImageFromCode",{enumerable:!0,get:function(){return generateImageFromCode_2.generateImageFromCode$}});var getAccountType_1=require("./union/getAccountType"),getAccountType_2=require("./union/getAccountType");Object.defineProperty(exports,"getAccountType",{enumerable:!0,get:function(){return getAccountType_2.getAccountType$}});var getActiveConferenceInfo_1=require("./union/getActiveConferenceInfo"),getActiveConferenceInfo_2=require("./union/getActiveConferenceInfo");Object.defineProperty(exports,"getActiveConferenceInfo",{enumerable:!0,get:function(){return getActiveConferenceInfo_2.getActiveConferenceInfo$}});var getAdvertisingStatus_1=require("./union/getAdvertisingStatus"),getAdvertisingStatus_2=require("./union/getAdvertisingStatus");Object.defineProperty(exports,"getAdvertisingStatus",{enumerable:!0,get:function(){return getAdvertisingStatus_2.getAdvertisingStatus$}});var getAuthCode_1=require("./union/getAuthCode"),getAuthCode_2=require("./union/getAuthCode");Object.defineProperty(exports,"getAuthCode",{enumerable:!0,get:function(){return getAuthCode_2.getAuthCode$}});var getAuthCodeV2_1=require("./union/getAuthCodeV2"),getAuthCodeV2_2=require("./union/getAuthCodeV2");Object.defineProperty(exports,"getAuthCodeV2",{enumerable:!0,get:function(){return getAuthCodeV2_2.getAuthCodeV2$}});var getAuthInfo_1=require("./union/getAuthInfo"),getAuthInfo_2=require("./union/getAuthInfo");Object.defineProperty(exports,"getAuthInfo",{enumerable:!0,get:function(){return getAuthInfo_2.getAuthInfo$}});var getBLEDeviceCharacteristics_1=require("./union/getBLEDeviceCharacteristics"),getBLEDeviceCharacteristics_2=require("./union/getBLEDeviceCharacteristics");Object.defineProperty(exports,"getBLEDeviceCharacteristics",{enumerable:!0,get:function(){return getBLEDeviceCharacteristics_2.getBLEDeviceCharacteristics$}});var getBLEDeviceServices_1=require("./union/getBLEDeviceServices"),getBLEDeviceServices_2=require("./union/getBLEDeviceServices");Object.defineProperty(exports,"getBLEDeviceServices",{enumerable:!0,get:function(){return getBLEDeviceServices_2.getBLEDeviceServices$}});var getBatteryInfo_2=require("./union/getBatteryInfo"),getBatteryInfo_3=require("./union/getBatteryInfo");Object.defineProperty(exports,"getBatteryInfo",{enumerable:!0,get:function(){return getBatteryInfo_3.getBatteryInfo$}});var getBeacons_1=require("./union/getBeacons"),getBeacons_2=require("./union/getBeacons");Object.defineProperty(exports,"getBeacons",{enumerable:!0,get:function(){return getBeacons_2.getBeacons$}});var getBluetoothAdapterState_1=require("./union/getBluetoothAdapterState"),getBluetoothAdapterState_2=require("./union/getBluetoothAdapterState");Object.defineProperty(exports,"getBluetoothAdapterState",{enumerable:!0,get:function(){return getBluetoothAdapterState_2.getBluetoothAdapterState$}});var getBluetoothDevices_1=require("./union/getBluetoothDevices"),getBluetoothDevices_2=require("./union/getBluetoothDevices");Object.defineProperty(exports,"getBluetoothDevices",{enumerable:!0,get:function(){return getBluetoothDevices_2.getBluetoothDevices$}});var getCachedAPIResponse_1=require("./union/getCachedAPIResponse"),getCachedAPIResponse_2=require("./union/getCachedAPIResponse");Object.defineProperty(exports,"getCachedAPIResponse",{enumerable:!0,get:function(){return getCachedAPIResponse_2.getCachedAPIResponse$}});var getCloudCallInfo_2=require("./union/getCloudCallInfo"),getCloudCallInfo_3=require("./union/getCloudCallInfo");Object.defineProperty(exports,"getCloudCallInfo",{enumerable:!0,get:function(){return getCloudCallInfo_3.getCloudCallInfo$}});var getCloudCallList_2=require("./union/getCloudCallList"),getCloudCallList_3=require("./union/getCloudCallList");Object.defineProperty(exports,"getCloudCallList",{enumerable:!0,get:function(){return getCloudCallList_3.getCloudCallList$}});var getCurrentCorpId_1=require("./union/getCurrentCorpId"),getCurrentCorpId_2=require("./union/getCurrentCorpId");Object.defineProperty(exports,"getCurrentCorpId",{enumerable:!0,get:function(){return getCurrentCorpId_2.getCurrentCorpId$}});var getDeviceId_1=require("./union/getDeviceId"),getDeviceId_2=require("./union/getDeviceId");Object.defineProperty(exports,"getDeviceId",{enumerable:!0,get:function(){return getDeviceId_2.getDeviceId$}});var getDeviceUUID_1=require("./union/getDeviceUUID"),getDeviceUUID_2=require("./union/getDeviceUUID");Object.defineProperty(exports,"getDeviceUUID",{enumerable:!0,get:function(){return getDeviceUUID_2.getDeviceUUID$}});var getDingerDeviceStatus_1=require("./union/getDingerDeviceStatus"),getDingerDeviceStatus_2=require("./union/getDingerDeviceStatus");Object.defineProperty(exports,"getDingerDeviceStatus",{enumerable:!0,get:function(){return getDingerDeviceStatus_2.getDingerDeviceStatus$}});var getImageInfo_1=require("./union/getImageInfo"),getImageInfo_2=require("./union/getImageInfo");Object.defineProperty(exports,"getImageInfo",{enumerable:!0,get:function(){return getImageInfo_2.getImageInfo$}});var getLocatingStatus_1=require("./union/getLocatingStatus"),getLocatingStatus_2=require("./union/getLocatingStatus");Object.defineProperty(exports,"getLocatingStatus",{enumerable:!0,get:function(){return getLocatingStatus_2.getLocatingStatus$}});var getLocation_1=require("./union/getLocation"),getLocation_2=require("./union/getLocation");Object.defineProperty(exports,"getLocation",{enumerable:!0,get:function(){return getLocation_2.getLocation$}});var getNetworkType_2=require("./union/getNetworkType"),getNetworkType_3=require("./union/getNetworkType");Object.defineProperty(exports,"getNetworkType",{enumerable:!0,get:function(){return getNetworkType_3.getNetworkType$}});var getOperateAuthCode_1=require("./union/getOperateAuthCode"),getOperateAuthCode_2=require("./union/getOperateAuthCode");Object.defineProperty(exports,"getOperateAuthCode",{enumerable:!0,get:function(){return getOperateAuthCode_2.getOperateAuthCode$}});var getPageTerminateInfo_1=require("./union/getPageTerminateInfo"),getPageTerminateInfo_2=require("./union/getPageTerminateInfo");Object.defineProperty(exports,"getPageTerminateInfo",{enumerable:!0,get:function(){return getPageTerminateInfo_2.getPageTerminateInfo$}});var getPersonalWorkInfo_1=require("./union/getPersonalWorkInfo"),getPersonalWorkInfo_2=require("./union/getPersonalWorkInfo");Object.defineProperty(exports,"getPersonalWorkInfo",{enumerable:!0,get:function(){return getPersonalWorkInfo_2.getPersonalWorkInfo$}});var getScreenBrightness_2=require("./union/getScreenBrightness"),getScreenBrightness_3=require("./union/getScreenBrightness");Object.defineProperty(exports,"getScreenBrightness",{enumerable:!0,get:function(){return getScreenBrightness_3.getScreenBrightness$}});var getStorage_1=require("./union/getStorage"),getStorage_2=require("./union/getStorage");Object.defineProperty(exports,"getStorage",{enumerable:!0,get:function(){return getStorage_2.getStorage$}});var getSystemInfo_1=require("./union/getSystemInfo"),getSystemInfo_2=require("./union/getSystemInfo");Object.defineProperty(exports,"getSystemInfo",{enumerable:!0,get:function(){ -return getSystemInfo_2.getSystemInfo$}});var getSystemSettings_1=require("./union/getSystemSettings"),getSystemSettings_2=require("./union/getSystemSettings");Object.defineProperty(exports,"getSystemSettings",{enumerable:!0,get:function(){return getSystemSettings_2.getSystemSettings$}});var getThirdAppConfCustomData_1=require("./union/getThirdAppConfCustomData"),getThirdAppConfCustomData_2=require("./union/getThirdAppConfCustomData");Object.defineProperty(exports,"getThirdAppConfCustomData",{enumerable:!0,get:function(){return getThirdAppConfCustomData_2.getThirdAppConfCustomData$}});var getThirdAppUserCustomData_1=require("./union/getThirdAppUserCustomData"),getThirdAppUserCustomData_2=require("./union/getThirdAppUserCustomData");Object.defineProperty(exports,"getThirdAppUserCustomData",{enumerable:!0,get:function(){return getThirdAppUserCustomData_2.getThirdAppUserCustomData$}});var getTodaysStepCount_1=require("./union/getTodaysStepCount"),getTodaysStepCount_2=require("./union/getTodaysStepCount");Object.defineProperty(exports,"getTodaysStepCount",{enumerable:!0,get:function(){return getTodaysStepCount_2.getTodaysStepCount$}});var getTranslateStatus_1=require("./union/getTranslateStatus"),getTranslateStatus_2=require("./union/getTranslateStatus");Object.defineProperty(exports,"getTranslateStatus",{enumerable:!0,get:function(){return getTranslateStatus_2.getTranslateStatus$}});var getUserExclusiveInfo_2=require("./union/getUserExclusiveInfo"),getUserExclusiveInfo_3=require("./union/getUserExclusiveInfo");Object.defineProperty(exports,"getUserExclusiveInfo",{enumerable:!0,get:function(){return getUserExclusiveInfo_3.getUserExclusiveInfo$}});var getWifiHotspotStatus_1=require("./union/getWifiHotspotStatus"),getWifiHotspotStatus_2=require("./union/getWifiHotspotStatus");Object.defineProperty(exports,"getWifiHotspotStatus",{enumerable:!0,get:function(){return getWifiHotspotStatus_2.getWifiHotspotStatus$}});var getWifiStatus_2=require("./union/getWifiStatus"),getWifiStatus_3=require("./union/getWifiStatus");Object.defineProperty(exports,"getWifiStatus",{enumerable:!0,get:function(){return getWifiStatus_3.getWifiStatus$}});var goBackPage_1=require("./union/goBackPage"),goBackPage_2=require("./union/goBackPage");Object.defineProperty(exports,"goBackPage",{enumerable:!0,get:function(){return goBackPage_2.goBackPage$}});var hideLoading_1=require("./union/hideLoading"),hideLoading_2=require("./union/hideLoading");Object.defineProperty(exports,"hideLoading",{enumerable:!0,get:function(){return hideLoading_2.hideLoading$}});var hideToast_1=require("./union/hideToast"),hideToast_2=require("./union/hideToast");Object.defineProperty(exports,"hideToast",{enumerable:!0,get:function(){return hideToast_2.hideToast$}});var isInTabWindow_1=require("./union/isInTabWindow"),isInTabWindow_2=require("./union/isInTabWindow");Object.defineProperty(exports,"isInTabWindow",{enumerable:!0,get:function(){return isInTabWindow_2.isInTabWindow$}});var isLocalFileExist_2=require("./union/isLocalFileExist"),isLocalFileExist_3=require("./union/isLocalFileExist");Object.defineProperty(exports,"isLocalFileExist",{enumerable:!0,get:function(){return isLocalFileExist_3.isLocalFileExist$}});var isScreenReaderEnabled_2=require("./union/isScreenReaderEnabled"),isScreenReaderEnabled_3=require("./union/isScreenReaderEnabled");Object.defineProperty(exports,"isScreenReaderEnabled",{enumerable:!0,get:function(){return isScreenReaderEnabled_3.isScreenReaderEnabled$}});var locateInMap_1=require("./union/locateInMap"),locateInMap_2=require("./union/locateInMap");Object.defineProperty(exports,"locateInMap",{enumerable:!0,get:function(){return locateInMap_2.locateInMap$}});var makeCloudCall_1=require("./union/makeCloudCall"),makeCloudCall_2=require("./union/makeCloudCall");Object.defineProperty(exports,"makeCloudCall",{enumerable:!0,get:function(){return makeCloudCall_2.makeCloudCall$}});var makeVideoConfCall_1=require("./union/makeVideoConfCall"),makeVideoConfCall_2=require("./union/makeVideoConfCall");Object.defineProperty(exports,"makeVideoConfCall",{enumerable:!0,get:function(){return makeVideoConfCall_2.makeVideoConfCall$}});var minutesCreateFromVideo_1=require("./union/minutesCreateFromVideo"),minutesCreateFromVideo_2=require("./union/minutesCreateFromVideo");Object.defineProperty(exports,"minutesCreateFromVideo",{enumerable:!0,get:function(){return minutesCreateFromVideo_2.minutesCreateFromVideo$}});var minutesStart_1=require("./union/minutesStart"),minutesStart_2=require("./union/minutesStart");Object.defineProperty(exports,"minutesStart",{enumerable:!0,get:function(){return minutesStart_2.minutesStart$}});var minutesUploadVideo_1=require("./union/minutesUploadVideo"),minutesUploadVideo_2=require("./union/minutesUploadVideo");Object.defineProperty(exports,"minutesUploadVideo",{enumerable:!0,get:function(){return minutesUploadVideo_2.minutesUploadVideo$}});var minutesViewDetail_1=require("./union/minutesViewDetail"),minutesViewDetail_2=require("./union/minutesViewDetail");Object.defineProperty(exports,"minutesViewDetail",{enumerable:!0,get:function(){return minutesViewDetail_2.minutesViewDetail$}});var multiSelect_2=require("./union/multiSelect"),multiSelect_3=require("./union/multiSelect");Object.defineProperty(exports,"multiSelect",{enumerable:!0,get:function(){return multiSelect_3.multiSelect$}});var navigateBackPage_2=require("./union/navigateBackPage"),navigateBackPage_3=require("./union/navigateBackPage");Object.defineProperty(exports,"navigateBackPage",{enumerable:!0,get:function(){return navigateBackPage_3.navigateBackPage$}});var navigateToPage_2=require("./union/navigateToPage"),navigateToPage_3=require("./union/navigateToPage");Object.defineProperty(exports,"navigateToPage",{enumerable:!0,get:function(){return navigateToPage_3.navigateToPage$}});var nfcReadCardNumber_1=require("./union/nfcReadCardNumber"),nfcReadCardNumber_2=require("./union/nfcReadCardNumber");Object.defineProperty(exports,"nfcReadCardNumber",{enumerable:!0,get:function(){return nfcReadCardNumber_2.nfcReadCardNumber$}});var notifyBLECharacteristicValueChange_1=require("./union/notifyBLECharacteristicValueChange"),notifyBLECharacteristicValueChange_2=require("./union/notifyBLECharacteristicValueChange");Object.defineProperty(exports,"notifyBLECharacteristicValueChange",{enumerable:!0,get:function(){return notifyBLECharacteristicValueChange_2.notifyBLECharacteristicValueChange$}});var notifyTranslateEvent_1=require("./union/notifyTranslateEvent"),notifyTranslateEvent_2=require("./union/notifyTranslateEvent");Object.defineProperty(exports,"notifyTranslateEvent",{enumerable:!0,get:function(){return notifyTranslateEvent_2.notifyTranslateEvent$}});var offBLECharacteristicValueChange_1=require("./union/offBLECharacteristicValueChange"),offBLECharacteristicValueChange_2=require("./union/offBLECharacteristicValueChange");Object.defineProperty(exports,"offBLECharacteristicValueChange",{enumerable:!0,get:function(){return offBLECharacteristicValueChange_2.offBLECharacteristicValueChange$}});var offBLEConnectionStateChanged_1=require("./union/offBLEConnectionStateChanged"),offBLEConnectionStateChanged_2=require("./union/offBLEConnectionStateChanged");Object.defineProperty(exports,"offBLEConnectionStateChanged",{enumerable:!0,get:function(){return offBLEConnectionStateChanged_2.offBLEConnectionStateChanged$}});var offBluetoothAdapterStateChange_1=require("./union/offBluetoothAdapterStateChange"),offBluetoothAdapterStateChange_2=require("./union/offBluetoothAdapterStateChange");Object.defineProperty(exports,"offBluetoothAdapterStateChange",{enumerable:!0,get:function(){return offBluetoothAdapterStateChange_2.offBluetoothAdapterStateChange$}});var offBluetoothDeviceFound_1=require("./union/offBluetoothDeviceFound"),offBluetoothDeviceFound_2=require("./union/offBluetoothDeviceFound");Object.defineProperty(exports,"offBluetoothDeviceFound",{enumerable:!0,get:function(){return offBluetoothDeviceFound_2.offBluetoothDeviceFound$}});var onBLECharacteristicValueChange_1=require("./union/onBLECharacteristicValueChange"),onBLECharacteristicValueChange_2=require("./union/onBLECharacteristicValueChange");Object.defineProperty(exports,"onBLECharacteristicValueChange",{enumerable:!0,get:function(){return onBLECharacteristicValueChange_2.onBLECharacteristicValueChange$}});var onBLEConnectionStateChanged_1=require("./union/onBLEConnectionStateChanged"),onBLEConnectionStateChanged_2=require("./union/onBLEConnectionStateChanged");Object.defineProperty(exports,"onBLEConnectionStateChanged",{enumerable:!0,get:function(){return onBLEConnectionStateChanged_2.onBLEConnectionStateChanged$}});var onBLEPeripheralCharacteristicReadRequest_1=require("./union/onBLEPeripheralCharacteristicReadRequest"),onBLEPeripheralCharacteristicReadRequest_2=require("./union/onBLEPeripheralCharacteristicReadRequest");Object.defineProperty(exports,"onBLEPeripheralCharacteristicReadRequest",{enumerable:!0,get:function(){return onBLEPeripheralCharacteristicReadRequest_2.onBLEPeripheralCharacteristicReadRequest$}});var onBLEPeripheralCharacteristicWriteRequest_1=require("./union/onBLEPeripheralCharacteristicWriteRequest"),onBLEPeripheralCharacteristicWriteRequest_2=require("./union/onBLEPeripheralCharacteristicWriteRequest");Object.defineProperty(exports,"onBLEPeripheralCharacteristicWriteRequest",{enumerable:!0,get:function(){return onBLEPeripheralCharacteristicWriteRequest_2.onBLEPeripheralCharacteristicWriteRequest$}});var onBLEPeripheralConnectionStateChanged_1=require("./union/onBLEPeripheralConnectionStateChanged"),onBLEPeripheralConnectionStateChanged_2=require("./union/onBLEPeripheralConnectionStateChanged");Object.defineProperty(exports,"onBLEPeripheralConnectionStateChanged",{enumerable:!0,get:function(){return onBLEPeripheralConnectionStateChanged_2.onBLEPeripheralConnectionStateChanged$}});var onBeaconServiceChange_1=require("./union/onBeaconServiceChange"),onBeaconServiceChange_2=require("./union/onBeaconServiceChange");Object.defineProperty(exports,"onBeaconServiceChange",{enumerable:!0,get:function(){return onBeaconServiceChange_2.onBeaconServiceChange$}});var onBeaconUpdate_1=require("./union/onBeaconUpdate"),onBeaconUpdate_2=require("./union/onBeaconUpdate");Object.defineProperty(exports,"onBeaconUpdate",{enumerable:!0,get:function(){return onBeaconUpdate_2.onBeaconUpdate$}});var onBluetoothAdapterStateChange_1=require("./union/onBluetoothAdapterStateChange"),onBluetoothAdapterStateChange_2=require("./union/onBluetoothAdapterStateChange");Object.defineProperty(exports,"onBluetoothAdapterStateChange",{enumerable:!0,get:function(){return onBluetoothAdapterStateChange_2.onBluetoothAdapterStateChange$}});var onBluetoothDeviceFound_1=require("./union/onBluetoothDeviceFound"),onBluetoothDeviceFound_2=require("./union/onBluetoothDeviceFound");Object.defineProperty(exports,"onBluetoothDeviceFound",{enumerable:!0,get:function(){return onBluetoothDeviceFound_2.onBluetoothDeviceFound$}});var onPlayAudioEnd_1=require("./union/onPlayAudioEnd"),onPlayAudioEnd_2=require("./union/onPlayAudioEnd");Object.defineProperty(exports,"onPlayAudioEnd",{enumerable:!0,get:function(){return onPlayAudioEnd_2.onPlayAudioEnd$}});var onRecordEnd_2=require("./union/onRecordEnd"),onRecordEnd_3=require("./union/onRecordEnd");Object.defineProperty(exports,"onRecordEnd",{enumerable:!0,get:function(){return onRecordEnd_3.onRecordEnd$}});var openBluetoothAdapter_1=require("./union/openBluetoothAdapter"),openBluetoothAdapter_2=require("./union/openBluetoothAdapter");Object.defineProperty(exports,"openBluetoothAdapter",{enumerable:!0,get:function(){return openBluetoothAdapter_2.openBluetoothAdapter$}});var openChatByChatId_1=require("./union/openChatByChatId"),openChatByChatId_2=require("./union/openChatByChatId");Object.defineProperty(exports,"openChatByChatId",{enumerable:!0,get:function(){return openChatByChatId_2.openChatByChatId$}});var openChatByConversationId_1=require("./union/openChatByConversationId"),openChatByConversationId_2=require("./union/openChatByConversationId");Object.defineProperty(exports,"openChatByConversationId",{enumerable:!0,get:function(){return openChatByConversationId_2.openChatByConversationId$}});var openChatByUserId_1=require("./union/openChatByUserId"),openChatByUserId_2=require("./union/openChatByUserId");Object.defineProperty(exports,"openChatByUserId",{enumerable:!0,get:function(){return openChatByUserId_2.openChatByUserId$}});var openDocument_2=require("./union/openDocument"),openDocument_3=require("./union/openDocument");Object.defineProperty(exports,"openDocument",{enumerable:!0,get:function(){return openDocument_3.openDocument$}});var openLink_2=require("./union/openLink"),openLink_3=require("./union/openLink");Object.defineProperty(exports,"openLink",{enumerable:!0,get:function(){return openLink_3.openLink$}});var openLocalFile_2=require("./union/openLocalFile"),openLocalFile_3=require("./union/openLocalFile");Object.defineProperty(exports,"openLocalFile",{enumerable:!0,get:function(){return openLocalFile_3.openLocalFile$}});var openLocation_1=require("./union/openLocation"),openLocation_2=require("./union/openLocation");Object.defineProperty(exports,"openLocation",{enumerable:!0,get:function(){return openLocation_2.openLocation$}});var openMicroApp_1=require("./union/openMicroApp"),openMicroApp_2=require("./union/openMicroApp");Object.defineProperty(exports,"openMicroApp",{enumerable:!0,get:function(){return openMicroApp_2.openMicroApp$}});var openPageInMicroApp_1=require("./union/openPageInMicroApp"),openPageInMicroApp_2=require("./union/openPageInMicroApp");Object.defineProperty(exports,"openPageInMicroApp",{enumerable:!0,get:function(){return openPageInMicroApp_2.openPageInMicroApp$}});var openPageInModalForPC_1=require("./union/openPageInModalForPC"),openPageInModalForPC_2=require("./union/openPageInModalForPC");Object.defineProperty(exports,"openPageInModalForPC",{enumerable:!0,get:function(){return openPageInModalForPC_2.openPageInModalForPC$}});var openPageInSlidePanelForPC_1=require("./union/openPageInSlidePanelForPC"),openPageInSlidePanelForPC_2=require("./union/openPageInSlidePanelForPC");Object.defineProperty(exports,"openPageInSlidePanelForPC",{enumerable:!0,get:function(){return openPageInSlidePanelForPC_2.openPageInSlidePanelForPC$}});var openPageInWorkBenchForPC_1=require("./union/openPageInWorkBenchForPC"),openPageInWorkBenchForPC_2=require("./union/openPageInWorkBenchForPC");Object.defineProperty(exports,"openPageInWorkBenchForPC",{enumerable:!0,get:function(){return openPageInWorkBenchForPC_2.openPageInWorkBenchForPC$}});var pauseAudio_1=require("./union/pauseAudio"),pauseAudio_2=require("./union/pauseAudio");Object.defineProperty(exports,"pauseAudio",{enumerable:!0,get:function(){return pauseAudio_2.pauseAudio$}});var playAudio_1=require("./union/playAudio"),playAudio_2=require("./union/playAudio");Object.defineProperty(exports,"playAudio",{enumerable:!0,get:function(){return playAudio_2.playAudio$}});var popGesture_1=require("./union/popGesture"),popGesture_2=require("./union/popGesture");Object.defineProperty(exports,"popGesture",{enumerable:!0,get:function(){return popGesture_2.popGesture$}});var previewFileInDingTalk_1=require("./union/previewFileInDingTalk"),previewFileInDingTalk_2=require("./union/previewFileInDingTalk");Object.defineProperty(exports,"previewFileInDingTalk",{enumerable:!0,get:function(){return previewFileInDingTalk_2.previewFileInDingTalk$}});var previewImage_2=require("./union/previewImage"),previewImage_3=require("./union/previewImage");Object.defineProperty(exports,"previewImage",{enumerable:!0,get:function(){return previewImage_3.previewImage$}});var previewImagesInDingTalkBatch_1=require("./union/previewImagesInDingTalkBatch"),previewImagesInDingTalkBatch_2=require("./union/previewImagesInDingTalkBatch");Object.defineProperty(exports,"previewImagesInDingTalkBatch",{enumerable:!0,get:function(){return previewImagesInDingTalkBatch_2.previewImagesInDingTalkBatch$}});var previewMedia_1=require("./union/previewMedia"),previewMedia_2=require("./union/previewMedia");Object.defineProperty(exports,"previewMedia",{enumerable:!0,get:function(){return previewMedia_2.previewMedia$}});var prompt_2=require("./union/prompt"),prompt_3=require("./union/prompt");Object.defineProperty(exports,"prompt",{enumerable:!0,get:function(){return prompt_3.prompt$}});var quickCallList_2=require("./union/quickCallList"),quickCallList_3=require("./union/quickCallList");Object.defineProperty(exports,"quickCallList",{enumerable:!0,get:function(){return quickCallList_3.quickCallList$}});var quitPage_1=require("./union/quitPage"),quitPage_2=require("./union/quitPage");Object.defineProperty(exports,"quitPage",{enumerable:!0,get:function(){return quitPage_2.quitPage$}});var readBLECharacteristicValue_1=require("./union/readBLECharacteristicValue"),readBLECharacteristicValue_2=require("./union/readBLECharacteristicValue");Object.defineProperty(exports,"readBLECharacteristicValue",{enumerable:!0,get:function(){return readBLECharacteristicValue_2.readBLECharacteristicValue$}});var readNFC_1=require("./union/readNFC"),readNFC_2=require("./union/readNFC");Object.defineProperty(exports,"readNFC",{enumerable:!0,get:function(){return readNFC_2.readNFC$}});var removeCachedAPIResponse_1=require("./union/removeCachedAPIResponse"),removeCachedAPIResponse_2=require("./union/removeCachedAPIResponse");Object.defineProperty(exports,"removeCachedAPIResponse",{enumerable:!0,get:function(){return removeCachedAPIResponse_2.removeCachedAPIResponse$}});var removeStorage_1=require("./union/removeStorage"),removeStorage_2=require("./union/removeStorage");Object.defineProperty(exports,"removeStorage",{enumerable:!0,get:function(){return removeStorage_2.removeStorage$}});var replacePage_1=require("./union/replacePage"),replacePage_2=require("./union/replacePage");Object.defineProperty(exports,"replacePage",{enumerable:!0,get:function(){return replacePage_2.replacePage$}});var requestAuthCode_3=require("./union/requestAuthCode"),requestAuthCode_4=require("./union/requestAuthCode");Object.defineProperty(exports,"requestAuthCode",{enumerable:!0,get:function(){return requestAuthCode_4.requestAuthCode$}});var requestMoneySubmmitOrder_1=require("./union/requestMoneySubmmitOrder"),requestMoneySubmmitOrder_2=require("./union/requestMoneySubmmitOrder");Object.defineProperty(exports,"requestMoneySubmmitOrder",{enumerable:!0,get:function(){return requestMoneySubmmitOrder_2.requestMoneySubmmitOrder$}});var resetScreenView_1=require("./union/resetScreenView"),resetScreenView_2=require("./union/resetScreenView");Object.defineProperty(exports,"resetScreenView",{enumerable:!0,get:function(){return resetScreenView_2.resetScreenView$}});var resumeAudio_1=require("./union/resumeAudio"),resumeAudio_2=require("./union/resumeAudio");Object.defineProperty(exports,"resumeAudio",{enumerable:!0,get:function(){return resumeAudio_2.resumeAudio$}});var rotateScreenView_1=require("./union/rotateScreenView"),rotateScreenView_2=require("./union/rotateScreenView");Object.defineProperty(exports,"rotateScreenView",{enumerable:!0,get:function(){return rotateScreenView_2.rotateScreenView$}});var rsa_2=require("./union/rsa"),rsa_3=require("./union/rsa");Object.defineProperty(exports,"rsa",{enumerable:!0,get:function(){return rsa_3.rsa$}});var saveFileToDingTalk_1=require("./union/saveFileToDingTalk"),saveFileToDingTalk_2=require("./union/saveFileToDingTalk");Object.defineProperty(exports,"saveFileToDingTalk",{enumerable:!0,get:function(){return saveFileToDingTalk_2.saveFileToDingTalk$}});var saveImageToPhotosAlbum_2=require("./union/saveImageToPhotosAlbum"),saveImageToPhotosAlbum_3=require("./union/saveImageToPhotosAlbum");Object.defineProperty(exports,"saveImageToPhotosAlbum",{enumerable:!0,get:function(){return saveImageToPhotosAlbum_3.saveImageToPhotosAlbum$}});var saveVideoToPhotosAlbum_1=require("./union/saveVideoToPhotosAlbum"),saveVideoToPhotosAlbum_2=require("./union/saveVideoToPhotosAlbum");Object.defineProperty(exports,"saveVideoToPhotosAlbum",{enumerable:!0,get:function(){return saveVideoToPhotosAlbum_2.saveVideoToPhotosAlbum$}});var scan_2=require("./union/scan"),scan_3=require("./union/scan");Object.defineProperty(exports,"scan",{enumerable:!0,get:function(){return scan_3.scan$}});var scanCard_2=require("./union/scanCard"),scanCard_3=require("./union/scanCard");Object.defineProperty(exports,"scanCard",{enumerable:!0,get:function(){return scanCard_3.scanCard$}});var searchMap_1=require("./union/searchMap"),searchMap_2=require("./union/searchMap");Object.defineProperty(exports,"searchMap",{enumerable:!0,get:function(){return searchMap_2.searchMap$}});var setClipboard_1=require("./union/setClipboard"),setClipboard_2=require("./union/setClipboard");Object.defineProperty(exports,"setClipboard",{enumerable:!0,get:function(){return setClipboard_2.setClipboard$}});var setGestures_1=require("./union/setGestures"),setGestures_2=require("./union/setGestures");Object.defineProperty(exports,"setGestures",{enumerable:!0,get:function(){return setGestures_2.setGestures$}});var setKeepScreenOn_1=require("./union/setKeepScreenOn"),setKeepScreenOn_2=require("./union/setKeepScreenOn");Object.defineProperty(exports,"setKeepScreenOn",{enumerable:!0,get:function(){return setKeepScreenOn_2.setKeepScreenOn$}});var setNavigationIcon_1=require("./union/setNavigationIcon"),setNavigationIcon_2=require("./union/setNavigationIcon");Object.defineProperty(exports,"setNavigationIcon",{enumerable:!0,get:function(){return setNavigationIcon_2.setNavigationIcon$}});var setNavigationLeft_1=require("./union/setNavigationLeft"),setNavigationLeft_2=require("./union/setNavigationLeft");Object.defineProperty(exports,"setNavigationLeft",{enumerable:!0,get:function(){return setNavigationLeft_2.setNavigationLeft$}});var setNavigationTitle_1=require("./union/setNavigationTitle"),setNavigationTitle_2=require("./union/setNavigationTitle");Object.defineProperty(exports,"setNavigationTitle",{enumerable:!0,get:function(){return setNavigationTitle_2.setNavigationTitle$}});var setScreenBrightness_2=require("./union/setScreenBrightness"),setScreenBrightness_3=require("./union/setScreenBrightness");Object.defineProperty(exports,"setScreenBrightness",{enumerable:!0,get:function(){return setScreenBrightness_3.setScreenBrightness$}});var setStorage_1=require("./union/setStorage"),setStorage_2=require("./union/setStorage");Object.defineProperty(exports,"setStorage",{enumerable:!0,get:function(){return setStorage_2.setStorage$}});var share_2=require("./union/share"),share_3=require("./union/share");Object.defineProperty(exports,"share",{enumerable:!0,get:function(){return share_3.share$}});var showActionSheet_1=require("./union/showActionSheet"),showActionSheet_2=require("./union/showActionSheet");Object.defineProperty(exports,"showActionSheet",{enumerable:!0,get:function(){return showActionSheet_2.showActionSheet$}});var showAuthGuide_2=require("./union/showAuthGuide"),showAuthGuide_3=require("./union/showAuthGuide");Object.defineProperty(exports,"showAuthGuide",{enumerable:!0,get:function(){return showAuthGuide_3.showAuthGuide$}});var showCallMenu_2=require("./union/showCallMenu"),showCallMenu_3=require("./union/showCallMenu");Object.defineProperty(exports,"showCallMenu",{enumerable:!0,get:function(){return showCallMenu_3.showCallMenu$}});var showLoading_1=require("./union/showLoading"),showLoading_2=require("./union/showLoading");Object.defineProperty(exports,"showLoading",{enumerable:!0,get:function(){return showLoading_2.showLoading$}});var showModal_1=require("./union/showModal"),showModal_2=require("./union/showModal");Object.defineProperty(exports,"showModal",{enumerable:!0,get:function(){return showModal_2.showModal$}});var showSharePanel_2=require("./union/showSharePanel"),showSharePanel_3=require("./union/showSharePanel");Object.defineProperty(exports,"showSharePanel",{enumerable:!0,get:function(){return showSharePanel_3.showSharePanel$}});var showToast_1=require("./union/showToast"),showToast_2=require("./union/showToast");Object.defineProperty(exports,"showToast",{enumerable:!0,get:function(){return showToast_2.showToast$}});var singleSelect_1=require("./union/singleSelect"),singleSelect_2=require("./union/singleSelect");Object.defineProperty(exports,"singleSelect",{enumerable:!0,get:function(){return singleSelect_2.singleSelect$}});var startAdvertising_1=require("./union/startAdvertising"),startAdvertising_2=require("./union/startAdvertising");Object.defineProperty(exports,"startAdvertising",{enumerable:!0,get:function(){return startAdvertising_2.startAdvertising$}});var startBeaconDiscovery_1=require("./union/startBeaconDiscovery"),startBeaconDiscovery_2=require("./union/startBeaconDiscovery");Object.defineProperty(exports,"startBeaconDiscovery",{enumerable:!0,get:function(){return startBeaconDiscovery_2.startBeaconDiscovery$}});var startBluetoothDevicesDiscovery_1=require("./union/startBluetoothDevicesDiscovery"),startBluetoothDevicesDiscovery_2=require("./union/startBluetoothDevicesDiscovery");Object.defineProperty(exports,"startBluetoothDevicesDiscovery",{enumerable:!0,get:function(){return startBluetoothDevicesDiscovery_2.startBluetoothDevicesDiscovery$}});var startDingerRecord_1=require("./union/startDingerRecord"),startDingerRecord_2=require("./union/startDingerRecord");Object.defineProperty(exports,"startDingerRecord",{enumerable:!0,get:function(){return startDingerRecord_2.startDingerRecord$}});var startLocating_1=require("./union/startLocating"),startLocating_2=require("./union/startLocating");Object.defineProperty(exports,"startLocating",{enumerable:!0,get:function(){return startLocating_2.startLocating$}});var startRecord_2=require("./union/startRecord"),startRecord_3=require("./union/startRecord");Object.defineProperty(exports,"startRecord",{enumerable:!0,get:function(){return startRecord_3.startRecord$}});var stopAdvertising_1=require("./union/stopAdvertising"),stopAdvertising_2=require("./union/stopAdvertising");Object.defineProperty(exports,"stopAdvertising",{enumerable:!0,get:function(){return stopAdvertising_2.stopAdvertising$}});var stopAudio_1=require("./union/stopAudio"),stopAudio_2=require("./union/stopAudio");Object.defineProperty(exports,"stopAudio",{enumerable:!0,get:function(){return stopAudio_2.stopAudio$}});var stopBeaconDiscovery_1=require("./union/stopBeaconDiscovery"),stopBeaconDiscovery_2=require("./union/stopBeaconDiscovery");Object.defineProperty(exports,"stopBeaconDiscovery",{enumerable:!0,get:function(){return stopBeaconDiscovery_2.stopBeaconDiscovery$}});var stopBluetoothDevicesDiscovery_1=require("./union/stopBluetoothDevicesDiscovery"),stopBluetoothDevicesDiscovery_2=require("./union/stopBluetoothDevicesDiscovery");Object.defineProperty(exports,"stopBluetoothDevicesDiscovery",{enumerable:!0,get:function(){return stopBluetoothDevicesDiscovery_2.stopBluetoothDevicesDiscovery$}});var stopDingerRecord_1=require("./union/stopDingerRecord"),stopDingerRecord_2=require("./union/stopDingerRecord");Object.defineProperty(exports,"stopDingerRecord",{enumerable:!0,get:function(){return stopDingerRecord_2.stopDingerRecord$}});var stopLocating_1=require("./union/stopLocating"),stopLocating_2=require("./union/stopLocating");Object.defineProperty(exports,"stopLocating",{enumerable:!0,get:function(){return stopLocating_2.stopLocating$}});var stopPullDownRefresh_1=require("./union/stopPullDownRefresh"),stopPullDownRefresh_2=require("./union/stopPullDownRefresh");Object.defineProperty(exports,"stopPullDownRefresh",{enumerable:!0,get:function(){return stopPullDownRefresh_2.stopPullDownRefresh$}});var stopRecord_2=require("./union/stopRecord"),stopRecord_3=require("./union/stopRecord");Object.defineProperty(exports,"stopRecord",{enumerable:!0,get:function(){return stopRecord_3.stopRecord$}});var subscribe_2=require("./union/subscribe"),subscribe_3=require("./union/subscribe");Object.defineProperty(exports,"subscribe",{enumerable:!0,get:function(){return subscribe_3.subscribe$}});var timePicker_1=require("./union/timePicker"),timePicker_2=require("./union/timePicker");Object.defineProperty(exports,"timePicker",{enumerable:!0,get:function(){return timePicker_2.timePicker$}});var translate_1=require("./union/translate"),translate_2=require("./union/translate");Object.defineProperty(exports,"translate",{enumerable:!0,get:function(){return translate_2.translate$}});var translateVoice_2=require("./union/translateVoice"),translateVoice_3=require("./union/translateVoice");Object.defineProperty(exports,"translateVoice",{enumerable:!0,get:function(){return translateVoice_3.translateVoice$}});var uploadAttachmentToDingTalk_1=require("./union/uploadAttachmentToDingTalk"),uploadAttachmentToDingTalk_2=require("./union/uploadAttachmentToDingTalk");Object.defineProperty(exports,"uploadAttachmentToDingTalk",{enumerable:!0,get:function(){return uploadAttachmentToDingTalk_2.uploadAttachmentToDingTalk$}});var uploadFile_2=require("./union/uploadFile"),uploadFile_3=require("./union/uploadFile");Object.defineProperty(exports,"uploadFile",{enumerable:!0,get:function(){return uploadFile_3.uploadFile$}});var vibrate_2=require("./union/vibrate"),vibrate_3=require("./union/vibrate");Object.defineProperty(exports,"vibrate",{enumerable:!0,get:function(){return vibrate_3.vibrate$}});var watchShake_2=require("./union/watchShake"),watchShake_3=require("./union/watchShake");Object.defineProperty(exports,"watchShake",{enumerable:!0,get:function(){return watchShake_3.watchShake$}});var writeBLECharacteristicValue_1=require("./union/writeBLECharacteristicValue"),writeBLECharacteristicValue_2=require("./union/writeBLECharacteristicValue");Object.defineProperty(exports,"writeBLECharacteristicValue",{enumerable:!0,get:function(){return writeBLECharacteristicValue_2.writeBLECharacteristicValue$}});var writeBLEPeripheralCharacteristicValue_1=require("./union/writeBLEPeripheralCharacteristicValue"),writeBLEPeripheralCharacteristicValue_2=require("./union/writeBLEPeripheralCharacteristicValue");Object.defineProperty(exports,"writeBLEPeripheralCharacteristicValue",{enumerable:!0,get:function(){return writeBLEPeripheralCharacteristicValue_2.writeBLEPeripheralCharacteristicValue$}});var writeNFC_1=require("./union/writeNFC"),writeNFC_2=require("./union/writeNFC");Object.defineProperty(exports,"writeNFC",{enumerable:!0,get:function(){return writeNFC_2.writeNFC$}});var getItem_1=require("./util/domainStorage/getItem"),getStorageInfo_1=require("./util/domainStorage/getStorageInfo"),removeItem_1=require("./util/domainStorage/removeItem"),setItem_1=require("./util/domainStorage/setItem"),getData_1=require("./util/openTemporary/getData");exports.apiObj={biz:{ATMBle:{beaconPicker:beaconPicker_1.beaconPicker$,detectFace:detectFace_1.detectFace$,detectFaceFullScreen:detectFaceFullScreen_1.detectFaceFullScreen$,exclusiveLiveCheck:exclusiveLiveCheck_1.exclusiveLiveCheck$,faceManager:faceManager_1.faceManager$,punchModePicker:punchModePicker_1.punchModePicker$},alipay:{bindAlipay:bindAlipay_1.bindAlipay$,openAuth:openAuth_1.openAuth$,pay:pay_1.pay$},attend:{getLBSWua:getLBSWua_1.getLBSWua$},auth:{openAccountPwdLoginPage:openAccountPwdLoginPage_1.openAccountPwdLoginPage$,requestAuthInfo:requestAuthInfo_1.requestAuthInfo$},calendar:{chooseDateTime:chooseDateTime_1.chooseDateTime$,chooseHalfDay:chooseHalfDay_1.chooseHalfDay$,chooseInterval:chooseInterval_1.chooseInterval$,chooseOneDay:chooseOneDay_1.chooseOneDay$},chat:{chooseConversationByCorpId:chooseConversationByCorpId_1.chooseConversationByCorpId$,collectSticker:collectSticker_1.collectSticker$,createSceneGroup:createSceneGroup_1.createSceneGroup$,getRealmCid:getRealmCid_1.getRealmCid$,locationChatMessage:locationChatMessage_1.locationChatMessage$,openSingleChat:openSingleChat_1.openSingleChat$,pickConversation:pickConversation_1.pickConversation$,sendEmotion:sendEmotion_1.sendEmotion$,toConversation:toConversation_1.toConversation$, -toConversationByOpenConversationId:toConversationByOpenConversationId_1.toConversationByOpenConversationId$},clipboardData:{setData:setData_1.setData$},conference:{createCloudCall:createCloudCall_1.createCloudCall$,getCloudCallInfo:getCloudCallInfo_1.getCloudCallInfo$,getCloudCallList:getCloudCallList_1.getCloudCallList$,videoConfCall:videoConfCall_1.videoConfCall$},contact:{choose:choose_1.choose$,chooseMobileContacts:chooseMobileContacts_1.chooseMobileContacts$,complexPicker:complexPicker_1.complexPicker$,createGroup:createGroup_1.createGroup$,departmentsPicker:departmentsPicker_1.departmentsPicker$,externalComplexPicker:externalComplexPicker_1.externalComplexPicker$,externalEditForm:externalEditForm_1.externalEditForm$,rolesPicker:rolesPicker_1.rolesPicker$,setRule:setRule_1.setRule$},cspace:{chooseSpaceDir:chooseSpaceDir_1.chooseSpaceDir$,delete:delete_1.delete$,preview:preview_1.preview$,previewDentryImages:previewDentryImages_1.previewDentryImages$,saveFile:saveFile_1.saveFile$},customContact:{choose:choose_2.choose$,multipleChoose:multipleChoose_1.multipleChoose$},data:{rsa:rsa_1.rsa$},ding:{create:create_1.create$,post:post_1.post$},edu:{finishMiniCourseByRecordId:finishMiniCourseByRecordId_1.finishMiniCourseByRecordId$,getMiniCourseDraftList:getMiniCourseDraftList_1.getMiniCourseDraftList$,joinClassroom:joinClassroom_1.joinClassroom$,makeMiniCourse:makeMiniCourse_1.makeMiniCourse$,newMsgNotificationStatus:newMsgNotificationStatus_1.newMsgNotificationStatus$,startAuth:startAuth_1.startAuth$,tokenFaceImg:tokenFaceImg_1.tokenFaceImg$},event:{notifyWeex:notifyWeex_1.notifyWeex$},file:{downloadFile:downloadFile_1.downloadFile$},intent:{fetchData:fetchData_1.fetchData$},iot:{bind:bind_1.bind$,bindMeetingRoom:bindMeetingRoom_1.bindMeetingRoom$,getDeviceProperties:getDeviceProperties_1.getDeviceProperties$,invokeThingService:invokeThingService_1.invokeThingService$,queryMeetingRoomList:queryMeetingRoomList_1.queryMeetingRoomList$,setDeviceProperties:setDeviceProperties_1.setDeviceProperties$,unbind:unbind_1.unbind$},live:{startClassRoom:startClassRoom_1.startClassRoom$,startUnifiedLive:startUnifiedLive_1.startUnifiedLive$},map:{locate:locate_1.locate$,search:search_1.search$,view:view_1.view$},media:{compressVideo:compressVideo_1.compressVideo$},microApp:{openApp:openApp_1.openApp$},navigation:{close:close_1.close$,goBack:goBack_1.goBack$,hideBar:hideBar_1.hideBar$,navigateBackPage:navigateBackPage_1.navigateBackPage$,navigateToMiniProgram:navigateToMiniProgram_1.navigateToMiniProgram$,navigateToPage:navigateToPage_1.navigateToPage$,quit:quit_1.quit$,replace:replace_1.replace$,setIcon:setIcon_1.setIcon$,setLeft:setLeft_1.setLeft$,setMenu:setMenu_1.setMenu$,setRight:setRight_1.setRight$,setTitle:setTitle_1.setTitle$},pbp:{componentPunchFromPartner:componentPunchFromPartner_1.componentPunchFromPartner$,startMatchRuleFromPartner:startMatchRuleFromPartner_1.startMatchRuleFromPartner$,stopMatchRuleFromPartner:stopMatchRuleFromPartner_1.stopMatchRuleFromPartner$},phoneContact:{add:add_1.add$},realm:{getRealtimeTracingStatus:getRealtimeTracingStatus_1.getRealtimeTracingStatus$,getUserExclusiveInfo:getUserExclusiveInfo_1.getUserExclusiveInfo$,startRealtimeTracing:startRealtimeTracing_1.startRealtimeTracing$,stopRealtimeTracing:stopRealtimeTracing_1.stopRealtimeTracing$,subscribe:subscribe_1.subscribe$,unsubscribe:unsubscribe_1.unsubscribe$},resource:{getInfo:getInfo_1.getInfo$,reportDebugMessage:reportDebugMessage_1.reportDebugMessage$},shortCut:{addShortCut:addShortCut_1.addShortCut$},sports:{getHealthAuthorizationStatus:getHealthAuthorizationStatus_1.getHealthAuthorizationStatus$,getHealthData:getHealthData_1.getHealthData$,getHealthDeviceData:getHealthDeviceData_1.getHealthDeviceData$,requestHealthAuthorization:requestHealthAuthorization_1.requestHealthAuthorization$},store:{closeUnpayOrder:closeUnpayOrder_1.closeUnpayOrder$,createOrder:createOrder_1.createOrder$,getPayUrl:getPayUrl_1.getPayUrl$,inquiry:inquiry_1.inquiry$},tabwindow:{isTab:isTab_1.isTab$},telephone:{call:call_1.call$,checkBizCall:checkBizCall_1.checkBizCall$,quickCallList:quickCallList_1.quickCallList$,showCallMenu:showCallMenu_1.showCallMenu$},user:{checkPassword:checkPassword_1.checkPassword$,get:get_1.get$},util:{callComponent:callComponent_1.callComponent$,checkAuth:checkAuth_1.checkAuth$,chooseImage:chooseImage_1.chooseImage$,chooseRegion:chooseRegion_1.chooseRegion$,chosen:chosen_1.chosen$,clearWebStoreCache:clearWebStoreCache_1.clearWebStoreCache$,closePreviewImage:closePreviewImage_1.closePreviewImage$,compressImage:compressImage_1.compressImage$,datepicker:datepicker_1.datepicker$,datetimepicker:datetimepicker_1.datetimepicker$,decrypt:decrypt_1.decrypt$,downloadFile:downloadFile_2.downloadFile$,encrypt:encrypt_1.encrypt$,getPerfInfo:getPerfInfo_1.getPerfInfo$,invokeWorkbench:invokeWorkbench_1.invokeWorkbench$,isEnableGPUAcceleration:isEnableGPUAcceleration_1.isEnableGPUAcceleration$,isLocalFileExist:isLocalFileExist_1.isLocalFileExist$,multiSelect:multiSelect_1.multiSelect$,open:open_1.open$,openBrowser:openBrowser_1.openBrowser$,openDocument:openDocument_1.openDocument$,openLink:openLink_1.openLink$,openLocalFile:openLocalFile_1.openLocalFile$,openModal:openModal_1.openModal$,openSlidePanel:openSlidePanel_1.openSlidePanel$,presentWindow:presentWindow_1.presentWindow$,previewImage:previewImage_1.previewImage$,previewVideo:previewVideo_1.previewVideo$,saveImage:saveImage_1.saveImage$,saveImageToPhotosAlbum:saveImageToPhotosAlbum_1.saveImageToPhotosAlbum$,scan:scan_1.scan$,scanCard:scanCard_1.scanCard$,setGPUAcceleration:setGPUAcceleration_1.setGPUAcceleration$,setScreenBrightnessAndKeepOn:setScreenBrightnessAndKeepOn_1.setScreenBrightnessAndKeepOn$,setScreenKeepOn:setScreenKeepOn_1.setScreenKeepOn$,share:share_1.share$,shareImage:shareImage_1.shareImage$,showAuthGuide:showAuthGuide_1.showAuthGuide$,showSharePanel:showSharePanel_1.showSharePanel$,startDocSign:startDocSign_1.startDocSign$,systemShare:systemShare_1.systemShare$,timepicker:timepicker_1.timepicker$,uploadAttachment:uploadAttachment_1.uploadAttachment$,uploadFile:uploadFile_1.uploadFile$,uploadImage:uploadImage_1.uploadImage$,uploadImageFromCamera:uploadImageFromCamera_1.uploadImageFromCamera$,ut:ut_1.ut$},verify:{openBindIDCard:openBindIDCard_1.openBindIDCard$,startAuth:startAuth_2.startAuth$},voice:{makeCall:makeCall_1.makeCall$},watermarkCamera:{getWatermarkInfo:getWatermarkInfo_1.getWatermarkInfo$,setWatermarkInfo:setWatermarkInfo_1.setWatermarkInfo$}},channel:{permission:{requestAuthCode:requestAuthCode_1.requestAuthCode$}},device:{accelerometer:{clearShake:clearShake_1.clearShake$,watchShake:watchShake_1.watchShake$},audio:{download:download_1.download$,onPlayEnd:onPlayEnd_1.onPlayEnd$,onRecordEnd:onRecordEnd_1.onRecordEnd$,pause:pause_1.pause$,play:play_1.play$,resume:resume_1.resume$,startRecord:startRecord_1.startRecord$,stop:stop_1.stop$,stopRecord:stopRecord_1.stopRecord$,translateVoice:translateVoice_1.translateVoice$},base:{getBatteryInfo:getBatteryInfo_1.getBatteryInfo$,getInterface:getInterface_1.getInterface$,getPhoneInfo:getPhoneInfo_1.getPhoneInfo$,getScanWifiListAsync:getScanWifiListAsync_1.getScanWifiListAsync$,getUUID:getUUID_1.getUUID$,getWifiStatus:getWifiStatus_1.getWifiStatus$,openSystemSetting:openSystemSetting_1.openSystemSetting$},connection:{getNetworkType:getNetworkType_1.getNetworkType$},geolocation:{checkPermission:checkPermission_1.checkPermission$,get:get_2.get$,start:start_1.start$,status:status_1.status$,stop:stop_2.stop$},launcher:{checkInstalledApps:checkInstalledApps_1.checkInstalledApps$,launchApp:launchApp_1.launchApp$},nfc:{nfcRead:nfcRead_1.nfcRead$,nfcStop:nfcStop_1.nfcStop$,nfcWrite:nfcWrite_1.nfcWrite$},notification:{actionSheet:actionSheet_1.actionSheet$,alert:alert_1.alert$,confirm:confirm_1.confirm$,extendModal:extendModal_1.extendModal$,hidePreloader:hidePreloader_1.hidePreloader$,modal:modal_1.modal$,prompt:prompt_1.prompt$,showPreloader:showPreloader_1.showPreloader$,toast:toast_1.toast$,vibrate:vibrate_1.vibrate$},screen:{getScreenBrightness:getScreenBrightness_1.getScreenBrightness$,insetAdjust:insetAdjust_1.insetAdjust$,isScreenReaderEnabled:isScreenReaderEnabled_1.isScreenReaderEnabled$,resetView:resetView_1.resetView$,rotateView:rotateView_1.rotateView$,setScreenBrightness:setScreenBrightness_1.setScreenBrightness$}},media:{voiceRecorder:{keepAlive:keepAlive_1.keepAlive$,pause:pause_2.pause$,resume:resume_2.resume$,start:start_2.start$,stop:stop_3.stop$}},net:{bjGovApn:{loginGovNet:loginGovNet_1.loginGovNet$}},runtime:{h5nuvabridge:{exec:exec_1.exec$},message:{fetch:fetch_1.fetch$,post:post_2.post$},monitor:{getLoadTime:getLoadTime_1.getLoadTime$},permission:{requestAuthCode:requestAuthCode_2.requestAuthCode$,requestOperateAuthCode:requestOperateAuthCode_1.requestOperateAuthCode$}},ui:{input:{plain:plain_1.plain$},multitask:{addToFloat:addToFloat_1.addToFloat$,removeFromFloat:removeFromFloat_1.removeFromFloat$},nav:{close:close_2.close$,getCurrentId:getCurrentId_1.getCurrentId$,go:go_1.go$,preload:preload_1.preload$,recycle:recycle_1.recycle$},progressBar:{setColors:setColors_1.setColors$},pullToRefresh:{disable:disable_1.disable$,enable:enable_1.enable$,stop:stop_4.stop$},webViewBounce:{disable:disable_2.disable$,enable:enable_2.enable$}},ExternalChannelPublish:ExternalChannelPublish_1.ExternalChannelPublish$,addPhoneContact:addPhoneContact_1.addPhoneContact$,alert:alert_2.alert$,callUsers:callUsers_1.callUsers$,checkAuth:checkAuth_2.checkAuth$,checkBizCall:checkBizCall_2.checkBizCall$,chooseChat:chooseChat_1.chooseChat$,chooseConversation:chooseConversation_1.chooseConversation$,chooseDateRangeInCalendar:chooseDateRangeInCalendar_1.chooseDateRangeInCalendar$,chooseDateTime:chooseDateTime_2.chooseDateTime$,chooseDepartments:chooseDepartments_1.chooseDepartments$,chooseDingTalkDir:chooseDingTalkDir_1.chooseDingTalkDir$,chooseDistrict:chooseDistrict_1.chooseDistrict$,chooseExternalUsers:chooseExternalUsers_1.chooseExternalUsers$,chooseFile:chooseFile_1.chooseFile$,chooseHalfDayInCalendar:chooseHalfDayInCalendar_1.chooseHalfDayInCalendar$,chooseImage:chooseImage_2.chooseImage$,chooseMedia:chooseMedia_1.chooseMedia$,chooseOneDayInCalendar:chooseOneDayInCalendar_1.chooseOneDayInCalendar$,chooseOrg:chooseOrg_1.chooseOrg$,choosePhonebook:choosePhonebook_1.choosePhonebook$,chooseStaffForPC:chooseStaffForPC_1.chooseStaffForPC$,chooseUserFromList:chooseUserFromList_1.chooseUserFromList$,clearShake:clearShake_2.clearShake$,closeBluetoothAdapter:closeBluetoothAdapter_1.closeBluetoothAdapter$,closePage:closePage_1.closePage$,complexChoose:complexChoose_1.complexChoose$,compressImage:compressImage_2.compressImage$,confirm:confirm_2.confirm$,connectBLEDevice:connectBLEDevice_1.connectBLEDevice$,createBLEPeripheralServer:createBLEPeripheralServer_1.createBLEPeripheralServer$,createDing:createDing_1.createDing$,createDingForPC:createDingForPC_1.createDingForPC$,createGroupChat:createGroupChat_1.createGroupChat$,createLiveClassRoom:createLiveClassRoom_1.createLiveClassRoom$,createPayOrder:createPayOrder_1.createPayOrder$,cropImage:cropImage_1.cropImage$,customChooseUsers:customChooseUsers_1.customChooseUsers$,datePicker:datePicker_1.datePicker$,dateRangePicker:dateRangePicker_1.dateRangePicker$,decrypt:decrypt_2.decrypt$,disablePullDownRefresh:disablePullDownRefresh_1.disablePullDownRefresh$,disableWebViewBounce:disableWebViewBounce_1.disableWebViewBounce$,disconnectBLEDevice:disconnectBLEDevice_1.disconnectBLEDevice$,downloadAudio:downloadAudio_1.downloadAudio$,downloadFile:downloadFile_3.downloadFile$,editExternalUser:editExternalUser_1.editExternalUser$,editPicture:editPicture_1.editPicture$,enablePullDownRefresh:enablePullDownRefresh_1.enablePullDownRefresh$,enableWebViewBounce:enableWebViewBounce_1.enableWebViewBounce$,encrypt:encrypt_2.encrypt$,exclusiveLiveCheck:exclusiveLiveCheck_2.exclusiveLiveCheck$,generateImageFromCode:generateImageFromCode_1.generateImageFromCode$,getAccountType:getAccountType_1.getAccountType$,getActiveConferenceInfo:getActiveConferenceInfo_1.getActiveConferenceInfo$,getAdvertisingStatus:getAdvertisingStatus_1.getAdvertisingStatus$,getAuthCode:getAuthCode_1.getAuthCode$,getAuthCodeV2:getAuthCodeV2_1.getAuthCodeV2$,getAuthInfo:getAuthInfo_1.getAuthInfo$,getBLEDeviceCharacteristics:getBLEDeviceCharacteristics_1.getBLEDeviceCharacteristics$,getBLEDeviceServices:getBLEDeviceServices_1.getBLEDeviceServices$,getBatteryInfo:getBatteryInfo_2.getBatteryInfo$,getBeacons:getBeacons_1.getBeacons$,getBluetoothAdapterState:getBluetoothAdapterState_1.getBluetoothAdapterState$,getBluetoothDevices:getBluetoothDevices_1.getBluetoothDevices$,getCachedAPIResponse:getCachedAPIResponse_1.getCachedAPIResponse$,getCloudCallInfo:getCloudCallInfo_2.getCloudCallInfo$,getCloudCallList:getCloudCallList_2.getCloudCallList$,getCurrentCorpId:getCurrentCorpId_1.getCurrentCorpId$,getDeviceId:getDeviceId_1.getDeviceId$,getDeviceUUID:getDeviceUUID_1.getDeviceUUID$,getDingerDeviceStatus:getDingerDeviceStatus_1.getDingerDeviceStatus$,getImageInfo:getImageInfo_1.getImageInfo$,getLocatingStatus:getLocatingStatus_1.getLocatingStatus$,getLocation:getLocation_1.getLocation$,getNetworkType:getNetworkType_2.getNetworkType$,getOperateAuthCode:getOperateAuthCode_1.getOperateAuthCode$,getPageTerminateInfo:getPageTerminateInfo_1.getPageTerminateInfo$,getPersonalWorkInfo:getPersonalWorkInfo_1.getPersonalWorkInfo$,getScreenBrightness:getScreenBrightness_2.getScreenBrightness$,getStorage:getStorage_1.getStorage$,getSystemInfo:getSystemInfo_1.getSystemInfo$,getSystemSettings:getSystemSettings_1.getSystemSettings$,getThirdAppConfCustomData:getThirdAppConfCustomData_1.getThirdAppConfCustomData$,getThirdAppUserCustomData:getThirdAppUserCustomData_1.getThirdAppUserCustomData$,getTodaysStepCount:getTodaysStepCount_1.getTodaysStepCount$,getTranslateStatus:getTranslateStatus_1.getTranslateStatus$,getUserExclusiveInfo:getUserExclusiveInfo_2.getUserExclusiveInfo$,getWifiHotspotStatus:getWifiHotspotStatus_1.getWifiHotspotStatus$,getWifiStatus:getWifiStatus_2.getWifiStatus$,goBackPage:goBackPage_1.goBackPage$,hideLoading:hideLoading_1.hideLoading$,hideToast:hideToast_1.hideToast$,isInTabWindow:isInTabWindow_1.isInTabWindow$,isLocalFileExist:isLocalFileExist_2.isLocalFileExist$,isScreenReaderEnabled:isScreenReaderEnabled_2.isScreenReaderEnabled$,locateInMap:locateInMap_1.locateInMap$,makeCloudCall:makeCloudCall_1.makeCloudCall$,makeVideoConfCall:makeVideoConfCall_1.makeVideoConfCall$,minutesCreateFromVideo:minutesCreateFromVideo_1.minutesCreateFromVideo$,minutesStart:minutesStart_1.minutesStart$,minutesUploadVideo:minutesUploadVideo_1.minutesUploadVideo$,minutesViewDetail:minutesViewDetail_1.minutesViewDetail$,multiSelect:multiSelect_2.multiSelect$,navigateBackPage:navigateBackPage_2.navigateBackPage$,navigateToPage:navigateToPage_2.navigateToPage$,nfcReadCardNumber:nfcReadCardNumber_1.nfcReadCardNumber$,notifyBLECharacteristicValueChange:notifyBLECharacteristicValueChange_1.notifyBLECharacteristicValueChange$,notifyTranslateEvent:notifyTranslateEvent_1.notifyTranslateEvent$,offBLECharacteristicValueChange:offBLECharacteristicValueChange_1.offBLECharacteristicValueChange$,offBLEConnectionStateChanged:offBLEConnectionStateChanged_1.offBLEConnectionStateChanged$,offBluetoothAdapterStateChange:offBluetoothAdapterStateChange_1.offBluetoothAdapterStateChange$,offBluetoothDeviceFound:offBluetoothDeviceFound_1.offBluetoothDeviceFound$,onBLECharacteristicValueChange:onBLECharacteristicValueChange_1.onBLECharacteristicValueChange$,onBLEConnectionStateChanged:onBLEConnectionStateChanged_1.onBLEConnectionStateChanged$,onBLEPeripheralCharacteristicReadRequest:onBLEPeripheralCharacteristicReadRequest_1.onBLEPeripheralCharacteristicReadRequest$,onBLEPeripheralCharacteristicWriteRequest:onBLEPeripheralCharacteristicWriteRequest_1.onBLEPeripheralCharacteristicWriteRequest$,onBLEPeripheralConnectionStateChanged:onBLEPeripheralConnectionStateChanged_1.onBLEPeripheralConnectionStateChanged$,onBeaconServiceChange:onBeaconServiceChange_1.onBeaconServiceChange$,onBeaconUpdate:onBeaconUpdate_1.onBeaconUpdate$,onBluetoothAdapterStateChange:onBluetoothAdapterStateChange_1.onBluetoothAdapterStateChange$,onBluetoothDeviceFound:onBluetoothDeviceFound_1.onBluetoothDeviceFound$,onPlayAudioEnd:onPlayAudioEnd_1.onPlayAudioEnd$,onRecordEnd:onRecordEnd_2.onRecordEnd$,openBluetoothAdapter:openBluetoothAdapter_1.openBluetoothAdapter$,openChatByChatId:openChatByChatId_1.openChatByChatId$,openChatByConversationId:openChatByConversationId_1.openChatByConversationId$,openChatByUserId:openChatByUserId_1.openChatByUserId$,openDocument:openDocument_2.openDocument$,openLink:openLink_2.openLink$,openLocalFile:openLocalFile_2.openLocalFile$,openLocation:openLocation_1.openLocation$,openMicroApp:openMicroApp_1.openMicroApp$,openPageInMicroApp:openPageInMicroApp_1.openPageInMicroApp$,openPageInModalForPC:openPageInModalForPC_1.openPageInModalForPC$,openPageInSlidePanelForPC:openPageInSlidePanelForPC_1.openPageInSlidePanelForPC$,openPageInWorkBenchForPC:openPageInWorkBenchForPC_1.openPageInWorkBenchForPC$,pauseAudio:pauseAudio_1.pauseAudio$,playAudio:playAudio_1.playAudio$,popGesture:popGesture_1.popGesture$,previewFileInDingTalk:previewFileInDingTalk_1.previewFileInDingTalk$,previewImage:previewImage_2.previewImage$,previewImagesInDingTalkBatch:previewImagesInDingTalkBatch_1.previewImagesInDingTalkBatch$,previewMedia:previewMedia_1.previewMedia$,prompt:prompt_2.prompt$,quickCallList:quickCallList_2.quickCallList$,quitPage:quitPage_1.quitPage$,readBLECharacteristicValue:readBLECharacteristicValue_1.readBLECharacteristicValue$,readNFC:readNFC_1.readNFC$,removeCachedAPIResponse:removeCachedAPIResponse_1.removeCachedAPIResponse$,removeStorage:removeStorage_1.removeStorage$,replacePage:replacePage_1.replacePage$,requestAuthCode:requestAuthCode_3.requestAuthCode$,requestMoneySubmmitOrder:requestMoneySubmmitOrder_1.requestMoneySubmmitOrder$,resetScreenView:resetScreenView_1.resetScreenView$,resumeAudio:resumeAudio_1.resumeAudio$,rotateScreenView:rotateScreenView_1.rotateScreenView$,rsa:rsa_2.rsa$,saveFileToDingTalk:saveFileToDingTalk_1.saveFileToDingTalk$,saveImageToPhotosAlbum:saveImageToPhotosAlbum_2.saveImageToPhotosAlbum$,saveVideoToPhotosAlbum:saveVideoToPhotosAlbum_1.saveVideoToPhotosAlbum$,scan:scan_2.scan$,scanCard:scanCard_2.scanCard$,searchMap:searchMap_1.searchMap$,setClipboard:setClipboard_1.setClipboard$,setGestures:setGestures_1.setGestures$,setKeepScreenOn:setKeepScreenOn_1.setKeepScreenOn$,setNavigationIcon:setNavigationIcon_1.setNavigationIcon$,setNavigationLeft:setNavigationLeft_1.setNavigationLeft$,setNavigationTitle:setNavigationTitle_1.setNavigationTitle$,setScreenBrightness:setScreenBrightness_2.setScreenBrightness$,setStorage:setStorage_1.setStorage$,share:share_2.share$,showActionSheet:showActionSheet_1.showActionSheet$,showAuthGuide:showAuthGuide_2.showAuthGuide$,showCallMenu:showCallMenu_2.showCallMenu$,showLoading:showLoading_1.showLoading$,showModal:showModal_1.showModal$,showSharePanel:showSharePanel_2.showSharePanel$,showToast:showToast_1.showToast$,singleSelect:singleSelect_1.singleSelect$,startAdvertising:startAdvertising_1.startAdvertising$,startBeaconDiscovery:startBeaconDiscovery_1.startBeaconDiscovery$,startBluetoothDevicesDiscovery:startBluetoothDevicesDiscovery_1.startBluetoothDevicesDiscovery$,startDingerRecord:startDingerRecord_1.startDingerRecord$,startLocating:startLocating_1.startLocating$,startRecord:startRecord_2.startRecord$,stopAdvertising:stopAdvertising_1.stopAdvertising$,stopAudio:stopAudio_1.stopAudio$,stopBeaconDiscovery:stopBeaconDiscovery_1.stopBeaconDiscovery$,stopBluetoothDevicesDiscovery:stopBluetoothDevicesDiscovery_1.stopBluetoothDevicesDiscovery$,stopDingerRecord:stopDingerRecord_1.stopDingerRecord$,stopLocating:stopLocating_1.stopLocating$,stopPullDownRefresh:stopPullDownRefresh_1.stopPullDownRefresh$,stopRecord:stopRecord_2.stopRecord$,subscribe:subscribe_2.subscribe$,timePicker:timePicker_1.timePicker$,translate:translate_1.translate$,translateVoice:translateVoice_2.translateVoice$,uploadAttachmentToDingTalk:uploadAttachmentToDingTalk_1.uploadAttachmentToDingTalk$,uploadFile:uploadFile_2.uploadFile$,vibrate:vibrate_2.vibrate$,watchShake:watchShake_2.watchShake$,writeBLECharacteristicValue:writeBLECharacteristicValue_1.writeBLECharacteristicValue$,writeBLEPeripheralCharacteristicValue:writeBLEPeripheralCharacteristicValue_1.writeBLEPeripheralCharacteristicValue$,writeNFC:writeNFC_1.writeNFC$,util:{domainStorage:{getItem:getItem_1.getItem$,getStorageInfo:getStorageInfo_1.getStorageInfo$,removeItem:removeItem_1.removeItem$,setItem:setItem_1.setItem$},openTemporary:{getData:getData_1.getData$}}}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/keepAlive.d.ts b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/keepAlive.d.ts deleted file mode 100644 index c4680399..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/keepAlive.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 保持录音 请求参数定义 - * @apiName media.voiceRecorder.keepAlive - */ -export interface IMediaVoiceRecorderKeepAliveParams { - [key: string]: any; -} -/** - * 保持录音 返回结果定义 - * @apiName media.voiceRecorder.keepAlive - */ -export interface IMediaVoiceRecorderKeepAliveResult { - [key: string]: any; -} -/** - * 保持录音 - * @apiName media.voiceRecorder.keepAlive - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function keepAlive$(params: IMediaVoiceRecorderKeepAliveParams): Promise; -export default keepAlive$; diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/keepAlive.js b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/keepAlive.js deleted file mode 100644 index 7096f4db..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/keepAlive.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function keepAlive$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.keepAlive$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="media.voiceRecorder.keepAlive";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.12"},_a)),exports.keepAlive$=keepAlive$,exports.default=keepAlive$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/pause.d.ts b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/pause.d.ts deleted file mode 100644 index 7ec5d7d2..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/pause.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 暂停录音 请求参数定义 - * @apiName media.voiceRecorder.pause - */ -export interface IMediaVoiceRecorderPauseParams { - [key: string]: any; -} -/** - * 暂停录音 返回结果定义 - * @apiName media.voiceRecorder.pause - */ -export interface IMediaVoiceRecorderPauseResult { - [key: string]: any; -} -/** - * 暂停录音 - * @apiName media.voiceRecorder.pause - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function pause$(params: IMediaVoiceRecorderPauseParams): Promise; -export default pause$; diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/pause.js b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/pause.js deleted file mode 100644 index 74bc5dee..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/pause.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pause$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.pause$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="media.voiceRecorder.pause";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.12"},_a)),exports.pause$=pause$,exports.default=pause$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/resume.d.ts b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/resume.d.ts deleted file mode 100644 index 726a066a..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/resume.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 恢复录音 请求参数定义 - * @apiName media.voiceRecorder.resume - */ -export interface IMediaVoiceRecorderResumeParams { - [key: string]: any; -} -/** - * 恢复录音 返回结果定义 - * @apiName media.voiceRecorder.resume - */ -export interface IMediaVoiceRecorderResumeResult { - [key: string]: any; -} -/** - * 恢复录音 - * @apiName media.voiceRecorder.resume - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function resume$(params: IMediaVoiceRecorderResumeParams): Promise; -export default resume$; diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/resume.js b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/resume.js deleted file mode 100644 index 5e96603c..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/resume.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resume$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.resume$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="media.voiceRecorder.resume";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.12"},_a)),exports.resume$=resume$,exports.default=resume$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/start.d.ts b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/start.d.ts deleted file mode 100644 index 39f0278a..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/start.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 开始录音 请求参数定义 - * @apiName media.voiceRecorder.start - */ -export interface IMediaVoiceRecorderStartParams { - [key: string]: any; -} -/** - * 开始录音 返回结果定义 - * @apiName media.voiceRecorder.start - */ -export interface IMediaVoiceRecorderStartResult { - [key: string]: any; -} -/** - * 开始录音 - * @apiName media.voiceRecorder.start - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function start$(params: IMediaVoiceRecorderStartParams): Promise; -export default start$; diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/start.js b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/start.js deleted file mode 100644 index 73806168..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/start.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function start$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.start$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="media.voiceRecorder.start";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.12"},_a)),exports.start$=start$,exports.default=start$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/stop.d.ts b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/stop.d.ts deleted file mode 100644 index 82102cc8..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/stop.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 停止录音 请求参数定义 - * @apiName media.voiceRecorder.stop - */ -export interface IMediaVoiceRecorderStopParams { - [key: string]: any; -} -/** - * 停止录音 返回结果定义 - * @apiName media.voiceRecorder.stop - */ -export interface IMediaVoiceRecorderStopResult { - [key: string]: any; -} -/** - * 停止录音 - * @apiName media.voiceRecorder.stop - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function stop$(params: IMediaVoiceRecorderStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/stop.js b/node_modules/dingtalk-jsapi/api/media/voiceRecorder/stop.js deleted file mode 100644 index 19392083..00000000 --- a/node_modules/dingtalk-jsapi/api/media/voiceRecorder/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="media.voiceRecorder.stop";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.12"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"5.1.12"},_a)),exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/net/bjGovApn/loginGovNet.d.ts b/node_modules/dingtalk-jsapi/api/net/bjGovApn/loginGovNet.d.ts deleted file mode 100644 index 3c641741..00000000 --- a/node_modules/dingtalk-jsapi/api/net/bjGovApn/loginGovNet.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 对北京政务通版本增加一个登录内网的能力 请求参数定义 - * @apiName net.bjGovApn.loginGovNet - */ -export interface INetBjGovApnLoginGovNetParams { - /** 用户名,必填 */ - userName: string; - /** 密码 */ - password: string; -} -/** - * 对北京政务通版本增加一个登录内网的能力 返回结果定义 - * @apiName net.bjGovApn.loginGovNet - */ -export interface INetBjGovApnLoginGovNetResult { - result: string; -} -/** - * 对北京政务通版本增加一个登录内网的能力 - * @apiName net.bjGovApn.loginGovNet - * @supportVersion android: 4.5.16 - */ -export declare function loginGovNet$(params: INetBjGovApnLoginGovNetParams): Promise; -export default loginGovNet$; diff --git a/node_modules/dingtalk-jsapi/api/net/bjGovApn/loginGovNet.js b/node_modules/dingtalk-jsapi/api/net/bjGovApn/loginGovNet.js deleted file mode 100644 index 08cc19c9..00000000 --- a/node_modules/dingtalk-jsapi/api/net/bjGovApn/loginGovNet.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function loginGovNet$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.loginGovNet$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="net.bjGovApn.loginGovNet";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.5.16"},_a)),exports.loginGovNet$=loginGovNet$,exports.default=loginGovNet$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/runtime/h5nuvabridge/exec.d.ts b/node_modules/dingtalk-jsapi/api/runtime/h5nuvabridge/exec.d.ts deleted file mode 100644 index 0d324c5d..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/h5nuvabridge/exec.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * runtime.h5nuvabridge.exec 请求参数定义 - * @apiName runtime.h5nuvabridge.exec - */ -export interface IRuntimeH5nuvabridgeExecParams { - _action: string; - [key: string]: any; -} -/** - * runtime.h5nuvabridge.exec 返回结果定义 - * @apiName runtime.h5nuvabridge.exec - */ -export interface IRuntimeH5nuvabridgeExecResult { - [key: string]: any; -} -/** - * runtime.h5nuvabridge.exec - * @apiName runtime.h5nuvabridge.exec - * @supportVersion ios: 7.0.0 android: 7.0.0 - */ -export declare function exec$(params: IRuntimeH5nuvabridgeExecParams): Promise; -export default exec$; diff --git a/node_modules/dingtalk-jsapi/api/runtime/h5nuvabridge/exec.js b/node_modules/dingtalk-jsapi/api/runtime/h5nuvabridge/exec.js deleted file mode 100644 index 214bb983..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/h5nuvabridge/exec.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function exec$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.exec$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="runtime.h5nuvabridge.exec";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.exec$=exec$,exports.default=exec$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/runtime/message/fetch.d.ts b/node_modules/dingtalk-jsapi/api/runtime/message/fetch.d.ts deleted file mode 100644 index b2160017..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/message/fetch.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 请求参数定义 - * @apiName runtime.message.fetch - */ -export interface IRuntimeMessageFetchParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName runtime.message.fetch - */ -export interface IRuntimeMessageFetchResult { - [key: string]: any; -} -/** - * - * @apiName runtime.message.fetch - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function fetch$(params: IRuntimeMessageFetchParams): Promise; -export default fetch$; diff --git a/node_modules/dingtalk-jsapi/api/runtime/message/fetch.js b/node_modules/dingtalk-jsapi/api/runtime/message/fetch.js deleted file mode 100644 index 8514126c..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/message/fetch.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetch$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetch$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="runtime.message.fetch";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.fetch$=fetch$,exports.default=fetch$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/runtime/message/post.d.ts b/node_modules/dingtalk-jsapi/api/runtime/message/post.d.ts deleted file mode 100644 index a1e120ec..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/message/post.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 请求参数定义 - * @apiName runtime.message.post - */ -export interface IRuntimeMessagePostParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName runtime.message.post - */ -export interface IRuntimeMessagePostResult { - [key: string]: any; -} -/** - * - * @apiName runtime.message.post - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function post$(params: IRuntimeMessagePostParams): Promise; -export default post$; diff --git a/node_modules/dingtalk-jsapi/api/runtime/message/post.js b/node_modules/dingtalk-jsapi/api/runtime/message/post.js deleted file mode 100644 index 3fc2d783..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/message/post.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function post$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.post$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="runtime.message.post";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.post$=post$,exports.default=post$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/runtime/monitor/getLoadTime.d.ts b/node_modules/dingtalk-jsapi/api/runtime/monitor/getLoadTime.d.ts deleted file mode 100644 index d5de6f87..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/monitor/getLoadTime.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 获取H5容器启动时间 请求参数定义 - * @apiName runtime.monitor.getLoadTime - */ -export interface IRuntimeMonitorGetLoadTimeParams { - /** - * RuntimeLaunchTime:容器启动耗时 - * PageLoadTime:容器启动时间,从init到第一个页面加载成功 - * RuntimeStartLoadTime:容器初始化到容器中的 webview 开始加载 web 资源的耗时 - */ - type: string; -} -/** - * 获取H5容器启动时间 返回结果定义 - * @apiName runtime.monitor.getLoadTime - */ -export interface IRuntimeMonitorGetLoadTimeResult { - /** 所查询对应的时间 */ - time: number; - /** 同入参 */ - type: string; -} -/** - * 获取H5容器启动时间 - * @apiName runtime.monitor.getLoadTime - * @supportVersion ios: 6.0.10 android: 6.0.10 - * @author Android:泠轩 iOS:序元 - */ -export declare function getLoadTime$(params: IRuntimeMonitorGetLoadTimeParams): Promise; -export default getLoadTime$; diff --git a/node_modules/dingtalk-jsapi/api/runtime/monitor/getLoadTime.js b/node_modules/dingtalk-jsapi/api/runtime/monitor/getLoadTime.js deleted file mode 100644 index 5a483b0f..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/monitor/getLoadTime.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLoadTime$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLoadTime$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="runtime.monitor.getLoadTime";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.10"},_a)),exports.getLoadTime$=getLoadTime$,exports.default=getLoadTime$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/runtime/permission/requestAuthCode.d.ts b/node_modules/dingtalk-jsapi/api/runtime/permission/requestAuthCode.d.ts deleted file mode 100644 index f6aacf1e..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/permission/requestAuthCode.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 请求授权码,免登改造用 请求参数定义 - * 调用此api不需要进行鉴权(即不需要进行dd.config) - * @apiName runtime.permission.requestAuthCode - */ -export interface IRuntimePermissionRequestAuthCodeParams { - /** 企业ID */ - corpId: string; -} -/** - * 请求授权码,免登改造用 返回结果定义 - * @apiName runtime.permission.requestAuthCode - */ -export interface IRuntimePermissionRequestAuthCodeResult { - /** 授权码,5分钟有效,且只能使用一次 */ - code: string; -} -/** - * 请求授权码,免登改造用 - * @apiName runtime.permission.requestAuthCode - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function requestAuthCode$(params: IRuntimePermissionRequestAuthCodeParams): Promise; -export default requestAuthCode$; diff --git a/node_modules/dingtalk-jsapi/api/runtime/permission/requestAuthCode.js b/node_modules/dingtalk-jsapi/api/runtime/permission/requestAuthCode.js deleted file mode 100644 index ccd7c660..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/permission/requestAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestAuthCode$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestAuthCode$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="runtime.permission.requestAuthCode",paramsDeal=function(e){return Object.assign(e,{url:location.href.split("#")[0]})};ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.requestAuthCode$=requestAuthCode$,exports.default=requestAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/runtime/permission/requestOperateAuthCode.d.ts b/node_modules/dingtalk-jsapi/api/runtime/permission/requestOperateAuthCode.d.ts deleted file mode 100644 index 4c300eea..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/permission/requestOperateAuthCode.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 请求参数定义 - * @apiName runtime.permission.requestOperateAuthCode - */ -export interface IRuntimePermissionRequestOperateAuthCodeParams { - /** 企业ID */ - corpId: string; - /** 微应用ID,必须与dd.config的一致 */ - agentId: string; -} -/** - * 返回结果定义 - * @apiName runtime.permission.requestOperateAuthCode - */ -export interface IRuntimePermissionRequestOperateAuthCodeResult { - code: string; -} -/** - * 获取微应用反馈式操作的临时授权码 - * @apiName runtime.permission.requestOperateAuthCode - * @supportVersion pc: 3.3.0 ios: 3.3.0 android: 3.3.0 - */ -export declare function requestOperateAuthCode$(params: IRuntimePermissionRequestOperateAuthCodeParams): Promise; -export default requestOperateAuthCode$; diff --git a/node_modules/dingtalk-jsapi/api/runtime/permission/requestOperateAuthCode.js b/node_modules/dingtalk-jsapi/api/runtime/permission/requestOperateAuthCode.js deleted file mode 100644 index 83da41b7..00000000 --- a/node_modules/dingtalk-jsapi/api/runtime/permission/requestOperateAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestOperateAuthCode$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestOperateAuthCode$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="runtime.permission.requestOperateAuthCode",paramsDeal=function(e){return Object.assign(e,{url:location.href.split("#")[0]})};ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"3.3.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"3.3.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"3.3.0"},_a)),exports.requestOperateAuthCode$=requestOperateAuthCode$,exports.default=requestOperateAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/input/plain.d.ts b/node_modules/dingtalk-jsapi/api/ui/input/plain.d.ts deleted file mode 100644 index 317b33cd..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/input/plain.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 输入框(单行) 请求参数定义 - * @apiName ui.input.plain - */ -export interface IUiInputPlainParams { - [key: string]: any; -} -/** - * 输入框(单行) 返回结果定义 - * @apiName ui.input.plain - */ -export interface IUiInputPlainResult { - [key: string]: any; -} -/** - * 输入框(单行) - * @apiName ui.input.plain - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function plain$(params: IUiInputPlainParams): Promise; -export default plain$; diff --git a/node_modules/dingtalk-jsapi/api/ui/input/plain.js b/node_modules/dingtalk-jsapi/api/ui/input/plain.js deleted file mode 100644 index 8130896a..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/input/plain.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function plain$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.plain$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.input.plain";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.plain$=plain$,exports.default=plain$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/multitask/addToFloat.d.ts b/node_modules/dingtalk-jsapi/api/ui/multitask/addToFloat.d.ts deleted file mode 100644 index 8d4a9c24..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/multitask/addToFloat.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -/** - * 添加到浮窗 请求参数定义 - * @apiName ui.multitask.addToFloat - */ -export interface IUiMultitaskAddToFloatParams { - /** 默认值:小程序:默认icon H5:OGP image */ - icon?: string; - /** 默认值:小程序:defaultTitle H5:OGP title */ - title?: string; - /** 默认值:小程序:当前page H5:OGP description或当前url */ - content?: string; -} -/** - * 添加到浮窗 返回结果定义 - * @apiName ui.multitask.addToFloat - */ -export interface IUiMultitaskAddToFloatResult { - /** 浮窗ID,delete时需要使用 */ - id: string; -} -/** - * 添加到浮窗 - * @apiName ui.multitask.addToFloat - * @supportVersion ios: 6.5.0 android: 6.5.0 - * @author Android:零封 iOS:无最 - */ -export declare function addToFloat$(params: IUiMultitaskAddToFloatParams): Promise; -export default addToFloat$; diff --git a/node_modules/dingtalk-jsapi/api/ui/multitask/addToFloat.js b/node_modules/dingtalk-jsapi/api/ui/multitask/addToFloat.js deleted file mode 100644 index f8f8fe0a..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/multitask/addToFloat.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addToFloat$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.addToFloat$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.multitask.addToFloat";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.0"},_a)),exports.addToFloat$=addToFloat$,exports.default=addToFloat$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/multitask/removeFromFloat.d.ts b/node_modules/dingtalk-jsapi/api/ui/multitask/removeFromFloat.d.ts deleted file mode 100644 index f3846293..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/multitask/removeFromFloat.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 从浮窗移除 请求参数定义 - * @apiName ui.multitask.removeFromFloat - */ -export interface IUiMultitaskRemoveFromFloatParams { - /** 要删除的浮窗id */ - id: string; -} -/** - * 从浮窗移除 返回结果定义 - * @apiName ui.multitask.removeFromFloat - */ -export interface IUiMultitaskRemoveFromFloatResult { -} -/** - * 从浮窗移除 - * @apiName ui.multitask.removeFromFloat - * @supportVersion ios: 6.5.0 android: 6.5.0 - * @author Android:零封 iOS:无最 - */ -export declare function removeFromFloat$(params: IUiMultitaskRemoveFromFloatParams): Promise; -export default removeFromFloat$; diff --git a/node_modules/dingtalk-jsapi/api/ui/multitask/removeFromFloat.js b/node_modules/dingtalk-jsapi/api/ui/multitask/removeFromFloat.js deleted file mode 100644 index 56bbabf0..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/multitask/removeFromFloat.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeFromFloat$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeFromFloat$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.multitask.removeFromFloat";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.0"},_a)),exports.removeFromFloat$=removeFromFloat$,exports.default=removeFromFloat$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/close.d.ts b/node_modules/dingtalk-jsapi/api/ui/nav/close.d.ts deleted file mode 100644 index e3633195..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/close.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 请求参数定义 - * @apiName ui.nav.close - */ -export interface IUiNavCloseParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.close - */ -export interface IUiNavCloseResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.close - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function close$(params: IUiNavCloseParams): Promise; -export default close$; diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/close.js b/node_modules/dingtalk-jsapi/api/ui/nav/close.js deleted file mode 100644 index a0fcda50..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/close.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function close$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.close$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.nav.close";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.close$=close$,exports.default=close$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/getCurrentId.d.ts b/node_modules/dingtalk-jsapi/api/ui/nav/getCurrentId.d.ts deleted file mode 100644 index b0a0ea1e..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/getCurrentId.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 请求参数定义 - * @apiName ui.nav.getCurrentId - */ -export interface IUiNavGetCurrentIdParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.getCurrentId - */ -export interface IUiNavGetCurrentIdResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.getCurrentId - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function getCurrentId$(params: IUiNavGetCurrentIdParams): Promise; -export default getCurrentId$; diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/getCurrentId.js b/node_modules/dingtalk-jsapi/api/ui/nav/getCurrentId.js deleted file mode 100644 index baacaf8d..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/getCurrentId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentId$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentId$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.nav.getCurrentId";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.getCurrentId$=getCurrentId$,exports.default=getCurrentId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/go.d.ts b/node_modules/dingtalk-jsapi/api/ui/nav/go.d.ts deleted file mode 100644 index aa4861c9..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/go.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 请求参数定义 - * @apiName ui.nav.go - */ -export interface IUiNavGoParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.go - */ -export interface IUiNavGoResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.go - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function go$(params: IUiNavGoParams): Promise; -export default go$; diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/go.js b/node_modules/dingtalk-jsapi/api/ui/nav/go.js deleted file mode 100644 index 0bb24e1b..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/go.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function go$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.go$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.nav.go";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.go$=go$,exports.default=go$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/preload.d.ts b/node_modules/dingtalk-jsapi/api/ui/nav/preload.d.ts deleted file mode 100644 index fa62a765..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/preload.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 请求参数定义 - * @apiName ui.nav.preload - */ -export interface IUiNavPreloadParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.preload - */ -export interface IUiNavPreloadResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.preload - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function preload$(params: IUiNavPreloadParams): Promise; -export default preload$; diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/preload.js b/node_modules/dingtalk-jsapi/api/ui/nav/preload.js deleted file mode 100644 index 385b7acf..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/preload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function preload$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.preload$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.nav.preload";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.preload$=preload$,exports.default=preload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/recycle.d.ts b/node_modules/dingtalk-jsapi/api/ui/nav/recycle.d.ts deleted file mode 100644 index acdb1fe4..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/recycle.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 请求参数定义 - * @apiName ui.nav.recycle - */ -export interface IUiNavRecycleParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.recycle - */ -export interface IUiNavRecycleResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.recycle - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function recycle$(params: IUiNavRecycleParams): Promise; -export default recycle$; diff --git a/node_modules/dingtalk-jsapi/api/ui/nav/recycle.js b/node_modules/dingtalk-jsapi/api/ui/nav/recycle.js deleted file mode 100644 index d1154ea2..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/nav/recycle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function recycle$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.recycle$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.nav.recycle";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.6.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.6.0"},_a)),exports.recycle$=recycle$,exports.default=recycle$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/progressBar/setColors.d.ts b/node_modules/dingtalk-jsapi/api/ui/progressBar/setColors.d.ts deleted file mode 100644 index 206a1a5c..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/progressBar/setColors.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 设置顶部进度条颜色 请求参数定义 - * @apiName ui.progressBar.setColors - */ -export interface IUiProgressBarSetColorsParams { - [key: string]: any; -} -/** - * 设置顶部进度条颜色 返回结果定义 - * @apiName ui.progressBar.setColors - */ -export interface IUiProgressBarSetColorsResult { - [key: string]: any; -} -/** - * 设置顶部进度条颜色 - * @apiName ui.progressBar.setColors - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function setColors$(params: IUiProgressBarSetColorsParams): Promise; -export default setColors$; diff --git a/node_modules/dingtalk-jsapi/api/ui/progressBar/setColors.js b/node_modules/dingtalk-jsapi/api/ui/progressBar/setColors.js deleted file mode 100644 index e8049895..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/progressBar/setColors.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setColors$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setColors$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.progressBar.setColors";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.setColors$=setColors$,exports.default=setColors$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/disable.d.ts b/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/disable.d.ts deleted file mode 100644 index 33a77b69..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/disable.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 禁用下拉刷新功能 请求参数定义 - * @apiName ui.pullToRefresh.disable - */ -export interface IUiPullToRefreshDisableParams { - [key: string]: any; -} -/** - * 禁用下拉刷新功能 返回结果定义 - * @apiName ui.pullToRefresh.disable - */ -export interface IUiPullToRefreshDisableResult { - [key: string]: any; -} -/** - * 禁用下拉刷新功能 - * @apiName ui.pullToRefresh.disable - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function disable$(params: IUiPullToRefreshDisableParams): Promise; -export default disable$; diff --git a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/disable.js b/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/disable.js deleted file mode 100644 index 4fa691ea..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/disable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disable$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.disable$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.pullToRefresh.disable";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.disable$=disable$,exports.default=disable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/enable.d.ts b/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/enable.d.ts deleted file mode 100644 index c6b8e82c..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/enable.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * 启用下拉刷新功能 请求参数定义 - * @apiName ui.pullToRefresh.enable - */ -export interface IUiPullToRefreshEnableParams { - /** onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 启用下拉刷新功能 返回结果定义 - * @apiName ui.pullToRefresh.enable - */ -export interface IUiPullToRefreshEnableResult { - [key: string]: any; -} -/** - * 启用下拉刷新功能 - * @apiName ui.pullToRefresh.enable - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function enable$(params: IUiPullToRefreshEnableParams): Promise; -export default enable$; diff --git a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/enable.js b/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/enable.js deleted file mode 100644 index 73741979..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/enable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enable$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.enable$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiHelper_1=require("../../../lib/apiHelper"),apiName="ui.pullToRefresh.enable";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0",paramsDeal:apiHelper_1.addWatchParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0",paramsDeal:apiHelper_1.addWatchParamsDeal},_a)),exports.enable$=enable$,exports.default=enable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/stop.d.ts b/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/stop.d.ts deleted file mode 100644 index c1797cee..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/stop.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 收起下拉刷新控件 请求参数定义 - * @apiName ui.pullToRefresh.stop - */ -export interface IUiPullToRefreshStopParams { - [key: string]: any; -} -/** - * 收起下拉刷新控件 返回结果定义 - * @apiName ui.pullToRefresh.stop - */ -export interface IUiPullToRefreshStopResult { - [key: string]: any; -} -/** - * 收起下拉刷新控件 - * @apiName ui.pullToRefresh.stop - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function stop$(params: IUiPullToRefreshStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/stop.js b/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/stop.js deleted file mode 100644 index 8491da0f..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/pullToRefresh/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.pullToRefresh.stop";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/webViewBounce/disable.d.ts b/node_modules/dingtalk-jsapi/api/ui/webViewBounce/disable.d.ts deleted file mode 100644 index be786a37..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/webViewBounce/disable.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 禁用webview下拉弹性效果 请求参数定义 - * @apiName ui.webViewBounce.disable - */ -export interface IUiWebViewBounceDisableParams { - [key: string]: any; -} -/** - * 禁用webview下拉弹性效果 返回结果定义 - * @apiName ui.webViewBounce.disable - */ -export interface IUiWebViewBounceDisableResult { - [key: string]: any; -} -/** - * 禁用webview下拉弹性效果 - * @apiName ui.webViewBounce.disable - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function disable$(params: IUiWebViewBounceDisableParams): Promise; -export default disable$; diff --git a/node_modules/dingtalk-jsapi/api/ui/webViewBounce/disable.js b/node_modules/dingtalk-jsapi/api/ui/webViewBounce/disable.js deleted file mode 100644 index 79344cd8..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/webViewBounce/disable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disable$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.disable$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.webViewBounce.disable";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.disable$=disable$,exports.default=disable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/ui/webViewBounce/enable.d.ts b/node_modules/dingtalk-jsapi/api/ui/webViewBounce/enable.d.ts deleted file mode 100644 index b27fe6c1..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/webViewBounce/enable.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 启用webview下拉弹性效果 请求参数定义 - * @apiName ui.webViewBounce.enable - */ -export interface IUiWebViewBounceEnableParams { - [key: string]: any; -} -/** - * 启用webview下拉弹性效果 返回结果定义 - * @apiName ui.webViewBounce.enable - */ -export interface IUiWebViewBounceEnableResult { - [key: string]: any; -} -/** - * 启用webview下拉弹性效果 - * @apiName ui.webViewBounce.enable - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function enable$(params: IUiWebViewBounceEnableParams): Promise; -export default enable$; diff --git a/node_modules/dingtalk-jsapi/api/ui/webViewBounce/enable.js b/node_modules/dingtalk-jsapi/api/ui/webViewBounce/enable.js deleted file mode 100644 index 95297421..00000000 --- a/node_modules/dingtalk-jsapi/api/ui/webViewBounce/enable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enable$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.enable$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="ui.webViewBounce.enable";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.4.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.4.0"},_a)),exports.enable$=enable$,exports.default=enable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/ExternalChannelPublish.d.ts b/node_modules/dingtalk-jsapi/api/union/ExternalChannelPublish.d.ts deleted file mode 100644 index 81b474bd..00000000 --- a/node_modules/dingtalk-jsapi/api/union/ExternalChannelPublish.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 三方写入智能助手通道 请求参数定义 - * @apiName ExternalChannelPublish - */ -export interface IUnionExternalChannelPublishParams extends ICommonAPIParams { - data: string; - eventName: string; - namespace: string; -} -/** - * 三方写入智能助手通道 返回结果定义 - * @apiName ExternalChannelPublish - */ -export interface IUnionExternalChannelPublishResult { -} -/** - * 三方写入智能助手通道 - * @apiName ExternalChannelPublish - */ -export declare function ExternalChannelPublish$(params: IUnionExternalChannelPublishParams): Promise; -export default ExternalChannelPublish$; diff --git a/node_modules/dingtalk-jsapi/api/union/ExternalChannelPublish.js b/node_modules/dingtalk-jsapi/api/union/ExternalChannelPublish.js deleted file mode 100644 index eb60cf66..00000000 --- a/node_modules/dingtalk-jsapi/api/union/ExternalChannelPublish.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function ExternalChannelPublish$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.ExternalChannelPublish$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="ExternalChannelPublish",actualCallApiName="biz.channel.externalChannelPublish";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.50"},_a)),exports.ExternalChannelPublish$=ExternalChannelPublish$,exports.default=ExternalChannelPublish$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/addPhoneContact.d.ts b/node_modules/dingtalk-jsapi/api/union/addPhoneContact.d.ts deleted file mode 100644 index 9bb40763..00000000 --- a/node_modules/dingtalk-jsapi/api/union/addPhoneContact.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 添加手机联系人 请求参数定义 - * @apiName addPhoneContact - */ -export interface IUnionAddPhoneContactParams extends ICommonAPIParams { - name: string; - email?: string; - remark?: string; - address?: string; - phoneNumber: string; - photoFilePath?: string; -} -/** - * 添加手机联系人 返回结果定义 - * @apiName addPhoneContact - */ -export interface IUnionAddPhoneContactResult { - success: boolean; -} -/** - * 添加手机联系人 - * @apiName addPhoneContact - */ -export declare function addPhoneContact$(params: IUnionAddPhoneContactParams): Promise; -export default addPhoneContact$; diff --git a/node_modules/dingtalk-jsapi/api/union/addPhoneContact.js b/node_modules/dingtalk-jsapi/api/union/addPhoneContact.js deleted file mode 100644 index b5992071..00000000 --- a/node_modules/dingtalk-jsapi/api/union/addPhoneContact.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addPhoneContact$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.addPhoneContact$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="addPhoneContact",actualCallApiName="biz.phoneContact.add";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.addPhoneContact$=addPhoneContact$,exports.default=addPhoneContact$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/alert.d.ts b/node_modules/dingtalk-jsapi/api/union/alert.d.ts deleted file mode 100644 index 604bd049..00000000 --- a/node_modules/dingtalk-jsapi/api/union/alert.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 显示警告框 请求参数定义 - * @apiName alert - */ -export interface IUnionAlertParams extends ICommonAPIParams { - title?: string; - content: string; - buttonText?: string; -} -/** - * 显示警告框 返回结果定义 - * @apiName alert - */ -export interface IUnionAlertResult { -} -/** - * 显示警告框 - * @apiName alert - */ -export declare function alert$(params: IUnionAlertParams): Promise; -export default alert$; diff --git a/node_modules/dingtalk-jsapi/api/union/alert.js b/node_modules/dingtalk-jsapi/api/union/alert.js deleted file mode 100644 index 5f3983db..00000000 --- a/node_modules/dingtalk-jsapi/api/union/alert.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function alert$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,{message:a.content,title:null===a||void 0===a?void 0:a.title,buttonName:a.buttonText,success:a.success,fail:a.fail,complete:a.complete})}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,t=1,s=arguments.length;t; -export default callUsers$; diff --git a/node_modules/dingtalk-jsapi/api/union/callUsers.js b/node_modules/dingtalk-jsapi/api/union/callUsers.js deleted file mode 100644 index f98cc4cb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/callUsers.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function callUsers$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.callUsers$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="callUsers",actualCallApiName="biz.telephone.call";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.callUsers$=callUsers$,exports.default=callUsers$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/checkAuth.d.ts b/node_modules/dingtalk-jsapi/api/union/checkAuth.d.ts deleted file mode 100644 index 53fc2ef9..00000000 --- a/node_modules/dingtalk-jsapi/api/union/checkAuth.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 检查手机权限授权状态 请求参数定义 - * @apiName checkAuth - */ -export interface IUnionCheckAuthParams extends ICommonAPIParams { - authType: string; -} -/** - * 检查手机权限授权状态 返回结果定义 - * @apiName checkAuth - */ -export interface IUnionCheckAuthResult { - granted: boolean; -} -/** - * 检查手机权限授权状态 - * @apiName checkAuth - */ -export declare function checkAuth$(params: IUnionCheckAuthParams): Promise; -export default checkAuth$; diff --git a/node_modules/dingtalk-jsapi/api/union/checkAuth.js b/node_modules/dingtalk-jsapi/api/union/checkAuth.js deleted file mode 100644 index 5e4dd691..00000000 --- a/node_modules/dingtalk-jsapi/api/union/checkAuth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkAuth$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkAuth$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="checkAuth",actualCallApiName="biz.util.checkAuth";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.checkAuth$=checkAuth$,exports.default=checkAuth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/checkBizCall.d.ts b/node_modules/dingtalk-jsapi/api/union/checkBizCall.d.ts deleted file mode 100644 index 78f7f80d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/checkBizCall.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 检查某企业办公电话开通状态 请求参数定义 - * @apiName checkBizCall - */ -export interface IUnionCheckBizCallParams extends ICommonAPIParams { - corpId: string; -} -/** - * 检查某企业办公电话开通状态 返回结果定义 - * @apiName checkBizCall - */ -export interface IUnionCheckBizCallResult { - isSupport: boolean; -} -/** - * 检查某企业办公电话开通状态 - * @apiName checkBizCall - */ -export declare function checkBizCall$(params: IUnionCheckBizCallParams): Promise; -export default checkBizCall$; diff --git a/node_modules/dingtalk-jsapi/api/union/checkBizCall.js b/node_modules/dingtalk-jsapi/api/union/checkBizCall.js deleted file mode 100644 index 1ce0a3ab..00000000 --- a/node_modules/dingtalk-jsapi/api/union/checkBizCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkBizCall$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkBizCall$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="checkBizCall",actualCallApiName="biz.telephone.checkBizCall";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",resultDeal:function(d){return d?{isSupport:!0}:{isSupport:!1}}},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.checkBizCall$=checkBizCall$,exports.default=checkBizCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseChat.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseChat.d.ts deleted file mode 100644 index 388c2298..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseChat.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选择会话 请求参数定义 - * @apiName chooseChat - */ -export interface IUnionChooseChatParams extends ICommonAPIParams { - corpId: string; - isAllowCreateGroup: boolean; - filterNotOwnerGroup: boolean; -} -/** - * 选择会话 返回结果定义 - * @apiName chooseChat - */ -export interface IUnionChooseChatResult { - title: string; - chatId: string; -} -/** - * 选择会话 - * @apiName chooseChat - */ -export declare function chooseChat$(params: IUnionChooseChatParams): Promise; -export default chooseChat$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseChat.js b/node_modules/dingtalk-jsapi/api/union/chooseChat.js deleted file mode 100644 index 1123f940..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseChat.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseChat$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseChat$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseChat",actualCallApiName="biz.chat.chooseConversationByCorpId";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.chooseChat$=chooseChat$,exports.default=chooseChat$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseConversation.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseConversation.d.ts deleted file mode 100644 index 4329ddce..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseConversation.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选择会话 请求参数定义 - * @apiName chooseConversation - */ -export interface IUnionChooseConversationParams extends ICommonAPIParams { - max: number; - multiple?: boolean; - isConfirm?: boolean; - newPickMode?: boolean; - pickedConvList?: string[]; -} -/** - * 选择会话 返回结果定义 - * @apiName chooseConversation - */ -export interface IUnionChooseConversationResult { - id: string; - title: string; - isEnterpriseGroup: boolean; -} -/** - * 选择会话 - * @apiName chooseConversation - */ -export declare function chooseConversation$(params: IUnionChooseConversationParams): Promise; -export default chooseConversation$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseConversation.js b/node_modules/dingtalk-jsapi/api/union/chooseConversation.js deleted file mode 100644 index cbd2e610..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseConversation$(o){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,o)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseConversation$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseConversation",actualCallApiName="biz.chat.chooseConversation";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.chooseConversation$=chooseConversation$,exports.default=chooseConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDateRangeInCalendar.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseDateRangeInCalendar.d.ts deleted file mode 100644 index d34d6354..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDateRangeInCalendar.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 月历组件:选择日期区间 请求参数定义 - * @apiName chooseDateRangeInCalendar - */ -export interface IUnionChooseDateRangeInCalendarParams extends ICommonAPIParams { - defaultEnd: number; - defaultStart?: number; -} -/** - * 月历组件:选择日期区间 返回结果定义 - * @apiName chooseDateRangeInCalendar - */ -export interface IUnionChooseDateRangeInCalendarResult { - end: number; - start: number; - timezone: number; -} -/** - * 月历组件:选择日期区间 - * @apiName chooseDateRangeInCalendar - */ -export declare function chooseDateRangeInCalendar$(params: IUnionChooseDateRangeInCalendarParams): Promise; -export default chooseDateRangeInCalendar$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDateRangeInCalendar.js b/node_modules/dingtalk-jsapi/api/union/chooseDateRangeInCalendar.js deleted file mode 100644 index 0af28127..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDateRangeInCalendar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDateRangeInCalendar$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDateRangeInCalendar$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="chooseDateRangeInCalendar",actualCallApiName="biz.calendar.chooseInterval";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.chooseDateRangeInCalendar$=chooseDateRangeInCalendar$,exports.default=chooseDateRangeInCalendar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDateTime.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseDateTime.d.ts deleted file mode 100644 index 63d2b114..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDateTime.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 月历组件:选择日期和时间 请求参数定义 - * @apiName chooseDateTime - */ -export interface IUnionChooseDateTimeParams extends ICommonAPIParams { - default: number; -} -/** - * 月历组件:选择日期和时间 返回结果定义 - * @apiName chooseDateTime - */ -export interface IUnionChooseDateTimeResult { - chosen: number; - timezone: number; -} -/** - * 月历组件:选择日期和时间 - * @apiName chooseDateTime - */ -export declare function chooseDateTime$(params: IUnionChooseDateTimeParams): Promise; -export default chooseDateTime$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDateTime.js b/node_modules/dingtalk-jsapi/api/union/chooseDateTime.js deleted file mode 100644 index 25200966..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDateTime.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDateTime$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDateTime$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="chooseDateTime",actualCallApiName="biz.calendar.chooseDateTime";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.chooseDateTime$=chooseDateTime$,exports.default=chooseDateTime$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDepartments.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseDepartments.d.ts deleted file mode 100644 index 10d7760c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDepartments.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选择部门信息 请求参数定义 - * @apiName chooseDepartments - */ -export interface IUnionChooseDepartmentsParams extends ICommonAPIParams { - appId: string; - title: string; - corpId: string; - multiple: boolean; - limitTips: string; - maxDepartments: number; - pickedDepartments: string[]; - disabledDepartments: string[]; - requiredDepartments: string[]; -} -/** - * 选择部门信息 返回结果定义 - * @apiName chooseDepartments - */ -export interface IUnionChooseDepartmentsResult { - userCount: number; - departments: { - id: string; - name: string; - number: number; - }[]; - departmentsCount: number; -} -/** - * 选择部门信息 - * @apiName chooseDepartments - */ -export declare function chooseDepartments$(params: IUnionChooseDepartmentsParams): Promise; -export default chooseDepartments$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDepartments.js b/node_modules/dingtalk-jsapi/api/union/chooseDepartments.js deleted file mode 100644 index 1545fc65..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDepartments.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDepartments$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDepartments$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseDepartments",actualCallApiName="biz.contact.departmentsPicker";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.chooseDepartments$=chooseDepartments$,exports.default=chooseDepartments$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDingTalkDir.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseDingTalkDir.d.ts deleted file mode 100644 index b285ee8f..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDingTalkDir.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选取钉盘目录 请求参数定义 - * @apiName chooseDingTalkDir - */ -export interface IUnionChooseDingTalkDirParams extends ICommonAPIParams { - corpId: string; -} -/** - * 选取钉盘目录 返回结果定义 - * @apiName chooseDingTalkDir - */ -export interface IUnionChooseDingTalkDirResult { - data: { - path: string; - dirId: string; - spaceId: string; - }[]; -} -/** - * 选取钉盘目录 - * @apiName chooseDingTalkDir - */ -export declare function chooseDingTalkDir$(params: IUnionChooseDingTalkDirParams): Promise; -export default chooseDingTalkDir$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDingTalkDir.js b/node_modules/dingtalk-jsapi/api/union/chooseDingTalkDir.js deleted file mode 100644 index d54c2dc6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDingTalkDir.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDingTalkDir$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDingTalkDir$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseDingTalkDir",actualCallApiName="biz.cspace.chooseSpaceDir";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.chooseDingTalkDir$=chooseDingTalkDir$,exports.default=chooseDingTalkDir$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDistrict.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseDistrict.d.ts deleted file mode 100644 index 28c8db9d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDistrict.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选择地区 请求参数定义 - * @apiName chooseDistrict - */ -export interface IUnionChooseDistrictParams extends ICommonAPIParams { - selectedCode?: string; -} -/** - * 选择地区 返回结果定义 - * @apiName chooseDistrict - */ -export interface IUnionChooseDistrictResult { - region?: string; - regionCode: string; - regionName: string; - regionFullName: string; -} -/** - * 选择地区 - * @apiName chooseDistrict - */ -export declare function chooseDistrict$(params: IUnionChooseDistrictParams): Promise; -export default chooseDistrict$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseDistrict.js b/node_modules/dingtalk-jsapi/api/union/chooseDistrict.js deleted file mode 100644 index ec4162ef..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseDistrict.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDistrict$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDistrict$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseDistrict",actualCallApiName="biz.util.chooseRegion";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a)),exports.chooseDistrict$=chooseDistrict$,exports.default=chooseDistrict$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseExternalUsers.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseExternalUsers.d.ts deleted file mode 100644 index 573ab92f..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseExternalUsers.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选择外部联系人 请求参数定义 - * @apiName chooseExternalUsers - */ -export interface IUnionChooseExternalUsersParams extends ICommonAPIParams { - title: string; - corpId: string; - maxUsers: number; - multiple: boolean; - limitTips: string; - pickedUsers: string[]; - disabledUsers: string[]; - requiredUsers: string[]; -} -/** - * 选择外部联系人 返回结果定义 - * @apiName chooseExternalUsers - */ -export interface IUnionChooseExternalUsersResult { - name: string; - avatar: string; - userId: string; - orgName: string; -} -/** - * 选择外部联系人 - * @apiName chooseExternalUsers - */ -export declare function chooseExternalUsers$(params: IUnionChooseExternalUsersParams): Promise; -export default chooseExternalUsers$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseExternalUsers.js b/node_modules/dingtalk-jsapi/api/union/chooseExternalUsers.js deleted file mode 100644 index 59c15663..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseExternalUsers.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseExternalUsers$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseExternalUsers$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseExternalUsers",actualCallApiName="biz.contact.externalComplexPicker";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.chooseExternalUsers$=chooseExternalUsers$,exports.default=chooseExternalUsers$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseFile.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseFile.d.ts deleted file mode 100644 index 53a2d253..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseFile.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 文件选择 请求参数定义 - * @apiName chooseFile - */ -export interface IUnionChooseFileParams extends ICommonAPIParams { - count: number; - multiSelection: boolean; -} -/** - * 文件选择 返回结果定义 - * @apiName chooseFile - */ -export interface IUnionChooseFileResult { - files: { - name: string; - path: string; - size: number; - }; -} -/** - * 文件选择 - * @apiName chooseFile - */ -export declare function chooseFile$(params: IUnionChooseFileParams): Promise; -export default chooseFile$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseFile.js b/node_modules/dingtalk-jsapi/api/union/chooseFile.js deleted file mode 100644 index 2bffa804..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseFile$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseFile$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseFile",actualCallApiName="biz.file.chooseFile";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.1.5"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.1.5"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.1.10"},_a)),exports.chooseFile$=chooseFile$,exports.default=chooseFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseHalfDayInCalendar.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseHalfDayInCalendar.d.ts deleted file mode 100644 index 600ad9af..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseHalfDayInCalendar.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 月历组件:选择半天 请求参数定义 - * @apiName chooseHalfDayInCalendar - */ -export interface IUnionChooseHalfDayInCalendarParams extends ICommonAPIParams { - default: number; -} -/** - * 月历组件:选择半天 返回结果定义 - * @apiName chooseHalfDayInCalendar - */ -export interface IUnionChooseHalfDayInCalendarResult { - chosen: number; - timezone: number; -} -/** - * 月历组件:选择半天 - * @apiName chooseHalfDayInCalendar - */ -export declare function chooseHalfDayInCalendar$(params: IUnionChooseHalfDayInCalendarParams): Promise; -export default chooseHalfDayInCalendar$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseHalfDayInCalendar.js b/node_modules/dingtalk-jsapi/api/union/chooseHalfDayInCalendar.js deleted file mode 100644 index 8e08500a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseHalfDayInCalendar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseHalfDayInCalendar$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseHalfDayInCalendar$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="chooseHalfDayInCalendar",actualCallApiName="biz.calendar.chooseHalfDay";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.chooseHalfDayInCalendar$=chooseHalfDayInCalendar$,exports.default=chooseHalfDayInCalendar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseImage.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseImage.d.ts deleted file mode 100644 index ee628255..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseImage.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选择图片 请求参数定义 - * @apiName chooseImage - */ -export interface IUnionChooseImageParams extends ICommonAPIParams { - count?: number; - secret?: boolean; - position?: string[]; - sourceType?: string[]; -} -/** - * 选择图片 返回结果定义 - * @apiName chooseImage - */ -export interface IUnionChooseImageResult { - files: { - path: string; - size: number; - fileType: string; - }[]; - filePaths?: string[]; -} -/** - * 选择图片 - * @apiName chooseImage - */ -export declare function chooseImage$(params: IUnionChooseImageParams): Promise; -export default chooseImage$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseImage.js b/node_modules/dingtalk-jsapi/api/union/chooseImage.js deleted file mode 100644 index 1c7d5abb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseImage$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseImage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseImage",actualCallApiName="biz.util.chooseImage";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.chooseImage$=chooseImage$,exports.default=chooseImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseMedia.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseMedia.d.ts deleted file mode 100644 index 1848d8da..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseMedia.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 媒体选择 请求参数定义 - * @apiName chooseMedia - */ -export interface IUnionChooseMediaParams extends ICommonAPIParams { - count: number; - camera: string; - sizeType: string; - mediaType: string; - sourceType: string[]; - maxDuration: number; -} -/** - * 媒体选择 返回结果定义 - * @apiName chooseMedia - */ -export interface IUnionChooseMediaResult { - tempFiles: { - size: number; - width: number; - height: number; - duration: number; - fileType: string; - tempFilePath: string; - }[]; -} -/** - * 媒体选择 - * @apiName chooseMedia - */ -export declare function chooseMedia$(params: IUnionChooseMediaParams): Promise; -export default chooseMedia$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseMedia.js b/node_modules/dingtalk-jsapi/api/union/chooseMedia.js deleted file mode 100644 index 9d9fd521..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseMedia.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseMedia$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseMedia$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseMedia",actualCallApiName="biz.util.chooseMedia";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.2"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.2"},_a)),exports.chooseMedia$=chooseMedia$,exports.default=chooseMedia$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseOneDayInCalendar.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseOneDayInCalendar.d.ts deleted file mode 100644 index c4a4c427..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseOneDayInCalendar.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 月历组件:选择某天 请求参数定义 - * @apiName chooseOneDayInCalendar - */ -export interface IUnionChooseOneDayInCalendarParams extends ICommonAPIParams { - default: number; -} -/** - * 月历组件:选择某天 返回结果定义 - * @apiName chooseOneDayInCalendar - */ -export interface IUnionChooseOneDayInCalendarResult { - chosen: number; - timezone: number; -} -/** - * 月历组件:选择某天 - * @apiName chooseOneDayInCalendar - */ -export declare function chooseOneDayInCalendar$(params: IUnionChooseOneDayInCalendarParams): Promise; -export default chooseOneDayInCalendar$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseOneDayInCalendar.js b/node_modules/dingtalk-jsapi/api/union/chooseOneDayInCalendar.js deleted file mode 100644 index fb52ba23..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseOneDayInCalendar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseOneDayInCalendar$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseOneDayInCalendar$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="chooseOneDayInCalendar",actualCallApiName="biz.calendar.chooseOneDay";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.chooseOneDayInCalendar$=chooseOneDayInCalendar$,exports.default=chooseOneDayInCalendar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseOrg.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseOrg.d.ts deleted file mode 100644 index b6484709..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseOrg.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选择组织 请求参数定义 - * @apiName chooseOrg - */ -export interface IUnionChooseOrgParams extends ICommonAPIParams { - title: string; - corpIds: string[]; - emptyTips: string; - useDefault: boolean; - selectCorpId: string; -} -/** - * 选择组织 返回结果定义 - * @apiName chooseOrg - */ -export interface IUnionChooseOrgResult { - selectCorpId: string; -} -/** - * 选择组织 - * @apiName chooseOrg - */ -export declare function chooseOrg$(params: IUnionChooseOrgParams): Promise; -export default chooseOrg$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseOrg.js b/node_modules/dingtalk-jsapi/api/union/chooseOrg.js deleted file mode 100644 index 3aa768ff..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseOrg.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseOrg$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseOrg$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseOrg",actualCallApiName="biz.contact.chooseOrg";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.45"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.45"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.chooseOrg$=chooseOrg$,exports.default=chooseOrg$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/choosePhonebook.d.ts b/node_modules/dingtalk-jsapi/api/union/choosePhonebook.d.ts deleted file mode 100644 index ceea852a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/choosePhonebook.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选取手机通讯录 请求参数定义 - * @apiName choosePhonebook - */ -export interface IUnionChoosePhonebookParams extends ICommonAPIParams { - title: string; - maxUsers: number; - multiple: boolean; - limitTips: string; -} -/** - * 选取手机通讯录 返回结果定义 - * @apiName choosePhonebook - */ -export interface IUnionChoosePhonebookResult { - name: string; - mobile: string; - mediaId: string; -} -/** - * 选取手机通讯录 - * @apiName choosePhonebook - */ -export declare function choosePhonebook$(params: IUnionChoosePhonebookParams): Promise; -export default choosePhonebook$; diff --git a/node_modules/dingtalk-jsapi/api/union/choosePhonebook.js b/node_modules/dingtalk-jsapi/api/union/choosePhonebook.js deleted file mode 100644 index ded2e3ce..00000000 --- a/node_modules/dingtalk-jsapi/api/union/choosePhonebook.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function choosePhonebook$(o){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,o)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.choosePhonebook$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="choosePhonebook",actualCallApiName="biz.contact.chooseMobileContacts";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.choosePhonebook$=choosePhonebook$,exports.default=choosePhonebook$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseStaffForPC.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseStaffForPC.d.ts deleted file mode 100644 index ccc5aad2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseStaffForPC.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * PC端选择企业内部的人 请求参数定义 - * @apiName chooseStaffForPC - */ -export interface IUnionChooseStaffForPCParams extends ICommonAPIParams { - max?: number; - users?: string[]; - corpId: string; - multiple?: boolean; -} -/** - * PC端选择企业内部的人 返回结果定义 - * @apiName chooseStaffForPC - */ -export interface IUnionChooseStaffForPCResult { - name: string; - avatar: string; - emplId: string; -} -/** - * PC端选择企业内部的人 - * @apiName chooseStaffForPC - */ -export declare function chooseStaffForPC$(params: IUnionChooseStaffForPCParams): Promise; -export default chooseStaffForPC$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseStaffForPC.js b/node_modules/dingtalk-jsapi/api/union/chooseStaffForPC.js deleted file mode 100644 index 5dd1269a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseStaffForPC.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseStaffForPC$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseStaffForPC$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseStaffForPC",actualCallApiName="biz.contact.choose";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.chooseStaffForPC$=chooseStaffForPC$,exports.default=chooseStaffForPC$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/chooseUserFromList.d.ts b/node_modules/dingtalk-jsapi/api/union/chooseUserFromList.d.ts deleted file mode 100644 index 7ad73cf4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseUserFromList.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 单选自定义联系人 请求参数定义 - * @apiName chooseUserFromList - */ -export interface IUnionChooseUserFromListParams extends ICommonAPIParams { - title?: string; - users: string[]; - corpId?: string; - disabledUsers?: string[]; - isShowCompanyName?: boolean; -} -/** - * 单选自定义联系人 返回结果定义 - * @apiName chooseUserFromList - */ -export interface IUnionChooseUserFromListResult { - name: string; - avatar: string; - userId: string; -} -/** - * 单选自定义联系人 - * @apiName chooseUserFromList - */ -export declare function chooseUserFromList$(params: IUnionChooseUserFromListParams): Promise; -export default chooseUserFromList$; diff --git a/node_modules/dingtalk-jsapi/api/union/chooseUserFromList.js b/node_modules/dingtalk-jsapi/api/union/chooseUserFromList.js deleted file mode 100644 index 6803d9f8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/chooseUserFromList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseUserFromList$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseUserFromList$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="chooseUserFromList",actualCallApiName="biz.customContact.choose";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.chooseUserFromList$=chooseUserFromList$,exports.default=chooseUserFromList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/clearShake.d.ts b/node_modules/dingtalk-jsapi/api/union/clearShake.d.ts deleted file mode 100644 index 5cf7c540..00000000 --- a/node_modules/dingtalk-jsapi/api/union/clearShake.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 停止摇一摇 请求参数定义 - * @apiName clearShake - */ -export interface IUnionClearShakeParams extends ICommonAPIParams { -} -/** - * 停止摇一摇 返回结果定义 - * @apiName clearShake - */ -export interface IUnionClearShakeResult { -} -/** - * 停止摇一摇 - * @apiName clearShake - */ -export declare function clearShake$(params: IUnionClearShakeParams): Promise; -export default clearShake$; diff --git a/node_modules/dingtalk-jsapi/api/union/clearShake.js b/node_modules/dingtalk-jsapi/api/union/clearShake.js deleted file mode 100644 index 35b196df..00000000 --- a/node_modules/dingtalk-jsapi/api/union/clearShake.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function clearShake$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.clearShake$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="clearShake",actualCallApiName="device.accelerometer.clearShake";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.clearShake$=clearShake$,exports.default=clearShake$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/closeBluetoothAdapter.d.ts b/node_modules/dingtalk-jsapi/api/union/closeBluetoothAdapter.d.ts deleted file mode 100644 index 107dbdcc..00000000 --- a/node_modules/dingtalk-jsapi/api/union/closeBluetoothAdapter.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 关闭蓝牙适配器 请求参数定义 - * @apiName closeBluetoothAdapter - */ -export interface IUnionCloseBluetoothAdapterParams extends ICommonAPIParams { -} -/** - * 关闭蓝牙适配器 返回结果定义 - * @apiName closeBluetoothAdapter - */ -export interface IUnionCloseBluetoothAdapterResult { -} -/** - * 关闭蓝牙适配器 - * @apiName closeBluetoothAdapter - */ -export declare function closeBluetoothAdapter$(params: IUnionCloseBluetoothAdapterParams): Promise; -export default closeBluetoothAdapter$; diff --git a/node_modules/dingtalk-jsapi/api/union/closeBluetoothAdapter.js b/node_modules/dingtalk-jsapi/api/union/closeBluetoothAdapter.js deleted file mode 100644 index 495f407c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/closeBluetoothAdapter.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closeBluetoothAdapter$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var t,d=1,o=arguments.length;d; -export default closePage$; diff --git a/node_modules/dingtalk-jsapi/api/union/closePage.js b/node_modules/dingtalk-jsapi/api/union/closePage.js deleted file mode 100644 index 5f2b76eb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/closePage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closePage$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.closePage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="closePage",actualCallApiName="biz.navigation.close";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.closePage$=closePage$,exports.default=closePage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/complexChoose.d.ts b/node_modules/dingtalk-jsapi/api/union/complexChoose.d.ts deleted file mode 100644 index b290911a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/complexChoose.d.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选人与部门 请求参数定义 - * @apiName complexChoose - */ -export interface IUnionComplexChooseParams extends ICommonAPIParams { - appId: string; - title: string; - corpId: string; - deptId: string; - maxUsers: number; - multiple: boolean; - rootPage: string; - limitTips: string; - pickedUsers: string[]; - disabledUsers: string[]; - requiredUsers: string[]; - showLabelPick: boolean; - responseUserOnly: boolean; - pickedDepartments: string[]; - showOrgEcological: boolean; - disabledDepartments: string[]; - filterOrgEcological: boolean; - requiredDepartments: string[]; - startWithDepartmentId: string; -} -/** - * 选人与部门 返回结果定义 - * @apiName complexChoose - */ -export interface IUnionComplexChooseResult { - users: { - name: string; - avatar: string; - emplId: string; - }[]; - departments: { - id: string; - name: string; - number: number; - }[]; - selectedCount: number; -} -/** - * 选人与部门 - * @apiName complexChoose - */ -export declare function complexChoose$(params: IUnionComplexChooseParams): Promise; -export default complexChoose$; diff --git a/node_modules/dingtalk-jsapi/api/union/complexChoose.js b/node_modules/dingtalk-jsapi/api/union/complexChoose.js deleted file mode 100644 index 9cf5a637..00000000 --- a/node_modules/dingtalk-jsapi/api/union/complexChoose.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function complexChoose$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.complexChoose$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="complexChoose",actualCallApiName="biz.contact.complexPicker";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.complexChoose$=complexChoose$,exports.default=complexChoose$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/compressImage.d.ts b/node_modules/dingtalk-jsapi/api/union/compressImage.d.ts deleted file mode 100644 index 68a2544d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/compressImage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 压缩图片 请求参数定义 - * @apiName compressImage - */ -export interface IUnionCompressImageParams extends ICommonAPIParams { - filePaths: string[]; - compressLevel: number; -} -/** - * 压缩图片 返回结果定义 - * @apiName compressImage - */ -export interface IUnionCompressImageResult { - filePaths: string[]; -} -/** - * 压缩图片 - * @apiName compressImage - */ -export declare function compressImage$(params: IUnionCompressImageParams): Promise; -export default compressImage$; diff --git a/node_modules/dingtalk-jsapi/api/union/compressImage.js b/node_modules/dingtalk-jsapi/api/union/compressImage.js deleted file mode 100644 index edcf878c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/compressImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function compressImage$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.compressImage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="compressImage",actualCallApiName="biz.util.compressImage";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.compressImage$=compressImage$,exports.default=compressImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/confirm.d.ts b/node_modules/dingtalk-jsapi/api/union/confirm.d.ts deleted file mode 100644 index 5ca6aece..00000000 --- a/node_modules/dingtalk-jsapi/api/union/confirm.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 显示确认框 请求参数定义 - * @apiName confirm - */ -export interface IUnionConfirmParams extends ICommonAPIParams { - title: string; - content: string; - cancelButtonText?: string; - confirmButtonText?: string; -} -/** - * 显示确认框 返回结果定义 - * @apiName confirm - */ -export interface IUnionConfirmResult { - confirm?: boolean; -} -/** - * 显示确认框 - * @apiName confirm - */ -export declare function confirm$(params: IUnionConfirmParams): Promise; -export default confirm$; diff --git a/node_modules/dingtalk-jsapi/api/union/confirm.js b/node_modules/dingtalk-jsapi/api/union/confirm.js deleted file mode 100644 index 623228a5..00000000 --- a/node_modules/dingtalk-jsapi/api/union/confirm.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function confirm$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,t=1,r=arguments.length;t; -export default connectBLEDevice$; diff --git a/node_modules/dingtalk-jsapi/api/union/connectBLEDevice.js b/node_modules/dingtalk-jsapi/api/union/connectBLEDevice.js deleted file mode 100644 index 6e5852c4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/connectBLEDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function connectBLEDevice$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var n,d=1,i=arguments.length;d; -export default createBLEPeripheralServer$; diff --git a/node_modules/dingtalk-jsapi/api/union/createBLEPeripheralServer.js b/node_modules/dingtalk-jsapi/api/union/createBLEPeripheralServer.js deleted file mode 100644 index a304631e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createBLEPeripheralServer.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createBLEPeripheralServer$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createBLEPeripheralServer$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="createBLEPeripheralServer",actualCallApiName="biz.realm.createBLEPeripheralServer";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.6.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.10"},_a)),exports.createBLEPeripheralServer$=createBLEPeripheralServer$,exports.default=createBLEPeripheralServer$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/createDing.d.ts b/node_modules/dingtalk-jsapi/api/union/createDing.d.ts deleted file mode 100644 index 4b2fe45f..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createDing.d.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * DING 2.0 发钉 请求参数定义 - * @apiName createDing - */ -export interface IUnionCreateDingParams extends ICommonAPIParams { - text?: string; - type?: number; - users: string[]; - corpId?: string; - confInfo?: { - endTime: { - value: string; - format: string; - }; - location: string; - startTime: { - value: string; - format: string; - }; - bizSubType: number; - remindType: number; - remindMinutes: number; - }; - taskInfo?: { - ccUsers: string; - taskRemind: number; - deadlineTime: { - value?: string; - format?: string; - }; - }; - alertDate?: { - value: string; - format: string; - }; - alertType?: number; - attachment?: { - images: string[]; - }; -} -/** - * DING 2.0 发钉 返回结果定义 - * @apiName createDing - */ -export interface IUnionCreateDingResult { -} -/** - * DING 2.0 发钉 - * @apiName createDing - */ -export declare function createDing$(params: IUnionCreateDingParams): Promise; -export default createDing$; diff --git a/node_modules/dingtalk-jsapi/api/union/createDing.js b/node_modules/dingtalk-jsapi/api/union/createDing.js deleted file mode 100644 index a1d20aea..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createDing.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createDing$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createDing$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="createDing",actualCallApiName="biz.ding.create";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.createDing$=createDing$,exports.default=createDing$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/createDingForPC.d.ts b/node_modules/dingtalk-jsapi/api/union/createDingForPC.d.ts deleted file mode 100644 index 0b00747c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createDingForPC.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * DING 1.0 发钉 请求参数定义 - * @apiName createDingForPC - */ -export interface IUnionCreateDingForPCParams extends ICommonAPIParams { - text?: string; - type?: number; - users: string[]; - corpId: string; - alertDate?: { - value: string; - format: string; - }; - alertType?: number; - attachment?: { - images: string[]; - }; -} -/** - * DING 1.0 发钉 返回结果定义 - * @apiName createDingForPC - */ -export interface IUnionCreateDingForPCResult { -} -/** - * DING 1.0 发钉 - * @apiName createDingForPC - */ -export declare function createDingForPC$(params: IUnionCreateDingForPCParams): Promise; -export default createDingForPC$; diff --git a/node_modules/dingtalk-jsapi/api/union/createDingForPC.js b/node_modules/dingtalk-jsapi/api/union/createDingForPC.js deleted file mode 100644 index 52fa6a8c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createDingForPC.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createDingForPC$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createDingForPC$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="createDingForPC",actualCallApiName="biz.ding.post";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.createDingForPC$=createDingForPC$,exports.default=createDingForPC$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/createGroupChat.d.ts b/node_modules/dingtalk-jsapi/api/union/createGroupChat.d.ts deleted file mode 100644 index 576475ab..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createGroupChat.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 创建企业群聊天。 请求参数定义 - * @apiName createGroupChat - */ -export interface IUnionCreateGroupChatParams extends ICommonAPIParams { -} -/** - * 创建企业群聊天。 返回结果定义 - * @apiName createGroupChat - */ -export interface IUnionCreateGroupChatResult { -} -/** - * 创建企业群聊天。 - * @apiName createGroupChat - */ -export declare function createGroupChat$(params: IUnionCreateGroupChatParams): Promise; -export default createGroupChat$; diff --git a/node_modules/dingtalk-jsapi/api/union/createGroupChat.js b/node_modules/dingtalk-jsapi/api/union/createGroupChat.js deleted file mode 100644 index 31d917b7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createGroupChat.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createGroupChat$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createGroupChat$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="createGroupChat",actualCallApiName="biz.contact.createGroup";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.createGroupChat$=createGroupChat$,exports.default=createGroupChat$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/createLiveClassRoom.d.ts b/node_modules/dingtalk-jsapi/api/union/createLiveClassRoom.d.ts deleted file mode 100644 index 6f8a14c7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createLiveClassRoom.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 发起在线课堂 请求参数定义 - * @apiName createLiveClassRoom - */ -export interface IUnionCreateLiveClassRoomParams extends ICommonAPIParams { - startParam: { - liveUuid: string; - }; -} -/** - * 发起在线课堂 返回结果定义 - * @apiName createLiveClassRoom - */ -export interface IUnionCreateLiveClassRoomResult { -} -/** - * 发起在线课堂 - * @apiName createLiveClassRoom - */ -export declare function createLiveClassRoom$(params: IUnionCreateLiveClassRoomParams): Promise; -export default createLiveClassRoom$; diff --git a/node_modules/dingtalk-jsapi/api/union/createLiveClassRoom.js b/node_modules/dingtalk-jsapi/api/union/createLiveClassRoom.js deleted file mode 100644 index beba7663..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createLiveClassRoom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createLiveClassRoom$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createLiveClassRoom$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="createLiveClassRoom",actualCallApiName="biz.live.startClassRoom";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.createLiveClassRoom$=createLiveClassRoom$,exports.default=createLiveClassRoom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/createPayOrder.d.ts b/node_modules/dingtalk-jsapi/api/union/createPayOrder.d.ts deleted file mode 100644 index 8445870e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createPayOrder.d.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 创建因公场景支付宝订单 请求参数定义 - * @apiName createPayOrder - */ -export interface IUnionCreatePayOrderParams extends ICommonAPIParams { - bizScene: string; - corpId: string; - processInstanceId: string; - journeyBizNo: string; - orderList: { - outBizNo: string; - merchantId: string; - amount: string; - title: string; - goodsName: string; - remark: string; - }[]; - controlStandard: string; -} -/** - * 创建因公场景支付宝订单 返回结果定义 - * @apiName createPayOrder - */ -export interface IUnionCreatePayOrderResult { - code: string; - reason: string; - reasonRemark: string; - orderResultList: { - outBizNo: string; - enterprise_pay_info: string; - assignJointAccountId: string; - enterprisePayAmount: string; - }[]; -} -/** - * 创建因公场景支付宝订单 - * @apiName createPayOrder - */ -export declare function createPayOrder$(params: IUnionCreatePayOrderParams): Promise; -export default createPayOrder$; diff --git a/node_modules/dingtalk-jsapi/api/union/createPayOrder.js b/node_modules/dingtalk-jsapi/api/union/createPayOrder.js deleted file mode 100644 index 6c596cd0..00000000 --- a/node_modules/dingtalk-jsapi/api/union/createPayOrder.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createPayOrder$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.createPayOrder$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="createPayOrder",actualCallApiName="biz.enterprise.createPayOrder";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"8.0.0"},_a)),exports.createPayOrder$=createPayOrder$,exports.default=createPayOrder$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/cropImage.d.ts b/node_modules/dingtalk-jsapi/api/union/cropImage.d.ts deleted file mode 100644 index ddcf5fd3..00000000 --- a/node_modules/dingtalk-jsapi/api/union/cropImage.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 图片剪裁 请求参数定义 - * @apiName cropImage - */ -export interface IUnionCropImageParams extends ICommonAPIParams { - keepPNG?: boolean; - filePath: string; - aspectRatio: number; -} -/** - * 图片剪裁 返回结果定义 - * @apiName cropImage - */ -export interface IUnionCropImageResult { - path: string; - size: number; - fileType: string; -} -/** - * 图片剪裁 - * @apiName cropImage - */ -export declare function cropImage$(params: IUnionCropImageParams): Promise; -export default cropImage$; diff --git a/node_modules/dingtalk-jsapi/api/union/cropImage.js b/node_modules/dingtalk-jsapi/api/union/cropImage.js deleted file mode 100644 index 80e45d1b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/cropImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function cropImage$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.cropImage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="cropImage",actualCallApiName="biz.util.cropImage";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.2"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.2"},_a)),exports.cropImage$=cropImage$,exports.default=cropImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/customChooseUsers.d.ts b/node_modules/dingtalk-jsapi/api/union/customChooseUsers.d.ts deleted file mode 100644 index 49725083..00000000 --- a/node_modules/dingtalk-jsapi/api/union/customChooseUsers.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 多选自定义联系人 请求参数定义 - * @apiName customChooseUsers - */ -export interface IUnionCustomChooseUsersParams extends ICommonAPIParams { -} -/** - * 多选自定义联系人 返回结果定义 - * @apiName customChooseUsers - */ -export interface IUnionCustomChooseUsersResult { -} -/** - * 多选自定义联系人 - * @apiName customChooseUsers - */ -export declare function customChooseUsers$(params: IUnionCustomChooseUsersParams): Promise; -export default customChooseUsers$; diff --git a/node_modules/dingtalk-jsapi/api/union/customChooseUsers.js b/node_modules/dingtalk-jsapi/api/union/customChooseUsers.js deleted file mode 100644 index 3fff35ec..00000000 --- a/node_modules/dingtalk-jsapi/api/union/customChooseUsers.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function customChooseUsers$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.customChooseUsers$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="customChooseUsers",actualCallApiName="biz.customContact.multipleChoose",paramsDeal=apiHelper_1.genDefaultParamsDealFn({isShowCompanyName:!1,max:50});ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:paramsDeal},_a)),exports.customChooseUsers$=customChooseUsers$,exports.default=customChooseUsers$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/datePicker.d.ts b/node_modules/dingtalk-jsapi/api/union/datePicker.d.ts deleted file mode 100644 index 1262332e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/datePicker.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 选择日期 请求参数定义 - * @apiName datePicker - */ -export interface IUnionDatePickerParams extends ICommonAPIParams { - format: string; - currentDate: string; -} -/** - * 选择日期 返回结果定义 - * @apiName datePicker - */ -export interface IUnionDatePickerResult { - date: string; -} -/** - * 选择日期 - * @apiName datePicker - */ -export declare function datePicker$(params: IUnionDatePickerParams): Promise; -export default datePicker$; diff --git a/node_modules/dingtalk-jsapi/api/union/datePicker.js b/node_modules/dingtalk-jsapi/api/union/datePicker.js deleted file mode 100644 index 4c32cdfa..00000000 --- a/node_modules/dingtalk-jsapi/api/union/datePicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function datePicker$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.datePicker$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="datePicker",actualCallApiName="biz.util.datetimepicker";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.datePicker$=datePicker$,exports.default=datePicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/dateRangePicker.d.ts b/node_modules/dingtalk-jsapi/api/union/dateRangePicker.d.ts deleted file mode 100644 index 96aba88a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/dateRangePicker.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 月历组件:选择日期区间 请求参数定义 - * @apiName dateRangePicker - */ -export interface IUnionDateRangePickerParams extends ICommonAPIParams { - defaultEnd: number; - defaultStart?: number; -} -/** - * 月历组件:选择日期区间 返回结果定义 - * @apiName dateRangePicker - */ -export interface IUnionDateRangePickerResult { - end: number; - start: number; - timezone: number; -} -/** - * 月历组件:选择日期区间 - * @apiName dateRangePicker - */ -export declare function dateRangePicker$(params: IUnionDateRangePickerParams): Promise; -export default dateRangePicker$; diff --git a/node_modules/dingtalk-jsapi/api/union/dateRangePicker.js b/node_modules/dingtalk-jsapi/api/union/dateRangePicker.js deleted file mode 100644 index 9f44b397..00000000 --- a/node_modules/dingtalk-jsapi/api/union/dateRangePicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function dateRangePicker$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.dateRangePicker$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="dateRangePicker",actualCallApiName="biz.calendar.chooseInterval";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:apiHelper_1.addDefaultCorpIdParamsDeal},_a)),exports.dateRangePicker$=dateRangePicker$,exports.default=dateRangePicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/decrypt.d.ts b/node_modules/dingtalk-jsapi/api/union/decrypt.d.ts deleted file mode 100644 index 2403b7db..00000000 --- a/node_modules/dingtalk-jsapi/api/union/decrypt.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 数据解密 请求参数定义 - * @apiName decrypt - */ -export interface IUnionDecryptParams extends ICommonAPIParams { -} -/** - * 数据解密 返回结果定义 - * @apiName decrypt - */ -export interface IUnionDecryptResult { -} -/** - * 数据解密 - * @apiName decrypt - */ -export declare function decrypt$(params: IUnionDecryptParams): Promise; -export default decrypt$; diff --git a/node_modules/dingtalk-jsapi/api/union/decrypt.js b/node_modules/dingtalk-jsapi/api/union/decrypt.js deleted file mode 100644 index 9177e1bc..00000000 --- a/node_modules/dingtalk-jsapi/api/union/decrypt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function decrypt$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.decrypt$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="decrypt",actualCallApiName="biz.util.decrypt";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.decrypt$=decrypt$,exports.default=decrypt$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/disablePullDownRefresh.d.ts b/node_modules/dingtalk-jsapi/api/union/disablePullDownRefresh.d.ts deleted file mode 100644 index c737e9d7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/disablePullDownRefresh.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 禁用下拉刷新 请求参数定义 - * @apiName disablePullDownRefresh - */ -export interface IUnionDisablePullDownRefreshParams extends ICommonAPIParams { -} -/** - * 禁用下拉刷新 返回结果定义 - * @apiName disablePullDownRefresh - */ -export interface IUnionDisablePullDownRefreshResult { -} -/** - * 禁用下拉刷新 - * @apiName disablePullDownRefresh - */ -export declare function disablePullDownRefresh$(params: IUnionDisablePullDownRefreshParams): Promise; -export default disablePullDownRefresh$; diff --git a/node_modules/dingtalk-jsapi/api/union/disablePullDownRefresh.js b/node_modules/dingtalk-jsapi/api/union/disablePullDownRefresh.js deleted file mode 100644 index fca64e3c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/disablePullDownRefresh.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disablePullDownRefresh$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.disablePullDownRefresh$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="disablePullDownRefresh",actualCallApiName="ui.pullToRefresh.disable";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.disablePullDownRefresh$=disablePullDownRefresh$,exports.default=disablePullDownRefresh$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/disableWebViewBounce.d.ts b/node_modules/dingtalk-jsapi/api/union/disableWebViewBounce.d.ts deleted file mode 100644 index 91547801..00000000 --- a/node_modules/dingtalk-jsapi/api/union/disableWebViewBounce.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 禁用iOS Webview弹性效果 请求参数定义 - * @apiName disableWebViewBounce - */ -export interface IUnionDisableWebViewBounceParams extends ICommonAPIParams { -} -/** - * 禁用iOS Webview弹性效果 返回结果定义 - * @apiName disableWebViewBounce - */ -export interface IUnionDisableWebViewBounceResult { -} -/** - * 禁用iOS Webview弹性效果 - * @apiName disableWebViewBounce - */ -export declare function disableWebViewBounce$(params: IUnionDisableWebViewBounceParams): Promise; -export default disableWebViewBounce$; diff --git a/node_modules/dingtalk-jsapi/api/union/disableWebViewBounce.js b/node_modules/dingtalk-jsapi/api/union/disableWebViewBounce.js deleted file mode 100644 index 54e2c12b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/disableWebViewBounce.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disableWebViewBounce$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.disableWebViewBounce$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="disableWebViewBounce",actualCallApiName="ui.webViewBounce.disable";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.disableWebViewBounce$=disableWebViewBounce$,exports.default=disableWebViewBounce$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/disconnectBLEDevice.d.ts b/node_modules/dingtalk-jsapi/api/union/disconnectBLEDevice.d.ts deleted file mode 100644 index 675ea371..00000000 --- a/node_modules/dingtalk-jsapi/api/union/disconnectBLEDevice.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 断开与低功耗蓝牙设备的连接 请求参数定义 - * @apiName disconnectBLEDevice - */ -export interface IUnionDisconnectBLEDeviceParams extends ICommonAPIParams { - deviceId: string; -} -/** - * 断开与低功耗蓝牙设备的连接 返回结果定义 - * @apiName disconnectBLEDevice - */ -export interface IUnionDisconnectBLEDeviceResult { -} -/** - * 断开与低功耗蓝牙设备的连接 - * @apiName disconnectBLEDevice - */ -export declare function disconnectBLEDevice$(params: IUnionDisconnectBLEDeviceParams): Promise; -export default disconnectBLEDevice$; diff --git a/node_modules/dingtalk-jsapi/api/union/disconnectBLEDevice.js b/node_modules/dingtalk-jsapi/api/union/disconnectBLEDevice.js deleted file mode 100644 index a152d1a7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/disconnectBLEDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disconnectBLEDevice$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var d,i=1,n=arguments.length;i; -export default downloadAudio$; diff --git a/node_modules/dingtalk-jsapi/api/union/downloadAudio.js b/node_modules/dingtalk-jsapi/api/union/downloadAudio.js deleted file mode 100644 index 12d09eb9..00000000 --- a/node_modules/dingtalk-jsapi/api/union/downloadAudio.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function downloadAudio$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.downloadAudio$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="downloadAudio",actualCallApiName="device.audio.download";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.downloadAudio$=downloadAudio$,exports.default=downloadAudio$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/downloadFile.d.ts b/node_modules/dingtalk-jsapi/api/union/downloadFile.d.ts deleted file mode 100644 index b6f7f9e7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/downloadFile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 下载文件 请求参数定义 - * @apiName downloadFile - */ -export interface IUnionDownloadFileParams extends ICommonAPIParams { - url: string; - header?: {}; -} -/** - * 下载文件 返回结果定义 - * @apiName downloadFile - */ -export interface IUnionDownloadFileResult { - filePath?: string; -} -/** - * 下载文件 - * @apiName downloadFile - */ -export declare function downloadFile$(params: IUnionDownloadFileParams): Promise; -export default downloadFile$; diff --git a/node_modules/dingtalk-jsapi/api/union/downloadFile.js b/node_modules/dingtalk-jsapi/api/union/downloadFile.js deleted file mode 100644 index c53f99a4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/downloadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function downloadFile$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.downloadFile$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="downloadFile",actualCallApiName="biz.file.downloadFile";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a)),exports.downloadFile$=downloadFile$,exports.default=downloadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/editExternalUser.d.ts b/node_modules/dingtalk-jsapi/api/union/editExternalUser.d.ts deleted file mode 100644 index d4245fe8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/editExternalUser.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 编辑外部联系人 请求参数定义 - * @apiName editExternalUser - */ -export interface IUnionEditExternalUserParams extends ICommonAPIParams { - job?: string; - name?: string; - title?: string; - corpId?: string; - emplId?: string; - mobile?: string; - remark?: string; - deptName?: string; - companyName?: string; -} -/** - * 编辑外部联系人 返回结果定义 - * @apiName editExternalUser - */ -export interface IUnionEditExternalUserResult { - job?: string; - name?: string; - mobile?: string; - remark?: string; - userId?: string; - deptName?: string; - companyName?: string; -} -/** - * 编辑外部联系人 - * @apiName editExternalUser - */ -export declare function editExternalUser$(params: IUnionEditExternalUserParams): Promise; -export default editExternalUser$; diff --git a/node_modules/dingtalk-jsapi/api/union/editExternalUser.js b/node_modules/dingtalk-jsapi/api/union/editExternalUser.js deleted file mode 100644 index e41106f1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/editExternalUser.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function editExternalUser$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.editExternalUser$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="editExternalUser",actualCallApiName="biz.contact.externalEditForm";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.editExternalUser$=editExternalUser$,exports.default=editExternalUser$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/editPicture.d.ts b/node_modules/dingtalk-jsapi/api/union/editPicture.d.ts deleted file mode 100644 index 886c0787..00000000 --- a/node_modules/dingtalk-jsapi/api/union/editPicture.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 编辑图片 请求参数定义 - * @apiName editPicture - */ -export interface IUnionEditPictureParams extends ICommonAPIParams { - url: string; -} -/** - * 编辑图片 返回结果定义 - * @apiName editPicture - */ -export interface IUnionEditPictureResult { -} -/** - * 编辑图片 - * @apiName editPicture - */ -export declare function editPicture$(params: IUnionEditPictureParams): Promise; -export default editPicture$; diff --git a/node_modules/dingtalk-jsapi/api/union/editPicture.js b/node_modules/dingtalk-jsapi/api/union/editPicture.js deleted file mode 100644 index 42cb87aa..00000000 --- a/node_modules/dingtalk-jsapi/api/union/editPicture.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function editPicture$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.editPicture$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="editPicture",actualCallApiName="biz.util.editPicture";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.1.21"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.1.21"},_a)),exports.editPicture$=editPicture$,exports.default=editPicture$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/enablePullDownRefresh.d.ts b/node_modules/dingtalk-jsapi/api/union/enablePullDownRefresh.d.ts deleted file mode 100644 index a8e524d8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/enablePullDownRefresh.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 启用下拉刷新 请求参数定义 - * @apiName enablePullDownRefresh - */ -export interface IUnionEnablePullDownRefreshParams extends ICommonAPIParams { -} -/** - * 启用下拉刷新 返回结果定义 - * @apiName enablePullDownRefresh - */ -export interface IUnionEnablePullDownRefreshResult { -} -/** - * 启用下拉刷新 - * @apiName enablePullDownRefresh - */ -export declare function enablePullDownRefresh$(params: IUnionEnablePullDownRefreshParams): Promise; -export default enablePullDownRefresh$; diff --git a/node_modules/dingtalk-jsapi/api/union/enablePullDownRefresh.js b/node_modules/dingtalk-jsapi/api/union/enablePullDownRefresh.js deleted file mode 100644 index 988d653f..00000000 --- a/node_modules/dingtalk-jsapi/api/union/enablePullDownRefresh.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enablePullDownRefresh$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.enablePullDownRefresh$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="enablePullDownRefresh",actualCallApiName="ui.pullToRefresh.enable";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.enablePullDownRefresh$=enablePullDownRefresh$,exports.default=enablePullDownRefresh$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/enableWebViewBounce.d.ts b/node_modules/dingtalk-jsapi/api/union/enableWebViewBounce.d.ts deleted file mode 100644 index 68f551a0..00000000 --- a/node_modules/dingtalk-jsapi/api/union/enableWebViewBounce.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 启用iOS Webview弹性效果 请求参数定义 - * @apiName enableWebViewBounce - */ -export interface IUnionEnableWebViewBounceParams extends ICommonAPIParams { -} -/** - * 启用iOS Webview弹性效果 返回结果定义 - * @apiName enableWebViewBounce - */ -export interface IUnionEnableWebViewBounceResult { -} -/** - * 启用iOS Webview弹性效果 - * @apiName enableWebViewBounce - */ -export declare function enableWebViewBounce$(params: IUnionEnableWebViewBounceParams): Promise; -export default enableWebViewBounce$; diff --git a/node_modules/dingtalk-jsapi/api/union/enableWebViewBounce.js b/node_modules/dingtalk-jsapi/api/union/enableWebViewBounce.js deleted file mode 100644 index 9cd39eeb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/enableWebViewBounce.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enableWebViewBounce$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.enableWebViewBounce$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="enableWebViewBounce",actualCallApiName="ui.webViewBounce.enable";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.enableWebViewBounce$=enableWebViewBounce$,exports.default=enableWebViewBounce$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/encrypt.d.ts b/node_modules/dingtalk-jsapi/api/union/encrypt.d.ts deleted file mode 100644 index 19d9b8e8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/encrypt.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 数据加密 请求参数定义 - * @apiName encrypt - */ -export interface IUnionEncryptParams extends ICommonAPIParams { -} -/** - * 数据加密 返回结果定义 - * @apiName encrypt - */ -export interface IUnionEncryptResult { -} -/** - * 数据加密 - * @apiName encrypt - */ -export declare function encrypt$(params: IUnionEncryptParams): Promise; -export default encrypt$; diff --git a/node_modules/dingtalk-jsapi/api/union/encrypt.js b/node_modules/dingtalk-jsapi/api/union/encrypt.js deleted file mode 100644 index a2a80815..00000000 --- a/node_modules/dingtalk-jsapi/api/union/encrypt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function encrypt$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.encrypt$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="encrypt",actualCallApiName="biz.util.encrypt";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.encrypt$=encrypt$,exports.default=encrypt$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/exclusiveLiveCheck.d.ts b/node_modules/dingtalk-jsapi/api/union/exclusiveLiveCheck.d.ts deleted file mode 100644 index 2cc691ad..00000000 --- a/node_modules/dingtalk-jsapi/api/union/exclusiveLiveCheck.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 专属实人认证 请求参数定义 - * @apiName exclusiveLiveCheck - */ -export interface IUnionExclusiveLiveCheckParams extends ICommonAPIParams { - corpId: string; - agentId: string; -} -/** - * 专属实人认证 返回结果定义 - * @apiName exclusiveLiveCheck - */ -export interface IUnionExclusiveLiveCheckResult { - photoStatus: number; -} -/** - * 专属实人认证 - * @apiName exclusiveLiveCheck - */ -export declare function exclusiveLiveCheck$(params: IUnionExclusiveLiveCheckParams): Promise; -export default exclusiveLiveCheck$; diff --git a/node_modules/dingtalk-jsapi/api/union/exclusiveLiveCheck.js b/node_modules/dingtalk-jsapi/api/union/exclusiveLiveCheck.js deleted file mode 100644 index b2828f9e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/exclusiveLiveCheck.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function exclusiveLiveCheck$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.exclusiveLiveCheck$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="exclusiveLiveCheck",actualCallApiName="biz.ATMBle.exclusiveLiveCheck";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.40"},_a)),exports.exclusiveLiveCheck$=exclusiveLiveCheck$,exports.default=exclusiveLiveCheck$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/generateImageFromCode.d.ts b/node_modules/dingtalk-jsapi/api/union/generateImageFromCode.d.ts deleted file mode 100644 index 62857211..00000000 --- a/node_modules/dingtalk-jsapi/api/union/generateImageFromCode.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 生成二维码 请求参数定义 - * @apiName generateImageFromCode - */ -export interface IUnionGenerateImageFromCodeParams extends ICommonAPIParams { - code: string; - width: number; - format: string; -} -/** - * 生成二维码 返回结果定义 - * @apiName generateImageFromCode - */ -export interface IUnionGenerateImageFromCodeResult { - image: string; -} -/** - * 生成二维码 - * @apiName generateImageFromCode - */ -export declare function generateImageFromCode$(params: IUnionGenerateImageFromCodeParams): Promise; -export default generateImageFromCode$; diff --git a/node_modules/dingtalk-jsapi/api/union/generateImageFromCode.js b/node_modules/dingtalk-jsapi/api/union/generateImageFromCode.js deleted file mode 100644 index 3f2621d1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/generateImageFromCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function generateImageFromCode$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.generateImageFromCode$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="generateImageFromCode",actualCallApiName="biz.util.generateImageFromCode";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.generateImageFromCode$=generateImageFromCode$,exports.default=generateImageFromCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getAccountType.d.ts b/node_modules/dingtalk-jsapi/api/union/getAccountType.d.ts deleted file mode 100644 index faef32e8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAccountType.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取账号类型 请求参数定义 - * @apiName getAccountType - */ -export interface IUnionGetAccountTypeParams extends ICommonAPIParams { -} -/** - * 获取账号类型 返回结果定义 - * @apiName getAccountType - */ -export interface IUnionGetAccountTypeResult { - isOversea: boolean; - accountType: string; -} -/** - * 获取账号类型 - * @apiName getAccountType - */ -export declare function getAccountType$(params: IUnionGetAccountTypeParams): Promise; -export default getAccountType$; diff --git a/node_modules/dingtalk-jsapi/api/union/getAccountType.js b/node_modules/dingtalk-jsapi/api/union/getAccountType.js deleted file mode 100644 index 0e19d656..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAccountType.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAccountType$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAccountType$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getAccountType",actualCallApiName="biz.i18n.getAccountType";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.8.5"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.8.5"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.8.5"},_a)),exports.getAccountType$=getAccountType$,exports.default=getAccountType$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getActiveConferenceInfo.d.ts b/node_modules/dingtalk-jsapi/api/union/getActiveConferenceInfo.d.ts deleted file mode 100644 index 844de3e2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getActiveConferenceInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取当前会议信息 请求参数定义 - * @apiName getActiveConferenceInfo - */ -export interface IUnionGetActiveConferenceInfoParams extends ICommonAPIParams { -} -/** - * 获取当前会议信息 返回结果定义 - * @apiName getActiveConferenceInfo - */ -export interface IUnionGetActiveConferenceInfoResult { - errorCode: string; - errorMessage: string; - ConferenceInfo: string; -} -/** - * 获取当前会议信息 - * @apiName getActiveConferenceInfo - */ -export declare function getActiveConferenceInfo$(params: IUnionGetActiveConferenceInfoParams): Promise; -export default getActiveConferenceInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getActiveConferenceInfo.js b/node_modules/dingtalk-jsapi/api/union/getActiveConferenceInfo.js deleted file mode 100644 index b749bfef..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getActiveConferenceInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getActiveConferenceInfo$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getActiveConferenceInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getActiveConferenceInfo",actualCallApiName="biz.conference.getConferenceInfo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.2.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"8.2.15"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"8.2.15"},_a)),exports.getActiveConferenceInfo$=getActiveConferenceInfo$,exports.default=getActiveConferenceInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getAdvertisingStatus.d.ts b/node_modules/dingtalk-jsapi/api/union/getAdvertisingStatus.d.ts deleted file mode 100644 index 8c005799..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAdvertisingStatus.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 查询是否正在蓝牙广播 请求参数定义 - * @apiName getAdvertisingStatus - */ -export interface IUnionGetAdvertisingStatusParams extends ICommonAPIParams { -} -/** - * 查询是否正在蓝牙广播 返回结果定义 - * @apiName getAdvertisingStatus - */ -export interface IUnionGetAdvertisingStatusResult { -} -/** - * 查询是否正在蓝牙广播 - * @apiName getAdvertisingStatus - */ -export declare function getAdvertisingStatus$(params: IUnionGetAdvertisingStatusParams): Promise; -export default getAdvertisingStatus$; diff --git a/node_modules/dingtalk-jsapi/api/union/getAdvertisingStatus.js b/node_modules/dingtalk-jsapi/api/union/getAdvertisingStatus.js deleted file mode 100644 index 20803765..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAdvertisingStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAdvertisingStatus$(t){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,t)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAdvertisingStatus$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getAdvertisingStatus",actualCallApiName="biz.realm.getAdvertisingStatus";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.0"},_a)),exports.getAdvertisingStatus$=getAdvertisingStatus$,exports.default=getAdvertisingStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getAuthCode.d.ts b/node_modules/dingtalk-jsapi/api/union/getAuthCode.d.ts deleted file mode 100644 index 2ff3d86d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAuthCode.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 免登授权码 请求参数定义 - * @apiName getAuthCode - */ -export interface IUnionGetAuthCodeParams extends ICommonAPIParams { - corpId: string; -} -/** - * 免登授权码 返回结果定义 - * @apiName getAuthCode - */ -export interface IUnionGetAuthCodeResult { - authCode: string; -} -/** - * 免登授权码 - * @apiName getAuthCode - */ -export declare function getAuthCode$(params: IUnionGetAuthCodeParams): Promise; -export default getAuthCode$; diff --git a/node_modules/dingtalk-jsapi/api/union/getAuthCode.js b/node_modules/dingtalk-jsapi/api/union/getAuthCode.js deleted file mode 100644 index 6a0e78eb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAuthCode$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAuthCode$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getAuthCode",actualCallApiName="runtime.permission.requestAuthCode";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.getAuthCode$=getAuthCode$,exports.default=getAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getAuthCodeV2.d.ts b/node_modules/dingtalk-jsapi/api/union/getAuthCodeV2.d.ts deleted file mode 100644 index 809e0e94..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAuthCodeV2.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取微应用免登授权码 请求参数定义 - * @apiName getAuthCodeV2 - */ -export interface IUnionGetAuthCodeV2Params extends ICommonAPIParams { - corpId: string; - clientId: string; -} -/** - * 获取微应用免登授权码 返回结果定义 - * @apiName getAuthCodeV2 - */ -export interface IUnionGetAuthCodeV2Result { - code: string; -} -/** - * 获取微应用免登授权码 - * @apiName getAuthCodeV2 - */ -export declare function getAuthCodeV2$(params: IUnionGetAuthCodeV2Params): Promise; -export default getAuthCodeV2$; diff --git a/node_modules/dingtalk-jsapi/api/union/getAuthCodeV2.js b/node_modules/dingtalk-jsapi/api/union/getAuthCodeV2.js deleted file mode 100644 index 8281240b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAuthCodeV2.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAuthCodeV2$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAuthCodeV2$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getAuthCodeV2",actualCallApiName="runtime.permission.requestAuthCodeV2";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.45"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.45"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.50"},_a)),exports.getAuthCodeV2$=getAuthCodeV2$,exports.default=getAuthCodeV2$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getAuthInfo.d.ts b/node_modules/dingtalk-jsapi/api/union/getAuthInfo.d.ts deleted file mode 100644 index 64a15aad..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAuthInfo.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取授权信息 请求参数定义 - * @apiName getAuthInfo - */ -export interface IUnionGetAuthInfoParams extends ICommonAPIParams { - type: number; - corpId: string; - clientId: string; - rpcScope: string[]; - fieldScope: string[]; -} -/** - * 获取授权信息 返回结果定义 - * @apiName getAuthInfo - */ -export interface IUnionGetAuthInfoResult { - status: boolean; - authCode: string; -} -/** - * 获取授权信息 - * @apiName getAuthInfo - */ -export declare function getAuthInfo$(params: IUnionGetAuthInfoParams): Promise; -export default getAuthInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getAuthInfo.js b/node_modules/dingtalk-jsapi/api/union/getAuthInfo.js deleted file mode 100644 index e1403814..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getAuthInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAuthInfo$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAuthInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getAuthInfo",actualCallApiName="runtime.permission.getAuthInfo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.26"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.26"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.5.26"},_a)),exports.getAuthInfo$=getAuthInfo$,exports.default=getAuthInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getBLEDeviceCharacteristics.d.ts b/node_modules/dingtalk-jsapi/api/union/getBLEDeviceCharacteristics.d.ts deleted file mode 100644 index 43554d98..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getBLEDeviceCharacteristics.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取蓝牙设备所有特征值 请求参数定义 - * @apiName getBLEDeviceCharacteristics - */ -export interface IUnionGetBLEDeviceCharacteristicsParams extends ICommonAPIParams { - deviceId: string; - serviceId: string; -} -/** - * 获取蓝牙设备所有特征值 返回结果定义 - * @apiName getBLEDeviceCharacteristics - */ -export interface IUnionGetBLEDeviceCharacteristicsResult { - characteristics: { - value: string; - serviceId: string; - properties: { - read: boolean; - write: boolean; - notify: boolean; - indicate: boolean; - }; - characteristicId: string; - }[]; -} -/** - * 获取蓝牙设备所有特征值 - * @apiName getBLEDeviceCharacteristics - */ -export declare function getBLEDeviceCharacteristics$(params: IUnionGetBLEDeviceCharacteristicsParams): Promise; -export default getBLEDeviceCharacteristics$; diff --git a/node_modules/dingtalk-jsapi/api/union/getBLEDeviceCharacteristics.js b/node_modules/dingtalk-jsapi/api/union/getBLEDeviceCharacteristics.js deleted file mode 100644 index 81797131..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getBLEDeviceCharacteristics.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBLEDeviceCharacteristics$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var i,t=1,a=arguments.length;t; -export default getBLEDeviceServices$; diff --git a/node_modules/dingtalk-jsapi/api/union/getBLEDeviceServices.js b/node_modules/dingtalk-jsapi/api/union/getBLEDeviceServices.js deleted file mode 100644 index 863578d6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getBLEDeviceServices.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBLEDeviceServices$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var i,r=1,d=arguments.length;r; -export default getBatteryInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getBatteryInfo.js b/node_modules/dingtalk-jsapi/api/union/getBatteryInfo.js deleted file mode 100644 index 2e291aa2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getBatteryInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBatteryInfo$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getBatteryInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getBatteryInfo",actualCallApiName="device.base.getBatteryInfo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.60"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.60"},_a)),exports.getBatteryInfo$=getBatteryInfo$,exports.default=getBatteryInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getBeacons.d.ts b/node_modules/dingtalk-jsapi/api/union/getBeacons.d.ts deleted file mode 100644 index 20836502..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getBeacons.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取已经搜索到的 iBeacon 设备 请求参数定义 - * @apiName getBeacons - */ -export interface IUnionGetBeaconsParams extends ICommonAPIParams { -} -/** - * 获取已经搜索到的 iBeacon 设备 返回结果定义 - * @apiName getBeacons - */ -export interface IUnionGetBeaconsResult { - beacons: { - uuid: string; - major: string; - minor: string; - proximity: number; - accuracy: number; - rssi: number; - }[]; -} -/** - * 获取已经搜索到的 iBeacon 设备。 - * @apiName getBeacons - * @supportVersion ios: 4.6.38 android: 4.6.38 - */ -export declare function getBeacons$(params: IUnionGetBeaconsParams): Promise; -export default getBeacons$; diff --git a/node_modules/dingtalk-jsapi/api/union/getBeacons.js b/node_modules/dingtalk-jsapi/api/union/getBeacons.js deleted file mode 100644 index 6aff9aa2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getBeacons.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBeacons$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var a,d=1,s=arguments.length;d; -export default getBluetoothAdapterState$; diff --git a/node_modules/dingtalk-jsapi/api/union/getBluetoothAdapterState.js b/node_modules/dingtalk-jsapi/api/union/getBluetoothAdapterState.js deleted file mode 100644 index 48f9ad43..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getBluetoothAdapterState.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBluetoothAdapterState$(t){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},t))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(t){for(var e,a=1,d=arguments.length;a; -export default getBluetoothDevices$; diff --git a/node_modules/dingtalk-jsapi/api/union/getBluetoothDevices.js b/node_modules/dingtalk-jsapi/api/union/getBluetoothDevices.js deleted file mode 100644 index 47e1dc8d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getBluetoothDevices.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBluetoothDevices$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var t,d=1,i=arguments.length;d; -export default getCachedAPIResponse$; diff --git a/node_modules/dingtalk-jsapi/api/union/getCachedAPIResponse.js b/node_modules/dingtalk-jsapi/api/union/getCachedAPIResponse.js deleted file mode 100644 index bef832d9..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getCachedAPIResponse.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCachedAPIResponse$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCachedAPIResponse$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getCachedAPIResponse",actualCallApiName="biz.util.getCachedAPIResponse";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.0.15"},_a)),exports.getCachedAPIResponse$=getCachedAPIResponse$,exports.default=getCachedAPIResponse$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getCloudCallInfo.d.ts b/node_modules/dingtalk-jsapi/api/union/getCloudCallInfo.d.ts deleted file mode 100644 index b7347d5d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getCloudCallInfo.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 查询企业是否已开办公电话 请求参数定义 - * @apiName getCloudCallInfo - */ -export interface IUnionGetCloudCallInfoParams extends ICommonAPIParams { - corpId: string; -} -/** - * 查询企业是否已开办公电话 返回结果定义 - * @apiName getCloudCallInfo - */ -export interface IUnionGetCloudCallInfoResult { - code: number; - cause: string; - hasOpen: boolean; - bizNumberList: string[]; -} -/** - * 查询企业是否已开办公电话 - * @apiName getCloudCallInfo - */ -export declare function getCloudCallInfo$(params: IUnionGetCloudCallInfoParams): Promise; -export default getCloudCallInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getCloudCallInfo.js b/node_modules/dingtalk-jsapi/api/union/getCloudCallInfo.js deleted file mode 100644 index 1f8d409c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getCloudCallInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCloudCallInfo$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCloudCallInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getCloudCallInfo",actualCallApiName="biz.conference.getCloudCallInfo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.getCloudCallInfo$=getCloudCallInfo$,exports.default=getCloudCallInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getCloudCallList.d.ts b/node_modules/dingtalk-jsapi/api/union/getCloudCallList.d.ts deleted file mode 100644 index 577fe1ab..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getCloudCallList.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 查询话单列表 请求参数定义 - * @apiName getCloudCallList - */ -export interface IUnionGetCloudCallListParams extends ICommonAPIParams { - index: number; - corpId: string; - endTime: string; - pageSize: number; - bizNumber?: string; - direction: number; - sessionId?: string; - startTime: string; - staffIdList?: string[]; -} -/** - * 查询话单列表 返回结果定义 - * @apiName getCloudCallList - */ -export interface IUnionGetCloudCallListResult { - code: number; - cause: string; - total: number; - hasMore: boolean; - callList: string[]; - currentIndex: number; -} -/** - * 查询话单列表 - * @apiName getCloudCallList - */ -export declare function getCloudCallList$(params: IUnionGetCloudCallListParams): Promise; -export default getCloudCallList$; diff --git a/node_modules/dingtalk-jsapi/api/union/getCloudCallList.js b/node_modules/dingtalk-jsapi/api/union/getCloudCallList.js deleted file mode 100644 index 2dcc362c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getCloudCallList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCloudCallList$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCloudCallList$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getCloudCallList",actualCallApiName="biz.conference.getCloudCallList";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.9"},_a)),exports.getCloudCallList$=getCloudCallList$,exports.default=getCloudCallList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getCurrentCorpId.d.ts b/node_modules/dingtalk-jsapi/api/union/getCurrentCorpId.d.ts deleted file mode 100644 index 7979d671..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getCurrentCorpId.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取当前组织的corpid 请求参数定义 - * @apiName getCurrentCorpId - */ -export interface IUnionGetCurrentCorpIdParams extends ICommonAPIParams { -} -/** - * 获取当前组织的corpid 返回结果定义 - * @apiName getCurrentCorpId - */ -export interface IUnionGetCurrentCorpIdResult { - corpId: string; -} -/** - * 获取当前组织的corpid - * @apiName getCurrentCorpId - */ -export declare function getCurrentCorpId$(params: IUnionGetCurrentCorpIdParams): Promise; -export default getCurrentCorpId$; diff --git a/node_modules/dingtalk-jsapi/api/union/getCurrentCorpId.js b/node_modules/dingtalk-jsapi/api/union/getCurrentCorpId.js deleted file mode 100644 index 5fe42f1a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getCurrentCorpId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentCorpId$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentCorpId$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getCurrentCorpId",actualCallApiName="biz.minutes.getCurrentCorpId";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.8.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.8.0"},_a)),exports.getCurrentCorpId$=getCurrentCorpId$,exports.default=getCurrentCorpId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getDeviceId.d.ts b/node_modules/dingtalk-jsapi/api/union/getDeviceId.d.ts deleted file mode 100644 index 20d9e50d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getDeviceId.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取设备id 请求参数定义 - * @apiName getDeviceId - */ -export interface IUnionGetDeviceIdParams extends ICommonAPIParams { -} -/** - * 获取设备id 返回结果定义 - * @apiName getDeviceId - */ -export interface IUnionGetDeviceIdResult { - oaid: string; - android_id: string; -} -/** - * 获取设备id - * @apiName getDeviceId - */ -export declare function getDeviceId$(params: IUnionGetDeviceIdParams): Promise; -export default getDeviceId$; diff --git a/node_modules/dingtalk-jsapi/api/union/getDeviceId.js b/node_modules/dingtalk-jsapi/api/union/getDeviceId.js deleted file mode 100644 index f3eae6ab..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getDeviceId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDeviceId$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDeviceId$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getDeviceId",actualCallApiName="device.base.getDeviceId";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.30"},_a)),exports.getDeviceId$=getDeviceId$,exports.default=getDeviceId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getDeviceUUID.d.ts b/node_modules/dingtalk-jsapi/api/union/getDeviceUUID.d.ts deleted file mode 100644 index 6209b7a2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getDeviceUUID.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取uuid 请求参数定义 - * @apiName getDeviceUUID - */ -export interface IUnionGetDeviceUUIDParams extends ICommonAPIParams { -} -/** - * 获取uuid 返回结果定义 - * @apiName getDeviceUUID - */ -export interface IUnionGetDeviceUUIDResult { - uuid: string; -} -/** - * 获取uuid - * @apiName getDeviceUUID - */ -export declare function getDeviceUUID$(params: IUnionGetDeviceUUIDParams): Promise; -export default getDeviceUUID$; diff --git a/node_modules/dingtalk-jsapi/api/union/getDeviceUUID.js b/node_modules/dingtalk-jsapi/api/union/getDeviceUUID.js deleted file mode 100644 index e9c72da1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getDeviceUUID.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDeviceUUID$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDeviceUUID$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getDeviceUUID",actualCallApiName="device.base.getUUID";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.getDeviceUUID$=getDeviceUUID$,exports.default=getDeviceUUID$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getDingerDeviceStatus.d.ts b/node_modules/dingtalk-jsapi/api/union/getDingerDeviceStatus.d.ts deleted file mode 100644 index 32a9bb04..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getDingerDeviceStatus.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 查询 DingTalk A1 设备状态 请求参数定义 - * @apiName getDingerDeviceStatus - */ -export interface IUnionGetDingerDeviceStatusParams extends ICommonAPIParams { - deviceId: string; -} -/** - * 查询 DingTalk A1 设备状态 返回结果定义 - * @apiName getDingerDeviceStatus - */ -export interface IUnionGetDingerDeviceStatusResult { - sn: string; - fid: string; - bleName: string; - version: string; - deviceId: string; - duration: number; - accountId: string; - bleStatus: boolean; - deviceName: string; - accountType: number; - audio_status: string; - device_status: number; - storage_remain: string; - battery_percent: number; - occupyOperation: string; - storage_total_size: string; -} -/** - * 查询 DingTalk A1 设备状态 - * @apiName getDingerDeviceStatus - */ -export declare function getDingerDeviceStatus$(params: IUnionGetDingerDeviceStatusParams): Promise; -export default getDingerDeviceStatus$; diff --git a/node_modules/dingtalk-jsapi/api/union/getDingerDeviceStatus.js b/node_modules/dingtalk-jsapi/api/union/getDingerDeviceStatus.js deleted file mode 100644 index 0d4992c4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getDingerDeviceStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDingerDeviceStatus$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDingerDeviceStatus$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getDingerDeviceStatus",actualCallApiName="biz.dinger.getDingerDeviceStatus";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"8.0.28"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.2.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"8.2.15"},_a)),exports.getDingerDeviceStatus$=getDingerDeviceStatus$,exports.default=getDingerDeviceStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getImageInfo.d.ts b/node_modules/dingtalk-jsapi/api/union/getImageInfo.d.ts deleted file mode 100644 index 07264130..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getImageInfo.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取图片信息 请求参数定义 - * @apiName getImageInfo - */ -export interface IUnionGetImageInfoParams extends ICommonAPIParams { - src: string; -} -/** - * 获取图片信息 返回结果定义 - * @apiName getImageInfo - */ -export interface IUnionGetImageInfoResult { - path: string; - width: number; - height: number; -} -/** - * 获取图片信息 - * @apiName getImageInfo - */ -export declare function getImageInfo$(params: IUnionGetImageInfoParams): Promise; -export default getImageInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getImageInfo.js b/node_modules/dingtalk-jsapi/api/union/getImageInfo.js deleted file mode 100644 index 0fc16ff0..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getImageInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getImageInfo$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getImageInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getImageInfo",actualCallApiName="biz.util.getImageInfo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.2"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.2"},_a)),exports.getImageInfo$=getImageInfo$,exports.default=getImageInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getLocatingStatus.d.ts b/node_modules/dingtalk-jsapi/api/union/getLocatingStatus.d.ts deleted file mode 100644 index dcbccfd2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getLocatingStatus.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 批量连续定位状态 请求参数定义 - * @apiName getLocatingStatus - */ -export interface IUnionGetLocatingStatusParams extends ICommonAPIParams { - sceneId: string[]; -} -/** - * 批量连续定位状态 返回结果定义 - * @apiName getLocatingStatus - */ -export interface IUnionGetLocatingStatusResult { - res: string[]; -} -/** - * 批量连续定位状态 - * @apiName getLocatingStatus - */ -export declare function getLocatingStatus$(params: IUnionGetLocatingStatusParams): Promise; -export default getLocatingStatus$; diff --git a/node_modules/dingtalk-jsapi/api/union/getLocatingStatus.js b/node_modules/dingtalk-jsapi/api/union/getLocatingStatus.js deleted file mode 100644 index a45930a7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getLocatingStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLocatingStatus$(t){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,t)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLocatingStatus$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getLocatingStatus",actualCallApiName="device.geolocation.status";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.getLocatingStatus$=getLocatingStatus$,exports.default=getLocatingStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getLocation.d.ts b/node_modules/dingtalk-jsapi/api/union/getLocation.d.ts deleted file mode 100644 index e7cfde0e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getLocation.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取用户当前的地理位置信息 请求参数定义 - * @apiName getLocation - */ -export interface IUnionGetLocationParams extends ICommonAPIParams { - type: number; - useCache: boolean; - coordinate: string; - cacheTimeout: number; - withReGeocode: boolean; - targetAccuracy: string; -} -/** - * 获取用户当前的地理位置信息 返回结果定义 - * @apiName getLocation - */ -export interface IUnionGetLocationResult { - city: string; - address: string; - accuracy: string; - latitude: string; - province: string; - longitude: string; -} -/** - * 获取用户当前的地理位置信息 - * @apiName getLocation - */ -export declare function getLocation$(params: IUnionGetLocationParams): Promise; -export default getLocation$; diff --git a/node_modules/dingtalk-jsapi/api/union/getLocation.js b/node_modules/dingtalk-jsapi/api/union/getLocation.js deleted file mode 100644 index c91fe6a1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getLocation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLocation$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLocation$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getLocation",actualCallApiName="device.geolocation.get";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.getLocation$=getLocation$,exports.default=getLocation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getNetworkType.d.ts b/node_modules/dingtalk-jsapi/api/union/getNetworkType.d.ts deleted file mode 100644 index b85fe0f7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getNetworkType.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取当前网络状态 请求参数定义 - * @apiName getNetworkType - */ -export interface IUnionGetNetworkTypeParams extends ICommonAPIParams { -} -/** - * 获取当前网络状态 返回结果定义 - * @apiName getNetworkType - */ -export interface IUnionGetNetworkTypeResult { - networkType: string; - networkAvailable: boolean; -} -/** - * 获取当前网络状态 - * @apiName getNetworkType - */ -export declare function getNetworkType$(params: IUnionGetNetworkTypeParams): Promise; -export default getNetworkType$; diff --git a/node_modules/dingtalk-jsapi/api/union/getNetworkType.js b/node_modules/dingtalk-jsapi/api/union/getNetworkType.js deleted file mode 100644 index 91fc45cd..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getNetworkType.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getNetworkType$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getNetworkType$=void 0;var apiHelper_1=require("./../../lib/apiHelper"),ddSdk_1=require("../../lib/ddSdk"),apiName="getNetworkType",actualCallApiName="device.connection.getNetworkType";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",resultDeal:apiHelper_1.getNetWorkTypeResultDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",resultDeal:apiHelper_1.getNetWorkTypeResultDeal},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.5.60",resultDeal:function(e){return"none"!==e.result&&"unknown"!==e.result?{netWorkAvailable:!0}:{netWorkAvailable:!1}}},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",resultDeal:apiHelper_1.getNetWorkTypeResultDeal},_a)),exports.getNetworkType$=getNetworkType$,exports.default=getNetworkType$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getOperateAuthCode.d.ts b/node_modules/dingtalk-jsapi/api/union/getOperateAuthCode.d.ts deleted file mode 100644 index a16bc68c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getOperateAuthCode.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取微应用反馈式操作的临时授权码 请求参数定义 - * @apiName getOperateAuthCode - */ -export interface IUnionGetOperateAuthCodeParams extends ICommonAPIParams { - corpId: string; - agentId: string; -} -/** - * 获取微应用反馈式操作的临时授权码 返回结果定义 - * @apiName getOperateAuthCode - */ -export interface IUnionGetOperateAuthCodeResult { - code: string; -} -/** - * 获取微应用反馈式操作的临时授权码 - * @apiName getOperateAuthCode - */ -export declare function getOperateAuthCode$(params: IUnionGetOperateAuthCodeParams): Promise; -export default getOperateAuthCode$; diff --git a/node_modules/dingtalk-jsapi/api/union/getOperateAuthCode.js b/node_modules/dingtalk-jsapi/api/union/getOperateAuthCode.js deleted file mode 100644 index 7779f679..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getOperateAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getOperateAuthCode$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getOperateAuthCode$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getOperateAuthCode",actualCallApiName="runtime.permission.requestOperateAuthCode",paramsDeal=function(e){return Object.assign(e,{url:location.href.split("#")[0]})};ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0",paramsDeal:paramsDeal},_a)),exports.getOperateAuthCode$=getOperateAuthCode$,exports.default=getOperateAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getPageTerminateInfo.d.ts b/node_modules/dingtalk-jsapi/api/union/getPageTerminateInfo.d.ts deleted file mode 100644 index 4a8537d9..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getPageTerminateInfo.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取WebView崩溃信息 请求参数定义 - * @apiName getPageTerminateInfo - */ -export interface IUnionGetPageTerminateInfoParams extends ICommonAPIParams { -} -/** - * 获取WebView崩溃信息 返回结果定义 - * @apiName getPageTerminateInfo - */ -export interface IUnionGetPageTerminateInfoResult { - terminateTimes: number; -} -/** - * 获取WebView崩溃信息 - * @apiName getPageTerminateInfo - */ -export declare function getPageTerminateInfo$(params: IUnionGetPageTerminateInfoParams): Promise; -export default getPageTerminateInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getPageTerminateInfo.js b/node_modules/dingtalk-jsapi/api/union/getPageTerminateInfo.js deleted file mode 100644 index 9acda034..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getPageTerminateInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPageTerminateInfo$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPageTerminateInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getPageTerminateInfo",actualCallApiName="biz.util.getPageTerminateInfo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.0.15"},_a)),exports.getPageTerminateInfo$=getPageTerminateInfo$,exports.default=getPageTerminateInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getPersonalWorkInfo.d.ts b/node_modules/dingtalk-jsapi/api/union/getPersonalWorkInfo.d.ts deleted file mode 100644 index f1ae509b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getPersonalWorkInfo.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取个人的工作方面信息 请求参数定义 - * @apiName getPersonalWorkInfo - */ -export interface IUnionGetPersonalWorkInfoParams extends ICommonAPIParams { - corpId: string; - allowNoOrgUser: boolean; -} -/** - * 获取个人的工作方面信息 返回结果定义 - * @apiName getPersonalWorkInfo - */ -export interface IUnionGetPersonalWorkInfoResult { - id: string; - nick: string; - avatar: string; - emplId: string; - isAuth: boolean; - corpId: string; - nickName: string; - isManager: boolean; - orgUserName: string; - rightLevel: number; -} -/** - * 获取个人的工作方面信息 - * @apiName getPersonalWorkInfo - */ -export declare function getPersonalWorkInfo$(params: IUnionGetPersonalWorkInfoParams): Promise; -export default getPersonalWorkInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getPersonalWorkInfo.js b/node_modules/dingtalk-jsapi/api/union/getPersonalWorkInfo.js deleted file mode 100644 index 18b6eadc..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getPersonalWorkInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPersonalWorkInfo$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPersonalWorkInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getPersonalWorkInfo",actualCallApiName="biz.user.get";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.2.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"8.2.15"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"8.2.15"},_a)),exports.getPersonalWorkInfo$=getPersonalWorkInfo$,exports.default=getPersonalWorkInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getScreenBrightness.d.ts b/node_modules/dingtalk-jsapi/api/union/getScreenBrightness.d.ts deleted file mode 100644 index 0f578a52..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getScreenBrightness.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取屏幕亮度 请求参数定义 - * @apiName getScreenBrightness - */ -export interface IUnionGetScreenBrightnessParams extends ICommonAPIParams { -} -/** - * 获取屏幕亮度 返回结果定义 - * @apiName getScreenBrightness - */ -export interface IUnionGetScreenBrightnessResult { - brightness: number; -} -/** - * 获取屏幕亮度 - * @apiName getScreenBrightness - */ -export declare function getScreenBrightness$(params: IUnionGetScreenBrightnessParams): Promise; -export default getScreenBrightness$; diff --git a/node_modules/dingtalk-jsapi/api/union/getScreenBrightness.js b/node_modules/dingtalk-jsapi/api/union/getScreenBrightness.js deleted file mode 100644 index 5ad277b1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getScreenBrightness.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getScreenBrightness$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getScreenBrightness$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getScreenBrightness",actualCallApiName="device.screen.getScreenBrightness";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.getScreenBrightness$=getScreenBrightness$,exports.default=getScreenBrightness$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getStorage.d.ts b/node_modules/dingtalk-jsapi/api/union/getStorage.d.ts deleted file mode 100644 index dfb807de..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getStorage.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 异步获取指定key的缓存数据 请求参数定义 - * @apiName getStorage - */ -export interface IUnionGetStorageParams extends ICommonAPIParams { - key: string; -} -/** - * 异步获取指定key的缓存数据 返回结果定义 - * @apiName getStorage - */ -export interface IUnionGetStorageResult { -} -/** - * 异步获取指定key的缓存数据 - * @apiName getStorage - */ -export declare function getStorage$(params: IUnionGetStorageParams): Promise; -export default getStorage$; diff --git a/node_modules/dingtalk-jsapi/api/union/getStorage.js b/node_modules/dingtalk-jsapi/api/union/getStorage.js deleted file mode 100644 index bade361b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getStorage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getStorage$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,t=1,r=arguments.length;t; -export default getSystemInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getSystemInfo.js b/node_modules/dingtalk-jsapi/api/union/getSystemInfo.js deleted file mode 100644 index 3f5bfe90..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getSystemInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getSystemInfo$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getSystemInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getSystemInfo",actualCallApiName="device.base.getPhoneInfo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.getSystemInfo$=getSystemInfo$,exports.default=getSystemInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getSystemSettings.d.ts b/node_modules/dingtalk-jsapi/api/union/getSystemSettings.d.ts deleted file mode 100644 index 057eec81..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getSystemSettings.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 打开系统设置 请求参数定义 - * @apiName getSystemSettings - */ -export interface IUnionGetSystemSettingsParams extends ICommonAPIParams { - data: string; - param: string; - action: string; -} -/** - * 打开系统设置 返回结果定义 - * @apiName getSystemSettings - */ -export interface IUnionGetSystemSettingsResult { -} -/** - * 打开系统设置 - * @apiName getSystemSettings - */ -export declare function getSystemSettings$(params: IUnionGetSystemSettingsParams): Promise; -export default getSystemSettings$; diff --git a/node_modules/dingtalk-jsapi/api/union/getSystemSettings.js b/node_modules/dingtalk-jsapi/api/union/getSystemSettings.js deleted file mode 100644 index a3d58a76..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getSystemSettings.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getSystemSettings$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getSystemSettings$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getSystemSettings",actualCallApiName="device.base.openSystemSetting";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.36"},_a)),exports.getSystemSettings$=getSystemSettings$,exports.default=getSystemSettings$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getThirdAppConfCustomData.d.ts b/node_modules/dingtalk-jsapi/api/union/getThirdAppConfCustomData.d.ts deleted file mode 100644 index 75868efb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getThirdAppConfCustomData.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 会议三方应用获取会议信息 请求参数定义 - * @apiName getThirdAppConfCustomData - */ -export interface IUnionGetThirdAppConfCustomDataParams extends ICommonAPIParams { - thirdAppId: string; - coolAppCode: string; -} -/** - * 会议三方应用获取会议信息 返回结果定义 - * @apiName getThirdAppConfCustomData - */ -export interface IUnionGetThirdAppConfCustomDataResult { - confCustomData: string; -} -/** - * 会议三方应用获取会议信息 - * @apiName getThirdAppConfCustomData - */ -export declare function getThirdAppConfCustomData$(params: IUnionGetThirdAppConfCustomDataParams): Promise; -export default getThirdAppConfCustomData$; diff --git a/node_modules/dingtalk-jsapi/api/union/getThirdAppConfCustomData.js b/node_modules/dingtalk-jsapi/api/union/getThirdAppConfCustomData.js deleted file mode 100644 index 20a8bfca..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getThirdAppConfCustomData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getThirdAppConfCustomData$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getThirdAppConfCustomData$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getThirdAppConfCustomData",actualCallApiName="biz.conference.getThirdAppConfCustomData";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.6.0"},_a)),exports.getThirdAppConfCustomData$=getThirdAppConfCustomData$,exports.default=getThirdAppConfCustomData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getThirdAppUserCustomData.d.ts b/node_modules/dingtalk-jsapi/api/union/getThirdAppUserCustomData.d.ts deleted file mode 100644 index c094f796..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getThirdAppUserCustomData.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 会议三方应用获取用户信息的token 请求参数定义 - * @apiName getThirdAppUserCustomData - */ -export interface IUnionGetThirdAppUserCustomDataParams extends ICommonAPIParams { - thirdAppId: string; - coolAppCode: string; -} -/** - * 会议三方应用获取用户信息的token 返回结果定义 - * @apiName getThirdAppUserCustomData - */ -export interface IUnionGetThirdAppUserCustomDataResult { - userCustomData: string; -} -/** - * 会议三方应用获取用户信息的token - * @apiName getThirdAppUserCustomData - */ -export declare function getThirdAppUserCustomData$(params: IUnionGetThirdAppUserCustomDataParams): Promise; -export default getThirdAppUserCustomData$; diff --git a/node_modules/dingtalk-jsapi/api/union/getThirdAppUserCustomData.js b/node_modules/dingtalk-jsapi/api/union/getThirdAppUserCustomData.js deleted file mode 100644 index 2856d99d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getThirdAppUserCustomData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getThirdAppUserCustomData$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getThirdAppUserCustomData$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getThirdAppUserCustomData",actualCallApiName="biz.conference.getThirdAppUserCustomData";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.6.0"},_a)),exports.getThirdAppUserCustomData$=getThirdAppUserCustomData$,exports.default=getThirdAppUserCustomData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getTodaysStepCount.d.ts b/node_modules/dingtalk-jsapi/api/union/getTodaysStepCount.d.ts deleted file mode 100644 index d58119c2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getTodaysStepCount.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取当天步数 请求参数定义 - * @apiName getTodaysStepCount - */ -export interface IUnionGetTodaysStepCountParams extends ICommonAPIParams { -} -/** - * 获取当天步数 返回结果定义 - * @apiName getTodaysStepCount - */ -export interface IUnionGetTodaysStepCountResult { - stepCount: number; -} -/** - * 获取当天步数 - * @apiName getTodaysStepCount - */ -export declare function getTodaysStepCount$(params: IUnionGetTodaysStepCountParams): Promise; -export default getTodaysStepCount$; diff --git a/node_modules/dingtalk-jsapi/api/union/getTodaysStepCount.js b/node_modules/dingtalk-jsapi/api/union/getTodaysStepCount.js deleted file mode 100644 index 6494592c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getTodaysStepCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTodaysStepCount$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTodaysStepCount$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getTodaysStepCount",actualCallApiName="biz.sports.getTodaysStepCount";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.getTodaysStepCount$=getTodaysStepCount$,exports.default=getTodaysStepCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getTranslateStatus.d.ts b/node_modules/dingtalk-jsapi/api/union/getTranslateStatus.d.ts deleted file mode 100644 index 92a54ea5..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getTranslateStatus.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取翻译状态 请求参数定义 - * @apiName getTranslateStatus - */ -export interface IUnionGetTranslateStatusParams extends ICommonAPIParams { -} -/** - * 获取翻译状态 返回结果定义 - * @apiName getTranslateStatus - */ -export interface IUnionGetTranslateStatusResult { - token: string; - pageId: string; - status: string; - bizName: string; - targetLanguage: string; -} -/** - * 获取翻译状态 - * @apiName getTranslateStatus - */ -export declare function getTranslateStatus$(params: IUnionGetTranslateStatusParams): Promise; -export default getTranslateStatus$; diff --git a/node_modules/dingtalk-jsapi/api/union/getTranslateStatus.js b/node_modules/dingtalk-jsapi/api/union/getTranslateStatus.js deleted file mode 100644 index d3b64fba..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getTranslateStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTranslateStatus$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTranslateStatus$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getTranslateStatus",actualCallApiName="biz.i18n.getTranslateStatus";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.5.35"},_a)),exports.getTranslateStatus$=getTranslateStatus$,exports.default=getTranslateStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getUserExclusiveInfo.d.ts b/node_modules/dingtalk-jsapi/api/union/getUserExclusiveInfo.d.ts deleted file mode 100644 index c572f0a6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getUserExclusiveInfo.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取钉钉客户端是否为专属钉钉 请求参数定义 - * @apiName getUserExclusiveInfo - */ -export interface IUnionGetUserExclusiveInfoParams extends ICommonAPIParams { -} -/** - * 获取钉钉客户端是否为专属钉钉 返回结果定义 - * @apiName getUserExclusiveInfo - */ -export interface IUnionGetUserExclusiveInfoResult { - isExclusiveApp: number; -} -/** - * 获取钉钉客户端是否为专属钉钉 - * @apiName getUserExclusiveInfo - */ -export declare function getUserExclusiveInfo$(params: IUnionGetUserExclusiveInfoParams): Promise; -export default getUserExclusiveInfo$; diff --git a/node_modules/dingtalk-jsapi/api/union/getUserExclusiveInfo.js b/node_modules/dingtalk-jsapi/api/union/getUserExclusiveInfo.js deleted file mode 100644 index dc679cd9..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getUserExclusiveInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getUserExclusiveInfo$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUserExclusiveInfo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getUserExclusiveInfo",actualCallApiName="biz.realm.getUserExclusiveInfo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.15"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.15"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.17"},_a)),exports.getUserExclusiveInfo$=getUserExclusiveInfo$,exports.default=getUserExclusiveInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getWifiHotspotStatus.d.ts b/node_modules/dingtalk-jsapi/api/union/getWifiHotspotStatus.d.ts deleted file mode 100644 index 10d6ea0d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getWifiHotspotStatus.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取热点接入信息 请求参数定义 - * @apiName getWifiHotspotStatus - */ -export interface IUnionGetWifiHotspotStatusParams extends ICommonAPIParams { -} -/** - * 获取热点接入信息 返回结果定义 - * @apiName getWifiHotspotStatus - */ -export interface IUnionGetWifiHotspotStatusResult { - ssid: string; - macIp: string; -} -/** - * 获取热点接入信息 - * @apiName getWifiHotspotStatus - */ -export declare function getWifiHotspotStatus$(params: IUnionGetWifiHotspotStatusParams): Promise; -export default getWifiHotspotStatus$; diff --git a/node_modules/dingtalk-jsapi/api/union/getWifiHotspotStatus.js b/node_modules/dingtalk-jsapi/api/union/getWifiHotspotStatus.js deleted file mode 100644 index 92dc0309..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getWifiHotspotStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getWifiHotspotStatus$(t){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,t)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getWifiHotspotStatus$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getWifiHotspotStatus",actualCallApiName="device.base.getInterface";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"8.1.0"},_a)),exports.getWifiHotspotStatus$=getWifiHotspotStatus$,exports.default=getWifiHotspotStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/getWifiStatus.d.ts b/node_modules/dingtalk-jsapi/api/union/getWifiStatus.d.ts deleted file mode 100644 index 494bfd37..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getWifiStatus.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取wifi状态 请求参数定义 - * @apiName getWifiStatus - */ -export interface IUnionGetWifiStatusParams extends ICommonAPIParams { -} -/** - * 获取wifi状态 返回结果定义 - * @apiName getWifiStatus - */ -export interface IUnionGetWifiStatusResult { - status: number; -} -/** - * 获取wifi状态 - * @apiName getWifiStatus - */ -export declare function getWifiStatus$(params: IUnionGetWifiStatusParams): Promise; -export default getWifiStatus$; diff --git a/node_modules/dingtalk-jsapi/api/union/getWifiStatus.js b/node_modules/dingtalk-jsapi/api/union/getWifiStatus.js deleted file mode 100644 index bb5d4538..00000000 --- a/node_modules/dingtalk-jsapi/api/union/getWifiStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getWifiStatus$(t){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,t)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getWifiStatus$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="getWifiStatus",actualCallApiName="device.base.getWifiStatus";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.getWifiStatus$=getWifiStatus$,exports.default=getWifiStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/goBackPage.d.ts b/node_modules/dingtalk-jsapi/api/union/goBackPage.d.ts deleted file mode 100644 index ecc5bf6e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/goBackPage.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 返回上一级页面 请求参数定义 - * @apiName goBackPage - */ -export interface IUnionGoBackPageParams extends ICommonAPIParams { -} -/** - * 返回上一级页面 返回结果定义 - * @apiName goBackPage - */ -export interface IUnionGoBackPageResult { -} -/** - * 返回上一级页面 - * @apiName goBackPage - */ -export declare function goBackPage$(params: IUnionGoBackPageParams): Promise; -export default goBackPage$; diff --git a/node_modules/dingtalk-jsapi/api/union/goBackPage.js b/node_modules/dingtalk-jsapi/api/union/goBackPage.js deleted file mode 100644 index da2953f2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/goBackPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function goBackPage$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.goBackPage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="goBackPage",actualCallApiName="biz.navigation.goBack";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.goBackPage$=goBackPage$,exports.default=goBackPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/hideLoading.d.ts b/node_modules/dingtalk-jsapi/api/union/hideLoading.d.ts deleted file mode 100644 index 63886613..00000000 --- a/node_modules/dingtalk-jsapi/api/union/hideLoading.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 隐藏加载提示 请求参数定义 - * @apiName hideLoading - */ -export interface IUnionHideLoadingParams extends ICommonAPIParams { -} -/** - * 隐藏加载提示 返回结果定义 - * @apiName hideLoading - */ -export interface IUnionHideLoadingResult { -} -/** - * 隐藏加载提示 - * @apiName hideLoading - */ -export declare function hideLoading$(params: IUnionHideLoadingParams): Promise; -export default hideLoading$; diff --git a/node_modules/dingtalk-jsapi/api/union/hideLoading.js b/node_modules/dingtalk-jsapi/api/union/hideLoading.js deleted file mode 100644 index 111e689a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/hideLoading.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hideLoading$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.hideLoading$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="hideLoading",actualCallApiName="device.notification.hidePreloader";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.10"},_a)),exports.hideLoading$=hideLoading$,exports.default=hideLoading$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/hideToast.d.ts b/node_modules/dingtalk-jsapi/api/union/hideToast.d.ts deleted file mode 100644 index c07888ee..00000000 --- a/node_modules/dingtalk-jsapi/api/union/hideToast.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 隐藏弱提示 请求参数定义 - * @apiName hideToast - */ -export interface IUnionHideToastParams extends ICommonAPIParams { -} -/** - * 隐藏弱提示 返回结果定义 - * @apiName hideToast - */ -export interface IUnionHideToastResult { -} -/** - * 隐藏弱提示 - * @apiName hideToast - */ -export declare function hideToast$(params: IUnionHideToastParams): Promise; -export default hideToast$; diff --git a/node_modules/dingtalk-jsapi/api/union/hideToast.js b/node_modules/dingtalk-jsapi/api/union/hideToast.js deleted file mode 100644 index da352208..00000000 --- a/node_modules/dingtalk-jsapi/api/union/hideToast.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hideToast$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.hideToast$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="hideToast",actualCallApiName="device.notification.hideToast";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.10"},_a)),exports.hideToast$=hideToast$,exports.default=hideToast$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/isInTabWindow.d.ts b/node_modules/dingtalk-jsapi/api/union/isInTabWindow.d.ts deleted file mode 100644 index 85eb8c1d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/isInTabWindow.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 判断是否为弹窗窗口 请求参数定义 - * @apiName isInTabWindow - */ -export interface IUnionIsInTabWindowParams extends ICommonAPIParams { -} -/** - * 判断是否为弹窗窗口 返回结果定义 - * @apiName isInTabWindow - */ -export interface IUnionIsInTabWindowResult { - result: boolean; -} -/** - * 判断是否为弹窗窗口 - * @apiName isInTabWindow - */ -export declare function isInTabWindow$(params: IUnionIsInTabWindowParams): Promise; -export default isInTabWindow$; diff --git a/node_modules/dingtalk-jsapi/api/union/isInTabWindow.js b/node_modules/dingtalk-jsapi/api/union/isInTabWindow.js deleted file mode 100644 index 215f1663..00000000 --- a/node_modules/dingtalk-jsapi/api/union/isInTabWindow.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isInTabWindow$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.isInTabWindow$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="isInTabWindow",actualCallApiName="biz.tabwindow.isTab";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.5.10"},_a)),exports.isInTabWindow$=isInTabWindow$,exports.default=isInTabWindow$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/isLocalFileExist.d.ts b/node_modules/dingtalk-jsapi/api/union/isLocalFileExist.d.ts deleted file mode 100644 index 7d7b16bb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/isLocalFileExist.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 批量检测本地文件是否存在 请求参数定义 - * @apiName isLocalFileExist - */ -export interface IUnionIsLocalFileExistParams extends ICommonAPIParams { - url: string; -} -/** - * 批量检测本地文件是否存在 返回结果定义 - * @apiName isLocalFileExist - */ -export interface IUnionIsLocalFileExistResult { -} -/** - * 批量检测本地文件是否存在 - * @apiName isLocalFileExist - */ -export declare function isLocalFileExist$(params: IUnionIsLocalFileExistParams): Promise; -export default isLocalFileExist$; diff --git a/node_modules/dingtalk-jsapi/api/union/isLocalFileExist.js b/node_modules/dingtalk-jsapi/api/union/isLocalFileExist.js deleted file mode 100644 index e2d0468c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/isLocalFileExist.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isLocalFileExist$(i){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,i)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.isLocalFileExist$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="isLocalFileExist",actualCallApiName="biz.util.isLocalFileExist";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.isLocalFileExist$=isLocalFileExist$,exports.default=isLocalFileExist$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/isScreenReaderEnabled.d.ts b/node_modules/dingtalk-jsapi/api/union/isScreenReaderEnabled.d.ts deleted file mode 100644 index f599ee8a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/isScreenReaderEnabled.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 是否开启无障碍模式 请求参数定义 - * @apiName isScreenReaderEnabled - */ -export interface IUnionIsScreenReaderEnabledParams extends ICommonAPIParams { -} -/** - * 是否开启无障碍模式 返回结果定义 - * @apiName isScreenReaderEnabled - */ -export interface IUnionIsScreenReaderEnabledResult { - screenReaderEnabled: boolean; -} -/** - * 是否开启无障碍模式 - * @apiName isScreenReaderEnabled - */ -export declare function isScreenReaderEnabled$(params: IUnionIsScreenReaderEnabledParams): Promise; -export default isScreenReaderEnabled$; diff --git a/node_modules/dingtalk-jsapi/api/union/isScreenReaderEnabled.js b/node_modules/dingtalk-jsapi/api/union/isScreenReaderEnabled.js deleted file mode 100644 index c98fefd7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/isScreenReaderEnabled.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isScreenReaderEnabled$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.isScreenReaderEnabled$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="isScreenReaderEnabled",actualCallApiName="device.screen.isScreenReaderEnabled";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.60"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.60"},_a)),exports.isScreenReaderEnabled$=isScreenReaderEnabled$,exports.default=isScreenReaderEnabled$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/locateInMap.d.ts b/node_modules/dingtalk-jsapi/api/union/locateInMap.d.ts deleted file mode 100644 index a1714874..00000000 --- a/node_modules/dingtalk-jsapi/api/union/locateInMap.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 地图定位 请求参数定义 - * @apiName locateInMap - */ -export interface IUnionLocateInMapParams extends ICommonAPIParams { - scope: number; - latitude?: number; - longitude?: number; -} -/** - * 地图定位 返回结果定义 - * @apiName locateInMap - */ -export interface IUnionLocateInMapResult { - city: string; - title: string; - adCode: string; - adName: string; - snippet: string; - cityCode: string; - distance: string; - latitude: number; - postCode: string; - province: string; - longitude: string; - provinceCode: string; -} -/** - * 地图定位 - * @apiName locateInMap - */ -export declare function locateInMap$(params: IUnionLocateInMapParams): Promise; -export default locateInMap$; diff --git a/node_modules/dingtalk-jsapi/api/union/locateInMap.js b/node_modules/dingtalk-jsapi/api/union/locateInMap.js deleted file mode 100644 index 0fc8cf5e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/locateInMap.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function locateInMap$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.locateInMap$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="locateInMap",actualCallApiName="biz.map.locate";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.locateInMap$=locateInMap$,exports.default=locateInMap$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/makeCloudCall.d.ts b/node_modules/dingtalk-jsapi/api/union/makeCloudCall.d.ts deleted file mode 100644 index bb401cb4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/makeCloudCall.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 发起办公电话呼叫 请求参数定义 - * @apiName makeCloudCall - */ -export interface IUnionMakeCloudCallParams extends ICommonAPIParams { - corpId: string; - bizNumber: string; - calleeNumber: string; - openCallRecord?: boolean; - hideCalleeNumber?: boolean; - closePushCallRecord?: boolean; -} -/** - * 发起办公电话呼叫 返回结果定义 - * @apiName makeCloudCall - */ -export interface IUnionMakeCloudCallResult { - code: number; - cause: string; - sessionId: string; -} -/** - * 发起办公电话呼叫 - * @apiName makeCloudCall - */ -export declare function makeCloudCall$(params: IUnionMakeCloudCallParams): Promise; -export default makeCloudCall$; diff --git a/node_modules/dingtalk-jsapi/api/union/makeCloudCall.js b/node_modules/dingtalk-jsapi/api/union/makeCloudCall.js deleted file mode 100644 index 5a617cda..00000000 --- a/node_modules/dingtalk-jsapi/api/union/makeCloudCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function makeCloudCall$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.makeCloudCall$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="makeCloudCall",actualCallApiName="biz.conference.createCloudCall";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.9"},_a)),exports.makeCloudCall$=makeCloudCall$,exports.default=makeCloudCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/makeVideoConfCall.d.ts b/node_modules/dingtalk-jsapi/api/union/makeVideoConfCall.d.ts deleted file mode 100644 index 6fc9e4d2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/makeVideoConfCall.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 发起视频会议 请求参数定义 - * @apiName makeVideoConfCall - */ -export interface IUnionMakeVideoConfCallParams extends ICommonAPIParams { - title: string; - calleeCorpId: string; - calleeStaffIds: string[]; -} -/** - * 发起视频会议 返回结果定义 - * @apiName makeVideoConfCall - */ -export interface IUnionMakeVideoConfCallResult { -} -/** - * 发起视频会议 - * @apiName makeVideoConfCall - */ -export declare function makeVideoConfCall$(params: IUnionMakeVideoConfCallParams): Promise; -export default makeVideoConfCall$; diff --git a/node_modules/dingtalk-jsapi/api/union/makeVideoConfCall.js b/node_modules/dingtalk-jsapi/api/union/makeVideoConfCall.js deleted file mode 100644 index 499c614e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/makeVideoConfCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function makeVideoConfCall$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.makeVideoConfCall$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="makeVideoConfCall",actualCallApiName="biz.conference.videoConfCall";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.makeVideoConfCall$=makeVideoConfCall$,exports.default=makeVideoConfCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/minutesCreateFromVideo.d.ts b/node_modules/dingtalk-jsapi/api/union/minutesCreateFromVideo.d.ts deleted file mode 100644 index 20db0be7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/minutesCreateFromVideo.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 视频转闪记 请求参数定义 - * @apiName minutesCreateFromVideo - */ -export interface IUnionMinutesCreateFromVideoParams extends ICommonAPIParams { - title: string; - videoId: string; - pushMinutesCard: boolean; -} -/** - * 视频转闪记 返回结果定义 - * @apiName minutesCreateFromVideo - */ -export interface IUnionMinutesCreateFromVideoResult { - uuid: string; -} -/** - * 视频转闪记 - * @apiName minutesCreateFromVideo - */ -export declare function minutesCreateFromVideo$(params: IUnionMinutesCreateFromVideoParams): Promise; -export default minutesCreateFromVideo$; diff --git a/node_modules/dingtalk-jsapi/api/union/minutesCreateFromVideo.js b/node_modules/dingtalk-jsapi/api/union/minutesCreateFromVideo.js deleted file mode 100644 index affbe58d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/minutesCreateFromVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function minutesCreateFromVideo$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.minutesCreateFromVideo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="minutesCreateFromVideo",actualCallApiName="biz.minutes.createFromVideo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.6.40"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.40"},_a)),exports.minutesCreateFromVideo$=minutesCreateFromVideo$,exports.default=minutesCreateFromVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/minutesStart.d.ts b/node_modules/dingtalk-jsapi/api/union/minutesStart.d.ts deleted file mode 100644 index 9146e203..00000000 --- a/node_modules/dingtalk-jsapi/api/union/minutesStart.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 创建实时音频闪记 请求参数定义 - * @apiName minutesStart - */ -export interface IUnionMinutesStartParams extends ICommonAPIParams { - scene: string; -} -/** - * 创建实时音频闪记 返回结果定义 - * @apiName minutesStart - */ -export interface IUnionMinutesStartResult { - uuid: string; -} -/** - * 创建实时音频闪记 - * @apiName minutesStart - */ -export declare function minutesStart$(params: IUnionMinutesStartParams): Promise; -export default minutesStart$; diff --git a/node_modules/dingtalk-jsapi/api/union/minutesStart.js b/node_modules/dingtalk-jsapi/api/union/minutesStart.js deleted file mode 100644 index 4df7800e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/minutesStart.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function minutesStart$(t){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,t)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.minutesStart$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="minutesStart",actualCallApiName="biz.minutes.startMinutes";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.6.40"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.40"},_a)),exports.minutesStart$=minutesStart$,exports.default=minutesStart$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/minutesUploadVideo.d.ts b/node_modules/dingtalk-jsapi/api/union/minutesUploadVideo.d.ts deleted file mode 100644 index 29fb8c8a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/minutesUploadVideo.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 上传闪记视频 请求参数定义 - * @apiName minutesUploadVideo - */ -export interface IUnionMinutesUploadVideoParams extends ICommonAPIParams { - type: string; - scene: string; - title: string; - compress: boolean; - maxDuration: number; - needProgress?: boolean; - compressLevel?: number; -} -/** - * 上传闪记视频 返回结果定义 - * @apiName minutesUploadVideo - */ -export interface IUnionMinutesUploadVideoResult { - videoId: string; - progress: number; -} -/** - * 上传闪记视频 - * @apiName minutesUploadVideo - */ -export declare function minutesUploadVideo$(params: IUnionMinutesUploadVideoParams): Promise; -export default minutesUploadVideo$; diff --git a/node_modules/dingtalk-jsapi/api/union/minutesUploadVideo.js b/node_modules/dingtalk-jsapi/api/union/minutesUploadVideo.js deleted file mode 100644 index 1375929d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/minutesUploadVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function minutesUploadVideo$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.minutesUploadVideo$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="minutesUploadVideo",actualCallApiName="biz.minutes.uploadVideo";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"8.0.24"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.6.40"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.40"},_a)),exports.minutesUploadVideo$=minutesUploadVideo$,exports.default=minutesUploadVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/minutesViewDetail.d.ts b/node_modules/dingtalk-jsapi/api/union/minutesViewDetail.d.ts deleted file mode 100644 index f0f0af22..00000000 --- a/node_modules/dingtalk-jsapi/api/union/minutesViewDetail.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 跳转到闪记的详情页面 请求参数定义 - * @apiName minutesViewDetail - */ -export interface IUnionMinutesViewDetailParams extends ICommonAPIParams { - uuid: string; -} -/** - * 跳转到闪记的详情页面 返回结果定义 - * @apiName minutesViewDetail - */ -export interface IUnionMinutesViewDetailResult { -} -/** - * 跳转到闪记的详情页面 - * @apiName minutesViewDetail - */ -export declare function minutesViewDetail$(params: IUnionMinutesViewDetailParams): Promise; -export default minutesViewDetail$; diff --git a/node_modules/dingtalk-jsapi/api/union/minutesViewDetail.js b/node_modules/dingtalk-jsapi/api/union/minutesViewDetail.js deleted file mode 100644 index 893a219c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/minutesViewDetail.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function minutesViewDetail$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.minutesViewDetail$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="minutesViewDetail",actualCallApiName="biz.minutes.viewDetail";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.6.40"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.40"},_a)),exports.minutesViewDetail$=minutesViewDetail$,exports.default=minutesViewDetail$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/multiSelect.d.ts b/node_modules/dingtalk-jsapi/api/union/multiSelect.d.ts deleted file mode 100644 index 7e5258dd..00000000 --- a/node_modules/dingtalk-jsapi/api/union/multiSelect.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 多选组件 请求参数定义 - * @apiName multiSelect - */ -export interface IUnionMultiSelectParams extends ICommonAPIParams { - options: string[]; - selectOption?: string[]; -} -/** - * 多选组件 返回结果定义 - * @apiName multiSelect - */ -export interface IUnionMultiSelectResult { -} -/** - * 多选组件 - * @apiName multiSelect - */ -export declare function multiSelect$(params: IUnionMultiSelectParams): Promise; -export default multiSelect$; diff --git a/node_modules/dingtalk-jsapi/api/union/multiSelect.js b/node_modules/dingtalk-jsapi/api/union/multiSelect.js deleted file mode 100644 index c0292677..00000000 --- a/node_modules/dingtalk-jsapi/api/union/multiSelect.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function multiSelect$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.multiSelect$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="multiSelect",actualCallApiName="biz.util.multiSelect";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.multiSelect$=multiSelect$,exports.default=multiSelect$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/navigateBackPage.d.ts b/node_modules/dingtalk-jsapi/api/union/navigateBackPage.d.ts deleted file mode 100644 index 22e0a1ac..00000000 --- a/node_modules/dingtalk-jsapi/api/union/navigateBackPage.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 返回上一个应用 请求参数定义 - * @apiName navigateBackPage - */ -export interface IUnionNavigateBackPageParams extends ICommonAPIParams { - extraData: {}; -} -/** - * 返回上一个应用 返回结果定义 - * @apiName navigateBackPage - */ -export interface IUnionNavigateBackPageResult { -} -/** - * 返回上一个应用 - * @apiName navigateBackPage - */ -export declare function navigateBackPage$(params: IUnionNavigateBackPageParams): Promise; -export default navigateBackPage$; diff --git a/node_modules/dingtalk-jsapi/api/union/navigateBackPage.js b/node_modules/dingtalk-jsapi/api/union/navigateBackPage.js deleted file mode 100644 index d367b528..00000000 --- a/node_modules/dingtalk-jsapi/api/union/navigateBackPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function navigateBackPage$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.navigateBackPage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="navigateBackPage",actualCallApiName="biz.navigation.navigateBackPage";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.45"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.45"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.navigateBackPage$=navigateBackPage$,exports.default=navigateBackPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/navigateToPage.d.ts b/node_modules/dingtalk-jsapi/api/union/navigateToPage.d.ts deleted file mode 100644 index 1c12c994..00000000 --- a/node_modules/dingtalk-jsapi/api/union/navigateToPage.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 跳转H5微应用 请求参数定义 - * @apiName navigateToPage - */ -export interface IUnionNavigateToPageParams extends ICommonAPIParams { - url: string; -} -/** - * 跳转H5微应用 返回结果定义 - * @apiName navigateToPage - */ -export interface IUnionNavigateToPageResult { -} -/** - * 跳转H5微应用 - * @apiName navigateToPage - */ -export declare function navigateToPage$(params: IUnionNavigateToPageParams): Promise; -export default navigateToPage$; diff --git a/node_modules/dingtalk-jsapi/api/union/navigateToPage.js b/node_modules/dingtalk-jsapi/api/union/navigateToPage.js deleted file mode 100644 index ab10ac6a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/navigateToPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function navigateToPage$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.navigateToPage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="navigateToPage",actualCallApiName="biz.navigation.navigateToPage";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.45"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.45"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.0"},_a)),exports.navigateToPage$=navigateToPage$,exports.default=navigateToPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/nfcReadCardNumber.d.ts b/node_modules/dingtalk-jsapi/api/union/nfcReadCardNumber.d.ts deleted file mode 100644 index fdb81304..00000000 --- a/node_modules/dingtalk-jsapi/api/union/nfcReadCardNumber.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 读取NFC芯片物理id 请求参数定义 - * @apiName nfcReadCardNumber - */ -export interface IUnionNfcReadCardNumberParams extends ICommonAPIParams { -} -/** - * 读取NFC芯片物理id 返回结果定义 - * @apiName nfcReadCardNumber - */ -export interface IUnionNfcReadCardNumberResult { - content: string; -} -/** - * 读取NFC芯片物理id - * @apiName nfcReadCardNumber - */ -export declare function nfcReadCardNumber$(params: IUnionNfcReadCardNumberParams): Promise; -export default nfcReadCardNumber$; diff --git a/node_modules/dingtalk-jsapi/api/union/nfcReadCardNumber.js b/node_modules/dingtalk-jsapi/api/union/nfcReadCardNumber.js deleted file mode 100644 index 961063eb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/nfcReadCardNumber.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nfcReadCardNumber$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.nfcReadCardNumber$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="nfcReadCardNumber",actualCallApiName="device.nfc.nfcReadCardNumber";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.60"},_a)),exports.nfcReadCardNumber$=nfcReadCardNumber$,exports.default=nfcReadCardNumber$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/notifyBLECharacteristicValueChange.d.ts b/node_modules/dingtalk-jsapi/api/union/notifyBLECharacteristicValueChange.d.ts deleted file mode 100644 index e35e37b2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/notifyBLECharacteristicValueChange.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 设置读特征通知模式 请求参数定义 - * @apiName notifyBLECharacteristicValueChange - */ -export interface IUnionNotifyBLECharacteristicValueChangeParams extends ICommonAPIParams { - state?: boolean; - deviceId: string; - serviceId: string; - descriptorId?: string; - characteristicId: string; -} -/** - * 设置读特征通知模式 返回结果定义 - * @apiName notifyBLECharacteristicValueChange - */ -export interface IUnionNotifyBLECharacteristicValueChangeResult { -} -/** - * 设置读特征通知模式 - * @apiName notifyBLECharacteristicValueChange - */ -export declare function notifyBLECharacteristicValueChange$(params: IUnionNotifyBLECharacteristicValueChangeParams): Promise; -export default notifyBLECharacteristicValueChange$; diff --git a/node_modules/dingtalk-jsapi/api/union/notifyBLECharacteristicValueChange.js b/node_modules/dingtalk-jsapi/api/union/notifyBLECharacteristicValueChange.js deleted file mode 100644 index 188ce120..00000000 --- a/node_modules/dingtalk-jsapi/api/union/notifyBLECharacteristicValueChange.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function notifyBLECharacteristicValueChange$(a){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},a))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,i=1,t=arguments.length;i; -export default notifyTranslateEvent$; diff --git a/node_modules/dingtalk-jsapi/api/union/notifyTranslateEvent.js b/node_modules/dingtalk-jsapi/api/union/notifyTranslateEvent.js deleted file mode 100644 index 70cd8192..00000000 --- a/node_modules/dingtalk-jsapi/api/union/notifyTranslateEvent.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function notifyTranslateEvent$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.notifyTranslateEvent$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="notifyTranslateEvent",actualCallApiName="biz.i18n.notifyTranslateEvent";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.5.35"},_a)),exports.notifyTranslateEvent$=notifyTranslateEvent$,exports.default=notifyTranslateEvent$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/offBLECharacteristicValueChange.d.ts b/node_modules/dingtalk-jsapi/api/union/offBLECharacteristicValueChange.d.ts deleted file mode 100644 index be86e626..00000000 --- a/node_modules/dingtalk-jsapi/api/union/offBLECharacteristicValueChange.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * 监听特征值变化事件 请求参数定义 - */ -export declare type IUnionOffBLECharacteristicValueChangeParams = (e: IUnionOffBLECharacteristicValueChangeResult) => void; -/** - * 监听特征值变化事件 返回结果定义 - */ -export interface IUnionOffBLECharacteristicValueChangeResult { - value: string; - deviceId: string; - serviceId: string; - characteristicId: string; -} -/** - * 移除监听特征值变化事件 - * @apiName offBLECharacteristicValueChange - */ -export declare function offBLECharacteristicValueChange$(params: IUnionOffBLECharacteristicValueChangeParams): void; -export default offBLECharacteristicValueChange$; diff --git a/node_modules/dingtalk-jsapi/api/union/offBLECharacteristicValueChange.js b/node_modules/dingtalk-jsapi/api/union/offBLECharacteristicValueChange.js deleted file mode 100644 index 1eb8f4a1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/offBLECharacteristicValueChange.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function offBLECharacteristicValueChange$(a){ddSdk_1.ddSdk.getExportSdk().off("bizEvent."+apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.offBLECharacteristicValueChange$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="BLECharacteristicValueChange";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.10"},_a)),exports.offBLECharacteristicValueChange$=offBLECharacteristicValueChange$,exports.default=offBLECharacteristicValueChange$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/offBLEConnectionStateChanged.d.ts b/node_modules/dingtalk-jsapi/api/union/offBLEConnectionStateChanged.d.ts deleted file mode 100644 index f93f2cb9..00000000 --- a/node_modules/dingtalk-jsapi/api/union/offBLEConnectionStateChanged.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** - * 监听蓝牙连接状态事件 请求参数定义 - */ -export declare type IUnionOffBLEConnectionStateChangedParams = (e: IUnionOffBLEConnectionStateChangedResult) => void; -/** - * 监听蓝牙连接状态事件 返回结果定义 - */ -export interface IUnionOffBLEConnectionStateChangedResult { - deviceId: string; - connected: boolean; -} -/** - * 移除监听连接状态变化事件 - * @apiName offBLEConnectionStateChanged - */ -export declare function offBLEConnectionStateChanged$(params: IUnionOffBLEConnectionStateChangedParams): void; -export default offBLEConnectionStateChanged$; diff --git a/node_modules/dingtalk-jsapi/api/union/offBLEConnectionStateChanged.js b/node_modules/dingtalk-jsapi/api/union/offBLEConnectionStateChanged.js deleted file mode 100644 index ef785ccc..00000000 --- a/node_modules/dingtalk-jsapi/api/union/offBLEConnectionStateChanged.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function offBLEConnectionStateChanged$(d){ddSdk_1.ddSdk.getExportSdk().off("bizEvent."+apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.offBLEConnectionStateChanged$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="BLEConnectionStateChanged";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.10"},_a)),exports.offBLEConnectionStateChanged$=offBLEConnectionStateChanged$,exports.default=offBLEConnectionStateChanged$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/offBluetoothAdapterStateChange.d.ts b/node_modules/dingtalk-jsapi/api/union/offBluetoothAdapterStateChange.d.ts deleted file mode 100644 index ca2972d7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/offBluetoothAdapterStateChange.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** - * 监听蓝牙状态变化事件 请求参数定义 - */ -export declare type IUnionOffBluetoothAdapterStateChangeParams = (e: IUnionOffBluetoothAdapterStateChangeResult) => void; -/** - * 监听蓝牙状态变化事件 返回结果定义 - */ -export interface IUnionOffBluetoothAdapterStateChangeResult { - available: boolean; - discovering: boolean; -} -/** - * 移除监听蓝牙状态变化事件 - * @apiName offBluetoothAdapterStateChange - */ -export declare function offBluetoothAdapterStateChange$(params: IUnionOffBluetoothAdapterStateChangeParams): void; -export default offBluetoothAdapterStateChange$; diff --git a/node_modules/dingtalk-jsapi/api/union/offBluetoothAdapterStateChange.js b/node_modules/dingtalk-jsapi/api/union/offBluetoothAdapterStateChange.js deleted file mode 100644 index c9987dfb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/offBluetoothAdapterStateChange.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function offBluetoothAdapterStateChange$(e){ddSdk_1.ddSdk.getExportSdk().off("bizEvent."+apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.offBluetoothAdapterStateChange$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="bluetoothAdapterStateChange";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.10"},_a)),exports.offBluetoothAdapterStateChange$=offBluetoothAdapterStateChange$,exports.default=offBluetoothAdapterStateChange$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/offBluetoothDeviceFound.d.ts b/node_modules/dingtalk-jsapi/api/union/offBluetoothDeviceFound.d.ts deleted file mode 100644 index 98e9c86d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/offBluetoothDeviceFound.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 监听新设备事件 请求参数定义 - */ -export declare type IUnionOffBluetoothDeviceFoundParams = (e: IUnionOffBluetoothDeviceFoundResult) => void; -/** - * 监听新设备事件 返回结果定义 - */ -export interface IUnionOffBluetoothDeviceFoundResult { - RSSI: number; - name: string; - deviceId: string; - localName: string; - deviceName: string; - advertisData: string; -} -/** - * 移除发现新设备事件 - * @apiName offBluetoothDeviceFound - */ -export declare function offBluetoothDeviceFound$(params: IUnionOffBluetoothDeviceFoundParams): void; -export default offBluetoothDeviceFound$; diff --git a/node_modules/dingtalk-jsapi/api/union/offBluetoothDeviceFound.js b/node_modules/dingtalk-jsapi/api/union/offBluetoothDeviceFound.js deleted file mode 100644 index 427db2aa..00000000 --- a/node_modules/dingtalk-jsapi/api/union/offBluetoothDeviceFound.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function offBluetoothDeviceFound$(d){ddSdk_1.ddSdk.getExportSdk().off("bizEvent."+apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.offBluetoothDeviceFound$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="bluetoothDeviceFound";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.10"},_a)),exports.offBluetoothDeviceFound$=offBluetoothDeviceFound$,exports.default=offBluetoothDeviceFound$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBLECharacteristicValueChange.d.ts b/node_modules/dingtalk-jsapi/api/union/onBLECharacteristicValueChange.d.ts deleted file mode 100644 index e38254ba..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLECharacteristicValueChange.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * 监听特征值变化事件 请求参数定义 - */ -export declare type IUnionOnBLECharacteristicValueChangeParams = (e: IUnionOnBLECharacteristicValueChangeResult) => void; -/** - * 监听特征值变化事件 返回结果定义 - */ -export interface IUnionOnBLECharacteristicValueChangeResult { - value: string; - deviceId: string; - serviceId: string; - characteristicId: string; -} -/** - * 监听特征值变化事件 - * @apiName onBLECharacteristicValueChange - */ -export declare function onBLECharacteristicValueChange$(params: IUnionOnBLECharacteristicValueChangeParams): void; -export default onBLECharacteristicValueChange$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBLECharacteristicValueChange.js b/node_modules/dingtalk-jsapi/api/union/onBLECharacteristicValueChange.js deleted file mode 100644 index 991f890b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLECharacteristicValueChange.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBLECharacteristicValueChange$(a){ddSdk_1.ddSdk.getExportSdk().on("bizEvent."+apiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBLECharacteristicValueChange$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="BLECharacteristicValueChange";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.10"},_a)),exports.onBLECharacteristicValueChange$=onBLECharacteristicValueChange$,exports.default=onBLECharacteristicValueChange$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBLEConnectionStateChanged.d.ts b/node_modules/dingtalk-jsapi/api/union/onBLEConnectionStateChanged.d.ts deleted file mode 100644 index 87e3f5d6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLEConnectionStateChanged.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** - * 监听蓝牙连接状态事件 请求参数定义 - */ -export declare type IUnionOnBLEConnectionStateChangedParams = (e: IUnionOnBLEConnectionStateChangedResult) => void; -/** - * 监听蓝牙连接状态事件 返回结果定义 - */ -export interface IUnionOnBLEConnectionStateChangedResult { - deviceId: string; - connected: boolean; -} -/** - * 监听蓝牙连接状态事件 - * @apiName onBLEConnectionStateChanged - */ -export declare function onBLEConnectionStateChanged$(params: IUnionOnBLEConnectionStateChangedParams): void; -export default onBLEConnectionStateChanged$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBLEConnectionStateChanged.js b/node_modules/dingtalk-jsapi/api/union/onBLEConnectionStateChanged.js deleted file mode 100644 index 6395a682..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLEConnectionStateChanged.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBLEConnectionStateChanged$(d){ddSdk_1.ddSdk.getExportSdk().on("bizEvent."+apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBLEConnectionStateChanged$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="BLEConnectionStateChanged";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.10"},_a)),exports.onBLEConnectionStateChanged$=onBLEConnectionStateChanged$,exports.default=onBLEConnectionStateChanged$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicReadRequest.d.ts b/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicReadRequest.d.ts deleted file mode 100644 index fc8a3e93..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicReadRequest.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 监听中心设备读请求 请求参数定义 - * @apiName onBLEPeripheralCharacteristicReadRequest - */ -export interface IUnionOnBLEPeripheralCharacteristicReadRequestParams extends ICommonAPIParams { -} -/** - * 监听中心设备读请求 返回结果定义 - * @apiName onBLEPeripheralCharacteristicReadRequest - */ -export interface IUnionOnBLEPeripheralCharacteristicReadRequestResult { - serviceUUID: string; - characteristicUUID: string; -} -/** - * 监听中心设备读请求 - * @apiName onBLEPeripheralCharacteristicReadRequest - */ -export declare function onBLEPeripheralCharacteristicReadRequest$(params: IUnionOnBLEPeripheralCharacteristicReadRequestParams): Promise; -export default onBLEPeripheralCharacteristicReadRequest$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicReadRequest.js b/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicReadRequest.js deleted file mode 100644 index d490705d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicReadRequest.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBLEPeripheralCharacteristicReadRequest$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBLEPeripheralCharacteristicReadRequest$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="onBLEPeripheralCharacteristicReadRequest",actualCallApiName="biz.realm.onBLEPeripheralCharacteristicReadRequest";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.6.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.10"},_a)),exports.onBLEPeripheralCharacteristicReadRequest$=onBLEPeripheralCharacteristicReadRequest$,exports.default=onBLEPeripheralCharacteristicReadRequest$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicWriteRequest.d.ts b/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicWriteRequest.d.ts deleted file mode 100644 index d07abb68..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicWriteRequest.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 监听中心设备写请求 请求参数定义 - * @apiName onBLEPeripheralCharacteristicWriteRequest - */ -export interface IUnionOnBLEPeripheralCharacteristicWriteRequestParams extends ICommonAPIParams { -} -/** - * 监听中心设备写请求 返回结果定义 - * @apiName onBLEPeripheralCharacteristicWriteRequest - */ -export interface IUnionOnBLEPeripheralCharacteristicWriteRequestResult { - value: string; - serviceUUID: string; - characteristicUUID: string; -} -/** - * 监听中心设备写请求 - * @apiName onBLEPeripheralCharacteristicWriteRequest - */ -export declare function onBLEPeripheralCharacteristicWriteRequest$(params: IUnionOnBLEPeripheralCharacteristicWriteRequestParams): Promise; -export default onBLEPeripheralCharacteristicWriteRequest$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicWriteRequest.js b/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicWriteRequest.js deleted file mode 100644 index 94643a70..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralCharacteristicWriteRequest.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBLEPeripheralCharacteristicWriteRequest$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBLEPeripheralCharacteristicWriteRequest$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="onBLEPeripheralCharacteristicWriteRequest",actualCallApiName="biz.realm.onBLEPeripheralCharacteristicWriteRequest";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.6.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.10"},_a)),exports.onBLEPeripheralCharacteristicWriteRequest$=onBLEPeripheralCharacteristicWriteRequest$,exports.default=onBLEPeripheralCharacteristicWriteRequest$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralConnectionStateChanged.d.ts b/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralConnectionStateChanged.d.ts deleted file mode 100644 index 633ae092..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralConnectionStateChanged.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 监听外围设备蓝牙连接状态 请求参数定义 - * @apiName onBLEPeripheralConnectionStateChanged - */ -export interface IUnionOnBLEPeripheralConnectionStateChangedParams extends ICommonAPIParams { -} -/** - * 监听外围设备蓝牙连接状态 返回结果定义 - * @apiName onBLEPeripheralConnectionStateChanged - */ -export interface IUnionOnBLEPeripheralConnectionStateChangedResult { - deviceId: string; - connected: boolean; -} -/** - * 监听外围设备蓝牙连接状态 - * @apiName onBLEPeripheralConnectionStateChanged - */ -export declare function onBLEPeripheralConnectionStateChanged$(params: IUnionOnBLEPeripheralConnectionStateChangedParams): Promise; -export default onBLEPeripheralConnectionStateChanged$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralConnectionStateChanged.js b/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralConnectionStateChanged.js deleted file mode 100644 index 7dfa2cb2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralConnectionStateChanged.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBLEPeripheralConnectionStateChanged$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBLEPeripheralConnectionStateChanged$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="onBLEPeripheralConnectionStateChanged",actualCallApiName="biz.realm.onBLEPeripheralConnectionStateChanged";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.10"},_a)),exports.onBLEPeripheralConnectionStateChanged$=onBLEPeripheralConnectionStateChanged$,exports.default=onBLEPeripheralConnectionStateChanged$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBeaconServiceChange.d.ts b/node_modules/dingtalk-jsapi/api/union/onBeaconServiceChange.d.ts deleted file mode 100644 index 90b06608..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBeaconServiceChange.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 监听 iBeacon 服务的状态变化。 请求参数定义 - * @apiName onBeaconServiceChange - */ -export interface IUnionOnBeaconServiceChangeParams extends ICommonAPIParams { -} -/** - * 监听 iBeacon 服务的状态变化。 返回结果定义 - * @apiName onBeaconServiceChange - */ -export interface IUnionOnBeaconServiceChangeResult { - available: boolean; - discovering: boolean; -} -/** - * 监听 iBeacon 服务的状态变化。 - * @apiName onBeaconServiceChange - * @supportVersion ios: 4.6.38 android: 4.6.38 - */ -export declare function onBeaconServiceChange$(params: IUnionOnBeaconServiceChangeParams): void; -export default onBeaconServiceChange$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBeaconServiceChange.js b/node_modules/dingtalk-jsapi/api/union/onBeaconServiceChange.js deleted file mode 100644 index 396068ac..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBeaconServiceChange.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBeaconServiceChange$(e){ddSdk_1.ddSdk.getExportSdk().on("bizEvent."+apiName,function(d){"function"==typeof e.success?e.success(d):"function"==typeof e.onSuccess&&e.onSuccess(d)})}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBeaconServiceChange$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="beaconServiceChange";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.38"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.38"},_a)),exports.onBeaconServiceChange$=onBeaconServiceChange$,exports.default=onBeaconServiceChange$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBeaconUpdate.d.ts b/node_modules/dingtalk-jsapi/api/union/onBeaconUpdate.d.ts deleted file mode 100644 index 980ca08e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBeaconUpdate.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 监听 iBeacon 设备的更新事件。 请求参数定义 - * @apiName onBeaconUpdate - */ -export interface IUnionOnBeaconUpdateParams extends ICommonAPIParams { -} -/** - * 监听 iBeacon 设备的更新事件。 返回结果定义 - * @apiName onBeaconUpdate - */ -export interface IUnionOnBeaconUpdateResult { - beacons: { - uuid: string; - major: string; - minor: string; - proximity: number; - accuracy: number; - rssi: number; - }[]; -} -/** - * 监听 iBeacon 设备的更新事件。。 - * @apiName onBeaconUpdate - * @supportVersion ios: 4.6.38 android: 4.6.38 - */ -export declare function onBeaconUpdate$(params: IUnionOnBeaconUpdateParams): void; -export default onBeaconUpdate$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBeaconUpdate.js b/node_modules/dingtalk-jsapi/api/union/onBeaconUpdate.js deleted file mode 100644 index 7d98a078..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBeaconUpdate.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBeaconUpdate$(d){ddSdk_1.ddSdk.getExportSdk().on("bizEvent."+apiName,function(e){"function"==typeof d.success?d.success(e):"function"==typeof d.onSuccess&&d.onSuccess(e)})}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBeaconUpdate$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="beaconUpdate";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"4.6.38"},_a[ddSdk_1.ENV_ENUM.android]={vs:"4.6.38"},_a)),exports.onBeaconUpdate$=onBeaconUpdate$,exports.default=onBeaconUpdate$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBluetoothAdapterStateChange.d.ts b/node_modules/dingtalk-jsapi/api/union/onBluetoothAdapterStateChange.d.ts deleted file mode 100644 index a2e2c339..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBluetoothAdapterStateChange.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -/** - * 监听蓝牙状态变化事件 请求参数定义 - */ -export declare type IUnionOnBluetoothAdapterStateChangeParams = (e: IUnionOnBluetoothAdapterStateChangeResult) => void; -/** - * 监听蓝牙状态变化事件 返回结果定义 - */ -export interface IUnionOnBluetoothAdapterStateChangeResult { - available: boolean; - discovering: boolean; -} -/** - * 开启监听蓝牙状态变化事件 - * @apiName onBluetoothAdapterStateChange - */ -export declare function onBluetoothAdapterStateChange$(params: IUnionOnBluetoothAdapterStateChangeParams): void; -export default onBluetoothAdapterStateChange$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBluetoothAdapterStateChange.js b/node_modules/dingtalk-jsapi/api/union/onBluetoothAdapterStateChange.js deleted file mode 100644 index 1fa507af..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBluetoothAdapterStateChange.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBluetoothAdapterStateChange$(e){ddSdk_1.ddSdk.getExportSdk().on("bizEvent."+apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBluetoothAdapterStateChange$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="bluetoothAdapterStateChange";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.10"},_a)),exports.onBluetoothAdapterStateChange$=onBluetoothAdapterStateChange$,exports.default=onBluetoothAdapterStateChange$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onBluetoothDeviceFound.d.ts b/node_modules/dingtalk-jsapi/api/union/onBluetoothDeviceFound.d.ts deleted file mode 100644 index dcf4d9a1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBluetoothDeviceFound.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 监听新设备事件 请求参数定义 - */ -export declare type IUnionOnBluetoothDeviceFoundParams = (e: IUnionOnBluetoothDeviceFoundResult) => void; -/** - * 监听新设备事件 返回结果定义 - */ -export interface IUnionOnBluetoothDeviceFoundResult { - RSSI: number; - name: string; - deviceId: string; - localName: string; - deviceName: string; - advertisData: string; -} -/** - * 监听发现新设备事件 - * @apiName onBluetoothDeviceFound - */ -export declare function onBluetoothDeviceFound$(params: IUnionOnBluetoothDeviceFoundParams): void; -export default onBluetoothDeviceFound$; diff --git a/node_modules/dingtalk-jsapi/api/union/onBluetoothDeviceFound.js b/node_modules/dingtalk-jsapi/api/union/onBluetoothDeviceFound.js deleted file mode 100644 index 6ce5b5ec..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onBluetoothDeviceFound.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onBluetoothDeviceFound$(d){ddSdk_1.ddSdk.getExportSdk().on("bizEvent."+apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onBluetoothDeviceFound$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="bluetoothDeviceFound";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.10"},_a)),exports.onBluetoothDeviceFound$=onBluetoothDeviceFound$,exports.default=onBluetoothDeviceFound$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onPlayAudioEnd.d.ts b/node_modules/dingtalk-jsapi/api/union/onPlayAudioEnd.d.ts deleted file mode 100644 index 729c791d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onPlayAudioEnd.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 监听播放自动停止 请求参数定义 - * @apiName onPlayAudioEnd - */ -export interface IUnionOnPlayAudioEndParams extends ICommonAPIParams { -} -/** - * 监听播放自动停止 返回结果定义 - * @apiName onPlayAudioEnd - */ -export interface IUnionOnPlayAudioEndResult { - localAudioId: string; -} -/** - * 监听播放自动停止 - * @apiName onPlayAudioEnd - */ -export declare function onPlayAudioEnd$(params: IUnionOnPlayAudioEndParams): Promise; -export default onPlayAudioEnd$; diff --git a/node_modules/dingtalk-jsapi/api/union/onPlayAudioEnd.js b/node_modules/dingtalk-jsapi/api/union/onPlayAudioEnd.js deleted file mode 100644 index 96b60fb6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onPlayAudioEnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onPlayAudioEnd$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onPlayAudioEnd$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="onPlayAudioEnd",actualCallApiName="device.audio.onPlayEnd";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.onPlayAudioEnd$=onPlayAudioEnd$,exports.default=onPlayAudioEnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/onRecordEnd.d.ts b/node_modules/dingtalk-jsapi/api/union/onRecordEnd.d.ts deleted file mode 100644 index 57fc2e99..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onRecordEnd.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 监听录音自动停止 请求参数定义 - * @apiName onRecordEnd - */ -export interface IUnionOnRecordEndParams extends ICommonAPIParams { -} -/** - * 监听录音自动停止 返回结果定义 - * @apiName onRecordEnd - */ -export interface IUnionOnRecordEndResult { -} -/** - * 监听录音自动停止 - * @apiName onRecordEnd - */ -export declare function onRecordEnd$(params: IUnionOnRecordEndParams): Promise; -export default onRecordEnd$; diff --git a/node_modules/dingtalk-jsapi/api/union/onRecordEnd.js b/node_modules/dingtalk-jsapi/api/union/onRecordEnd.js deleted file mode 100644 index 6e689ba5..00000000 --- a/node_modules/dingtalk-jsapi/api/union/onRecordEnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onRecordEnd$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.onRecordEnd$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="onRecordEnd",actualCallApiName="device.audio.onRecordEnd";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.onRecordEnd$=onRecordEnd$,exports.default=onRecordEnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openBluetoothAdapter.d.ts b/node_modules/dingtalk-jsapi/api/union/openBluetoothAdapter.d.ts deleted file mode 100644 index 5bf4ef30..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openBluetoothAdapter.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 初始化蓝牙接口 请求参数定义 - * @apiName openBluetoothAdapter - */ -export interface IUnionOpenBluetoothAdapterParams extends ICommonAPIParams { - autoClose: boolean; -} -/** - * 初始化蓝牙接口 返回结果定义 - * @apiName openBluetoothAdapter - */ -export interface IUnionOpenBluetoothAdapterResult { -} -/** - * 初始化蓝牙接口 - * @apiName openBluetoothAdapter - */ -export declare function openBluetoothAdapter$(params: IUnionOpenBluetoothAdapterParams): Promise; -export default openBluetoothAdapter$; diff --git a/node_modules/dingtalk-jsapi/api/union/openBluetoothAdapter.js b/node_modules/dingtalk-jsapi/api/union/openBluetoothAdapter.js deleted file mode 100644 index 33d5404c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openBluetoothAdapter.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openBluetoothAdapter$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var t,d=1,o=arguments.length;d; -export default openChatByChatId$; diff --git a/node_modules/dingtalk-jsapi/api/union/openChatByChatId.js b/node_modules/dingtalk-jsapi/api/union/openChatByChatId.js deleted file mode 100644 index 8977d48d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openChatByChatId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openChatByChatId$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openChatByChatId$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openChatByChatId",actualCallApiName="biz.chat.toConversation";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.openChatByChatId$=openChatByChatId$,exports.default=openChatByChatId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openChatByConversationId.d.ts b/node_modules/dingtalk-jsapi/api/union/openChatByConversationId.d.ts deleted file mode 100644 index 7caafb91..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openChatByConversationId.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 根据openConversationId跳转到对应会话 请求参数定义 - * @apiName openChatByConversationId - */ -export interface IUnionOpenChatByConversationIdParams extends ICommonAPIParams { - openConversationId: string; -} -/** - * 根据openConversationId跳转到对应会话 返回结果定义 - * @apiName openChatByConversationId - */ -export interface IUnionOpenChatByConversationIdResult { -} -/** - * 根据openConversationId跳转到对应会话 - * @apiName openChatByConversationId - */ -export declare function openChatByConversationId$(params: IUnionOpenChatByConversationIdParams): Promise; -export default openChatByConversationId$; diff --git a/node_modules/dingtalk-jsapi/api/union/openChatByConversationId.js b/node_modules/dingtalk-jsapi/api/union/openChatByConversationId.js deleted file mode 100644 index 7ca05a15..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openChatByConversationId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openChatByConversationId$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openChatByConversationId$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openChatByConversationId",actualCallApiName="biz.chat.toConversationByOpenConversationId";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.openChatByConversationId$=openChatByConversationId$,exports.default=openChatByConversationId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openChatByUserId.d.ts b/node_modules/dingtalk-jsapi/api/union/openChatByUserId.d.ts deleted file mode 100644 index cbcb3fcf..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openChatByUserId.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 打开与某个用户的聊天页面(单聊会话) 请求参数定义 - * @apiName openChatByUserId - */ -export interface IUnionOpenChatByUserIdParams extends ICommonAPIParams { - corpId?: string; - userId: string; -} -/** - * 打开与某个用户的聊天页面(单聊会话) 返回结果定义 - * @apiName openChatByUserId - */ -export interface IUnionOpenChatByUserIdResult { -} -/** - * 打开与某个用户的聊天页面(单聊会话) - * @apiName openChatByUserId - */ -export declare function openChatByUserId$(params: IUnionOpenChatByUserIdParams): Promise; -export default openChatByUserId$; diff --git a/node_modules/dingtalk-jsapi/api/union/openChatByUserId.js b/node_modules/dingtalk-jsapi/api/union/openChatByUserId.js deleted file mode 100644 index ebc6a394..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openChatByUserId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openChatByUserId$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openChatByUserId$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openChatByUserId",actualCallApiName="biz.chat.openSingleChat";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.openChatByUserId$=openChatByUserId$,exports.default=openChatByUserId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openDocument.d.ts b/node_modules/dingtalk-jsapi/api/union/openDocument.d.ts deleted file mode 100644 index 945c683c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openDocument.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 在新页面打开文档 请求参数定义 - * @apiName openDocument - */ -export interface IUnionOpenDocumentParams extends ICommonAPIParams { - filePath: string; - fileType?: string; -} -/** - * 在新页面打开文档 返回结果定义 - * @apiName openDocument - */ -export interface IUnionOpenDocumentResult { -} -/** - * 在新页面打开文档 - * @apiName openDocument - */ -export declare function openDocument$(params: IUnionOpenDocumentParams): Promise; -export default openDocument$; diff --git a/node_modules/dingtalk-jsapi/api/union/openDocument.js b/node_modules/dingtalk-jsapi/api/union/openDocument.js deleted file mode 100644 index 051fac98..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openDocument.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openDocument$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openDocument$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openDocument",actualCallApiName="biz.util.openDocument";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.10"},_a)),exports.openDocument$=openDocument$,exports.default=openDocument$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openLink.d.ts b/node_modules/dingtalk-jsapi/api/union/openLink.d.ts deleted file mode 100644 index 40f18dfd..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openLink.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 打开目标页面 请求参数定义 - * @apiName openLink - */ -export interface IUnionOpenLinkParams extends ICommonAPIParams { - url: string; -} -/** - * 打开目标页面 返回结果定义 - * @apiName openLink - */ -export interface IUnionOpenLinkResult { -} -/** - * 打开目标页面 - * @apiName openLink - */ -export declare function openLink$(params: IUnionOpenLinkParams): Promise; -export default openLink$; diff --git a/node_modules/dingtalk-jsapi/api/union/openLink.js b/node_modules/dingtalk-jsapi/api/union/openLink.js deleted file mode 100644 index d454f654..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openLink.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openLink$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openLink$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openLink",actualCallApiName="biz.util.openLink";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.openLink$=openLink$,exports.default=openLink$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openLocalFile.d.ts b/node_modules/dingtalk-jsapi/api/union/openLocalFile.d.ts deleted file mode 100644 index 017dba03..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openLocalFile.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 打开本地文件 请求参数定义 - * @apiName openLocalFile - */ -export interface IUnionOpenLocalFileParams extends ICommonAPIParams { - url: string; -} -/** - * 打开本地文件 返回结果定义 - * @apiName openLocalFile - */ -export interface IUnionOpenLocalFileResult { -} -/** - * 打开本地文件 - * @apiName openLocalFile - */ -export declare function openLocalFile$(params: IUnionOpenLocalFileParams): Promise; -export default openLocalFile$; diff --git a/node_modules/dingtalk-jsapi/api/union/openLocalFile.js b/node_modules/dingtalk-jsapi/api/union/openLocalFile.js deleted file mode 100644 index ff72c6a7..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openLocalFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openLocalFile$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openLocalFile$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openLocalFile",actualCallApiName="biz.util.openLocalFile";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.openLocalFile$=openLocalFile$,exports.default=openLocalFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openLocation.d.ts b/node_modules/dingtalk-jsapi/api/union/openLocation.d.ts deleted file mode 100644 index 1a3b348a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openLocation.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 使用内置地图查看位置 请求参数定义 - * @apiName openLocation - */ -export interface IUnionOpenLocationParams extends ICommonAPIParams { - title: string; - address: string; - latitude: string; - longitude: string; -} -/** - * 使用内置地图查看位置 返回结果定义 - * @apiName openLocation - */ -export interface IUnionOpenLocationResult { -} -/** - * 使用内置地图查看位置 - * @apiName openLocation - */ -export declare function openLocation$(params: IUnionOpenLocationParams): Promise; -export default openLocation$; diff --git a/node_modules/dingtalk-jsapi/api/union/openLocation.js b/node_modules/dingtalk-jsapi/api/union/openLocation.js deleted file mode 100644 index db510478..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openLocation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openLocation$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openLocation$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openLocation",actualCallApiName="biz.map.view";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.openLocation$=openLocation$,exports.default=openLocation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openMicroApp.d.ts b/node_modules/dingtalk-jsapi/api/union/openMicroApp.d.ts deleted file mode 100644 index 0dffc365..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openMicroApp.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 打开应用 请求参数定义 - * @apiName openMicroApp - */ -export interface IUnionOpenMicroAppParams extends ICommonAPIParams { - appId: string; - corpId: string; - agentId: string; -} -/** - * 打开应用 返回结果定义 - * @apiName openMicroApp - */ -export interface IUnionOpenMicroAppResult { -} -/** - * 打开应用 - * @apiName openMicroApp - */ -export declare function openMicroApp$(params: IUnionOpenMicroAppParams): Promise; -export default openMicroApp$; diff --git a/node_modules/dingtalk-jsapi/api/union/openMicroApp.js b/node_modules/dingtalk-jsapi/api/union/openMicroApp.js deleted file mode 100644 index 96b44e3e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openMicroApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openMicroApp$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openMicroApp$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openMicroApp",actualCallApiName="biz.microApp.openApp";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.openMicroApp$=openMicroApp$,exports.default=openMicroApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openPageInMicroApp.d.ts b/node_modules/dingtalk-jsapi/api/union/openPageInMicroApp.d.ts deleted file mode 100644 index 505d9b38..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openPageInMicroApp.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 打开应用内页面 请求参数定义 - * @apiName openPageInMicroApp - */ -export interface IUnionOpenPageInMicroAppParams extends ICommonAPIParams { - name: string; - params: { - id: string; - users: string[]; - corpId: string; - }; -} -/** - * 打开应用内页面 返回结果定义 - * @apiName openPageInMicroApp - */ -export interface IUnionOpenPageInMicroAppResult { -} -/** - * 打开应用内页面 - * @apiName openPageInMicroApp - */ -export declare function openPageInMicroApp$(params: IUnionOpenPageInMicroAppParams): Promise; -export default openPageInMicroApp$; diff --git a/node_modules/dingtalk-jsapi/api/union/openPageInMicroApp.js b/node_modules/dingtalk-jsapi/api/union/openPageInMicroApp.js deleted file mode 100644 index 14621bda..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openPageInMicroApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPageInMicroApp$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPageInMicroApp$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openPageInMicroApp",actualCallApiName="biz.util.open";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.openPageInMicroApp$=openPageInMicroApp$,exports.default=openPageInMicroApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openPageInModalForPC.d.ts b/node_modules/dingtalk-jsapi/api/union/openPageInModalForPC.d.ts deleted file mode 100644 index 25e625fe..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openPageInModalForPC.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 打开模态框 请求参数定义 - * @apiName openPageInModalForPC - */ -export interface IUnionOpenPageInModalForPCParams extends ICommonAPIParams { - url: string; - size?: string; - title: string; -} -/** - * 打开模态框 返回结果定义 - * @apiName openPageInModalForPC - */ -export interface IUnionOpenPageInModalForPCResult { -} -/** - * 打开模态框 - * @apiName openPageInModalForPC - */ -export declare function openPageInModalForPC$(params: IUnionOpenPageInModalForPCParams): Promise; -export default openPageInModalForPC$; diff --git a/node_modules/dingtalk-jsapi/api/union/openPageInModalForPC.js b/node_modules/dingtalk-jsapi/api/union/openPageInModalForPC.js deleted file mode 100644 index b475b88e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openPageInModalForPC.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPageInModalForPC$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPageInModalForPC$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openPageInModalForPC",actualCallApiName="biz.util.openModal";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.openPageInModalForPC$=openPageInModalForPC$,exports.default=openPageInModalForPC$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openPageInSlidePanelForPC.d.ts b/node_modules/dingtalk-jsapi/api/union/openPageInSlidePanelForPC.d.ts deleted file mode 100644 index 944753b6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openPageInSlidePanelForPC.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 打开侧边面板 请求参数定义 - * @apiName openPageInSlidePanelForPC - */ -export interface IUnionOpenPageInSlidePanelForPCParams extends ICommonAPIParams { - url: string; - title: string; -} -/** - * 打开侧边面板 返回结果定义 - * @apiName openPageInSlidePanelForPC - */ -export interface IUnionOpenPageInSlidePanelForPCResult { -} -/** - * 打开侧边面板 - * @apiName openPageInSlidePanelForPC - */ -export declare function openPageInSlidePanelForPC$(params: IUnionOpenPageInSlidePanelForPCParams): Promise; -export default openPageInSlidePanelForPC$; diff --git a/node_modules/dingtalk-jsapi/api/union/openPageInSlidePanelForPC.js b/node_modules/dingtalk-jsapi/api/union/openPageInSlidePanelForPC.js deleted file mode 100644 index 8d38a889..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openPageInSlidePanelForPC.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPageInSlidePanelForPC$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPageInSlidePanelForPC$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openPageInSlidePanelForPC",actualCallApiName="biz.util.openSlidePanel";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.openPageInSlidePanelForPC$=openPageInSlidePanelForPC$,exports.default=openPageInSlidePanelForPC$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/openPageInWorkBenchForPC.d.ts b/node_modules/dingtalk-jsapi/api/union/openPageInWorkBenchForPC.d.ts deleted file mode 100644 index 98c7163a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openPageInWorkBenchForPC.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * PC端打开新弹窗页面 请求参数定义 - * @apiName openPageInWorkBenchForPC - */ -export interface IUnionOpenPageInWorkBenchForPCParams extends ICommonAPIParams { - app_url: string; - app_info: { - app_tab_key: string; - app_active_if_exist: boolean; - app_refresh_if_exist: boolean; - }; -} -/** - * PC端打开新弹窗页面 返回结果定义 - * @apiName openPageInWorkBenchForPC - */ -export interface IUnionOpenPageInWorkBenchForPCResult { - body: boolean; -} -/** - * PC端打开新弹窗页面 - * @apiName openPageInWorkBenchForPC - */ -export declare function openPageInWorkBenchForPC$(params: IUnionOpenPageInWorkBenchForPCParams): Promise; -export default openPageInWorkBenchForPC$; diff --git a/node_modules/dingtalk-jsapi/api/union/openPageInWorkBenchForPC.js b/node_modules/dingtalk-jsapi/api/union/openPageInWorkBenchForPC.js deleted file mode 100644 index a5710b32..00000000 --- a/node_modules/dingtalk-jsapi/api/union/openPageInWorkBenchForPC.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPageInWorkBenchForPC$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPageInWorkBenchForPC$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="openPageInWorkBenchForPC",actualCallApiName="biz.util.invokeWorkbench";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.8"},_a)),exports.openPageInWorkBenchForPC$=openPageInWorkBenchForPC$,exports.default=openPageInWorkBenchForPC$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/pauseAudio.d.ts b/node_modules/dingtalk-jsapi/api/union/pauseAudio.d.ts deleted file mode 100644 index 3cabb452..00000000 --- a/node_modules/dingtalk-jsapi/api/union/pauseAudio.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 暂停播放语音 请求参数定义 - * @apiName pauseAudio - */ -export interface IUnionPauseAudioParams extends ICommonAPIParams { - localAudioId: string; -} -/** - * 暂停播放语音 返回结果定义 - * @apiName pauseAudio - */ -export interface IUnionPauseAudioResult { -} -/** - * 暂停播放语音 - * @apiName pauseAudio - */ -export declare function pauseAudio$(params: IUnionPauseAudioParams): Promise; -export default pauseAudio$; diff --git a/node_modules/dingtalk-jsapi/api/union/pauseAudio.js b/node_modules/dingtalk-jsapi/api/union/pauseAudio.js deleted file mode 100644 index 9d8c868b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/pauseAudio.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pauseAudio$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.pauseAudio$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="pauseAudio",actualCallApiName="device.audio.pause";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.pauseAudio$=pauseAudio$,exports.default=pauseAudio$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/playAudio.d.ts b/node_modules/dingtalk-jsapi/api/union/playAudio.d.ts deleted file mode 100644 index 1f3c3af6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/playAudio.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 播放音频 请求参数定义 - * @apiName playAudio - */ -export interface IUnionPlayAudioParams extends ICommonAPIParams { - localAudioId: string; -} -/** - * 播放音频 返回结果定义 - * @apiName playAudio - */ -export interface IUnionPlayAudioResult { -} -/** - * 播放音频 - * @apiName playAudio - */ -export declare function playAudio$(params: IUnionPlayAudioParams): Promise; -export default playAudio$; diff --git a/node_modules/dingtalk-jsapi/api/union/playAudio.js b/node_modules/dingtalk-jsapi/api/union/playAudio.js deleted file mode 100644 index 2a81f878..00000000 --- a/node_modules/dingtalk-jsapi/api/union/playAudio.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function playAudio$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.playAudio$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="playAudio",actualCallApiName="device.audio.play";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.playAudio$=playAudio$,exports.default=playAudio$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/popGesture.d.ts b/node_modules/dingtalk-jsapi/api/union/popGesture.d.ts deleted file mode 100644 index c2d31272..00000000 --- a/node_modules/dingtalk-jsapi/api/union/popGesture.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 侧滑手势设置 请求参数定义 - * @apiName popGesture - */ -export interface IUnionPopGestureParams extends ICommonAPIParams { - popGestureEnabled: boolean; -} -/** - * 侧滑手势设置 返回结果定义 - * @apiName popGesture - */ -export interface IUnionPopGestureResult { -} -/** - * 侧滑手势设置 - * @apiName popGesture - */ -export declare function popGesture$(params: IUnionPopGestureParams): Promise; -export default popGesture$; diff --git a/node_modules/dingtalk-jsapi/api/union/popGesture.js b/node_modules/dingtalk-jsapi/api/union/popGesture.js deleted file mode 100644 index 23d01e3e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/popGesture.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function popGesture$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.popGesture$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="popGesture",actualCallApiName="biz.navigation.popGesture";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a)),exports.popGesture$=popGesture$,exports.default=popGesture$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/previewFileInDingTalk.d.ts b/node_modules/dingtalk-jsapi/api/union/previewFileInDingTalk.d.ts deleted file mode 100644 index 2575b073..00000000 --- a/node_modules/dingtalk-jsapi/api/union/previewFileInDingTalk.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 钉盘文件预览 请求参数定义 - * @apiName previewFileInDingTalk - */ -export interface IUnionPreviewFileInDingTalkParams extends ICommonAPIParams { - corpId?: string; - fileId: string; - spaceId: string; - fileName: string; - fileSize: string; - fileType: string; -} -/** - * 钉盘文件预览 返回结果定义 - * @apiName previewFileInDingTalk - */ -export interface IUnionPreviewFileInDingTalkResult { -} -/** - * 钉盘文件预览 - * @apiName previewFileInDingTalk - */ -export declare function previewFileInDingTalk$(params: IUnionPreviewFileInDingTalkParams): Promise; -export default previewFileInDingTalk$; diff --git a/node_modules/dingtalk-jsapi/api/union/previewFileInDingTalk.js b/node_modules/dingtalk-jsapi/api/union/previewFileInDingTalk.js deleted file mode 100644 index 10d91ebe..00000000 --- a/node_modules/dingtalk-jsapi/api/union/previewFileInDingTalk.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewFileInDingTalk$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewFileInDingTalk$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="previewFileInDingTalk",actualCallApiName="biz.cspace.preview";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.previewFileInDingTalk$=previewFileInDingTalk$,exports.default=previewFileInDingTalk$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/previewImage.d.ts b/node_modules/dingtalk-jsapi/api/union/previewImage.d.ts deleted file mode 100644 index 3ccaf300..00000000 --- a/node_modules/dingtalk-jsapi/api/union/previewImage.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 预览图片 请求参数定义 - * @apiName previewImage - */ -export interface IUnionPreviewImageParams extends ICommonAPIParams { - urls: string[]; - current?: number; -} -/** - * 预览图片 返回结果定义 - * @apiName previewImage - */ -export interface IUnionPreviewImageResult { -} -/** - * 预览图片 - * @apiName previewImage - */ -export declare function previewImage$(params: IUnionPreviewImageParams): Promise; -export default previewImage$; diff --git a/node_modules/dingtalk-jsapi/api/union/previewImage.js b/node_modules/dingtalk-jsapi/api/union/previewImage.js deleted file mode 100644 index 453548f3..00000000 --- a/node_modules/dingtalk-jsapi/api/union/previewImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewImage$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewImage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="previewImage",actualCallApiName="biz.util.previewImage";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0",paramsDeal:function(e){return{urls:e.urls,current:"number"==typeof(null===e||void 0===e?void 0:e.current)?e.urls[e.current]:e.current}}},_a)),exports.previewImage$=previewImage$,exports.default=previewImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/previewImagesInDingTalkBatch.d.ts b/node_modules/dingtalk-jsapi/api/union/previewImagesInDingTalkBatch.d.ts deleted file mode 100644 index 2f0884fc..00000000 --- a/node_modules/dingtalk-jsapi/api/union/previewImagesInDingTalkBatch.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 批量预览钉盘图片 请求参数定义 - * @apiName previewImagesInDingTalkBatch - */ -export interface IUnionPreviewImagesInDingTalkBatchParams extends ICommonAPIParams { - index?: number; - images: { - spaceId: string; - dentryId: string; - }[]; -} -/** - * 批量预览钉盘图片 返回结果定义 - * @apiName previewImagesInDingTalkBatch - */ -export interface IUnionPreviewImagesInDingTalkBatchResult { -} -/** - * 批量预览钉盘图片 - * @apiName previewImagesInDingTalkBatch - */ -export declare function previewImagesInDingTalkBatch$(params: IUnionPreviewImagesInDingTalkBatchParams): Promise; -export default previewImagesInDingTalkBatch$; diff --git a/node_modules/dingtalk-jsapi/api/union/previewImagesInDingTalkBatch.js b/node_modules/dingtalk-jsapi/api/union/previewImagesInDingTalkBatch.js deleted file mode 100644 index 33b21f2b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/previewImagesInDingTalkBatch.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewImagesInDingTalkBatch$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewImagesInDingTalkBatch$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="previewImagesInDingTalkBatch",actualCallApiName="biz.cspace.previewDentryImages";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.30"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.30"},_a)),exports.previewImagesInDingTalkBatch$=previewImagesInDingTalkBatch$,exports.default=previewImagesInDingTalkBatch$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/previewMedia.d.ts b/node_modules/dingtalk-jsapi/api/union/previewMedia.d.ts deleted file mode 100644 index 95f06d1e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/previewMedia.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 预览图片和视频 请求参数定义 - * @apiName previewMedia - */ -export interface IUnionPreviewMediaParams extends ICommonAPIParams { - current?: number; - sources: { - url: string; - type: string; - poster?: string; - }[]; - showmenu?: boolean; -} -/** - * 预览图片和视频 返回结果定义 - * @apiName previewMedia - */ -export interface IUnionPreviewMediaResult { -} -/** - * 预览图片和视频 - * @apiName previewMedia - */ -export declare function previewMedia$(params: IUnionPreviewMediaParams): Promise; -export default previewMedia$; diff --git a/node_modules/dingtalk-jsapi/api/union/previewMedia.js b/node_modules/dingtalk-jsapi/api/union/previewMedia.js deleted file mode 100644 index 4f012fdc..00000000 --- a/node_modules/dingtalk-jsapi/api/union/previewMedia.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewMedia$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewMedia$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="previewMedia",actualCallApiName="biz.util.previewMedia";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.1.21"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.1.21"},_a)),exports.previewMedia$=previewMedia$,exports.default=previewMedia$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/prompt.d.ts b/node_modules/dingtalk-jsapi/api/union/prompt.d.ts deleted file mode 100644 index 35e7130d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/prompt.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 弹出输出入对话框 请求参数定义 - * @apiName prompt - */ -export interface IUnionPromptParams extends ICommonAPIParams { - title: string; - message: string; - placeholder: string; - okButtonText: string; - cancelButtonText: string; -} -/** - * 弹出输出入对话框 返回结果定义 - * @apiName prompt - */ -export interface IUnionPromptResult { - value: string; - buttonIndex: number; -} -/** - * 弹出输出入对话框 - * @apiName prompt - */ -export declare function prompt$(params: IUnionPromptParams): Promise; -export default prompt$; diff --git a/node_modules/dingtalk-jsapi/api/union/prompt.js b/node_modules/dingtalk-jsapi/api/union/prompt.js deleted file mode 100644 index d199f23e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/prompt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function prompt$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,{message:e.message,title:e.title,defaultText:e.placeholder,buttonLabels:[e.cancelButtonText,e.okButtonText],success:e.success,fail:e.fail,complete:e.complete})}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var a,t=1,s=arguments.length;t; -export default quickCallList$; diff --git a/node_modules/dingtalk-jsapi/api/union/quickCallList.js b/node_modules/dingtalk-jsapi/api/union/quickCallList.js deleted file mode 100644 index b3c406d3..00000000 --- a/node_modules/dingtalk-jsapi/api/union/quickCallList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function quickCallList$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.quickCallList$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="quickCallList",actualCallApiName="biz.telephone.quickCallList";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.quickCallList$=quickCallList$,exports.default=quickCallList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/quitPage.d.ts b/node_modules/dingtalk-jsapi/api/union/quitPage.d.ts deleted file mode 100644 index ea12b926..00000000 --- a/node_modules/dingtalk-jsapi/api/union/quitPage.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * PC端关闭页面 请求参数定义 - * @apiName quitPage - */ -export interface IUnionQuitPageParams extends ICommonAPIParams { -} -/** - * PC端关闭页面 返回结果定义 - * @apiName quitPage - */ -export interface IUnionQuitPageResult { -} -/** - * PC端关闭页面 - * @apiName quitPage - */ -export declare function quitPage$(params: IUnionQuitPageParams): Promise; -export default quitPage$; diff --git a/node_modules/dingtalk-jsapi/api/union/quitPage.js b/node_modules/dingtalk-jsapi/api/union/quitPage.js deleted file mode 100644 index 922c9f2f..00000000 --- a/node_modules/dingtalk-jsapi/api/union/quitPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function quitPage$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.quitPage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="quitPage",actualCallApiName="biz.navigation.quit";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.quitPage$=quitPage$,exports.default=quitPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/readBLECharacteristicValue.d.ts b/node_modules/dingtalk-jsapi/api/union/readBLECharacteristicValue.d.ts deleted file mode 100644 index 320041d8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/readBLECharacteristicValue.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 读取蓝牙设备特征值数据 请求参数定义 - * @apiName readBLECharacteristicValue - */ -export interface IUnionReadBLECharacteristicValueParams extends ICommonAPIParams { - deviceId: string; - serviceId: string; - characteristicId: string; -} -/** - * 读取蓝牙设备特征值数据 返回结果定义 - * @apiName readBLECharacteristicValue - */ -export interface IUnionReadBLECharacteristicValueResult { - value: string; - serviceId: string; - characteristicId: string; -} -/** - * 读取蓝牙设备特征值数据 - * @apiName readBLECharacteristicValue - */ -export declare function readBLECharacteristicValue$(params: IUnionReadBLECharacteristicValueParams): Promise; -export default readBLECharacteristicValue$; diff --git a/node_modules/dingtalk-jsapi/api/union/readBLECharacteristicValue.js b/node_modules/dingtalk-jsapi/api/union/readBLECharacteristicValue.js deleted file mode 100644 index 34334158..00000000 --- a/node_modules/dingtalk-jsapi/api/union/readBLECharacteristicValue.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function readBLECharacteristicValue$(a){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},a))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,r=1,d=arguments.length;r; -export default readNFC$; diff --git a/node_modules/dingtalk-jsapi/api/union/readNFC.js b/node_modules/dingtalk-jsapi/api/union/readNFC.js deleted file mode 100644 index a813af93..00000000 --- a/node_modules/dingtalk-jsapi/api/union/readNFC.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function readNFC$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.readNFC$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="readNFC",actualCallApiName="device.nfc.nfcRead";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.readNFC$=readNFC$,exports.default=readNFC$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/removeCachedAPIResponse.d.ts b/node_modules/dingtalk-jsapi/api/union/removeCachedAPIResponse.d.ts deleted file mode 100644 index 4fdd5af5..00000000 --- a/node_modules/dingtalk-jsapi/api/union/removeCachedAPIResponse.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 删除已缓存的JSAPI返回值 请求参数定义 - * @apiName removeCachedAPIResponse - */ -export interface IUnionRemoveCachedAPIResponseParams extends ICommonAPIParams { - jsapiName: string; - removeAll: boolean; -} -/** - * 删除已缓存的JSAPI返回值 返回结果定义 - * @apiName removeCachedAPIResponse - */ -export interface IUnionRemoveCachedAPIResponseResult { -} -/** - * 删除已缓存的JSAPI返回值 - * @apiName removeCachedAPIResponse - */ -export declare function removeCachedAPIResponse$(params: IUnionRemoveCachedAPIResponseParams): Promise; -export default removeCachedAPIResponse$; diff --git a/node_modules/dingtalk-jsapi/api/union/removeCachedAPIResponse.js b/node_modules/dingtalk-jsapi/api/union/removeCachedAPIResponse.js deleted file mode 100644 index 6aa52284..00000000 --- a/node_modules/dingtalk-jsapi/api/union/removeCachedAPIResponse.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeCachedAPIResponse$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeCachedAPIResponse$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="removeCachedAPIResponse",actualCallApiName="biz.util.removeCachedAPIResponse";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.0.15"},_a)),exports.removeCachedAPIResponse$=removeCachedAPIResponse$,exports.default=removeCachedAPIResponse$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/removeStorage.d.ts b/node_modules/dingtalk-jsapi/api/union/removeStorage.d.ts deleted file mode 100644 index b2b069f2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/removeStorage.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 删除缓存数据 请求参数定义 - * @apiName removeStorage - */ -export interface IUnionRemoveStorageParams extends ICommonAPIParams { - key: string; -} -/** - * 删除缓存数据 返回结果定义 - * @apiName removeStorage - */ -export interface IUnionRemoveStorageResult { -} -/** - * 删除缓存数据 - * @apiName removeStorage - */ -export declare function removeStorage$(params: IUnionRemoveStorageParams): Promise; -export default removeStorage$; diff --git a/node_modules/dingtalk-jsapi/api/union/removeStorage.js b/node_modules/dingtalk-jsapi/api/union/removeStorage.js deleted file mode 100644 index 858020b6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/removeStorage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeStorage$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,{name:e.key})}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeStorage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="removeStorage",actualCallApiName="util.domainStorage.removeItem";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.removeStorage$=removeStorage$,exports.default=removeStorage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/replacePage.d.ts b/node_modules/dingtalk-jsapi/api/union/replacePage.d.ts deleted file mode 100644 index 0a9daf40..00000000 --- a/node_modules/dingtalk-jsapi/api/union/replacePage.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 替换页面 请求参数定义 - * @apiName replacePage - */ -export interface IUnionReplacePageParams extends ICommonAPIParams { - url: string; -} -/** - * 替换页面 返回结果定义 - * @apiName replacePage - */ -export interface IUnionReplacePageResult { -} -/** - * 替换页面 - * @apiName replacePage - */ -export declare function replacePage$(params: IUnionReplacePageParams): Promise; -export default replacePage$; diff --git a/node_modules/dingtalk-jsapi/api/union/replacePage.js b/node_modules/dingtalk-jsapi/api/union/replacePage.js deleted file mode 100644 index 4b5f8af2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/replacePage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function replacePage$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.replacePage$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="replacePage",actualCallApiName="biz.navigation.replace";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.replacePage$=replacePage$,exports.default=replacePage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/requestAuthCode.d.ts b/node_modules/dingtalk-jsapi/api/union/requestAuthCode.d.ts deleted file mode 100644 index 8565e345..00000000 --- a/node_modules/dingtalk-jsapi/api/union/requestAuthCode.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 获取微应用免登授权码 请求参数定义 - * @apiName requestAuthCode - */ -export interface IUnionRequestAuthCodeParams extends ICommonAPIParams { - corpId: string; - clientId: string; -} -/** - * 获取微应用免登授权码 返回结果定义 - * @apiName requestAuthCode - */ -export interface IUnionRequestAuthCodeResult { - code: string; -} -/** - * 获取微应用免登授权码 - * @apiName requestAuthCode - */ -export declare function requestAuthCode$(params: IUnionRequestAuthCodeParams): Promise; -export default requestAuthCode$; diff --git a/node_modules/dingtalk-jsapi/api/union/requestAuthCode.js b/node_modules/dingtalk-jsapi/api/union/requestAuthCode.js deleted file mode 100644 index bd050a50..00000000 --- a/node_modules/dingtalk-jsapi/api/union/requestAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestAuthCode$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestAuthCode$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="requestAuthCode",actualCallApiName="runtime.permission.requestAuthCodeV2";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.45"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.45"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.50"},_a)),exports.requestAuthCode$=requestAuthCode$,exports.default=requestAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/requestMoneySubmmitOrder.d.ts b/node_modules/dingtalk-jsapi/api/union/requestMoneySubmmitOrder.d.ts deleted file mode 100644 index 22d00694..00000000 --- a/node_modules/dingtalk-jsapi/api/union/requestMoneySubmmitOrder.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 群收款发起提交订单 请求参数定义 - * @apiName requestMoneySubmmitOrder - */ -export interface IUnionRequestMoneySubmmitOrderParams extends ICommonAPIParams { - orderNo: string; -} -/** - * 群收款发起提交订单 返回结果定义 - * @apiName requestMoneySubmmitOrder - */ -export interface IUnionRequestMoneySubmmitOrderResult { -} -/** - * 群收款发起提交订单 - * @apiName requestMoneySubmmitOrder - */ -export declare function requestMoneySubmmitOrder$(params: IUnionRequestMoneySubmmitOrderParams): Promise; -export default requestMoneySubmmitOrder$; diff --git a/node_modules/dingtalk-jsapi/api/union/requestMoneySubmmitOrder.js b/node_modules/dingtalk-jsapi/api/union/requestMoneySubmmitOrder.js deleted file mode 100644 index 33fee9ec..00000000 --- a/node_modules/dingtalk-jsapi/api/union/requestMoneySubmmitOrder.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestMoneySubmmitOrder$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestMoneySubmmitOrder$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="requestMoneySubmmitOrder",actualCallApiName="biz.requestMoney.startSubmittingOrder";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.1.5"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.1.5"},_a)),exports.requestMoneySubmmitOrder$=requestMoneySubmmitOrder$,exports.default=requestMoneySubmmitOrder$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/resetScreenView.d.ts b/node_modules/dingtalk-jsapi/api/union/resetScreenView.d.ts deleted file mode 100644 index 4333b67d..00000000 --- a/node_modules/dingtalk-jsapi/api/union/resetScreenView.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 重置旋转屏幕 请求参数定义 - * @apiName resetScreenView - */ -export interface IUnionResetScreenViewParams extends ICommonAPIParams { -} -/** - * 重置旋转屏幕 返回结果定义 - * @apiName resetScreenView - */ -export interface IUnionResetScreenViewResult { -} -/** - * 重置旋转屏幕 - * @apiName resetScreenView - */ -export declare function resetScreenView$(params: IUnionResetScreenViewParams): Promise; -export default resetScreenView$; diff --git a/node_modules/dingtalk-jsapi/api/union/resetScreenView.js b/node_modules/dingtalk-jsapi/api/union/resetScreenView.js deleted file mode 100644 index bc3348dd..00000000 --- a/node_modules/dingtalk-jsapi/api/union/resetScreenView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resetScreenView$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.resetScreenView$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="resetScreenView",actualCallApiName="device.screen.resetView";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.resetScreenView$=resetScreenView$,exports.default=resetScreenView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/resumeAudio.d.ts b/node_modules/dingtalk-jsapi/api/union/resumeAudio.d.ts deleted file mode 100644 index e8d3d76c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/resumeAudio.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 恢复暂停播放的语音 请求参数定义 - * @apiName resumeAudio - */ -export interface IUnionResumeAudioParams extends ICommonAPIParams { - localAudioId: string; -} -/** - * 恢复暂停播放的语音 返回结果定义 - * @apiName resumeAudio - */ -export interface IUnionResumeAudioResult { -} -/** - * 恢复暂停播放的语音 - * @apiName resumeAudio - */ -export declare function resumeAudio$(params: IUnionResumeAudioParams): Promise; -export default resumeAudio$; diff --git a/node_modules/dingtalk-jsapi/api/union/resumeAudio.js b/node_modules/dingtalk-jsapi/api/union/resumeAudio.js deleted file mode 100644 index 92b0c839..00000000 --- a/node_modules/dingtalk-jsapi/api/union/resumeAudio.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resumeAudio$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.resumeAudio$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="resumeAudio",actualCallApiName="device.audio.resume";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.resumeAudio$=resumeAudio$,exports.default=resumeAudio$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/rotateScreenView.d.ts b/node_modules/dingtalk-jsapi/api/union/rotateScreenView.d.ts deleted file mode 100644 index b1f6e116..00000000 --- a/node_modules/dingtalk-jsapi/api/union/rotateScreenView.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 旋转屏幕 请求参数定义 - * @apiName rotateScreenView - */ -export interface IUnionRotateScreenViewParams extends ICommonAPIParams { - clockwise: boolean; - showStatusBar: boolean; -} -/** - * 旋转屏幕 返回结果定义 - * @apiName rotateScreenView - */ -export interface IUnionRotateScreenViewResult { -} -/** - * 旋转屏幕 - * @apiName rotateScreenView - */ -export declare function rotateScreenView$(params: IUnionRotateScreenViewParams): Promise; -export default rotateScreenView$; diff --git a/node_modules/dingtalk-jsapi/api/union/rotateScreenView.js b/node_modules/dingtalk-jsapi/api/union/rotateScreenView.js deleted file mode 100644 index 26e84477..00000000 --- a/node_modules/dingtalk-jsapi/api/union/rotateScreenView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function rotateScreenView$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.rotateScreenView$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="rotateScreenView",actualCallApiName="device.screen.rotateView";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.rotateScreenView$=rotateScreenView$,exports.default=rotateScreenView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/rsa.d.ts b/node_modules/dingtalk-jsapi/api/union/rsa.d.ts deleted file mode 100644 index 14b67cd8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/rsa.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * RSA加解密 请求参数定义 - * @apiName rsa - */ -export interface IUnionRsaParams extends ICommonAPIParams { - key: string; - text: string; - action: string; -} -/** - * RSA加解密 返回结果定义 - * @apiName rsa - */ -export interface IUnionRsaResult { - text: string; -} -/** - * RSA加解密 - * @apiName rsa - */ -export declare function rsa$(params: IUnionRsaParams): Promise; -export default rsa$; diff --git a/node_modules/dingtalk-jsapi/api/union/rsa.js b/node_modules/dingtalk-jsapi/api/union/rsa.js deleted file mode 100644 index 1dc74885..00000000 --- a/node_modules/dingtalk-jsapi/api/union/rsa.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function rsa$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.rsa$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="rsa",actualCallApiName="biz.data.rsa";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.rsa$=rsa$,exports.default=rsa$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/saveFileToDingTalk.d.ts b/node_modules/dingtalk-jsapi/api/union/saveFileToDingTalk.d.ts deleted file mode 100644 index 1e51e278..00000000 --- a/node_modules/dingtalk-jsapi/api/union/saveFileToDingTalk.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 转存文件到钉盘 请求参数定义 - * @apiName saveFileToDingTalk - */ -export interface IUnionSaveFileToDingTalkParams extends ICommonAPIParams { - url: string; - name: string; -} -/** - * 转存文件到钉盘 返回结果定义 - * @apiName saveFileToDingTalk - */ -export interface IUnionSaveFileToDingTalkResult { - data: { - fileId: string; - spaceId: string; - fileName: string; - fileSize: string; - fileType: string; - }[]; -} -/** - * 转存文件到钉盘 - * @apiName saveFileToDingTalk - */ -export declare function saveFileToDingTalk$(params: IUnionSaveFileToDingTalkParams): Promise; -export default saveFileToDingTalk$; diff --git a/node_modules/dingtalk-jsapi/api/union/saveFileToDingTalk.js b/node_modules/dingtalk-jsapi/api/union/saveFileToDingTalk.js deleted file mode 100644 index d3656083..00000000 --- a/node_modules/dingtalk-jsapi/api/union/saveFileToDingTalk.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveFileToDingTalk$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveFileToDingTalk$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="saveFileToDingTalk",actualCallApiName="biz.cspace.saveFile";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.saveFileToDingTalk$=saveFileToDingTalk$,exports.default=saveFileToDingTalk$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/saveImageToPhotosAlbum.d.ts b/node_modules/dingtalk-jsapi/api/union/saveImageToPhotosAlbum.d.ts deleted file mode 100644 index b6d6ef43..00000000 --- a/node_modules/dingtalk-jsapi/api/union/saveImageToPhotosAlbum.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 保存图片到系统相册 请求参数定义 - * @apiName saveImageToPhotosAlbum - */ -export interface IUnionSaveImageToPhotosAlbumParams extends ICommonAPIParams { - filePath: string; -} -/** - * 保存图片到系统相册 返回结果定义 - * @apiName saveImageToPhotosAlbum - */ -export interface IUnionSaveImageToPhotosAlbumResult { -} -/** - * 保存图片到系统相册 - * @apiName saveImageToPhotosAlbum - */ -export declare function saveImageToPhotosAlbum$(params: IUnionSaveImageToPhotosAlbumParams): Promise; -export default saveImageToPhotosAlbum$; diff --git a/node_modules/dingtalk-jsapi/api/union/saveImageToPhotosAlbum.js b/node_modules/dingtalk-jsapi/api/union/saveImageToPhotosAlbum.js deleted file mode 100644 index c16387a4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/saveImageToPhotosAlbum.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveImageToPhotosAlbum$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveImageToPhotosAlbum$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="saveImageToPhotosAlbum",actualCallApiName="biz.util.saveImageToPhotosAlbum";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.0"},_a)),exports.saveImageToPhotosAlbum$=saveImageToPhotosAlbum$,exports.default=saveImageToPhotosAlbum$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/saveVideoToPhotosAlbum.d.ts b/node_modules/dingtalk-jsapi/api/union/saveVideoToPhotosAlbum.d.ts deleted file mode 100644 index 5ff286d8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/saveVideoToPhotosAlbum.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 保存视频到系统相册 请求参数定义 - * @apiName saveVideoToPhotosAlbum - */ -export interface IUnionSaveVideoToPhotosAlbumParams extends ICommonAPIParams { - filePath: string; -} -/** - * 保存视频到系统相册 返回结果定义 - * @apiName saveVideoToPhotosAlbum - */ -export interface IUnionSaveVideoToPhotosAlbumResult { -} -/** - * 保存视频到系统相册 - * @apiName saveVideoToPhotosAlbum - */ -export declare function saveVideoToPhotosAlbum$(params: IUnionSaveVideoToPhotosAlbumParams): Promise; -export default saveVideoToPhotosAlbum$; diff --git a/node_modules/dingtalk-jsapi/api/union/saveVideoToPhotosAlbum.js b/node_modules/dingtalk-jsapi/api/union/saveVideoToPhotosAlbum.js deleted file mode 100644 index f221fad8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/saveVideoToPhotosAlbum.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveVideoToPhotosAlbum$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveVideoToPhotosAlbum$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="saveVideoToPhotosAlbum",actualCallApiName="biz.util.saveVideoToPhotosAlbum";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.1.20"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.1.20"},_a)),exports.saveVideoToPhotosAlbum$=saveVideoToPhotosAlbum$,exports.default=saveVideoToPhotosAlbum$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/scan.d.ts b/node_modules/dingtalk-jsapi/api/union/scan.d.ts deleted file mode 100644 index 6d5c991a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/scan.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 扫码 请求参数定义 - * @apiName scan - */ -export interface IUnionScanParams extends ICommonAPIParams { - type: string; -} -/** - * 扫码 返回结果定义 - * @apiName scan - */ -export interface IUnionScanResult { - code: string; -} -/** - * 扫码 - * @apiName scan - */ -export declare function scan$(params: IUnionScanParams): Promise; -export default scan$; diff --git a/node_modules/dingtalk-jsapi/api/union/scan.js b/node_modules/dingtalk-jsapi/api/union/scan.js deleted file mode 100644 index 574007b5..00000000 --- a/node_modules/dingtalk-jsapi/api/union/scan.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scan$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.scan$=void 0;var apiHelper_1=require("./../../lib/apiHelper"),ddSdk_1=require("../../lib/ddSdk"),apiName="scan",actualCallApiName="biz.util.scan";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:apiHelper_1.scanParamsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:apiHelper_1.scanParamsDeal},_a)),exports.scan$=scan$,exports.default=scan$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/scanCard.d.ts b/node_modules/dingtalk-jsapi/api/union/scanCard.d.ts deleted file mode 100644 index b5c24698..00000000 --- a/node_modules/dingtalk-jsapi/api/union/scanCard.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 扫名片 请求参数定义 - * @apiName scanCard - */ -export interface IUnionScanCardParams extends ICommonAPIParams { -} -/** - * 扫名片 返回结果定义 - * @apiName scanCard - */ -export interface IUnionScanCardResult { - NAME: string; - IMAGE: string; - PHONE: string; - MPHONE: string; - ADDRESS: string; - COMPANY: string; - POSITION: string; -} -/** - * 扫名片 - * @apiName scanCard - */ -export declare function scanCard$(params: IUnionScanCardParams): Promise; -export default scanCard$; diff --git a/node_modules/dingtalk-jsapi/api/union/scanCard.js b/node_modules/dingtalk-jsapi/api/union/scanCard.js deleted file mode 100644 index 78b53c15..00000000 --- a/node_modules/dingtalk-jsapi/api/union/scanCard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scanCard$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.scanCard$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="scanCard",actualCallApiName="biz.util.scanCard";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.scanCard$=scanCard$,exports.default=scanCard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/searchMap.d.ts b/node_modules/dingtalk-jsapi/api/union/searchMap.d.ts deleted file mode 100644 index 7091dbcd..00000000 --- a/node_modules/dingtalk-jsapi/api/union/searchMap.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 地图页面支持搜索 请求参数定义 - * @apiName searchMap - */ -export interface IUnionSearchMapParams extends ICommonAPIParams { - scope: number; - latitude: number; - longitude: number; -} -/** - * 地图页面支持搜索 返回结果定义 - * @apiName searchMap - */ -export interface IUnionSearchMapResult { - city: string; - title: string; - adCode: string; - adName: string; - snippet: string; - cityCode: string; - distance: string; - latitude: number; - postCode: string; - province: string; - longitude: string; - provinceCode: string; -} -/** - * 地图页面支持搜索 - * @apiName searchMap - */ -export declare function searchMap$(params: IUnionSearchMapParams): Promise; -export default searchMap$; diff --git a/node_modules/dingtalk-jsapi/api/union/searchMap.js b/node_modules/dingtalk-jsapi/api/union/searchMap.js deleted file mode 100644 index b575964b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/searchMap.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function searchMap$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.searchMap$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="searchMap",actualCallApiName="biz.map.search";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.searchMap$=searchMap$,exports.default=searchMap$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/setClipboard.d.ts b/node_modules/dingtalk-jsapi/api/union/setClipboard.d.ts deleted file mode 100644 index 1b2fbf15..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setClipboard.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 设置剪切板数据 请求参数定义 - * @apiName setClipboard - */ -export interface IUnionSetClipboardParams extends ICommonAPIParams { - text: string; -} -/** - * 设置剪切板数据 返回结果定义 - * @apiName setClipboard - */ -export interface IUnionSetClipboardResult { -} -/** - * 设置剪切板数据 - * @apiName setClipboard - */ -export declare function setClipboard$(params: IUnionSetClipboardParams): Promise; -export default setClipboard$; diff --git a/node_modules/dingtalk-jsapi/api/union/setClipboard.js b/node_modules/dingtalk-jsapi/api/union/setClipboard.js deleted file mode 100644 index 236722e8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setClipboard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setClipboard$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setClipboard$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="setClipboard",actualCallApiName="biz.clipboardData.setData";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.5.60"},_a)),exports.setClipboard$=setClipboard$,exports.default=setClipboard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/setGestures.d.ts b/node_modules/dingtalk-jsapi/api/union/setGestures.d.ts deleted file mode 100644 index bebd38eb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setGestures.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 设置webView回退手势 请求参数定义 - * @apiName setGestures - */ -export interface IUnionSetGesturesParams extends ICommonAPIParams { - backForwardNavigationGestures: boolean; -} -/** - * 设置webView回退手势 返回结果定义 - * @apiName setGestures - */ -export interface IUnionSetGesturesResult { -} -/** - * 设置webView回退手势 - * @apiName setGestures - */ -export declare function setGestures$(params: IUnionSetGesturesParams): Promise; -export default setGestures$; diff --git a/node_modules/dingtalk-jsapi/api/union/setGestures.js b/node_modules/dingtalk-jsapi/api/union/setGestures.js deleted file mode 100644 index 1f99553c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setGestures.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setGestures$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setGestures$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="setGestures",actualCallApiName="biz.navigation.gestures";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.15"},_a)),exports.setGestures$=setGestures$,exports.default=setGestures$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/setKeepScreenOn.d.ts b/node_modules/dingtalk-jsapi/api/union/setKeepScreenOn.d.ts deleted file mode 100644 index 5bde214c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setKeepScreenOn.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 设置屏幕常亮 请求参数定义 - * @apiName setKeepScreenOn - */ -export interface IUnionSetKeepScreenOnParams extends ICommonAPIParams { - isKeep: boolean; -} -/** - * 设置屏幕常亮 返回结果定义 - * @apiName setKeepScreenOn - */ -export interface IUnionSetKeepScreenOnResult { -} -/** - * 设置屏幕常亮 - * @apiName setKeepScreenOn - */ -export declare function setKeepScreenOn$(params: IUnionSetKeepScreenOnParams): Promise; -export default setKeepScreenOn$; diff --git a/node_modules/dingtalk-jsapi/api/union/setKeepScreenOn.js b/node_modules/dingtalk-jsapi/api/union/setKeepScreenOn.js deleted file mode 100644 index c193a8e4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setKeepScreenOn.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setKeepScreenOn$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setKeepScreenOn$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="setKeepScreenOn",actualCallApiName="biz.util.setScreenKeepOn";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"5.1.26"},_a[ddSdk_1.ENV_ENUM.android]={vs:"5.1.26"},_a)),exports.setKeepScreenOn$=setKeepScreenOn$,exports.default=setKeepScreenOn$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/setNavigationIcon.d.ts b/node_modules/dingtalk-jsapi/api/union/setNavigationIcon.d.ts deleted file mode 100644 index 1895bdfd..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setNavigationIcon.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 标题栏添加问号图标 请求参数定义 - * @apiName setNavigationIcon - */ -export interface IUnionSetNavigationIconParams extends ICommonAPIParams { - showIcon: boolean; - iconIndex: number; -} -/** - * 标题栏添加问号图标 返回结果定义 - * @apiName setNavigationIcon - */ -export interface IUnionSetNavigationIconResult { -} -/** - * 标题栏添加问号图标 - * @apiName setNavigationIcon - */ -export declare function setNavigationIcon$(params: IUnionSetNavigationIconParams): Promise; -export default setNavigationIcon$; diff --git a/node_modules/dingtalk-jsapi/api/union/setNavigationIcon.js b/node_modules/dingtalk-jsapi/api/union/setNavigationIcon.js deleted file mode 100644 index 9c8da2c8..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setNavigationIcon.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setNavigationIcon$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setNavigationIcon$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="setNavigationIcon",actualCallApiName="biz.navigation.setIcon",paramsDeal=apiHelper_1.genDefaultParamsDealFn({watch:!0,showIcon:!0,iconIndex:1});ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.setNavigationIcon$=setNavigationIcon$,exports.default=setNavigationIcon$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/setNavigationLeft.d.ts b/node_modules/dingtalk-jsapi/api/union/setNavigationLeft.d.ts deleted file mode 100644 index f673e415..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setNavigationLeft.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 设置左侧导航按钮文本 请求参数定义 - * @apiName setNavigationLeft - */ -export interface IUnionSetNavigationLeftParams extends ICommonAPIParams { - text: string; - control?: boolean; -} -/** - * 设置左侧导航按钮文本 返回结果定义 - * @apiName setNavigationLeft - */ -export interface IUnionSetNavigationLeftResult { -} -/** - * 设置左侧导航按钮文本 - * @apiName setNavigationLeft - */ -export declare function setNavigationLeft$(params: IUnionSetNavigationLeftParams): Promise; -export default setNavigationLeft$; diff --git a/node_modules/dingtalk-jsapi/api/union/setNavigationLeft.js b/node_modules/dingtalk-jsapi/api/union/setNavigationLeft.js deleted file mode 100644 index 33c8d28a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setNavigationLeft.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setNavigationLeft$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setNavigationLeft$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="setNavigationLeft",actualCallApiName="biz.navigation.setLeft",paramsDeal=apiHelper_1.genDefaultParamsDealFn({watch:!0,show:!0,control:!1,showIcon:!0,text:""});ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a)),exports.setNavigationLeft$=setNavigationLeft$,exports.default=setNavigationLeft$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/setNavigationTitle.d.ts b/node_modules/dingtalk-jsapi/api/union/setNavigationTitle.d.ts deleted file mode 100644 index c513291e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setNavigationTitle.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 设置导航栏标题 请求参数定义 - * @apiName setNavigationTitle - */ -export interface IUnionSetNavigationTitleParams extends ICommonAPIParams { - title: string; -} -/** - * 设置导航栏标题 返回结果定义 - * @apiName setNavigationTitle - */ -export interface IUnionSetNavigationTitleResult { -} -/** - * 设置导航栏标题 - * @apiName setNavigationTitle - */ -export declare function setNavigationTitle$(params: IUnionSetNavigationTitleParams): Promise; -export default setNavigationTitle$; diff --git a/node_modules/dingtalk-jsapi/api/union/setNavigationTitle.js b/node_modules/dingtalk-jsapi/api/union/setNavigationTitle.js deleted file mode 100644 index ff39d635..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setNavigationTitle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setNavigationTitle$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setNavigationTitle$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="setNavigationTitle",actualCallApiName="biz.navigation.setTitle";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a)),exports.setNavigationTitle$=setNavigationTitle$,exports.default=setNavigationTitle$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/setScreenBrightness.d.ts b/node_modules/dingtalk-jsapi/api/union/setScreenBrightness.d.ts deleted file mode 100644 index 3bac5c75..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setScreenBrightness.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 设置屏幕亮度 请求参数定义 - * @apiName setScreenBrightness - */ -export interface IUnionSetScreenBrightnessParams extends ICommonAPIParams { - brightness: number; -} -/** - * 设置屏幕亮度 返回结果定义 - * @apiName setScreenBrightness - */ -export interface IUnionSetScreenBrightnessResult { -} -/** - * 设置屏幕亮度 - * @apiName setScreenBrightness - */ -export declare function setScreenBrightness$(params: IUnionSetScreenBrightnessParams): Promise; -export default setScreenBrightness$; diff --git a/node_modules/dingtalk-jsapi/api/union/setScreenBrightness.js b/node_modules/dingtalk-jsapi/api/union/setScreenBrightness.js deleted file mode 100644 index 23d59057..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setScreenBrightness.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setScreenBrightness$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.setScreenBrightness$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="setScreenBrightness",actualCallApiName="device.screen.setScreenBrightness";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.setScreenBrightness$=setScreenBrightness$,exports.default=setScreenBrightness$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/setStorage.d.ts b/node_modules/dingtalk-jsapi/api/union/setStorage.d.ts deleted file mode 100644 index 8ba47816..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setStorage.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 将数据存储在本地缓存 请求参数定义 - * @apiName setStorage - */ -export interface IUnionSetStorageParams extends ICommonAPIParams { - key: string; - data: string; -} -/** - * 将数据存储在本地缓存 返回结果定义 - * @apiName setStorage - */ -export interface IUnionSetStorageResult { -} -/** - * 将数据存储在本地缓存 - * @apiName setStorage - */ -export declare function setStorage$(params: IUnionSetStorageParams): Promise; -export default setStorage$; diff --git a/node_modules/dingtalk-jsapi/api/union/setStorage.js b/node_modules/dingtalk-jsapi/api/union/setStorage.js deleted file mode 100644 index 3397217a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/setStorage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setStorage$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,s=1,t=arguments.length;s; -export default share$; diff --git a/node_modules/dingtalk-jsapi/api/union/share.js b/node_modules/dingtalk-jsapi/api/union/share.js deleted file mode 100644 index 496954c0..00000000 --- a/node_modules/dingtalk-jsapi/api/union/share.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function share$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.share$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="share",actualCallApiName="biz.util.share";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.share$=share$,exports.default=share$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/showActionSheet.d.ts b/node_modules/dingtalk-jsapi/api/union/showActionSheet.d.ts deleted file mode 100644 index 7b191652..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showActionSheet.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 显示操作菜单 请求参数定义 - * @apiName showActionSheet - */ -export interface IUnionShowActionSheetParams extends ICommonAPIParams { - items: string[]; - title: string; - cancelButtonText: string; -} -/** - * 显示操作菜单 返回结果定义 - * @apiName showActionSheet - */ -export interface IUnionShowActionSheetResult { - index: number; -} -/** - * 显示操作菜单 - * @apiName showActionSheet - */ -export declare function showActionSheet$(params: IUnionShowActionSheetParams): Promise; -export default showActionSheet$; diff --git a/node_modules/dingtalk-jsapi/api/union/showActionSheet.js b/node_modules/dingtalk-jsapi/api/union/showActionSheet.js deleted file mode 100644 index a1e2eead..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showActionSheet.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showActionSheet$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,{title:e.title,cancelButton:e.cancelButtonText,otherButtons:e.items,success:e.success,fail:e.fail,complete:e.complete})}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var t,a=1,n=arguments.length;a; -export default showAuthGuide$; diff --git a/node_modules/dingtalk-jsapi/api/union/showAuthGuide.js b/node_modules/dingtalk-jsapi/api/union/showAuthGuide.js deleted file mode 100644 index faf13053..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showAuthGuide.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showAuthGuide$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.showAuthGuide$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="showAuthGuide",actualCallApiName="biz.util.showAuthGuide";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a)),exports.showAuthGuide$=showAuthGuide$,exports.default=showAuthGuide$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/showCallMenu.d.ts b/node_modules/dingtalk-jsapi/api/union/showCallMenu.d.ts deleted file mode 100644 index dbc76f17..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showCallMenu.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 唤起拨打电话菜单 请求参数定义 - * @apiName showCallMenu - */ -export interface IUnionShowCallMenuParams extends ICommonAPIParams { - code: string; - phoneNumber: string; - showDingCall?: boolean; -} -/** - * 唤起拨打电话菜单 返回结果定义 - * @apiName showCallMenu - */ -export interface IUnionShowCallMenuResult { -} -/** - * 唤起拨打电话菜单 - * @apiName showCallMenu - */ -export declare function showCallMenu$(params: IUnionShowCallMenuParams): Promise; -export default showCallMenu$; diff --git a/node_modules/dingtalk-jsapi/api/union/showCallMenu.js b/node_modules/dingtalk-jsapi/api/union/showCallMenu.js deleted file mode 100644 index b18a35dc..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showCallMenu.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showCallMenu$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.showCallMenu$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="showCallMenu",actualCallApiName="biz.telephone.showCallMenu";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.showCallMenu$=showCallMenu$,exports.default=showCallMenu$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/showLoading.d.ts b/node_modules/dingtalk-jsapi/api/union/showLoading.d.ts deleted file mode 100644 index 031f3edb..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showLoading.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 显示加载提示 请求参数定义 - * @apiName showLoading - */ -export interface IUnionShowLoadingParams extends ICommonAPIParams { - content: string; -} -/** - * 显示加载提示 返回结果定义 - * @apiName showLoading - */ -export interface IUnionShowLoadingResult { -} -/** - * 显示加载提示 - * @apiName showLoading - */ -export declare function showLoading$(params: IUnionShowLoadingParams): Promise; -export default showLoading$; diff --git a/node_modules/dingtalk-jsapi/api/union/showLoading.js b/node_modules/dingtalk-jsapi/api/union/showLoading.js deleted file mode 100644 index cd134625..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showLoading.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showLoading$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,{text:a.content,showIcon:!0,success:a.success,fail:a.fail,complete:a.complete})}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,s=1,d=arguments.length;s; - /** 最多两个按钮,至少有一个按钮。 */ - buttonLabels: string[]; -} -/** - * 增强版modal弹浮层 返回结果定义 - * @apiName showModal - */ -export interface IUnionShowModalResult { - buttonIndex: string; -} -/** - * 增强版modal弹浮层 - * @apiName showModal - */ -export declare function showModal$(params: IUnionShowModalParams): Promise; -export default showModal$; diff --git a/node_modules/dingtalk-jsapi/api/union/showModal.js b/node_modules/dingtalk-jsapi/api/union/showModal.js deleted file mode 100644 index 010f16f4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showModal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showModal$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.showModal$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="showModal",actualCallApiName="device.notification.extendModal";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.showModal$=showModal$,exports.default=showModal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/showSharePanel.d.ts b/node_modules/dingtalk-jsapi/api/union/showSharePanel.d.ts deleted file mode 100644 index f58e8dad..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showSharePanel.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 展示分享面板 请求参数定义 - * @apiName showSharePanel - */ -export interface IUnionShowSharePanelParams extends ICommonAPIParams { -} -/** - * 展示分享面板 返回结果定义 - * @apiName showSharePanel - */ -export interface IUnionShowSharePanelResult { -} -/** - * 展示分享面板 - * @apiName showSharePanel - */ -export declare function showSharePanel$(params: IUnionShowSharePanelParams): Promise; -export default showSharePanel$; diff --git a/node_modules/dingtalk-jsapi/api/union/showSharePanel.js b/node_modules/dingtalk-jsapi/api/union/showSharePanel.js deleted file mode 100644 index 19248c46..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showSharePanel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showSharePanel$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.showSharePanel$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="showSharePanel",actualCallApiName="biz.util.showSharePanel";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.10"},_a)),exports.showSharePanel$=showSharePanel$,exports.default=showSharePanel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/showToast.d.ts b/node_modules/dingtalk-jsapi/api/union/showToast.d.ts deleted file mode 100644 index 349097b2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showToast.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 显示弱提示 请求参数定义 - * @apiName showToast - */ -export interface IUnionShowToastParams extends ICommonAPIParams { - type: string; - content: string; - duration?: number; -} -/** - * 显示弱提示 返回结果定义 - * @apiName showToast - */ -export interface IUnionShowToastResult { -} -/** - * 显示弱提示 - * @apiName showToast - */ -export declare function showToast$(params: IUnionShowToastParams): Promise; -export default showToast$; diff --git a/node_modules/dingtalk-jsapi/api/union/showToast.js b/node_modules/dingtalk-jsapi/api/union/showToast.js deleted file mode 100644 index 74db1128..00000000 --- a/node_modules/dingtalk-jsapi/api/union/showToast.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showToast$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,{icon:a.type,duration:a.duration?a.duration/1e3:3,text:a.content,success:a.success,fail:a.fail,complete:a.complete})}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var t,e=1,s=arguments.length;e; -export default singleSelect$; diff --git a/node_modules/dingtalk-jsapi/api/union/singleSelect.js b/node_modules/dingtalk-jsapi/api/union/singleSelect.js deleted file mode 100644 index 7671fd9a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/singleSelect.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function singleSelect$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.singleSelect$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="singleSelect",actualCallApiName="biz.util.chosen";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.singleSelect$=singleSelect$,exports.default=singleSelect$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/startAdvertising.d.ts b/node_modules/dingtalk-jsapi/api/union/startAdvertising.d.ts deleted file mode 100644 index dfbcf666..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startAdvertising.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 开启蓝牙广播 请求参数定义 - * @apiName startAdvertising - */ -export interface IUnionStartAdvertisingParams extends ICommonAPIParams { - services: { - uuid: string; - characteristics: { - uuid: string; - value?: string; - permission?: { - readable: boolean; - writeable: boolean; - readEncryptionRequired: boolean; - writeEncryptionRequired: boolean; - }; - properties?: { - read?: boolean; - write?: boolean; - notify?: boolean; - indicate?: boolean; - writeNoResponse?: boolean; - }; - descriptors?: { - uuid: string; - value?: string; - permission?: { - read: boolean; - write: boolean; - }; - }[]; - }[]; - }[]; - deviceName?: string; -} -/** - * 开启蓝牙广播 返回结果定义 - * @apiName startAdvertising - */ -export interface IUnionStartAdvertisingResult { -} -/** - * 开启蓝牙广播 - * @apiName startAdvertising - */ -export declare function startAdvertising$(params: IUnionStartAdvertisingParams): Promise; -export default startAdvertising$; diff --git a/node_modules/dingtalk-jsapi/api/union/startAdvertising.js b/node_modules/dingtalk-jsapi/api/union/startAdvertising.js deleted file mode 100644 index 49d0f8f9..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startAdvertising.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startAdvertising$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startAdvertising$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="startAdvertising",actualCallApiName="biz.realm.startAdvertising";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.0"},_a)),exports.startAdvertising$=startAdvertising$,exports.default=startAdvertising$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/startBeaconDiscovery.d.ts b/node_modules/dingtalk-jsapi/api/union/startBeaconDiscovery.d.ts deleted file mode 100644 index 6a150b7f..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startBeaconDiscovery.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 开始搜索附近的 iBeacon 设备 请求参数定义 - * @apiName startBeaconDiscovery - */ -export interface IUnionStartBeaconDiscoveryParams extends ICommonAPIParams { - uuids: string[]; -} -/** - * 开始搜索附近的 iBeacon 设备 返回结果定义 - * @apiName startBeaconDiscovery - */ -export interface IUnionStartBeaconDiscoveryResult { -} -/** - * 开始搜索附近的 iBeacon 设备。 - * @apiName startBeaconDiscovery - * @supportVersion ios: 4.6.38 android: 4.6.38 - */ -export declare function startBeaconDiscovery$(params: IUnionStartBeaconDiscoveryParams): Promise; -export default startBeaconDiscovery$; diff --git a/node_modules/dingtalk-jsapi/api/union/startBeaconDiscovery.js b/node_modules/dingtalk-jsapi/api/union/startBeaconDiscovery.js deleted file mode 100644 index a74710b6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startBeaconDiscovery.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startBeaconDiscovery$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var a,r=1,s=arguments.length;r; -export default startBluetoothDevicesDiscovery$; diff --git a/node_modules/dingtalk-jsapi/api/union/startBluetoothDevicesDiscovery.js b/node_modules/dingtalk-jsapi/api/union/startBluetoothDevicesDiscovery.js deleted file mode 100644 index 1acd79f2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startBluetoothDevicesDiscovery.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startBluetoothDevicesDiscovery$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var t,s=1,r=arguments.length;s; -export default startDingerRecord$; diff --git a/node_modules/dingtalk-jsapi/api/union/startDingerRecord.js b/node_modules/dingtalk-jsapi/api/union/startDingerRecord.js deleted file mode 100644 index 45f0e019..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startDingerRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startDingerRecord$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startDingerRecord$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="startDingerRecord",actualCallApiName="biz.dinger.startDingerRecord";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.2.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"8.2.10"},_a)),exports.startDingerRecord$=startDingerRecord$,exports.default=startDingerRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/startLocating.d.ts b/node_modules/dingtalk-jsapi/api/union/startLocating.d.ts deleted file mode 100644 index a9774c11..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startLocating.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 连续获取当前地理位置信息(持续定位) 请求参数定义 - * @apiName startLocating - */ -export interface IUnionStartLocatingParams extends ICommonAPIParams { - sceneId: string; - useCache: boolean; - withReGeocode: boolean; - targetAccuracy: number; - callBackInterval: number; - iOSDistanceFilter: number; -} -/** - * 连续获取当前地理位置信息(持续定位) 返回结果定义 - * @apiName startLocating - */ -export interface IUnionStartLocatingResult { - city: string; - road: string; - address: string; - netType: string; - accuracy: number; - district: string; - latitude: number; - provider: string; - province: string; - errorCode: number; - longitude: number; - isFromMock: boolean; - errorMessage: string; - isGpsEnabled: boolean; - locationType: number; - operatorType: string; - isWifiEnabled: boolean; - isMobileEnabled: boolean; -} -/** - * 连续获取当前地理位置信息(持续定位) - * @apiName startLocating - */ -export declare function startLocating$(params: IUnionStartLocatingParams): Promise; -export default startLocating$; diff --git a/node_modules/dingtalk-jsapi/api/union/startLocating.js b/node_modules/dingtalk-jsapi/api/union/startLocating.js deleted file mode 100644 index 4f660b23..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startLocating.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startLocating$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startLocating$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="startLocating",actualCallApiName="device.geolocation.start";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.startLocating$=startLocating$,exports.default=startLocating$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/startRecord.d.ts b/node_modules/dingtalk-jsapi/api/union/startRecord.d.ts deleted file mode 100644 index 0070cad1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startRecord.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 开始录音 请求参数定义 - * @apiName startRecord - */ -export interface IUnionStartRecordParams extends ICommonAPIParams { - maxDuration: number; -} -/** - * 开始录音 返回结果定义 - * @apiName startRecord - */ -export interface IUnionStartRecordResult { -} -/** - * 开始录音 - * @apiName startRecord - */ -export declare function startRecord$(params: IUnionStartRecordParams): Promise; -export default startRecord$; diff --git a/node_modules/dingtalk-jsapi/api/union/startRecord.js b/node_modules/dingtalk-jsapi/api/union/startRecord.js deleted file mode 100644 index aa1f97cf..00000000 --- a/node_modules/dingtalk-jsapi/api/union/startRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startRecord$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.startRecord$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="startRecord",actualCallApiName="device.audio.startRecord";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.30"},_a)),exports.startRecord$=startRecord$,exports.default=startRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/stopAdvertising.d.ts b/node_modules/dingtalk-jsapi/api/union/stopAdvertising.d.ts deleted file mode 100644 index 1e489386..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopAdvertising.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 停止蓝牙广播 请求参数定义 - * @apiName stopAdvertising - */ -export interface IUnionStopAdvertisingParams extends ICommonAPIParams { -} -/** - * 停止蓝牙广播 返回结果定义 - * @apiName stopAdvertising - */ -export interface IUnionStopAdvertisingResult { -} -/** - * 停止蓝牙广播 - * @apiName stopAdvertising - */ -export declare function stopAdvertising$(params: IUnionStopAdvertisingParams): Promise; -export default stopAdvertising$; diff --git a/node_modules/dingtalk-jsapi/api/union/stopAdvertising.js b/node_modules/dingtalk-jsapi/api/union/stopAdvertising.js deleted file mode 100644 index 8d4583a4..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopAdvertising.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopAdvertising$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopAdvertising$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="stopAdvertising",actualCallApiName="biz.realm.stopAdvertising";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.0"},_a)),exports.stopAdvertising$=stopAdvertising$,exports.default=stopAdvertising$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/stopAudio.d.ts b/node_modules/dingtalk-jsapi/api/union/stopAudio.d.ts deleted file mode 100644 index 9b09a5f0..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopAudio.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 停止播放音频 请求参数定义 - * @apiName stopAudio - */ -export interface IUnionStopAudioParams extends ICommonAPIParams { - localAudioId: string; -} -/** - * 停止播放音频 返回结果定义 - * @apiName stopAudio - */ -export interface IUnionStopAudioResult { -} -/** - * 停止播放音频 - * @apiName stopAudio - */ -export declare function stopAudio$(params: IUnionStopAudioParams): Promise; -export default stopAudio$; diff --git a/node_modules/dingtalk-jsapi/api/union/stopAudio.js b/node_modules/dingtalk-jsapi/api/union/stopAudio.js deleted file mode 100644 index b417f135..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopAudio.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopAudio$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopAudio$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="stopAudio",actualCallApiName="device.audio.stop";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.stopAudio$=stopAudio$,exports.default=stopAudio$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/stopBeaconDiscovery.d.ts b/node_modules/dingtalk-jsapi/api/union/stopBeaconDiscovery.d.ts deleted file mode 100644 index 0469f53a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopBeaconDiscovery.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 停止搜索附近的 iBeacon 设备 请求参数定义 - * @apiName stopBeaconDiscovery - */ -export interface IUnionStopBeaconDiscoveryParams extends ICommonAPIParams { -} -/** - * 停止搜索附近的 iBeacon 设备 返回结果定义 - * @apiName stopBeaconDiscovery - */ -export interface IUnionStopBeaconDiscoveryResult { - [key: string]: any; -} -/** - * 停止搜索附近的 iBeacon 设备。 - * @apiName stopBeaconDiscovery - * @supportVersion ios: 4.6.38 android: 4.6.38 - */ -export declare function stopBeaconDiscovery$(params: IUnionStopBeaconDiscoveryParams): Promise; -export default stopBeaconDiscovery$; diff --git a/node_modules/dingtalk-jsapi/api/union/stopBeaconDiscovery.js b/node_modules/dingtalk-jsapi/api/union/stopBeaconDiscovery.js deleted file mode 100644 index 9ea670f3..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopBeaconDiscovery.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopBeaconDiscovery$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var s,o=1,a=arguments.length;o; -export default stopBluetoothDevicesDiscovery$; diff --git a/node_modules/dingtalk-jsapi/api/union/stopBluetoothDevicesDiscovery.js b/node_modules/dingtalk-jsapi/api/union/stopBluetoothDevicesDiscovery.js deleted file mode 100644 index 6e500822..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopBluetoothDevicesDiscovery.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopBluetoothDevicesDiscovery$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var s,t=1,o=arguments.length;t; -export default stopDingerRecord$; diff --git a/node_modules/dingtalk-jsapi/api/union/stopDingerRecord.js b/node_modules/dingtalk-jsapi/api/union/stopDingerRecord.js deleted file mode 100644 index f67bf744..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopDingerRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopDingerRecord$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopDingerRecord$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="stopDingerRecord",actualCallApiName="biz.dinger.stopDingerRecord";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"8.2.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"8.2.10"},_a)),exports.stopDingerRecord$=stopDingerRecord$,exports.default=stopDingerRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/stopLocating.d.ts b/node_modules/dingtalk-jsapi/api/union/stopLocating.d.ts deleted file mode 100644 index 64962914..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopLocating.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 停止连续定位 请求参数定义 - * @apiName stopLocating - */ -export interface IUnionStopLocatingParams extends ICommonAPIParams { - sceneId: string; -} -/** - * 停止连续定位 返回结果定义 - * @apiName stopLocating - */ -export interface IUnionStopLocatingResult { - sceneId: string; -} -/** - * 停止连续定位 - * @apiName stopLocating - */ -export declare function stopLocating$(params: IUnionStopLocatingParams): Promise; -export default stopLocating$; diff --git a/node_modules/dingtalk-jsapi/api/union/stopLocating.js b/node_modules/dingtalk-jsapi/api/union/stopLocating.js deleted file mode 100644 index b7a4284a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopLocating.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopLocating$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopLocating$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="stopLocating",actualCallApiName="device.geolocation.stop";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.stopLocating$=stopLocating$,exports.default=stopLocating$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/stopPullDownRefresh.d.ts b/node_modules/dingtalk-jsapi/api/union/stopPullDownRefresh.d.ts deleted file mode 100644 index 9895e6e2..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopPullDownRefresh.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 停止下拉刷新 请求参数定义 - * @apiName stopPullDownRefresh - */ -export interface IUnionStopPullDownRefreshParams extends ICommonAPIParams { -} -/** - * 停止下拉刷新 返回结果定义 - * @apiName stopPullDownRefresh - */ -export interface IUnionStopPullDownRefreshResult { -} -/** - * 停止下拉刷新 - * @apiName stopPullDownRefresh - */ -export declare function stopPullDownRefresh$(params: IUnionStopPullDownRefreshParams): Promise; -export default stopPullDownRefresh$; diff --git a/node_modules/dingtalk-jsapi/api/union/stopPullDownRefresh.js b/node_modules/dingtalk-jsapi/api/union/stopPullDownRefresh.js deleted file mode 100644 index faec48db..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopPullDownRefresh.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopPullDownRefresh$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopPullDownRefresh$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="stopPullDownRefresh",actualCallApiName="ui.pullToRefresh.stop";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.stopPullDownRefresh$=stopPullDownRefresh$,exports.default=stopPullDownRefresh$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/stopRecord.d.ts b/node_modules/dingtalk-jsapi/api/union/stopRecord.d.ts deleted file mode 100644 index f75d23bf..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopRecord.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 停止录音 请求参数定义 - * @apiName stopRecord - */ -export interface IUnionStopRecordParams extends ICommonAPIParams { -} -/** - * 停止录音 返回结果定义 - * @apiName stopRecord - */ -export interface IUnionStopRecordResult { -} -/** - * 停止录音 - * @apiName stopRecord - */ -export declare function stopRecord$(params: IUnionStopRecordParams): Promise; -export default stopRecord$; diff --git a/node_modules/dingtalk-jsapi/api/union/stopRecord.js b/node_modules/dingtalk-jsapi/api/union/stopRecord.js deleted file mode 100644 index 615a835c..00000000 --- a/node_modules/dingtalk-jsapi/api/union/stopRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopRecord$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopRecord$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="stopRecord",actualCallApiName="device.audio.stopRecord";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.30"},_a)),exports.stopRecord$=stopRecord$,exports.default=stopRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/subscribe.d.ts b/node_modules/dingtalk-jsapi/api/union/subscribe.d.ts deleted file mode 100644 index 3f677841..00000000 --- a/node_modules/dingtalk-jsapi/api/union/subscribe.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 注册通知(流式返回) 请求参数定义 - * @apiName subscribe - */ -export interface IUnionSubscribeParams extends ICommonAPIParams { - token: string; - eventName: string; - nameSpace: string; -} -/** - * 注册通知(流式返回) 返回结果定义 - * @apiName subscribe - */ -export interface IUnionSubscribeResult { -} -/** - * 注册通知(流式返回) - * @apiName subscribe - */ -export declare function subscribe$(params: IUnionSubscribeParams): Promise; -export default subscribe$; diff --git a/node_modules/dingtalk-jsapi/api/union/subscribe.js b/node_modules/dingtalk-jsapi/api/union/subscribe.js deleted file mode 100644 index 799ce941..00000000 --- a/node_modules/dingtalk-jsapi/api/union/subscribe.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function subscribe$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.subscribe$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="subscribe",actualCallApiName="biz.notify.subscribe";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.5.35"},_a)),exports.subscribe$=subscribe$,exports.default=subscribe$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/timePicker.d.ts b/node_modules/dingtalk-jsapi/api/union/timePicker.d.ts deleted file mode 100644 index 8cd9bc6a..00000000 --- a/node_modules/dingtalk-jsapi/api/union/timePicker.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 时间选择器 请求参数定义 - * @apiName timePicker - */ -export interface IUnionTimePickerParams extends ICommonAPIParams { - value: string; - format: string; -} -/** - * 时间选择器 返回结果定义 - * @apiName timePicker - */ -export interface IUnionTimePickerResult { - value: string; -} -/** - * 时间选择器 - * @apiName timePicker - */ -export declare function timePicker$(params: IUnionTimePickerParams): Promise; -export default timePicker$; diff --git a/node_modules/dingtalk-jsapi/api/union/timePicker.js b/node_modules/dingtalk-jsapi/api/union/timePicker.js deleted file mode 100644 index e97d9c9e..00000000 --- a/node_modules/dingtalk-jsapi/api/union/timePicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function timePicker$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.timePicker$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="timePicker",actualCallApiName="biz.util.timepicker";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.timePicker$=timePicker$,exports.default=timePicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/translate.d.ts b/node_modules/dingtalk-jsapi/api/union/translate.d.ts deleted file mode 100644 index 1b3ecc5b..00000000 --- a/node_modules/dingtalk-jsapi/api/union/translate.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 文案翻译(流式返回) 请求参数定义 - * @apiName translate - */ -export interface IUnionTranslateParams extends ICommonAPIParams { - token: string; - sourceTexts: { - id: string; - text: string; - format?: string; - }[]; - targetLanguage: string; -} -/** - * 文案翻译(流式返回) 返回结果定义 - * @apiName translate - */ -export interface IUnionTranslateResult { - translatedTexts: { - id: string; - text: string; - }[]; -} -/** - * 文案翻译(流式返回) - * @apiName translate - */ -export declare function translate$(params: IUnionTranslateParams): Promise; -export default translate$; diff --git a/node_modules/dingtalk-jsapi/api/union/translate.js b/node_modules/dingtalk-jsapi/api/union/translate.js deleted file mode 100644 index 7a516ef6..00000000 --- a/node_modules/dingtalk-jsapi/api/union/translate.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function translate$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.translate$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="translate",actualCallApiName="biz.i18n.translate";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.5.35"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.5.35"},_a)),exports.translate$=translate$,exports.default=translate$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/translateVoice.d.ts b/node_modules/dingtalk-jsapi/api/union/translateVoice.d.ts deleted file mode 100644 index aa771182..00000000 --- a/node_modules/dingtalk-jsapi/api/union/translateVoice.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 语音转文字 请求参数定义 - * @apiName translateVoice - */ -export interface IUnionTranslateVoiceParams extends ICommonAPIParams { - mediaId: string; - duration: number; -} -/** - * 语音转文字 返回结果定义 - * @apiName translateVoice - */ -export interface IUnionTranslateVoiceResult { -} -/** - * 语音转文字 - * @apiName translateVoice - */ -export declare function translateVoice$(params: IUnionTranslateVoiceParams): Promise; -export default translateVoice$; diff --git a/node_modules/dingtalk-jsapi/api/union/translateVoice.js b/node_modules/dingtalk-jsapi/api/union/translateVoice.js deleted file mode 100644 index f7e68483..00000000 --- a/node_modules/dingtalk-jsapi/api/union/translateVoice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function translateVoice$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.translateVoice$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="translateVoice",actualCallApiName="device.audio.translateVoice";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.translateVoice$=translateVoice$,exports.default=translateVoice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/uploadAttachmentToDingTalk.d.ts b/node_modules/dingtalk-jsapi/api/union/uploadAttachmentToDingTalk.d.ts deleted file mode 100644 index 5f725082..00000000 --- a/node_modules/dingtalk-jsapi/api/union/uploadAttachmentToDingTalk.d.ts +++ /dev/null @@ -1,47 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 上传附件到钉盘/从钉盘选择文件 请求参数定义 - * @apiName uploadAttachmentToDingTalk - */ -export interface IUnionUploadAttachmentToDingTalkParams extends ICommonAPIParams { - file: { - max?: number; - spaceId: string; - folderId: string; - }; - image?: { - max?: number; - spaceId: string; - compress?: boolean; - folderId: string; - multiple?: boolean; - }; - space: { - max?: number; - corpId: string; - isCopy?: boolean; - spaceId: string; - folderId: string; - }; - types: string[]; -} -/** - * 上传附件到钉盘/从钉盘选择文件 返回结果定义 - * @apiName uploadAttachmentToDingTalk - */ -export interface IUnionUploadAttachmentToDingTalkResult { - data: { - fileId: string; - spaceId: string; - fileName: string; - fileSize: string; - fileType: string; - }; - type: string; -} -/** - * 上传附件到钉盘/从钉盘选择文件 - * @apiName uploadAttachmentToDingTalk - */ -export declare function uploadAttachmentToDingTalk$(params: IUnionUploadAttachmentToDingTalkParams): Promise; -export default uploadAttachmentToDingTalk$; diff --git a/node_modules/dingtalk-jsapi/api/union/uploadAttachmentToDingTalk.js b/node_modules/dingtalk-jsapi/api/union/uploadAttachmentToDingTalk.js deleted file mode 100644 index 284fafce..00000000 --- a/node_modules/dingtalk-jsapi/api/union/uploadAttachmentToDingTalk.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadAttachmentToDingTalk$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadAttachmentToDingTalk$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="uploadAttachmentToDingTalk",actualCallApiName="biz.util.uploadAttachment";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.uploadAttachmentToDingTalk$=uploadAttachmentToDingTalk$,exports.default=uploadAttachmentToDingTalk$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/uploadFile.d.ts b/node_modules/dingtalk-jsapi/api/union/uploadFile.d.ts deleted file mode 100644 index c3614c41..00000000 --- a/node_modules/dingtalk-jsapi/api/union/uploadFile.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 上传文件 请求参数定义 - * @apiName uploadFile - */ -export interface IUnionUploadFileParams extends ICommonAPIParams { - url: string; - header?: {}; - fileName: string; - filePath: string; - fileType: string; - formData?: {}; -} -/** - * 上传文件 返回结果定义 - * @apiName uploadFile - */ -export interface IUnionUploadFileResult { - data?: string; - header?: {}; - statusCode?: string; -} -/** - * 上传文件 - * @apiName uploadFile - */ -export declare function uploadFile$(params: IUnionUploadFileParams): Promise; -export default uploadFile$; diff --git a/node_modules/dingtalk-jsapi/api/union/uploadFile.js b/node_modules/dingtalk-jsapi/api/union/uploadFile.js deleted file mode 100644 index 9196dd71..00000000 --- a/node_modules/dingtalk-jsapi/api/union/uploadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadFile$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadFile$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="uploadFile",actualCallApiName="biz.util.uploadFile";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.0.10"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"7.0.10"},_a)),exports.uploadFile$=uploadFile$,exports.default=uploadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/vibrate.d.ts b/node_modules/dingtalk-jsapi/api/union/vibrate.d.ts deleted file mode 100644 index 667c09e3..00000000 --- a/node_modules/dingtalk-jsapi/api/union/vibrate.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 使用振动功能 请求参数定义 - * @apiName vibrate - */ -export interface IUnionVibrateParams extends ICommonAPIParams { -} -/** - * 使用振动功能 返回结果定义 - * @apiName vibrate - */ -export interface IUnionVibrateResult { -} -/** - * 使用振动功能 - * @apiName vibrate - */ -export declare function vibrate$(params: IUnionVibrateParams): Promise; -export default vibrate$; diff --git a/node_modules/dingtalk-jsapi/api/union/vibrate.js b/node_modules/dingtalk-jsapi/api/union/vibrate.js deleted file mode 100644 index 31bbf6ad..00000000 --- a/node_modules/dingtalk-jsapi/api/union/vibrate.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function vibrate$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.vibrate$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="vibrate",actualCallApiName="device.notification.vibrate",paramsDeal=apiHelper_1.genDefaultParamsDealFn({duration:300});ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:paramsDeal},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:paramsDeal},_a)),exports.vibrate$=vibrate$,exports.default=vibrate$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/watchShake.d.ts b/node_modules/dingtalk-jsapi/api/union/watchShake.d.ts deleted file mode 100644 index 470b91a9..00000000 --- a/node_modules/dingtalk-jsapi/api/union/watchShake.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 启动摇一摇 请求参数定义 - * @apiName watchShake - */ -export interface IUnionWatchShakeParams extends ICommonAPIParams { - frequency: number; - sensitivity: number; - callbackDelay: number; -} -/** - * 启动摇一摇 返回结果定义 - * @apiName watchShake - */ -export interface IUnionWatchShakeResult { -} -/** - * 启动摇一摇 - * @apiName watchShake - */ -export declare function watchShake$(params: IUnionWatchShakeParams): Promise; -export default watchShake$; diff --git a/node_modules/dingtalk-jsapi/api/union/watchShake.js b/node_modules/dingtalk-jsapi/api/union/watchShake.js deleted file mode 100644 index 25877a93..00000000 --- a/node_modules/dingtalk-jsapi/api/union/watchShake.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function watchShake$(a){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,a)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.watchShake$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiHelper_1=require("../../lib/apiHelper"),apiName="watchShake",actualCallApiName="device.accelerometer.watchShake";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.0.0",paramsDeal:function(a){return apiHelper_1.forceChangeParamsDealFn({sensitivity:3.2})(apiHelper_1.addWatchParamsDeal(a))}},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0",paramsDeal:apiHelper_1.addWatchParamsDeal},_a)),exports.watchShake$=watchShake$,exports.default=watchShake$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/writeBLECharacteristicValue.d.ts b/node_modules/dingtalk-jsapi/api/union/writeBLECharacteristicValue.d.ts deleted file mode 100644 index f00bf2ef..00000000 --- a/node_modules/dingtalk-jsapi/api/union/writeBLECharacteristicValue.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * 向蓝牙设备特征值中写入数据 请求参数定义 - * @apiName writeBLECharacteristicValue - */ -export interface IUnionWriteBLECharacteristicValueParams extends ICommonAPIParams { - value: string; - deviceId: string; - serviceId: string; - characteristicId: string; -} -/** - * 向蓝牙设备特征值中写入数据 返回结果定义 - * @apiName writeBLECharacteristicValue - */ -export interface IUnionWriteBLECharacteristicValueResult { -} -/** - * 向蓝牙设备特征值中写入数据 - * @apiName writeBLECharacteristicValue - */ -export declare function writeBLECharacteristicValue$(params: IUnionWriteBLECharacteristicValueParams): Promise; -export default writeBLECharacteristicValue$; diff --git a/node_modules/dingtalk-jsapi/api/union/writeBLECharacteristicValue.js b/node_modules/dingtalk-jsapi/api/union/writeBLECharacteristicValue.js deleted file mode 100644 index 5b795db5..00000000 --- a/node_modules/dingtalk-jsapi/api/union/writeBLECharacteristicValue.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function writeBLECharacteristicValue$(e){return ddSdk_1.ddSdk.invokeAPI("runtime.h5nuvabridge.exec",__assign({_action:apiName},e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var a,r=1,i=arguments.length;r; -export default writeBLEPeripheralCharacteristicValue$; diff --git a/node_modules/dingtalk-jsapi/api/union/writeBLEPeripheralCharacteristicValue.js b/node_modules/dingtalk-jsapi/api/union/writeBLEPeripheralCharacteristicValue.js deleted file mode 100644 index cba03ed3..00000000 --- a/node_modules/dingtalk-jsapi/api/union/writeBLEPeripheralCharacteristicValue.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function writeBLEPeripheralCharacteristicValue$(e){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.writeBLEPeripheralCharacteristicValue$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="writeBLEPeripheralCharacteristicValue",actualCallApiName="biz.realm.writeBLEPeripheralCharacteristicValue";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"7.6.10"},_a[ddSdk_1.ENV_ENUM.android]={vs:"7.6.10"},_a)),exports.writeBLEPeripheralCharacteristicValue$=writeBLEPeripheralCharacteristicValue$,exports.default=writeBLEPeripheralCharacteristicValue$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/union/writeNFC.d.ts b/node_modules/dingtalk-jsapi/api/union/writeNFC.d.ts deleted file mode 100644 index bdcd61c1..00000000 --- a/node_modules/dingtalk-jsapi/api/union/writeNFC.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { ICommonAPIParams } from '../../constant/types'; -/** - * NFC数据写入 请求参数定义 - * @apiName writeNFC - */ -export interface IUnionWriteNFCParams extends ICommonAPIParams { - content: string; -} -/** - * NFC数据写入 返回结果定义 - * @apiName writeNFC - */ -export interface IUnionWriteNFCResult { -} -/** - * NFC数据写入 - * @apiName writeNFC - */ -export declare function writeNFC$(params: IUnionWriteNFCParams): Promise; -export default writeNFC$; diff --git a/node_modules/dingtalk-jsapi/api/union/writeNFC.js b/node_modules/dingtalk-jsapi/api/union/writeNFC.js deleted file mode 100644 index ffd02221..00000000 --- a/node_modules/dingtalk-jsapi/api/union/writeNFC.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function writeNFC$(d){return ddSdk_1.ddSdk.invokeAPI(actualCallApiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.writeNFC$=void 0;var ddSdk_1=require("../../lib/ddSdk"),apiName="writeNFC",actualCallApiName="device.nfc.nfcWrite";ddSdk_1.ddSdk.setAPI(actualCallApiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.0.0"},_a)),exports.writeNFC$=writeNFC$,exports.default=writeNFC$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/util/domainStorage/getItem.d.ts b/node_modules/dingtalk-jsapi/api/util/domainStorage/getItem.d.ts deleted file mode 100644 index 29383413..00000000 --- a/node_modules/dingtalk-jsapi/api/util/domainStorage/getItem.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * 本地存储(区分域名)读 请求参数定义 - * @apiName util.domainStorage.getItem - */ -export interface IUtilDomainStorageGetItemParams { - /** 存储信息的key值 */ - name: string; -} -/** - * 本地存储(区分域名)读 返回结果定义 - * @apiName util.domainStorage.getItem - */ -export interface IUtilDomainStorageGetItemResult { - /** name对应的存储信息 */ - value: string; -} -/** - * 获取存储信息 本地存储(区分域名)读 - * @apiName util.domainStorage.getItem - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function getItem$(params: IUtilDomainStorageGetItemParams): Promise; -export default getItem$; diff --git a/node_modules/dingtalk-jsapi/api/util/domainStorage/getItem.js b/node_modules/dingtalk-jsapi/api/util/domainStorage/getItem.js deleted file mode 100644 index 57ecb93b..00000000 --- a/node_modules/dingtalk-jsapi/api/util/domainStorage/getItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getItem$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,t=1,s=arguments.length;t; -export default getStorageInfo$; diff --git a/node_modules/dingtalk-jsapi/api/util/domainStorage/getStorageInfo.js b/node_modules/dingtalk-jsapi/api/util/domainStorage/getStorageInfo.js deleted file mode 100644 index f803d5d8..00000000 --- a/node_modules/dingtalk-jsapi/api/util/domainStorage/getStorageInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getStorageInfo$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getStorageInfo$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="util.domainStorage.getStorageInfo";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.5.30"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.5.30"},_a)),exports.getStorageInfo$=getStorageInfo$,exports.default=getStorageInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/util/domainStorage/removeItem.d.ts b/node_modules/dingtalk-jsapi/api/util/domainStorage/removeItem.d.ts deleted file mode 100644 index 5354caae..00000000 --- a/node_modules/dingtalk-jsapi/api/util/domainStorage/removeItem.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * 本地存储(区分域名)删除 请求参数定义 - * @apiName util.domainStorage.removeItem - */ -export interface IUtilDomainStorageRemoveItemParams { - /** 存储信息的key值 */ - name: string; -} -/** - * 本地存储(区分域名)删除 返回结果定义 - * @apiName util.domainStorage.removeItem - */ -export interface IUtilDomainStorageRemoveItemResult { -} -/** - * 删除相应存储信息 本地存储(区分域名)删除 - * @apiName util.domainStorage.removeItem - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function removeItem$(params: IUtilDomainStorageRemoveItemParams): Promise; -export default removeItem$; diff --git a/node_modules/dingtalk-jsapi/api/util/domainStorage/removeItem.js b/node_modules/dingtalk-jsapi/api/util/domainStorage/removeItem.js deleted file mode 100644 index da6a4963..00000000 --- a/node_modules/dingtalk-jsapi/api/util/domainStorage/removeItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeItem$(e){return ddSdk_1.ddSdk.invokeAPI(apiName,e)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeItem$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="util.domainStorage.removeItem";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"2.9.0"},_a[ddSdk_1.ENV_ENUM.android]={vs:"2.9.0"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"4.6.29"},_a)),exports.removeItem$=removeItem$,exports.default=removeItem$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/api/util/domainStorage/setItem.d.ts b/node_modules/dingtalk-jsapi/api/util/domainStorage/setItem.d.ts deleted file mode 100644 index 8dd08565..00000000 --- a/node_modules/dingtalk-jsapi/api/util/domainStorage/setItem.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * 本地存储(区分域名)写 请求参数定义 - * @apiName util.domainStorage.setItem - */ -export interface IUtilDomainStorageSetItemParams { - /** 存储信息的key值 */ - name: string; - /** 存储信息的Value值 */ - value: string; -} -/** - * 本地存储(区分域名)写 返回结果定义 - * @apiName util.domainStorage.setItem - */ -export interface IUtilDomainStorageSetItemResult { - [key: string]: any; -} -/** - * 本地存储(区分域名)写 - * 每次存储数据不能超过1M,单域名不能超过50M. - * @apiName util.domainStorage.setItem - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function setItem$(params: IUtilDomainStorageSetItemParams): Promise; -export default setItem$; diff --git a/node_modules/dingtalk-jsapi/api/util/domainStorage/setItem.js b/node_modules/dingtalk-jsapi/api/util/domainStorage/setItem.js deleted file mode 100644 index 05531f11..00000000 --- a/node_modules/dingtalk-jsapi/api/util/domainStorage/setItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setItem$(a){return ddSdk_1.ddSdk.invokeAPI(apiName,a)}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(a){for(var e,s=1,t=arguments.length;s; -export default getData$; diff --git a/node_modules/dingtalk-jsapi/api/util/openTemporary/getData.js b/node_modules/dingtalk-jsapi/api/util/openTemporary/getData.js deleted file mode 100644 index e56a89b0..00000000 --- a/node_modules/dingtalk-jsapi/api/util/openTemporary/getData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getData$(d){return ddSdk_1.ddSdk.invokeAPI(apiName,d)}var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.getData$=void 0;var ddSdk_1=require("../../../lib/ddSdk"),apiName="util.openTemporary.getData";ddSdk_1.ddSdk.setAPI(apiName,(_a={},_a[ddSdk_1.ENV_ENUM.harmony]={vs:"7.0.0"},_a[ddSdk_1.ENV_ENUM.ios]={vs:"6.3.20"},_a[ddSdk_1.ENV_ENUM.android]={vs:"6.3.20"},_a[ddSdk_1.ENV_ENUM.pc]={vs:"6.3.30"},_a)),exports.getData$=getData$,exports.default=getData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/constant/apiMapping.d.ts b/node_modules/dingtalk-jsapi/constant/apiMapping.d.ts deleted file mode 100644 index d2b6fe4d..00000000 --- a/node_modules/dingtalk-jsapi/constant/apiMapping.d.ts +++ /dev/null @@ -1,165 +0,0 @@ -declare const _default: { - datePicker: string; - chooseOneDayInCalendar: string; - disableWebViewBounce: string; - openPageInSlidePanelForPC: string; - disablePullDownRefresh: string; - compressImage: string; - openPageInWorkBenchForPC: string; - chooseHalfDayInCalendar: string; - dateRangePicker: string; - stopPullDownRefresh: string; - chooseDateRangeInCalendar: string; - stopRecord: string; - navigateToPage: string; - chooseDateTime: string; - enablePullDownRefresh: string; - downloadAudio: string; - openLink: string; - openMicroApp: string; - timePicker: string; - openPageInMicroApp: string; - previewImage: string; - openPageInModalForPC: string; - enableWebViewBounce: string; - generateImageFromCode: string; - navigateBackPage: string; - openLocation: string; - playAudio: string; - chooseImage: string; - onRecordEnd: string; - stopAudio: string; - vibrate: string; - onPlayAudioEnd: string; - getStorage: string; - searchMap: string; - stopLocating: string; - resumeAudio: string; - getLocatingStatus: string; - startLocating: string; - startRecord: string; - setStorage: string; - openLocalFile: string; - share: string; - writeNFC: string; - choosePhonebook: string; - pauseAudio: string; - getDeviceUUID: string; - getSystemSettings: string; - customChooseUsers: string; - removeStorage: string; - setClipboard: string; - scan: string; - decrypt: string; - getWifiHotspotStatus: string; - readNFC: string; - showCallMenu: string; - getLocation: string; - locateInMap: string; - clearShake: string; - chooseStaffForPC: string; - uploadAttachmentToDingTalk: string; - rotateScreenView: string; - isLocalFileExist: string; - openChatByChatId: string; - createGroupChat: string; - watchShake: string; - scanCard: string; - createDing: string; - openChatByUserId: string; - chooseUserFromList: string; - exclusiveLiveCheck: string; - chooseExternalUsers: string; - saveFileToDingTalk: string; - resetScreenView: string; - getCloudCallList: string; - translateVoice: string; - complexChoose: string; - editExternalUser: string; - checkBizCall: string; - getWifiStatus: string; - chooseDepartments: string; - getSystemInfo: string; - getNetworkType: string; - makeVideoConfCall: string; - createDingForPC: string; - encrypt: string; - quickCallList: string; - getUserExclusiveInfo: string; - getAuthCode: string; - previewImagesInDingTalkBatch: string; - chooseChat: string; - getCloudCallInfo: string; - previewFileInDingTalk: string; - openChatByConversationId: string; - chooseDingTalkDir: string; - getOperateAuthCode: string; - isInTabWindow: string; - createLiveClassRoom: string; - callUsers: string; - makeCloudCall: string; - ExternalChannelPublish: string; - nfcReadCardNumber: string; - liveChooseConversationAndUser: string; - getAuthCodeV2: string; - queryUserProfile: string; - requestMoneySubmmitOrder: string; - requestAuthCode: string; - liveShare: string; - chooseFile: string; - setColorScheme: string; - chooseConversation: string; - saveVideoToPhotosAlbum: string; - setLanguage: string; - changeAppIcon: string; - editPicture: string; - 'biz.resource.getInfo': string; - 'biz.resource.reportPerf': string; - openDocument: string; - getImageInfo: string; - previewMedia: string; - popGesture: string; - startAdvertising: string; - stopAdvertising: string; - getAdvertisingStatus: string; - chooseMedia: string; - cropImage: string; - saveImageToPhotosAlbum: string; - setGestures: string; - getAuthInfo: string; - getBackgroundFetchData: string; - getBackgroundFetchDataWithID: string; - getThirdAppConfCustomData: string; - getThirdAppUserCustomData: string; - getDeviceId: string; - onBLEPeripheralCharacteristicReadRequest: string; - onBLEPeripheralCharacteristicWriteRequest: string; - createBLEPeripheralServer: string; - writeBLEPeripheralCharacteristicValue: string; - onBLEPeripheralConnectionStateChanged: string; - translate: string; - subscribe: string; - getTranslateStatus: string; - notifyTranslateEvent: string; - minutesCreateFromVideo: string; - minutesStart: string; - minutesViewDetail: string; - showNavigatorEditView: string; - liveH5IsPresentOnNavigator: string; - getCurrentCorpId: string; - getAccountType: string; - createPayOrder: string; - chooseOrg: string; - removeCachedAPIResponse: string; - getPageTerminateInfo: string; - getCachedAPIResponse: string; - getNavigationStack: string; - getTodaysStepCount: string; - startDingerRecord: string; - stopDingerRecord: string; - minutesUploadVideo: string; - getDingerDeviceStatus: string; - getActiveConferenceInfo: string; - getPersonalWorkInfo: string; -}; -export default _default; diff --git a/node_modules/dingtalk-jsapi/constant/apiMapping.js b/node_modules/dingtalk-jsapi/constant/apiMapping.js deleted file mode 100644 index 91bd52b4..00000000 --- a/node_modules/dingtalk-jsapi/constant/apiMapping.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default={datePicker:"biz.util.datetimepicker",chooseOneDayInCalendar:"biz.calendar.chooseOneDay",disableWebViewBounce:"ui.webViewBounce.disable",openPageInSlidePanelForPC:"biz.util.openSlidePanel",disablePullDownRefresh:"ui.pullToRefresh.disable",compressImage:"biz.util.compressImage",openPageInWorkBenchForPC:"biz.util.invokeWorkbench",chooseHalfDayInCalendar:"biz.calendar.chooseHalfDay",dateRangePicker:"biz.calendar.chooseInterval",stopPullDownRefresh:"ui.pullToRefresh.stop",chooseDateRangeInCalendar:"biz.calendar.chooseInterval",stopRecord:"device.audio.stopRecord",navigateToPage:"biz.navigation.navigateToPage",chooseDateTime:"biz.calendar.chooseDateTime",enablePullDownRefresh:"ui.pullToRefresh.enable",downloadAudio:"device.audio.download",openLink:"biz.util.openLink",openMicroApp:"biz.microApp.openApp",timePicker:"biz.util.timepicker",openPageInMicroApp:"biz.util.open",previewImage:"biz.util.previewImage",openPageInModalForPC:"biz.util.openModal",enableWebViewBounce:"ui.webViewBounce.enable",generateImageFromCode:"biz.util.generateImageFromCode",navigateBackPage:"biz.navigation.navigateBackPage",openLocation:"biz.map.view",playAudio:"device.audio.play",chooseImage:"biz.util.chooseImage",onRecordEnd:"device.audio.onRecordEnd",stopAudio:"device.audio.stop",vibrate:"device.notification.vibrate",onPlayAudioEnd:"device.audio.onPlayEnd",getStorage:"util.domainStorage.getItem",searchMap:"biz.map.search",stopLocating:"device.geolocation.stop",resumeAudio:"device.audio.resume",getLocatingStatus:"device.geolocation.status",startLocating:"device.geolocation.start",startRecord:"device.audio.startRecord",setStorage:"util.domainStorage.setItem",openLocalFile:"biz.util.openLocalFile",share:"biz.util.share",writeNFC:"device.nfc.nfcWrite",choosePhonebook:"biz.contact.chooseMobileContacts",pauseAudio:"device.audio.pause",getDeviceUUID:"device.base.getUUID",getSystemSettings:"device.base.openSystemSetting",customChooseUsers:"biz.customContact.multipleChoose",removeStorage:"util.domainStorage.removeItem",setClipboard:"biz.clipboardData.setData",scan:"biz.util.scan",decrypt:"biz.util.decrypt",getWifiHotspotStatus:"device.base.getInterface",readNFC:"device.nfc.nfcRead",showCallMenu:"biz.telephone.showCallMenu",getLocation:"device.geolocation.get",locateInMap:"biz.map.locate",clearShake:"device.accelerometer.clearShake",chooseStaffForPC:"biz.contact.choose",uploadAttachmentToDingTalk:"biz.util.uploadAttachment",rotateScreenView:"device.screen.rotateView",isLocalFileExist:"biz.util.isLocalFileExist",openChatByChatId:"biz.chat.toConversation",createGroupChat:"biz.contact.createGroup",watchShake:"device.accelerometer.watchShake",scanCard:"biz.util.scanCard",createDing:"biz.ding.create",openChatByUserId:"biz.chat.openSingleChat",chooseUserFromList:"biz.customContact.choose",exclusiveLiveCheck:"biz.ATMBle.exclusiveLiveCheck",chooseExternalUsers:"biz.contact.externalComplexPicker",saveFileToDingTalk:"biz.cspace.saveFile",resetScreenView:"device.screen.resetView",getCloudCallList:"biz.conference.getCloudCallList",translateVoice:"device.audio.translateVoice",complexChoose:"biz.contact.complexPicker",editExternalUser:"biz.contact.externalEditForm",checkBizCall:"biz.telephone.checkBizCall",getWifiStatus:"device.base.getWifiStatus",chooseDepartments:"biz.contact.departmentsPicker",getSystemInfo:"device.base.getPhoneInfo",getNetworkType:"device.connection.getNetworkType",makeVideoConfCall:"biz.conference.videoConfCall",createDingForPC:"biz.ding.post",encrypt:"biz.util.encrypt",quickCallList:"biz.telephone.quickCallList",getUserExclusiveInfo:"biz.realm.getUserExclusiveInfo",getAuthCode:"runtime.permission.requestAuthCode",previewImagesInDingTalkBatch:"biz.cspace.previewDentryImages",chooseChat:"biz.chat.chooseConversationByCorpId",getCloudCallInfo:"biz.conference.getCloudCallInfo",previewFileInDingTalk:"biz.cspace.preview",openChatByConversationId:"biz.chat.toConversationByOpenConversationId",chooseDingTalkDir:"biz.cspace.chooseSpaceDir",getOperateAuthCode:"runtime.permission.requestOperateAuthCode",isInTabWindow:"biz.tabwindow.isTab",createLiveClassRoom:"biz.live.startClassRoom",callUsers:"biz.telephone.call",makeCloudCall:"biz.conference.createCloudCall",ExternalChannelPublish:"biz.channel.externalChannelPublish",nfcReadCardNumber:"device.nfc.nfcReadCardNumber",liveChooseConversationAndUser:"biz.live.chooseConversationAndUser",getAuthCodeV2:"runtime.permission.requestAuthCodeV2",queryUserProfile:"biz.conference.queryUserProfile",requestMoneySubmmitOrder:"biz.requestMoney.startSubmittingOrder",requestAuthCode:"runtime.permission.requestAuthCodeV2",liveShare:"biz.live.share",chooseFile:"biz.file.chooseFile",setColorScheme:"internal.theme.setColorScheme",chooseConversation:"biz.chat.chooseConversation",saveVideoToPhotosAlbum:"biz.util.saveVideoToPhotosAlbum",setLanguage:"internal.setting.setLanguage",changeAppIcon:"internal.setting.changeAppIcon",editPicture:"biz.util.editPicture","biz.resource.getInfo":"biz.resource.getInfo","biz.resource.reportPerf":"biz.resource.reportPerf",openDocument:"biz.util.openDocument",getImageInfo:"biz.util.getImageInfo",previewMedia:"biz.util.previewMedia",popGesture:"biz.navigation.popGesture",startAdvertising:"biz.realm.startAdvertising",stopAdvertising:"biz.realm.stopAdvertising",getAdvertisingStatus:"biz.realm.getAdvertisingStatus",chooseMedia:"biz.util.chooseMedia",cropImage:"biz.util.cropImage",saveImageToPhotosAlbum:"biz.util.saveImageToPhotosAlbum",setGestures:"biz.navigation.gestures",getAuthInfo:"runtime.permission.getAuthInfo",getBackgroundFetchData:"biz.resource.getBackgroundFetchData",getBackgroundFetchDataWithID:"biz.resource.getBackgroundFetchDataWithID",getThirdAppConfCustomData:"biz.conference.getThirdAppConfCustomData",getThirdAppUserCustomData:"biz.conference.getThirdAppUserCustomData",getDeviceId:"device.base.getDeviceId",onBLEPeripheralCharacteristicReadRequest:"biz.realm.onBLEPeripheralCharacteristicReadRequest",onBLEPeripheralCharacteristicWriteRequest:"biz.realm.onBLEPeripheralCharacteristicWriteRequest",createBLEPeripheralServer:"biz.realm.createBLEPeripheralServer",writeBLEPeripheralCharacteristicValue:"biz.realm.writeBLEPeripheralCharacteristicValue",onBLEPeripheralConnectionStateChanged:"biz.realm.onBLEPeripheralConnectionStateChanged",translate:"biz.i18n.translate",subscribe:"biz.notify.subscribe",getTranslateStatus:"biz.i18n.getTranslateStatus",notifyTranslateEvent:"biz.i18n.notifyTranslateEvent",minutesCreateFromVideo:"biz.minutes.createFromVideo",minutesStart:"biz.minutes.startMinutes",minutesViewDetail:"biz.minutes.viewDetail",showNavigatorEditView:"biz.live.showNavigatorEditView",liveH5IsPresentOnNavigator:"biz.live.liveH5IsPresentOnNavigator",getCurrentCorpId:"biz.minutes.getCurrentCorpId",getAccountType:"biz.i18n.getAccountType",createPayOrder:"biz.enterprise.createPayOrder",chooseOrg:"biz.contact.chooseOrg",removeCachedAPIResponse:"biz.util.removeCachedAPIResponse",getPageTerminateInfo:"biz.util.getPageTerminateInfo",getCachedAPIResponse:"biz.util.getCachedAPIResponse",getNavigationStack:"biz.navigation.getNavigationStack",getTodaysStepCount:"biz.sports.getTodaysStepCount",startDingerRecord:"biz.dinger.startDingerRecord",stopDingerRecord:"biz.dinger.stopDingerRecord",minutesUploadVideo:"biz.minutes.uploadVideo",getDingerDeviceStatus:"biz.dinger.getDingerDeviceStatus",getActiveConferenceInfo:"biz.conference.getConferenceInfo",getPersonalWorkInfo:"biz.user.get"}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/constant/types.d.ts b/node_modules/dingtalk-jsapi/constant/types.d.ts deleted file mode 100644 index a34d1089..00000000 --- a/node_modules/dingtalk-jsapi/constant/types.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -export interface ICommonAPIParams { - success?: Function; - fail?: Function; - complete?: Function; - onSuccess?: Function; - onFail?: Function; - onComplete?: Function; -} diff --git a/node_modules/dingtalk-jsapi/constant/types.js b/node_modules/dingtalk-jsapi/constant/types.js deleted file mode 100644 index f5d60537..00000000 --- a/node_modules/dingtalk-jsapi/constant/types.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}); \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/core.d.ts b/node_modules/dingtalk-jsapi/core.d.ts deleted file mode 100644 index c7f0216c..00000000 --- a/node_modules/dingtalk-jsapi/core.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { IUNCore } from './lib/ddSdk'; -import * as otherApi from './lib/otherApi'; -declare const core: typeof otherApi & IUNCore; -export = core; diff --git a/node_modules/dingtalk-jsapi/core.js b/node_modules/dingtalk-jsapi/core.js deleted file mode 100644 index f0f048ba..00000000 --- a/node_modules/dingtalk-jsapi/core.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var ddSdk_1=require("./lib/ddSdk"),otherApi=require("./lib/otherApi"),core=Object.assign({},otherApi,ddSdk_1.ddSdk.getExportSdk());module.exports=core; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/dd.d.ts b/node_modules/dingtalk-jsapi/dd.d.ts deleted file mode 100644 index 4a3991d4..00000000 --- a/node_modules/dingtalk-jsapi/dd.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { IUNCore } from './lib/ddSdk'; -import * as otherApi from './lib/otherApi'; -declare const dd: typeof otherApi & IUNCore; -/** - * @deprecated 别名为core - */ -export = dd; diff --git a/node_modules/dingtalk-jsapi/dd.js b/node_modules/dingtalk-jsapi/dd.js deleted file mode 100644 index e58c706e..00000000 --- a/node_modules/dingtalk-jsapi/dd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var ddSdk_1=require("./lib/ddSdk"),otherApi=require("./lib/otherApi"),dd=Object.assign({},otherApi,ddSdk_1.ddSdk.getExportSdk());module.exports=dd; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/entry/mobile.d.ts b/node_modules/dingtalk-jsapi/entry/mobile.d.ts deleted file mode 100644 index 2e7c79a5..00000000 --- a/node_modules/dingtalk-jsapi/entry/mobile.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -import * as dd from '../core'; -import '../platform/android'; -import '../platform/ios'; -import '../platform/harmony'; -export = dd; diff --git a/node_modules/dingtalk-jsapi/entry/mobile.js b/node_modules/dingtalk-jsapi/entry/mobile.js deleted file mode 100644 index 40b5a380..00000000 --- a/node_modules/dingtalk-jsapi/entry/mobile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var dd=require("../core");require("../platform/android"),require("../platform/ios"),require("../platform/harmony"),module.exports=dd; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/entry/union.d.ts b/node_modules/dingtalk-jsapi/entry/union.d.ts deleted file mode 100644 index fe87a370..00000000 --- a/node_modules/dingtalk-jsapi/entry/union.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -import * as dd from '../core'; -import '../platform'; -export = dd; diff --git a/node_modules/dingtalk-jsapi/entry/union.js b/node_modules/dingtalk-jsapi/entry/union.js deleted file mode 100644 index 90bf0a4b..00000000 --- a/node_modules/dingtalk-jsapi/entry/union.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var dd=require("../core");require("../platform"),module.exports=dd; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/index.d.ts b/node_modules/dingtalk-jsapi/index.d.ts deleted file mode 100644 index bdc8bce3..00000000 --- a/node_modules/dingtalk-jsapi/index.d.ts +++ /dev/null @@ -1,599 +0,0 @@ -import * as plugin from './plugin'; -/** for ts declaration */ -import * as otherApi from './lib/otherApi'; -import * as jsApi from './api/apiObj'; -import { IUNCore } from './lib/ddSdk'; -declare const dd: typeof otherApi & IUNCore & { - biz: { - ATMBle: { - beaconPicker: typeof import("./api/biz/ATMBle/beaconPicker").beaconPicker$; - detectFace: typeof import("./api/biz/ATMBle/detectFace").detectFace$; - detectFaceFullScreen: typeof import("./api/biz/ATMBle/detectFaceFullScreen").detectFaceFullScreen$; - exclusiveLiveCheck: typeof import("./api/biz/ATMBle/exclusiveLiveCheck").exclusiveLiveCheck$; - faceManager: typeof import("./api/biz/ATMBle/faceManager").faceManager$; - punchModePicker: typeof import("./api/biz/ATMBle/punchModePicker").punchModePicker$; - }; - alipay: { - bindAlipay: typeof import("./api/biz/alipay/bindAlipay").bindAlipay$; - openAuth: typeof import("./api/biz/alipay/openAuth").openAuth$; - pay: typeof import("./api/biz/alipay/pay").pay$; - }; - attend: { - getLBSWua: typeof import("./api/biz/attend/getLBSWua").getLBSWua$; - }; - auth: { - openAccountPwdLoginPage: typeof import("./api/biz/auth/openAccountPwdLoginPage").openAccountPwdLoginPage$; - requestAuthInfo: typeof import("./api/biz/auth/requestAuthInfo").requestAuthInfo$; - }; - calendar: { - chooseDateTime: typeof import("./api/biz/calendar/chooseDateTime").chooseDateTime$; - chooseHalfDay: typeof import("./api/biz/calendar/chooseHalfDay").chooseHalfDay$; - chooseInterval: typeof import("./api/biz/calendar/chooseInterval").chooseInterval$; - chooseOneDay: typeof import("./api/biz/calendar/chooseOneDay").chooseOneDay$; - }; - chat: { - chooseConversationByCorpId: typeof import("./api/biz/chat/chooseConversationByCorpId").chooseConversationByCorpId$; - collectSticker: typeof import("./api/biz/chat/collectSticker").collectSticker$; - createSceneGroup: typeof import("./api/biz/chat/createSceneGroup").createSceneGroup$; - getRealmCid: typeof import("./api/biz/chat/getRealmCid").getRealmCid$; - locationChatMessage: typeof import("./api/biz/chat/locationChatMessage").locationChatMessage$; - openSingleChat: typeof import("./api/biz/chat/openSingleChat").openSingleChat$; - pickConversation: typeof import("./api/biz/chat/pickConversation").pickConversation$; - sendEmotion: typeof import("./api/biz/chat/sendEmotion").sendEmotion$; - toConversation: typeof import("./api/biz/chat/toConversation").toConversation$; - toConversationByOpenConversationId: typeof import("./api/biz/chat/toConversationByOpenConversationId").toConversationByOpenConversationId$; - }; - clipboardData: { - setData: typeof import("./api/biz/clipboardData/setData").setData$; - }; - conference: { - createCloudCall: typeof import("./api/biz/conference/createCloudCall").createCloudCall$; - getCloudCallInfo: typeof import("./api/biz/conference/getCloudCallInfo").getCloudCallInfo$; - getCloudCallList: typeof import("./api/biz/conference/getCloudCallList").getCloudCallList$; - videoConfCall: typeof import("./api/biz/conference/videoConfCall").videoConfCall$; - }; - contact: { - choose: typeof import("./api/biz/contact/choose").choose$; - chooseMobileContacts: typeof import("./api/biz/contact/chooseMobileContacts").chooseMobileContacts$; - complexPicker: typeof import("./api/biz/contact/complexPicker").complexPicker$; - createGroup: typeof import("./api/biz/contact/createGroup").createGroup$; - departmentsPicker: typeof import("./api/biz/contact/departmentsPicker").departmentsPicker$; - externalComplexPicker: typeof import("./api/biz/contact/externalComplexPicker").externalComplexPicker$; - externalEditForm: typeof import("./api/biz/contact/externalEditForm").externalEditForm$; - rolesPicker: typeof import("./api/biz/contact/rolesPicker").rolesPicker$; - setRule: typeof import("./api/biz/contact/setRule").setRule$; - }; - cspace: { - chooseSpaceDir: typeof import("./api/biz/cspace/chooseSpaceDir").chooseSpaceDir$; - delete: typeof import("./api/biz/cspace/delete").delete$; - preview: typeof import("./api/biz/cspace/preview").preview$; - previewDentryImages: typeof import("./api/biz/cspace/previewDentryImages").previewDentryImages$; - saveFile: typeof import("./api/biz/cspace/saveFile").saveFile$; - }; - customContact: { - choose: typeof import("./api/biz/customContact/choose").choose$; - multipleChoose: typeof import("./api/biz/customContact/multipleChoose").multipleChoose$; - }; - data: { - rsa: typeof import("./api/biz/data/rsa").rsa$; - }; - ding: { - create: typeof import("./api/biz/ding/create").create$; - post: typeof import("./api/biz/ding/post").post$; - }; - edu: { - finishMiniCourseByRecordId: typeof import("./api/biz/edu/finishMiniCourseByRecordId").finishMiniCourseByRecordId$; - getMiniCourseDraftList: typeof import("./api/biz/edu/getMiniCourseDraftList").getMiniCourseDraftList$; - joinClassroom: typeof import("./api/biz/edu/joinClassroom").joinClassroom$; - makeMiniCourse: typeof import("./api/biz/edu/makeMiniCourse").makeMiniCourse$; - newMsgNotificationStatus: typeof import("./api/biz/edu/newMsgNotificationStatus").newMsgNotificationStatus$; - startAuth: typeof import("./api/biz/edu/startAuth").startAuth$; - tokenFaceImg: typeof import("./api/biz/edu/tokenFaceImg").tokenFaceImg$; - }; - event: { - notifyWeex: typeof import("./api/biz/event/notifyWeex").notifyWeex$; - }; - file: { - downloadFile: typeof import("./api/biz/file/downloadFile").downloadFile$; - }; - intent: { - fetchData: typeof import("./api/biz/intent/fetchData").fetchData$; - }; - iot: { - bind: typeof import("./api/biz/iot/bind").bind$; - bindMeetingRoom: typeof import("./api/biz/iot/bindMeetingRoom").bindMeetingRoom$; - getDeviceProperties: typeof import("./api/biz/iot/getDeviceProperties").getDeviceProperties$; - invokeThingService: typeof import("./api/biz/iot/invokeThingService").invokeThingService$; - queryMeetingRoomList: typeof import("./api/biz/iot/queryMeetingRoomList").queryMeetingRoomList$; - setDeviceProperties: typeof import("./api/biz/iot/setDeviceProperties").setDeviceProperties$; - unbind: typeof import("./api/biz/iot/unbind").unbind$; - }; - live: { - startClassRoom: typeof import("./api/biz/live/startClassRoom").startClassRoom$; - startUnifiedLive: typeof import("./api/biz/live/startUnifiedLive").startUnifiedLive$; - }; - map: { - locate: typeof import("./api/biz/map/locate").locate$; - search: typeof import("./api/biz/map/search").search$; - view: typeof import("./api/biz/map/view").view$; - }; - media: { - compressVideo: typeof import("./api/biz/media/compressVideo").compressVideo$; - }; - microApp: { - openApp: typeof import("./api/biz/microApp/openApp").openApp$; - }; - navigation: { - close: typeof import("./api/biz/navigation/close").close$; - goBack: typeof import("./api/biz/navigation/goBack").goBack$; - hideBar: typeof import("./api/biz/navigation/hideBar").hideBar$; - navigateBackPage: typeof import("./api/biz/navigation/navigateBackPage").navigateBackPage$; - navigateToMiniProgram: typeof import("./api/biz/navigation/navigateToMiniProgram").navigateToMiniProgram$; - navigateToPage: typeof import("./api/biz/navigation/navigateToPage").navigateToPage$; - quit: typeof import("./api/biz/navigation/quit").quit$; - replace: typeof import("./api/biz/navigation/replace").replace$; - setIcon: typeof import("./api/biz/navigation/setIcon").setIcon$; - setLeft: typeof import("./api/biz/navigation/setLeft").setLeft$; - setMenu: typeof import("./api/biz/navigation/setMenu").setMenu$; - setRight: typeof import("./api/biz/navigation/setRight").setRight$; - setTitle: typeof import("./api/biz/navigation/setTitle").setTitle$; - }; - pbp: { - componentPunchFromPartner: typeof import("./api/biz/pbp/componentPunchFromPartner").componentPunchFromPartner$; - startMatchRuleFromPartner: typeof import("./api/biz/pbp/startMatchRuleFromPartner").startMatchRuleFromPartner$; - stopMatchRuleFromPartner: typeof import("./api/biz/pbp/stopMatchRuleFromPartner").stopMatchRuleFromPartner$; - }; - phoneContact: { - add: typeof import("./api/biz/phoneContact/add").add$; - }; - realm: { - getRealtimeTracingStatus: typeof import("./api/biz/realm/getRealtimeTracingStatus").getRealtimeTracingStatus$; - getUserExclusiveInfo: typeof import("./api/biz/realm/getUserExclusiveInfo").getUserExclusiveInfo$; - startRealtimeTracing: typeof import("./api/biz/realm/startRealtimeTracing").startRealtimeTracing$; - stopRealtimeTracing: typeof import("./api/biz/realm/stopRealtimeTracing").stopRealtimeTracing$; - subscribe: typeof import("./api/biz/realm/subscribe").subscribe$; - unsubscribe: typeof import("./api/biz/realm/unsubscribe").unsubscribe$; - }; - resource: { - getInfo: typeof import("./api/biz/resource/getInfo").getInfo$; - reportDebugMessage: typeof import("./api/biz/resource/reportDebugMessage").reportDebugMessage$; - }; - shortCut: { - addShortCut: typeof import("./api/biz/shortCut/addShortCut").addShortCut$; - }; - sports: { - getHealthAuthorizationStatus: typeof import("./api/biz/sports/getHealthAuthorizationStatus").getHealthAuthorizationStatus$; - getHealthData: typeof import("./api/biz/sports/getHealthData").getHealthData$; - getHealthDeviceData: typeof import("./api/biz/sports/getHealthDeviceData").getHealthDeviceData$; - requestHealthAuthorization: typeof import("./api/biz/sports/requestHealthAuthorization").requestHealthAuthorization$; - }; - store: { - closeUnpayOrder: typeof import("./api/biz/store/closeUnpayOrder").closeUnpayOrder$; - createOrder: typeof import("./api/biz/store/createOrder").createOrder$; - getPayUrl: typeof import("./api/biz/store/getPayUrl").getPayUrl$; - inquiry: typeof import("./api/biz/store/inquiry").inquiry$; - }; - tabwindow: { - isTab: typeof import("./api/biz/tabwindow/isTab").isTab$; - }; - telephone: { - call: typeof import("./api/biz/telephone/call").call$; - checkBizCall: typeof import("./api/biz/telephone/checkBizCall").checkBizCall$; - quickCallList: typeof import("./api/biz/telephone/quickCallList").quickCallList$; - showCallMenu: typeof import("./api/biz/telephone/showCallMenu").showCallMenu$; - }; - user: { - checkPassword: typeof import("./api/biz/user/checkPassword").checkPassword$; - get: typeof import("./api/biz/user/get").get$; - }; - util: { - callComponent: typeof import("./api/biz/util/callComponent").callComponent$; - checkAuth: typeof import("./api/biz/util/checkAuth").checkAuth$; - chooseImage: typeof import("./api/biz/util/chooseImage").chooseImage$; - chooseRegion: typeof import("./api/biz/util/chooseRegion").chooseRegion$; - chosen: typeof import("./api/biz/util/chosen").chosen$; - clearWebStoreCache: typeof import("./api/biz/util/clearWebStoreCache").clearWebStoreCache$; - closePreviewImage: typeof import("./api/biz/util/closePreviewImage").closePreviewImage$; - compressImage: typeof import("./api/biz/util/compressImage").compressImage$; - datepicker: typeof import("./api/biz/util/datepicker").datepicker$; - datetimepicker: typeof import("./api/biz/util/datetimepicker").datetimepicker$; - decrypt: typeof import("./api/biz/util/decrypt").decrypt$; - downloadFile: typeof import("./api/biz/util/downloadFile").downloadFile$; - encrypt: typeof import("./api/biz/util/encrypt").encrypt$; - getPerfInfo: typeof import("./api/biz/util/getPerfInfo").getPerfInfo$; - invokeWorkbench: typeof import("./api/biz/util/invokeWorkbench").invokeWorkbench$; - isEnableGPUAcceleration: typeof import("./api/biz/util/isEnableGPUAcceleration").isEnableGPUAcceleration$; - isLocalFileExist: typeof import("./api/biz/util/isLocalFileExist").isLocalFileExist$; - multiSelect: typeof import("./api/biz/util/multiSelect").multiSelect$; - open: typeof import("./api/biz/util/open").open$; - openBrowser: typeof import("./api/biz/util/openBrowser").openBrowser$; - openDocument: typeof import("./api/biz/util/openDocument").openDocument$; - openLink: typeof import("./api/biz/util/openLink").openLink$; - openLocalFile: typeof import("./api/biz/util/openLocalFile").openLocalFile$; - openModal: typeof import("./api/biz/util/openModal").openModal$; - openSlidePanel: typeof import("./api/biz/util/openSlidePanel").openSlidePanel$; - presentWindow: typeof import("./api/biz/util/presentWindow").presentWindow$; - previewImage: typeof import("./api/biz/util/previewImage").previewImage$; - previewVideo: typeof import("./api/biz/util/previewVideo").previewVideo$; - saveImage: typeof import("./api/biz/util/saveImage").saveImage$; - saveImageToPhotosAlbum: typeof import("./api/biz/util/saveImageToPhotosAlbum").saveImageToPhotosAlbum$; - scan: typeof import("./api/biz/util/scan").scan$; - scanCard: typeof import("./api/biz/util/scanCard").scanCard$; - setGPUAcceleration: typeof import("./api/biz/util/setGPUAcceleration").setGPUAcceleration$; - setScreenBrightnessAndKeepOn: typeof import("./api/biz/util/setScreenBrightnessAndKeepOn").setScreenBrightnessAndKeepOn$; - setScreenKeepOn: typeof import("./api/biz/util/setScreenKeepOn").setScreenKeepOn$; - share: typeof import("./api/biz/util/share").share$; - shareImage: typeof import("./api/biz/util/shareImage").shareImage$; - showAuthGuide: typeof import("./api/biz/util/showAuthGuide").showAuthGuide$; - showSharePanel: typeof import("./api/biz/util/showSharePanel").showSharePanel$; - startDocSign: typeof import("./api/biz/util/startDocSign").startDocSign$; - systemShare: typeof import("./api/biz/util/systemShare").systemShare$; - timepicker: typeof import("./api/biz/util/timepicker").timepicker$; - uploadAttachment: typeof import("./api/biz/util/uploadAttachment").uploadAttachment$; - uploadFile: typeof import("./api/biz/util/uploadFile").uploadFile$; - uploadImage: typeof import("./api/biz/util/uploadImage").uploadImage$; - uploadImageFromCamera: typeof import("./api/biz/util/uploadImageFromCamera").uploadImageFromCamera$; - ut: typeof import("./api/biz/util/ut").ut$; - }; - verify: { - openBindIDCard: typeof import("./api/biz/verify/openBindIDCard").openBindIDCard$; - startAuth: typeof import("./api/biz/verify/startAuth").startAuth$; - }; - voice: { - makeCall: typeof import("./api/biz/voice/makeCall").makeCall$; - }; - watermarkCamera: { - getWatermarkInfo: typeof import("./api/biz/watermarkCamera/getWatermarkInfo").getWatermarkInfo$; - setWatermarkInfo: typeof import("./api/biz/watermarkCamera/setWatermarkInfo").setWatermarkInfo$; - }; - }; - channel: { - permission: { - requestAuthCode: typeof import("./api/channel/permission/requestAuthCode").requestAuthCode$; - }; - }; - device: { - accelerometer: { - clearShake: typeof import("./api/device/accelerometer/clearShake").clearShake$; - watchShake: typeof import("./api/device/accelerometer/watchShake").watchShake$; - }; - audio: { - download: typeof import("./api/device/audio/download").download$; - onPlayEnd: typeof import("./api/device/audio/onPlayEnd").onPlayEnd$; - onRecordEnd: typeof import("./api/device/audio/onRecordEnd").onRecordEnd$; - pause: typeof import("./api/device/audio/pause").pause$; - play: typeof import("./api/device/audio/play").play$; - resume: typeof import("./api/device/audio/resume").resume$; - startRecord: typeof import("./api/device/audio/startRecord").startRecord$; - stop: typeof import("./api/device/audio/stop").stop$; - stopRecord: typeof import("./api/device/audio/stopRecord").stopRecord$; - translateVoice: typeof import("./api/device/audio/translateVoice").translateVoice$; - }; - base: { - getBatteryInfo: typeof import("./api/device/base/getBatteryInfo").getBatteryInfo$; - getInterface: typeof import("./api/device/base/getInterface").getInterface$; - getPhoneInfo: typeof import("./api/device/base/getPhoneInfo").getPhoneInfo$; - getScanWifiListAsync: typeof import("./api/device/base/getScanWifiListAsync").getScanWifiListAsync$; - getUUID: typeof import("./api/device/base/getUUID").getUUID$; - getWifiStatus: typeof import("./api/device/base/getWifiStatus").getWifiStatus$; - openSystemSetting: typeof import("./api/device/base/openSystemSetting").openSystemSetting$; - }; - connection: { - getNetworkType: typeof import("./api/device/connection/getNetworkType").getNetworkType$; - }; - geolocation: { - checkPermission: typeof import("./api/device/geolocation/checkPermission").checkPermission$; - get: typeof import("./api/device/geolocation/get").get$; - start: typeof import("./api/device/geolocation/start").start$; - status: typeof import("./api/device/geolocation/status").status$; - stop: typeof import("./api/device/geolocation/stop").stop$; - }; - launcher: { - checkInstalledApps: typeof import("./api/device/launcher/checkInstalledApps").checkInstalledApps$; - launchApp: typeof import("./api/device/launcher/launchApp").launchApp$; - }; - nfc: { - nfcRead: typeof import("./api/device/nfc/nfcRead").nfcRead$; - nfcStop: typeof import("./api/device/nfc/nfcStop").nfcStop$; - nfcWrite: typeof import("./api/device/nfc/nfcWrite").nfcWrite$; - }; - notification: { - actionSheet: typeof import("./api/device/notification/actionSheet").actionSheet$; - alert: typeof import("./api/device/notification/alert").alert$; - confirm: typeof import("./api/device/notification/confirm").confirm$; - extendModal: typeof import("./api/device/notification/extendModal").extendModal$; - hidePreloader: typeof import("./api/device/notification/hidePreloader").hidePreloader$; - modal: typeof import("./api/device/notification/modal").modal$; - prompt: typeof import("./api/device/notification/prompt").prompt$; - showPreloader: typeof import("./api/device/notification/showPreloader").showPreloader$; - toast: typeof import("./api/device/notification/toast").toast$; - vibrate: typeof import("./api/device/notification/vibrate").vibrate$; - }; - screen: { - getScreenBrightness: typeof import("./api/device/screen/getScreenBrightness").getScreenBrightness$; - insetAdjust: typeof import("./api/device/screen/insetAdjust").insetAdjust$; - isScreenReaderEnabled: typeof import("./api/device/screen/isScreenReaderEnabled").isScreenReaderEnabled$; - resetView: typeof import("./api/device/screen/resetView").resetView$; - rotateView: typeof import("./api/device/screen/rotateView").rotateView$; - setScreenBrightness: typeof import("./api/device/screen/setScreenBrightness").setScreenBrightness$; - }; - }; - media: { - voiceRecorder: { - keepAlive: typeof import("./api/media/voiceRecorder/keepAlive").keepAlive$; - pause: typeof import("./api/media/voiceRecorder/pause").pause$; - resume: typeof import("./api/media/voiceRecorder/resume").resume$; - start: typeof import("./api/media/voiceRecorder/start").start$; - stop: typeof import("./api/media/voiceRecorder/stop").stop$; - }; - }; - net: { - bjGovApn: { - loginGovNet: typeof import("./api/net/bjGovApn/loginGovNet").loginGovNet$; - }; - }; - runtime: { - h5nuvabridge: { - exec: typeof import("./api/runtime/h5nuvabridge/exec").exec$; - }; - message: { - fetch: typeof import("./api/runtime/message/fetch").fetch$; - post: typeof import("./api/runtime/message/post").post$; - }; - monitor: { - getLoadTime: typeof import("./api/runtime/monitor/getLoadTime").getLoadTime$; - }; - permission: { - requestAuthCode: typeof import("./api/runtime/permission/requestAuthCode").requestAuthCode$; - requestOperateAuthCode: typeof import("./api/runtime/permission/requestOperateAuthCode").requestOperateAuthCode$; - }; - }; - ui: { - input: { - plain: typeof import("./api/ui/input/plain").plain$; - }; - multitask: { - addToFloat: typeof import("./api/ui/multitask/addToFloat").addToFloat$; - removeFromFloat: typeof import("./api/ui/multitask/removeFromFloat").removeFromFloat$; - }; - nav: { - close: typeof import("./api/ui/nav/close").close$; - getCurrentId: typeof import("./api/ui/nav/getCurrentId").getCurrentId$; - go: typeof import("./api/ui/nav/go").go$; - preload: typeof import("./api/ui/nav/preload").preload$; - recycle: typeof import("./api/ui/nav/recycle").recycle$; - }; - progressBar: { - setColors: typeof import("./api/ui/progressBar/setColors").setColors$; - }; - pullToRefresh: { - disable: typeof import("./api/ui/pullToRefresh/disable").disable$; - enable: typeof import("./api/ui/pullToRefresh/enable").enable$; - stop: typeof import("./api/ui/pullToRefresh/stop").stop$; - }; - webViewBounce: { - disable: typeof import("./api/ui/webViewBounce/disable").disable$; - enable: typeof import("./api/ui/webViewBounce/enable").enable$; - }; - }; - ExternalChannelPublish: typeof jsApi.ExternalChannelPublish; - addPhoneContact: typeof jsApi.addPhoneContact; - alert: typeof jsApi.alert; - callUsers: typeof jsApi.callUsers; - checkAuth: typeof jsApi.checkAuth; - checkBizCall: typeof jsApi.checkBizCall; - chooseChat: typeof jsApi.chooseChat; - chooseConversation: typeof jsApi.chooseConversation; - chooseDateRangeInCalendar: typeof jsApi.chooseDateRangeInCalendar; - chooseDateTime: typeof jsApi.chooseDateTime; - chooseDepartments: typeof jsApi.chooseDepartments; - chooseDingTalkDir: typeof jsApi.chooseDingTalkDir; - chooseDistrict: typeof jsApi.chooseDistrict; - chooseExternalUsers: typeof jsApi.chooseExternalUsers; - chooseFile: typeof jsApi.chooseFile; - chooseHalfDayInCalendar: typeof jsApi.chooseHalfDayInCalendar; - chooseImage: typeof jsApi.chooseImage; - chooseMedia: typeof jsApi.chooseMedia; - chooseOneDayInCalendar: typeof jsApi.chooseOneDayInCalendar; - chooseOrg: typeof jsApi.chooseOrg; - choosePhonebook: typeof jsApi.choosePhonebook; - chooseStaffForPC: typeof jsApi.chooseStaffForPC; - chooseUserFromList: typeof jsApi.chooseUserFromList; - clearShake: typeof jsApi.clearShake; - closeBluetoothAdapter: typeof jsApi.closeBluetoothAdapter; - closePage: typeof jsApi.closePage; - complexChoose: typeof jsApi.complexChoose; - compressImage: typeof jsApi.compressImage; - confirm: typeof jsApi.confirm; - connectBLEDevice: typeof jsApi.connectBLEDevice; - createBLEPeripheralServer: typeof jsApi.createBLEPeripheralServer; - createDing: typeof jsApi.createDing; - createDingForPC: typeof jsApi.createDingForPC; - createGroupChat: typeof jsApi.createGroupChat; - createLiveClassRoom: typeof jsApi.createLiveClassRoom; - createPayOrder: typeof jsApi.createPayOrder; - cropImage: typeof jsApi.cropImage; - customChooseUsers: typeof jsApi.customChooseUsers; - datePicker: typeof jsApi.datePicker; - dateRangePicker: typeof jsApi.dateRangePicker; - decrypt: typeof jsApi.decrypt; - disablePullDownRefresh: typeof jsApi.disablePullDownRefresh; - disableWebViewBounce: typeof jsApi.disableWebViewBounce; - disconnectBLEDevice: typeof jsApi.disconnectBLEDevice; - downloadAudio: typeof jsApi.downloadAudio; - downloadFile: typeof jsApi.downloadFile; - editExternalUser: typeof jsApi.editExternalUser; - editPicture: typeof jsApi.editPicture; - enablePullDownRefresh: typeof jsApi.enablePullDownRefresh; - enableWebViewBounce: typeof jsApi.enableWebViewBounce; - encrypt: typeof jsApi.encrypt; - exclusiveLiveCheck: typeof jsApi.exclusiveLiveCheck; - generateImageFromCode: typeof jsApi.generateImageFromCode; - getAccountType: typeof jsApi.getAccountType; - getActiveConferenceInfo: typeof jsApi.getActiveConferenceInfo; - getAdvertisingStatus: typeof jsApi.getAdvertisingStatus; - getAuthCode: typeof jsApi.getAuthCode; - getAuthCodeV2: typeof jsApi.getAuthCodeV2; - getAuthInfo: typeof jsApi.getAuthInfo; - getBLEDeviceCharacteristics: typeof jsApi.getBLEDeviceCharacteristics; - getBLEDeviceServices: typeof jsApi.getBLEDeviceServices; - getBatteryInfo: typeof jsApi.getBatteryInfo; - getBeacons: typeof jsApi.getBeacons; - getBluetoothAdapterState: typeof jsApi.getBluetoothAdapterState; - getBluetoothDevices: typeof jsApi.getBluetoothDevices; - getCachedAPIResponse: typeof jsApi.getCachedAPIResponse; - getCloudCallInfo: typeof jsApi.getCloudCallInfo; - getCloudCallList: typeof jsApi.getCloudCallList; - getCurrentCorpId: typeof jsApi.getCurrentCorpId; - getDeviceId: typeof jsApi.getDeviceId; - getDeviceUUID: typeof jsApi.getDeviceUUID; - getDingerDeviceStatus: typeof jsApi.getDingerDeviceStatus; - getImageInfo: typeof jsApi.getImageInfo; - getLocatingStatus: typeof jsApi.getLocatingStatus; - getLocation: typeof jsApi.getLocation; - getNetworkType: typeof jsApi.getNetworkType; - getOperateAuthCode: typeof jsApi.getOperateAuthCode; - getPageTerminateInfo: typeof jsApi.getPageTerminateInfo; - getPersonalWorkInfo: typeof jsApi.getPersonalWorkInfo; - getScreenBrightness: typeof jsApi.getScreenBrightness; - getStorage: typeof jsApi.getStorage; - getSystemInfo: typeof jsApi.getSystemInfo; - getSystemSettings: typeof jsApi.getSystemSettings; - getThirdAppConfCustomData: typeof jsApi.getThirdAppConfCustomData; - getThirdAppUserCustomData: typeof jsApi.getThirdAppUserCustomData; - getTodaysStepCount: typeof jsApi.getTodaysStepCount; - getTranslateStatus: typeof jsApi.getTranslateStatus; - getUserExclusiveInfo: typeof jsApi.getUserExclusiveInfo; - getWifiHotspotStatus: typeof jsApi.getWifiHotspotStatus; - getWifiStatus: typeof jsApi.getWifiStatus; - goBackPage: typeof jsApi.goBackPage; - hideLoading: typeof jsApi.hideLoading; - hideToast: typeof jsApi.hideToast; - isInTabWindow: typeof jsApi.isInTabWindow; - isLocalFileExist: typeof jsApi.isLocalFileExist; - isScreenReaderEnabled: typeof jsApi.isScreenReaderEnabled; - locateInMap: typeof jsApi.locateInMap; - makeCloudCall: typeof jsApi.makeCloudCall; - makeVideoConfCall: typeof jsApi.makeVideoConfCall; - minutesCreateFromVideo: typeof jsApi.minutesCreateFromVideo; - minutesStart: typeof jsApi.minutesStart; - minutesUploadVideo: typeof jsApi.minutesUploadVideo; - minutesViewDetail: typeof jsApi.minutesViewDetail; - multiSelect: typeof jsApi.multiSelect; - navigateBackPage: typeof jsApi.navigateBackPage; - navigateToPage: typeof jsApi.navigateToPage; - nfcReadCardNumber: typeof jsApi.nfcReadCardNumber; - notifyBLECharacteristicValueChange: typeof jsApi.notifyBLECharacteristicValueChange; - notifyTranslateEvent: typeof jsApi.notifyTranslateEvent; - offBLECharacteristicValueChange: typeof jsApi.offBLECharacteristicValueChange; - offBLEConnectionStateChanged: typeof jsApi.offBLEConnectionStateChanged; - offBluetoothAdapterStateChange: typeof jsApi.offBluetoothAdapterStateChange; - offBluetoothDeviceFound: typeof jsApi.offBluetoothDeviceFound; - onBLECharacteristicValueChange: typeof jsApi.onBLECharacteristicValueChange; - onBLEConnectionStateChanged: typeof jsApi.onBLEConnectionStateChanged; - onBLEPeripheralCharacteristicReadRequest: typeof jsApi.onBLEPeripheralCharacteristicReadRequest; - onBLEPeripheralCharacteristicWriteRequest: typeof jsApi.onBLEPeripheralCharacteristicWriteRequest; - onBLEPeripheralConnectionStateChanged: typeof jsApi.onBLEPeripheralConnectionStateChanged; - onBeaconServiceChange: typeof jsApi.onBeaconServiceChange; - onBeaconUpdate: typeof jsApi.onBeaconUpdate; - onBluetoothAdapterStateChange: typeof jsApi.onBluetoothAdapterStateChange; - onBluetoothDeviceFound: typeof jsApi.onBluetoothDeviceFound; - onPlayAudioEnd: typeof jsApi.onPlayAudioEnd; - onRecordEnd: typeof jsApi.onRecordEnd; - openBluetoothAdapter: typeof jsApi.openBluetoothAdapter; - openChatByChatId: typeof jsApi.openChatByChatId; - openChatByConversationId: typeof jsApi.openChatByConversationId; - openChatByUserId: typeof jsApi.openChatByUserId; - openDocument: typeof jsApi.openDocument; - openLink: typeof jsApi.openLink; - openLocalFile: typeof jsApi.openLocalFile; - openLocation: typeof jsApi.openLocation; - openMicroApp: typeof jsApi.openMicroApp; - openPageInMicroApp: typeof jsApi.openPageInMicroApp; - openPageInModalForPC: typeof jsApi.openPageInModalForPC; - openPageInSlidePanelForPC: typeof jsApi.openPageInSlidePanelForPC; - openPageInWorkBenchForPC: typeof jsApi.openPageInWorkBenchForPC; - pauseAudio: typeof jsApi.pauseAudio; - playAudio: typeof jsApi.playAudio; - popGesture: typeof jsApi.popGesture; - previewFileInDingTalk: typeof jsApi.previewFileInDingTalk; - previewImage: typeof jsApi.previewImage; - previewImagesInDingTalkBatch: typeof jsApi.previewImagesInDingTalkBatch; - previewMedia: typeof jsApi.previewMedia; - prompt: typeof jsApi.prompt; - quickCallList: typeof jsApi.quickCallList; - quitPage: typeof jsApi.quitPage; - readBLECharacteristicValue: typeof jsApi.readBLECharacteristicValue; - readNFC: typeof jsApi.readNFC; - removeCachedAPIResponse: typeof jsApi.removeCachedAPIResponse; - removeStorage: typeof jsApi.removeStorage; - replacePage: typeof jsApi.replacePage; - requestAuthCode: typeof jsApi.requestAuthCode; - requestMoneySubmmitOrder: typeof jsApi.requestMoneySubmmitOrder; - resetScreenView: typeof jsApi.resetScreenView; - resumeAudio: typeof jsApi.resumeAudio; - rotateScreenView: typeof jsApi.rotateScreenView; - rsa: typeof jsApi.rsa; - saveFileToDingTalk: typeof jsApi.saveFileToDingTalk; - saveImageToPhotosAlbum: typeof jsApi.saveImageToPhotosAlbum; - saveVideoToPhotosAlbum: typeof jsApi.saveVideoToPhotosAlbum; - scan: typeof jsApi.scan; - scanCard: typeof jsApi.scanCard; - searchMap: typeof jsApi.searchMap; - setClipboard: typeof jsApi.setClipboard; - setGestures: typeof jsApi.setGestures; - setKeepScreenOn: typeof jsApi.setKeepScreenOn; - setNavigationIcon: typeof jsApi.setNavigationIcon; - setNavigationLeft: typeof jsApi.setNavigationLeft; - setNavigationTitle: typeof jsApi.setNavigationTitle; - setScreenBrightness: typeof jsApi.setScreenBrightness; - setStorage: typeof jsApi.setStorage; - share: typeof jsApi.share; - showActionSheet: typeof jsApi.showActionSheet; - showAuthGuide: typeof jsApi.showAuthGuide; - showCallMenu: typeof jsApi.showCallMenu; - showLoading: typeof jsApi.showLoading; - showModal: typeof jsApi.showModal; - showSharePanel: typeof jsApi.showSharePanel; - showToast: typeof jsApi.showToast; - singleSelect: typeof jsApi.singleSelect; - startAdvertising: typeof jsApi.startAdvertising; - startBeaconDiscovery: typeof jsApi.startBeaconDiscovery; - startBluetoothDevicesDiscovery: typeof jsApi.startBluetoothDevicesDiscovery; - startDingerRecord: typeof jsApi.startDingerRecord; - startLocating: typeof jsApi.startLocating; - startRecord: typeof jsApi.startRecord; - stopAdvertising: typeof jsApi.stopAdvertising; - stopAudio: typeof jsApi.stopAudio; - stopBeaconDiscovery: typeof jsApi.stopBeaconDiscovery; - stopBluetoothDevicesDiscovery: typeof jsApi.stopBluetoothDevicesDiscovery; - stopDingerRecord: typeof jsApi.stopDingerRecord; - stopLocating: typeof jsApi.stopLocating; - stopPullDownRefresh: typeof jsApi.stopPullDownRefresh; - stopRecord: typeof jsApi.stopRecord; - subscribe: typeof jsApi.subscribe; - timePicker: typeof jsApi.timePicker; - translate: typeof jsApi.translate; - translateVoice: typeof jsApi.translateVoice; - uploadAttachmentToDingTalk: typeof jsApi.uploadAttachmentToDingTalk; - uploadFile: typeof jsApi.uploadFile; - vibrate: typeof jsApi.vibrate; - watchShake: typeof jsApi.watchShake; - writeBLECharacteristicValue: typeof jsApi.writeBLECharacteristicValue; - writeBLEPeripheralCharacteristicValue: typeof jsApi.writeBLEPeripheralCharacteristicValue; - writeNFC: typeof jsApi.writeNFC; - util: { - domainStorage: { - getItem: typeof import("./api/util/domainStorage/getItem").getItem$; - getStorageInfo: typeof import("./api/util/domainStorage/getStorageInfo").getStorageInfo$; - removeItem: typeof import("./api/util/domainStorage/removeItem").removeItem$; - setItem: typeof import("./api/util/domainStorage/setItem").setItem$; - }; - openTemporary: { - getData: typeof import("./api/util/openTemporary/getData").getData$; - }; - }; -} & { - plugin: typeof plugin; -}; -export = dd; diff --git a/node_modules/dingtalk-jsapi/index.js b/node_modules/dingtalk-jsapi/index.js deleted file mode 100644 index 5459de5f..00000000 --- a/node_modules/dingtalk-jsapi/index.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var ddWithoutApi=require("./entry/union"),apiObj_1=require("./api/apiObj"),plugin=require("./plugin"),dd=Object.assign(ddWithoutApi,apiObj_1.apiObj,{plugin:plugin});module.exports=dd; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/apiHelper.d.ts b/node_modules/dingtalk-jsapi/lib/apiHelper.d.ts deleted file mode 100644 index 92da602d..00000000 --- a/node_modules/dingtalk-jsapi/lib/apiHelper.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const addWatchParamsDeal: (params: any) => any; -export declare const addDefaultCorpIdParamsDeal: (params: any) => any; -export declare const genDefaultParamsDealFn: (defaultParams: object) => (params: any) => any; -export declare const forceChangeParamsDealFn: (forceParams: object) => (params: any) => any; -export declare const genBoolResultDealFn: (boolKeyList: string[]) => (params: any) => any; -export declare const genBizStoreParamsDealFn: (params: any) => any; -export declare const setStorageParamsDeal: (params: any) => any; -export declare const getStorageParamsDeal: (params: any) => any; -export declare const removeStorageParamsDeal: (params: any) => any; -export declare const scanParamsDeal: (params: any) => any; -export declare const getNetWorkTypeResultDeal: (result: any) => { - netWorkAvailable: boolean; - netWorkType: any; - newWorkAvailable?: undefined; -} | { - newWorkAvailable: boolean; - netWorkAvailable?: undefined; - netWorkType?: undefined; -}; -/** - * - * @returns 当前环境的全局变量 - * webview默认document,context默认主context的this - */ -export declare function getGlobalSelf(): typeof window; diff --git a/node_modules/dingtalk-jsapi/lib/apiHelper.js b/node_modules/dingtalk-jsapi/lib/apiHelper.js deleted file mode 100644 index 72e8d4f5..00000000 --- a/node_modules/dingtalk-jsapi/lib/apiHelper.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getGlobalSelf(){return"undefined"!=typeof window?window:"undefined"!=typeof dd?dd:self}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var a,t=1,r=arguments.length;t Promise; -declare const uniBridge: IJSBridge; -export default uniBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/combineBridge.js b/node_modules/dingtalk-jsapi/lib/bridge/combineBridge.js deleted file mode 100644 index e4d24739..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/combineBridge.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUniBridge=void 0;var env_1=require("../env"),eapp_1=require("./eapp"),webviewInMiniApp_1=require("./webviewInMiniApp"),h5Ios_1=require("./h5Ios"),weex_1=require("./weex"),h5Android_1=require("./h5Android"),weex_2=require("./weex"),h5Pc_1=require("./h5Pc"),h5Harmony_1=require("./h5Harmony"),env=env_1.getENV();exports.getUniBridge=function(){switch(env.platform){case env_1.ENV_ENUM.ios:return env.appType===env_1.APP_TYPE.MINI_APP?Promise.resolve(eapp_1.default):env.appType===env_1.APP_TYPE.WEBVIEW_IN_MINIAPP?Promise.resolve(webviewInMiniApp_1.default):env.appType===env_1.APP_TYPE.WEEX?weex_1.iosWeexBridge():h5Ios_1.h5IosBridgeInit().then(function(){return h5Ios_1.default});case env_1.ENV_ENUM.android:return env.appType===env_1.APP_TYPE.MINI_APP?Promise.resolve(eapp_1.default):env.appType===env_1.APP_TYPE.WEBVIEW_IN_MINIAPP?Promise.resolve(webviewInMiniApp_1.default):env.appType===env_1.APP_TYPE.WEEX?weex_2.androidWeexBridge():h5Android_1.h5AndroidbridgeInit().then(function(){return h5Android_1.default});case env_1.ENV_ENUM.harmony:return env.appType===env_1.APP_TYPE.MINI_APP?Promise.resolve(eapp_1.default):env.appType===env_1.APP_TYPE.WEBVIEW_IN_MINIAPP?Promise.resolve(webviewInMiniApp_1.default):h5Harmony_1.h5HarmonyBridgeInit().then(function(){return h5Harmony_1.default});case env_1.ENV_ENUM.pc:switch(env.appType){case env_1.APP_TYPE.MINI_APP:return Promise.resolve(eapp_1.default);default:return Promise.resolve(h5Pc_1.default)}default:return Promise.reject("Not in DingTalk runtime")}};var uniBridge=function(e,r){return exports.getUniBridge().then(function(n){return n(e,r)})};exports.default=uniBridge; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/combineEvent.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/combineEvent.d.ts deleted file mode 100644 index 94585505..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/combineEvent.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const uniEventOn: (type: string, listener: (e?: any) => void) => void; -export declare const uniEventOff: (type: string, listener: (e?: any) => void) => void; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/combineEvent.js b/node_modules/dingtalk-jsapi/lib/bridge/combineEvent.js deleted file mode 100644 index c2e5bfd5..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/combineEvent.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.uniEventOff=exports.uniEventOn=void 0;var env_1=require("../env"),h5Event_1=require("./h5Event"),weexEvent_1=require("./weexEvent"),h5PcEvent_1=require("./h5PcEvent"),combineBridge_1=require("./combineBridge"),env=env_1.getENV(),NOT_SUPPORT_MSG="Not support uni event in the platfrom: "+env.platform+", appType: "+env.appType;exports.uniEventOn=function(e,n){combineBridge_1.getUniBridge().then(function(){switch(env.platform){case env_1.ENV_ENUM.ios:case env_1.ENV_ENUM.android:case env_1.ENV_ENUM.harmony:switch(env.appType){case env_1.APP_TYPE.WEB:return h5Event_1.on(e,n);case env_1.APP_TYPE.WEEX:return weexEvent_1.on(e,n);default:throw new Error(NOT_SUPPORT_MSG)}case env_1.ENV_ENUM.pc:if(env.appType===env_1.APP_TYPE.WEB)return h5PcEvent_1.on(e,n);throw new Error(NOT_SUPPORT_MSG);default:throw new Error(NOT_SUPPORT_MSG)}})},exports.uniEventOff=function(e,n){combineBridge_1.getUniBridge().then(function(){switch(env.platform){case env_1.ENV_ENUM.ios:case env_1.ENV_ENUM.android:case env_1.ENV_ENUM.harmony:switch(env.appType){case env_1.APP_TYPE.WEB:return h5Event_1.off(e,n);case env_1.APP_TYPE.WEEX:return weexEvent_1.off(e,n);default:throw new Error(NOT_SUPPORT_MSG)}case env_1.ENV_ENUM.pc:if(env.appType===env_1.APP_TYPE.WEB)return h5PcEvent_1.off(e,n);throw new Error(NOT_SUPPORT_MSG);default:throw new Error(NOT_SUPPORT_MSG)}})}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/eapp.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/eapp.d.ts deleted file mode 100644 index f030b17c..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/eapp.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -declare global { - var dd: { - dtBridge: (param: any) => void; - addDTCustomEventListener: (handler: any) => void; - removeDTCustomEventListener: (handler: any) => void; - addDTChannelEventListener: (handler: any) => void; - removeDTChannelEventListener: (handler: any) => void; - }; -} -import { IJSBridge } from '../modelDef'; -declare const eappBridge: IJSBridge; -export default eappBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/eapp.js b/node_modules/dingtalk-jsapi/lib/bridge/eapp.js deleted file mode 100644 index 30b424e2..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/eapp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var eappBridge=function(e,n){return new Promise(function(o,t){dd.dtBridge({m:e,args:n,onSuccess:function(e){"function"==typeof n.success?n.success(e):"function"==typeof n.onSuccess&&n.onSuccess(e),o(e)},onFail:function(e){"function"==typeof n.fail?n.fail(e):"function"==typeof n.onFail&&n.onFail(e),t(e)}})})};exports.default=eappBridge; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Event.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Event.d.ts deleted file mode 100644 index 84e45e2c..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Event.d.ts +++ /dev/null @@ -1 +0,0 @@ -export declare const on: (type: string, handler: (e?: any) => void) => void; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Event.js b/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Event.js deleted file mode 100644 index 0d3ff5a3..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Event.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.on=void 0;var eventArr=new Map;exports.on=function(e,t){if(eventArr.has(e)){eventArr.get(e).forEach(function(t){document.removeEventListener(e,t)})}eventArr.set(e,[t]),document.addEventListener(e,t)}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Mobile.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Mobile.d.ts deleted file mode 100644 index e634312d..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Mobile.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { IJSBridge } from '../../modelDef'; -export declare enum BRIDGE_ERROR_CODE { - SUCCESS = "0" -} -export interface BridgeCallbackResult { - errorCode?: BRIDGE_ERROR_CODE; - errorMessage?: string; - result?: any; - success?: 'true' | 'false'; -} -export declare function handleBridgeResponse(result: BridgeCallbackResult, resolve: any, reject: any, params?: any): void; -declare const getMobileBridge: () => Promise; -export default getMobileBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Mobile.js b/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Mobile.js deleted file mode 100644 index 72715525..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Mobile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function handleBridgeResponse(e,n,i,o){if(e&&e.errorCode)if(e.errorCode===BRIDGE_ERROR_CODE.SUCCESS){var a=e.result;handleCallback(o,"onSuccess",a),n(a)}else console.warn("API 调用失败",e),handleCallback(o,"onFail",e),i(e);else e&&"false"===e.success?(handleCallback(o,"onFail",e),i(e)):(handleCallback(o,"onSuccess",e),n(e))}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var n,i=1,o=arguments.length;i Promise; -export default getH5PcBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Pc.js b/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Pc.js deleted file mode 100644 index 2872db5e..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/gdt/h5Pc.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(n){for(var e,i=1,t=arguments.length;i void) => void; - } & any; -} -declare const getMiniAppBridge: () => Promise; -export default getMiniAppBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/gdt/miniApp.js b/node_modules/dingtalk-jsapi/lib/bridge/gdt/miniApp.js deleted file mode 100644 index 27b299f1..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/gdt/miniApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(i){for(var n,e=1,r=arguments.length;e void; -export interface IAndroidNuva { - require: () => IAndroidBridge; - isReady: boolean | undefined; -} -declare global { - var nuva: IAndroidNuva | undefined; - var WebViewJavascriptBridgeAndroid: IAndroidBridge | undefined; - interface Window { - nuva: IAndroidNuva | undefined; - WebViewJavascriptBridgeAndroid: IAndroidBridge | undefined; - } -} -import { IJSBridge } from '../modelDef'; -export declare const h5AndroidbridgeInit: () => Promise<{}>; -declare const h5AndroidBridge: IJSBridge; -export default h5AndroidBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Android.js b/node_modules/dingtalk-jsapi/lib/bridge/h5Android.js deleted file mode 100644 index 53ca9a89..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Android.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.h5AndroidbridgeInit=void 0;var h5BridgeReadyPromise;exports.h5AndroidbridgeInit=function(){return h5BridgeReadyPromise||(h5BridgeReadyPromise=new Promise(function(e,i){var n=function(){try{window.WebViewJavascriptBridgeAndroid=window.nuva&&window.nuva.require(),e({})}catch(e){i(e)}};window.nuva&&(void 0===window.nuva.isReady||window.nuva.isReady)?n():(document.addEventListener("runtimeready",function(){n()},!1),document.addEventListener("runtimefailed",function(e){var n=e&&e.detail||{errorCode:"2",errorMessage:"unknown nuvajs bootstrap error"};i(n)},!1))})),h5BridgeReadyPromise};var h5AndroidBridge=function(e,i){return h5BridgeReadyPromise||(h5BridgeReadyPromise=exports.h5AndroidbridgeInit()),h5BridgeReadyPromise.then(function(){return new Promise(function(n,r){var o=e.split("."),d=o.pop()||"",t=o.join("."),a=function(e){"function"==typeof i.success?i.success(e):"function"==typeof i.onSuccess&&i.onSuccess(e),n(e)},s=function(e){"function"==typeof i.fail?i.fail(e):"function"==typeof i.onFail&&i.onFail(e),r(e)};"function"==typeof window.WebViewJavascriptBridgeAndroid&&window.WebViewJavascriptBridgeAndroid(a,s,t,d,i)})})};exports.default=h5AndroidBridge; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Event.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/h5Event.d.ts deleted file mode 100644 index d3e61310..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Event.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const on: (type: string, handler: (e?: any) => void) => void; -export declare const off: (type: string, handler: (e?: any) => void) => void; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Event.js b/node_modules/dingtalk-jsapi/lib/bridge/h5Event.js deleted file mode 100644 index c4c5bf86..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Event.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.off=exports.on=void 0;var NON_BRIDGE_EVENTS=["resume","pause","online","offline","backbutton","goBack","pullToRefresh","message","recycle","restore","drawer","tab","navHelpIcon","navRightButton","navMenu","navTitle","appLinkResponse","internalPageLinkResponse","networkEvent","hostTaskEvent","deviceOrientationChanged","autoCheckIn","deviceFound","hostCheckIn","screenshot","becomeActive","keepAlive","navTitleClick","sharePage","wxNotify","editNoteCommand","updateStyle","qrscanCommonNotify","__message__","dtChannelEvent","livePlayerEventPlay","livePlayerEventPause","livePlayerEventEnded","livePlayerEventError","navActions","attendEvents"],BizEventBridgeType="dtBizBridgeEvent",EventTypeListKey="__eventTypeList__",handlerProxyMap=function(){return"undefined"==typeof WeakMap?void 0:new WeakMap}(),getOnHandlerProxy=function(e,n){if(handlerProxyMap){var t=handlerProxyMap.get(n);return void 0===t?(t=function(e){var r=e.detail;if(r.namespace&&r.eventName){var a=r.namespace+"."+r.eventName;t&&-1!==t[EventTypeListKey].indexOf(a)&&n(r.data)}},t[EventTypeListKey]=[e],handlerProxyMap.set(n,t)):-1===t[EventTypeListKey].indexOf(e)&&t[EventTypeListKey].push(e),t}},getOffHandlerProxy=function(e,n){if(handlerProxyMap){var t=handlerProxyMap.get(n);return t&&-1!==t[EventTypeListKey].indexOf(e)&&t[EventTypeListKey].splice(t[EventTypeListKey].indexOf(e),1),t&&t[EventTypeListKey].length<=1?t:void 0}};exports.on=function(e,n){if(-1!==NON_BRIDGE_EVENTS.indexOf(e))document.addEventListener(e,n);else{var t=getOnHandlerProxy(e,n);t?document.addEventListener(BizEventBridgeType,t):console.log("bind event : "+e+" need WeakMap support , current environment doesnot")}},exports.off=function(e,n){if(-1!==NON_BRIDGE_EVENTS.indexOf(e))document.removeEventListener(e,n);else{var t=getOffHandlerProxy(e,n);t&&document.removeEventListener(BizEventBridgeType,t)}}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Harmony.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/h5Harmony.d.ts deleted file mode 100644 index 22da6982..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Harmony.d.ts +++ /dev/null @@ -1,18 +0,0 @@ -export declare type IAndroidBridge = (successCallback: any, failCallback: any, pre: string, suff: string, params: any) => void; -export interface IAndroidNuva { - require: () => IAndroidBridge; - isReady: boolean | undefined; -} -declare global { - var DingTalkJSBridge: any; - var nuva: IAndroidNuva | undefined; - var WebViewJavascriptBridgeAndroid: IAndroidBridge | undefined; - interface Window { - nuva: IAndroidNuva | undefined; - WebViewJavascriptBridgeAndroid: IAndroidBridge | undefined; - } -} -import { IJSBridge } from '../modelDef'; -export declare const h5HarmonyBridgeInit: () => Promise<{}>; -declare const h5HarmonyBridge: IJSBridge; -export default h5HarmonyBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Harmony.js b/node_modules/dingtalk-jsapi/lib/bridge/h5Harmony.js deleted file mode 100644 index 0d8a6c7e..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Harmony.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.h5HarmonyBridgeInit=void 0;var h5BridgeReadyPromise;exports.h5HarmonyBridgeInit=function(){return h5BridgeReadyPromise||(h5BridgeReadyPromise=new Promise(function(e,n){if("undefined"!=typeof DingTalkJSBridge){try{DingTalkJSBridge.init(function(e,n){})}catch(e){return n()}return e({})}document.addEventListener("DingTalkJSBridgeReady",function(){if("undefined"==typeof DingTalkJSBridge)return n();try{DingTalkJSBridge.init(function(e,n){})}catch(e){return n()}return e({})},!1)})),h5BridgeReadyPromise};var h5HarmonyBridge=function(e,n){return h5BridgeReadyPromise||(h5BridgeReadyPromise=exports.h5HarmonyBridgeInit()),h5BridgeReadyPromise.then(function(){return new Promise(function(i,r){var o=function(e){e.success?(!function(e){"function"==typeof n.success?n.success(e):"function"==typeof n.onSuccess&&n.onSuccess(e)}(e.body),i(e.body)):(!function(e){"function"==typeof n.fail?n.fail(e):"function"==typeof n.onFail&&n.onFail(e)}(e.body),r(e.body))};"function"==typeof window.DingTalkJSBridge.call&&window.DingTalkJSBridge.call(e,n,o)})})};exports.default=h5HarmonyBridge; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Ios.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/h5Ios.d.ts deleted file mode 100644 index 1636d286..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Ios.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -export interface IIOSBridge { - init: any; - registerHandler: any; - callHandler: any; -} -declare global { - var WebViewJavascriptBridge: IIOSBridge | undefined; - interface Window { - WebViewJavascriptBridge: IIOSBridge | undefined; - } -} -import { IJSBridge } from '../modelDef'; -export declare const h5IosBridgeInit: () => Promise<{}>; -declare const h5IosBridge: IJSBridge; -export default h5IosBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Ios.js b/node_modules/dingtalk-jsapi/lib/bridge/h5Ios.js deleted file mode 100644 index 635e3c56..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Ios.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.h5IosBridgeInit=void 0;var h5BridgeReadyPromise;exports.h5IosBridgeInit=function(){return h5BridgeReadyPromise||(h5BridgeReadyPromise=new Promise(function(e,r){if("undefined"!=typeof WebViewJavascriptBridge){try{WebViewJavascriptBridge.init(function(e,r){})}catch(e){return r()}return e({})}document.addEventListener("WebViewJavascriptBridgeReady",function(){if("undefined"==typeof WebViewJavascriptBridge)return r();try{WebViewJavascriptBridge.init(function(e,r){})}catch(e){return r()}return e({})},!1)})),h5BridgeReadyPromise};var h5IosBridge=function(e,r){return h5BridgeReadyPromise||(h5BridgeReadyPromise=exports.h5IosBridgeInit()),h5BridgeReadyPromise.then(function(){var i=Object.assign({},r);return new Promise(function(r,n){if(!0===i.watch){var o=i.onSuccess;delete i.onSuccess,"function"==typeof i.success&&(o=i.success,delete i.success),"undefined"!=typeof WebViewJavascriptBridge&&WebViewJavascriptBridge.registerHandler(e,function(e,r){"function"==typeof o&&o.call(null,e),r&&r({errorCode:"0",errorMessage:"success"})})}void 0!==window.WebViewJavascriptBridge&&window.WebViewJavascriptBridge.callHandler(e,Object.assign({},i),function(e){var o=e||{};"0"===o.errorCode?("function"==typeof i.success?i.success.call(null,o.result):"function"==typeof i.onSuccess&&i.onSuccess.call(null,o.result),r(o.result)):("-1"===o.errorCode?"function"==typeof i.cancel?i.cancel.call(null,o,o.errorCode):"function"==typeof i.onCancel&&i.onCancel.call(null,o,o.errorCode):"function"==typeof i.fail?i.fail.call(null,o,o.errorCode):"function"==typeof i.onFail&&i.onFail.call(null,o,o.errorCode),n(o))})})})};exports.default=h5IosBridge; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Pc.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/h5Pc.d.ts deleted file mode 100644 index 1e6fb24b..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Pc.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { IJSBridge } from '../modelDef'; -export declare const h5PcBridgeInit: () => Promise; -declare const h5PcBridge: IJSBridge; -export default h5PcBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5Pc.js b/node_modules/dingtalk-jsapi/lib/bridge/h5Pc.js deleted file mode 100644 index f38a2c9e..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5Pc.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.h5PcBridgeInit=void 0,exports.h5PcBridgeInit=function(){return Promise.resolve(require("../packages/frame-talk-client-pc/index.js"))};var h5PcBridge=function(e,n){return new Promise(function(t,c){return require("../packages/frame-talk-client-pc/index.js").invokeAPI(e,n).result.then(function(e){return"function"==typeof n.success?n.success.call(null,e):"function"==typeof n.onSuccess&&n.onSuccess.call(null,e),t(e)},function(e){return"function"==typeof n.fail?n.fail.call(null,e):"function"==typeof n.onFail&&n.onFail.call(null,e),c(e)})})};exports.default=h5PcBridge; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5PcEvent.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/h5PcEvent.d.ts deleted file mode 100644 index d3e61310..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5PcEvent.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const on: (type: string, handler: (e?: any) => void) => void; -export declare const off: (type: string, handler: (e?: any) => void) => void; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/h5PcEvent.js b/node_modules/dingtalk-jsapi/lib/bridge/h5PcEvent.js deleted file mode 100644 index 8a4b557f..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/h5PcEvent.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.off=exports.on=void 0,exports.on=function(e,t){require("../packages/frame-talk-client-pc/index.js").addEventListener(e,t)},exports.off=function(e,t){require("../packages/frame-talk-client-pc/index.js").removeEventListener(e,t)}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/uni.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/uni.d.ts deleted file mode 100644 index e5dfb73c..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/uni.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { IJSBridge } from '../modelDef'; -declare const uniBridge: IJSBridge; -export default uniBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/uni.js b/node_modules/dingtalk-jsapi/lib/bridge/uni.js deleted file mode 100644 index f3dc8415..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/uni.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var weex_1=require("./weex"),RESULT_CODE_SUCCESS=0,uniBridge=function(e,u){return new Promise(function(s,t){weex_1.requireModule("eAppJsApi").exec({jsApi:e,args:u},function(e){e.resultCode===RESULT_CODE_SUCCESS?("function"==typeof u.success?u.success(e.result):"function"==typeof u.onSuccess&&u.onSuccess(e.result),s(e.result)):("function"==typeof u.fail?u.fail(e.result):"function"==typeof u.onFail&&u.onFail(e.result),t(e.result))})})};exports.default=uniBridge; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/webviewInMiniApp.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/webviewInMiniApp.d.ts deleted file mode 100644 index b4e12f01..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/webviewInMiniApp.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -declare global { - var AlipayJSBridge: { - call: (...param: any[]) => void; - }; -} -import { IJSBridge } from '../modelDef'; -declare const webviewInMiniappBridge: IJSBridge; -export default webviewInMiniappBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/webviewInMiniApp.js b/node_modules/dingtalk-jsapi/lib/bridge/webviewInMiniApp.js deleted file mode 100644 index f7b85c64..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/webviewInMiniApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var noop=function(){},webviewInMiniappBridgeReadyPromise,webviewInMiniappBridgeInit=function(){return webviewInMiniappBridgeReadyPromise||(webviewInMiniappBridgeReadyPromise=new Promise(function(e,i){window.AlipayJSBridge?e():document.addEventListener("AlipayJSBridgeReady",function(){e()},!1)})),webviewInMiniappBridgeReadyPromise},webviewInMiniappBridge=function(e,i){return webviewInMiniappBridgeInit().then(function(){return new Promise(function(n,r){var a=i.onSuccess||noop,o=i.onFail||noop;if(delete i.onSuccess,delete i.onFail,AlipayJSBridge){var p=e.split("."),t=p.pop()||"",d=p.join(".");AlipayJSBridge.call.apply(null,["webDdExec",{serviceName:d,actionName:t,args:i},function(e){var i={},p=e.content;if(p)try{i=JSON.parse(p)}catch(e){console.error("parse dt api result error",p,e)}e.success?(a.apply(null,[i]),n(i)):(o.apply(null,[i]),r(i))}])}else{var s=new Error("Fatal error, cannot find bridge ,current env is WebView in MiniApp");o(s),r(s)}})})};exports.default=webviewInMiniappBridge; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/weex.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/weex.d.ts deleted file mode 100644 index 5d81b186..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/weex.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -declare global { - var __weex_require__: any; - var weex: { - config: any; - requireModule(name: string): { - [key: string]: any; - }; - }; -} -export declare const requireModule: (moduleName: string) => any; -export declare const iosWeexBridge: () => Promise<(method: string, params: any) => Promise>; -export declare const androidWeexBridge: () => Promise<(method: string, params: any) => Promise>; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/weex.js b/node_modules/dingtalk-jsapi/lib/bridge/weex.js deleted file mode 100644 index aa4d8188..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/weex.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.androidWeexBridge=exports.iosWeexBridge=exports.requireModule=void 0;var STATUS_NO_RESULT=0,STATUS_OK=1,STATUS_ERROR=2,WEEX_IOS_BIZ_SUCCESS_CODE="0";exports.requireModule=function(e){return"undefined"!=typeof __weex_require__?__weex_require__("@weex-module/"+e):"undefined"!=typeof weex?weex.requireModule(e):void 0},exports.iosWeexBridge=function(){return Promise.resolve(function(e,o){return new Promise(function(r,s){var n=exports.requireModule("nuvajs-exec"),t=e.split("."),i=t.pop(),u=t.join(".");n.exec({plugin:u,action:i,args:o},function(e){e&&e.errorCode===WEEX_IOS_BIZ_SUCCESS_CODE?("function"==typeof o.success?o.success(e.result):"function"==typeof o.onSuccess&&o.onSuccess(e.result),r(e.result)):("function"==typeof o.fail?o.fail(e.result):"function"==typeof o.onFail&&o.onFail(e.result),s(e.result))})})})},exports.androidWeexBridge=function(){return Promise.resolve(function(e,o){return new Promise(function(r,s){var n=exports.requireModule("nuvajs-exec"),t=e.split("."),i=t.pop(),u=t.join(".");n.exec({plugin:u,action:i,args:o},function(e){var n={};try{if(e&&e.__message__)if("object"==typeof e.__message__)n=e.__message__;else try{n=JSON.parse(e.__message__)}catch(o){"string"==typeof e.__message__&&(n=e.__message__)}}catch(e){}e&&parseInt(e.__status__+"",10)===STATUS_OK?("function"==typeof o.onSuccess&&o.onSuccess(n),r(n)):("function"==typeof o.onFail&&o.onFail(n),s(n))})})})}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/weexEvent.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/weexEvent.d.ts deleted file mode 100644 index d3e61310..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/weexEvent.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const on: (type: string, handler: (e?: any) => void) => void; -export declare const off: (type: string, handler: (e?: any) => void) => void; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/weexEvent.js b/node_modules/dingtalk-jsapi/lib/bridge/weexEvent.js deleted file mode 100644 index 8aa9f412..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/weexEvent.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var _this=this;Object.defineProperty(exports,"__esModule",{value:!0}),exports.off=exports.on=void 0;var weex_1=require("./weex");exports.on=function(e,t){weex_1.requireModule("globalEvent").addEventListener(e,function(e){var r={preventDefault:function(){throw new Error("does not support preventDefault")},detail:e};t.call(_this,r)})},exports.off=function(e,t){weex_1.requireModule("globalEvent").removeEventListener(e,t)}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/weexNbBridge.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/weexNbBridge.d.ts deleted file mode 100644 index 4171bf35..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/weexNbBridge.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { IJSBridge } from '../modelDef'; -declare global { - var AlipayJSBridge: { - call: (...param: any[]) => void; - }; -} -export declare const weexNbBridge: IJSBridge; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/weexNbBridge.js b/node_modules/dingtalk-jsapi/lib/bridge/weexNbBridge.js deleted file mode 100644 index b504f80a..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/weexNbBridge.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function AndroidBridgeCall(e,i,r){weex_1.requireModule("wxNbBridge").exec({action:e,data:i},function(e){r&&r(e)})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.weexNbBridge=void 0;var weex_1=require("./weex"),useAlipayJSBridge={call:AndroidBridgeCall};"undefined"!=typeof AlipayJSBridge&&(useAlipayJSBridge=AlipayJSBridge),exports.weexNbBridge=function(e,i){return new Promise(function(r,n){var t=e,c=i.onSuccess,a=i.success,d=i.onFail,s=i.fail;delete i.onSuccess,delete i.success,delete i.onFail,delete i.fail;var o=t.split("."),l=o.pop()||"",u=o.join(".");useAlipayJSBridge.call("ddExec",{actionName:l,serviceName:u,args:i},function(e){if(!e||!e.success)return s?s():d&&d(),n();try{var i=e.content;return i?(i=JSON.parse(e.content),a?a(i):c&&c(i)):a?a():c&&c(),r(i)}catch(e){return s?s(e):d&&d(e),n(e)}})})}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/bridge/weexNbEvent.d.ts b/node_modules/dingtalk-jsapi/lib/bridge/weexNbEvent.d.ts deleted file mode 100644 index e7cb951e..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/weexNbEvent.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export declare const on: (evt: string, fn: any) => void; -export declare const off: (evt: string, fn: any) => void; diff --git a/node_modules/dingtalk-jsapi/lib/bridge/weexNbEvent.js b/node_modules/dingtalk-jsapi/lib/bridge/weexNbEvent.js deleted file mode 100644 index 7908ad05..00000000 --- a/node_modules/dingtalk-jsapi/lib/bridge/weexNbEvent.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.off=exports.on=void 0;var weex_1=require("./weex"),globalEvent=weex_1.requireModule("globalEvent"),weexNbEvent={isInitEvent:!1,eventsMap:{},RequestIDCacheMap:[],dispatchEvent:function(e){if(e){var t={func:e.name,data:e.data,pageId:e.pageId||"",viewId:e.viewId||"",clientId:""};e.clientId&&(t.clientId=e.clientId),weexNbEvent.dispatchData(t)}},addEventListener:function(e,t){weexNbEvent.isInitEvent||(weexNbEvent.isInitEvent=!0,globalEvent.addEventListener("__nb_bridge__",function(e){if(e&&e.message)try{var t=parseJSON(e.message);weexNbEvent.dispatchData(t)}catch(e){console.error("__nb_bridge__ data parse error",e)}})),weexNbEvent.eventsMap[e]||(weexNbEvent.eventsMap[e]=[]),weexNbEvent.eventsMap[e].push(t)},removeEventListener:function(e,t){var n=weexNbEvent.eventsMap[e];if(n)for(var a=n.length-1;a>=0;a--)n[a]===t&&n.splice(a,1)},dispatchData:function(e){console.log("receive push data",e);var t={param:e.param,pageId:e.pageId,viewId:e.viewId,clientId:e.clientId};e&&e.func?(t.eventName=e.func,weexNbEvent.doEventCallback(t)):e&&e.beforeunload?(t.eventName="beforeunload",t.param={},weexNbEvent.doEventCallback(t)):e&&null!=e.requestId?isFunction(weexNbEvent.RequestIDCacheMap[e.requestId])?(weexNbEvent.RequestIDCacheMap[e.requestId](e.param),delete weexNbEvent.RequestIDCacheMap[e.requestId]):console.log("unknown requestId",e):console.error("unknown push data",e)},doEventCallback:function(e){var t=e.eventName;if(t){var n=weexNbEvent.eventsMap[t];if(n&&n.length>0){var a={name:t};isObject(e.param)&&"android"===weex.config.env.platform.toLowerCase()?Object.assign(a,e.param):a.data=e.param,a.pageId=e.pageId,a.viewId=e.viewId,a.clientId=e.clientId,n.map(function(e){if(isFunction(e))try{e(a)}catch(e){console.error(e)}})}}}};exports.on=function(e,t){weexNbEvent.addEventListener(e,t)},exports.off=function(e,t){weexNbEvent.removeEventListener(e,t)};var isObject=function(e){return e&&"object"==typeof e},isFunction=function(e){return"function"==typeof e},parseJSON=function(e){try{e=JSON.parse(e)}catch(e){}return e}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/getBioInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/getBioInfo.d.ts deleted file mode 100644 index 5b8396c3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/getBioInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "alipay.verifyidentity.getBioInfo"; -/** - * 获取人脸环境参数 请求参数定义 - * @apiName alipay.verifyidentity.getBioInfo - */ -export interface IAlipayVerifyidentityGetBioInfoParams { -} -/** - * 获取人脸环境参数 返回结果定义 - * @apiName alipay.verifyidentity.getBioInfo - */ -export interface IAlipayVerifyidentityGetBioInfoResult { - /** 人脸环境参数信息 */ - bioInfo: any; -} -/** - * 获取人脸环境参数 - * @apiName alipay.verifyidentity.getBioInfo - * @supportVersion ios: 4.3.9 android: 4.3.9 - */ -export declare function getBioInfo$(params: IAlipayVerifyidentityGetBioInfoParams): Promise; -export default getBioInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/getBioInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/getBioInfo.js deleted file mode 100644 index e13fd249..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/getBioInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBioInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getBioInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="alipay.verifyidentity.getBioInfo",exports.getBioInfo$=getBioInfo$,exports.default=getBioInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/verifyIdentity.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/verifyIdentity.d.ts deleted file mode 100644 index d30578e3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/verifyIdentity.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "alipay.verifyidentity.verifyIdentity"; -/** - * 核身校验 请求参数定义 - * @apiName alipay.verifyidentity.verifyIdentity - */ -export interface IAlipayVerifyidentityVerifyIdentityParams { - /** 核身流程ID */ - verifyId: any; -} -/** - * 核身校验 返回结果定义 - * @apiName alipay.verifyidentity.verifyIdentity - */ -export interface IAlipayVerifyidentityVerifyIdentityResult { - /** 核身流程ID */ - verifyId: any; - /** 核身结果返回值 */ - code: any; - /** 核身结果描述信息 */ - message: any; - /** 核身透传的业务数据 */ - bizResponseData: any; -} -/** - * 核身校验 - * @apiName alipay.verifyidentity.verifyIdentity - * @supportVersion ios: 4.3.9 android: 4.3.9 - */ -export declare function verifyIdentity$(params: IAlipayVerifyidentityVerifyIdentityParams): Promise; -export default verifyIdentity$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/verifyIdentity.js b/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/verifyIdentity.js deleted file mode 100644 index 28304131..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/alipay/verifyidentity/verifyIdentity.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function verifyIdentity$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.verifyIdentity$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="alipay.verifyidentity.verifyIdentity",exports.verifyIdentity$=verifyIdentity$,exports.default=verifyIdentity$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/beaconPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/beaconPicker.d.ts deleted file mode 100644 index 499f2fe4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/beaconPicker.d.ts +++ /dev/null @@ -1,65 +0,0 @@ -export declare const apiName = "biz.ATMBle.beaconPicker"; -/** - * B1设备选择器,对外开放接口 请求参数定义 - * @apiName biz.ATMBle.beaconPicker - */ -export interface IBizATMBleBeaconPickerParams { - /** 企业ID,服务端会对权限做控制 */ - corpId: string; - /** 使用场景,通过调取平台服务获取 */ - bizCode: string; - /** 默认勾选B1设备ID列表,List,json格式 */ - pickedBeacons?: string; - /** 不可选设备ID列表,List,json格式 */ - disabledBeacons?: string; - /** 必选设备ID列表,List,json格式 */ - requireBeacons?: string; - /** 人脸管理,用户ID列表,List,json格式 */ - userIds?: string; - /** 人脸管理,排除的用户ID列表,List,json格式 */ - excludeUserIds?: string; - /** 人脸管理,部门ID列表,List,json格式 */ - deptIds?: string; - /** 人脸管理,排除的部门ID列表,List,json格式 */ - excludeDeptIds?: string; - /** 是否支持多选 */ - multiple?: boolean; - /** 最大可选数量 */ - max?: number; - /** 超过限定数量提示 */ - limitTips?: string; - /** 页面标题 */ - title?: string; - /** 上游业务来源 */ - origin?: string; - /** 是否支持实人 */ - supportFace?: boolean; - /** 是否支持距离 */ - supportDistance?: boolean; - /** 设置的蓝牙设备距离 */ - distance?: string; - /** 人脸开关 */ - useFaceRecognition?: boolean; - /** 扩展字段,先预留 */ - extData?: string; -} -/** - * B1设备选择器,对外开放接口 返回结果定义 - * @apiName biz.ATMBle.beaconPicker - */ -export interface IBizATMBleBeaconPickerResult { - /** 选择的设备ID列表 */ - chosenBeacons: number[]; - /** 人脸识别开关 */ - useFaceRecognition: boolean; - /** 设置的蓝牙设备距离 */ - distance: number; -} -/** - * B1设备选择器,对外开放接口 - * @apiName biz.ATMBle.beaconPicker - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function beaconPicker$(params: IBizATMBleBeaconPickerParams): Promise; -export default beaconPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/beaconPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/beaconPicker.js deleted file mode 100644 index d5c45bc3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/beaconPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function beaconPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.beaconPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ATMBle.beaconPicker",exports.beaconPicker$=beaconPicker$,exports.default=beaconPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFace.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFace.d.ts deleted file mode 100644 index eb0e7fcb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFace.d.ts +++ /dev/null @@ -1,41 +0,0 @@ -export declare const apiName = "biz.ATMBle.detectFace"; -/** - * 实人实地开放,半屏弹窗 请求参数定义 - * @apiName biz.ATMBle.detectFace - */ -export interface IBizATMBleDetectFaceParams { - /** 企业 ID */ - corpId: string; - /** 企业用户 ID */ - userId: string; - /** 当前是否已录入人脸 */ - hasFace: boolean; - /** 是否需要美颜,部分机型由于兼容性问题不支持 */ - needBeauty?: boolean; - /** 是否需要活体检测,未录入人脸时不支持 */ - needFacePose?: boolean; - /** 半屏弹窗的标题 */ - spaceTitle?: string; -} -/** - * 实人实地开放,半屏弹窗 返回结果定义 - * @apiName biz.ATMBle.detectFace - */ -export interface IBizATMBleDetectFaceResult { - /** - * 人脸识别结果 - * 1:人脸验证/录入成功 - * 2:人脸验证/录入失败 - */ - photoStatus: number; - /** 生成资源对应的sessionId,可用于组件打卡时携带人脸信息 */ - faceSessionId: string; -} -/** - * 实人实地开放,半屏弹窗 - * @apiName biz.ATMBle.detectFace - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author Android:序望,iOS:度尽 - */ -export declare function detectFace$(params: IBizATMBleDetectFaceParams): Promise; -export default detectFace$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFace.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFace.js deleted file mode 100644 index e3282dc1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFace.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectFace$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectFace$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ATMBle.detectFace",exports.detectFace$=detectFace$,exports.default=detectFace$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFaceFullScreen.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFaceFullScreen.d.ts deleted file mode 100644 index ca34f535..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFaceFullScreen.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -export declare const apiName = "biz.ATMBle.detectFaceFullScreen"; -/** - * 实人实地开放,全屏页面 请求参数定义 - * @apiName biz.ATMBle.detectFaceFullScreen - */ -export interface IBizATMBleDetectFaceFullScreenParams { - /** 企业 ID */ - corpId: string; - /** 企业用户 ID */ - userId: string; - /** 当前是否已录入人脸 */ - hasFace: boolean; - /** 是否需要美颜,部分机型由于兼容性问题不支持 */ - needBeauty?: boolean; - /** 是否需要活体检测,未录入人脸时不支持 */ - needFacePose?: boolean; -} -/** - * 实人实地开放,全屏页面 返回结果定义 - * @apiName biz.ATMBle.detectFaceFullScreen - */ -export interface IBizATMBleDetectFaceFullScreenResult { - /** - * 人脸识别结果 - * 1:人脸验证/录入成功 - * 2:人脸验证/录入失败 - */ - photoStatus: number; - /** 生成资源对应的sessionId,可用于组件打卡时携带人脸信息 */ - faceSessionId: string; -} -/** - * 实人实地开放,全屏页面 - * @apiName biz.ATMBle.detectFaceFullScreen - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author Android:序望,iOS:度尽 - */ -export declare function detectFaceFullScreen$(params: IBizATMBleDetectFaceFullScreenParams): Promise; -export default detectFaceFullScreen$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFaceFullScreen.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFaceFullScreen.js deleted file mode 100644 index cc5f69c0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/detectFaceFullScreen.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectFaceFullScreen$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectFaceFullScreen$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ATMBle.detectFaceFullScreen",exports.detectFaceFullScreen$=detectFaceFullScreen$,exports.default=detectFaceFullScreen$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/faceManager.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/faceManager.d.ts deleted file mode 100644 index 5989f81e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/faceManager.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -export declare const apiName = "biz.ATMBle.faceManager"; -/** - * 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理 请求参数定义 - * @apiName biz.ATMBle.faceManager - */ -export interface IBizATMBleFaceManagerParams { - /** 企业ID,服务端会对权限做控制 */ - corpId: string; - /** 人脸管理,用户ID列表,List,json格式 */ - userIds?: string; - /** 人脸管理,排除的用户ID列表,List,json格式 */ - excludeUserIds?: string; - /** 人脸管理,部门ID列表,List,json格式 */ - deptIds?: string; - /** 人脸管理,排除的部门ID列表,List,json格式 */ - excludeDeptIds?: string; - /** 人脸开关 */ - switchValue?: boolean; - /** 扩展字段,先预留 */ - extData?: string; -} -/** - * 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理 返回结果定义 - * @apiName biz.ATMBle.faceManager - */ -export interface IBizATMBleFaceManagerResult { - switchValue: boolean; -} -/** - * 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理 - * @apiName biz.ATMBle.faceManager - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function faceManager$(params: IBizATMBleFaceManagerParams): Promise; -export default faceManager$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/faceManager.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/faceManager.js deleted file mode 100644 index d09efa66..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/faceManager.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function faceManager$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.faceManager$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ATMBle.faceManager",exports.faceManager$=faceManager$,exports.default=faceManager$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/punchModePicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/punchModePicker.d.ts deleted file mode 100644 index a92ae055..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/punchModePicker.d.ts +++ /dev/null @@ -1,53 +0,0 @@ -export declare const apiName = "biz.ATMBle.punchModePicker"; -/** - * 选择打卡方式的通用组件,目前支持选择地理位置、Wi-Fi、智点B1、考勤机 请求参数定义 - * @apiName biz.ATMBle.punchModePicker - */ -export interface IBizATMBlePunchModePickerParams { - /** 当选择支持智点B1打卡、考勤机打卡时,则必须有corpId */ - corpId?: string; - /** 需要支持的打卡方式,json序列化后的数据格式: ['location', 'wifi', 'beacon', 'atm'] - * 含义: - * 'location':地理位置打卡 - * 'wifi':Wi-Fi打卡 - * 'beacon':智点B1打卡 - * 'atm':考勤机打卡 - */ - supportModes: string[]; - /** 禁用的打卡方式,json序列化后的数据格式: ['location', 'wifi', 'beacon', 'atm'] - * 含义: - * 'location':地理位置打卡 - * 'wifi':Wi-Fi打卡 - * 'beacon':智点B1打卡 - * 'atm':考勤机打卡 - */ - disabledModes: string[]; - /** 用于透传,json序列化后的数据格式: [{type: 'location', enable: true, list: []}] 意义待补充 */ - modes: Array<{ - type: string; - enable: boolean; - list: any[]; - }>; - /** 扩展字段,先预留 */ - extData?: string; -} -/** - * 选择打卡方式的通用组件,目前支持选择地理位置、Wi-Fi、智点B1、考勤机 返回结果定义 - * @apiName biz.ATMBle.punchModePicker - */ -export interface IBizATMBlePunchModePickerResult { - /** 选择结果,也是下次调用组件的入参,json序列化后的数据格式: [{type: 'location', enable: true, list: []}] 意义待补充 */ - modes: Array<{ - type: string; - enable: boolean; - list: any[]; - }>; -} -/** - * 选择打卡方式的通用组件,目前支持选择地理位置、Wi-Fi、智点B1、考勤机 - * @apiName biz.ATMBle.punchModePicker - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function punchModePicker$(params: IBizATMBlePunchModePickerParams): Promise; -export default punchModePicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/punchModePicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/punchModePicker.js deleted file mode 100644 index 24976c43..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ATMBle/punchModePicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function punchModePicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.punchModePicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ATMBle.punchModePicker",exports.punchModePicker$=punchModePicker$,exports.default=punchModePicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/alidoc/setStyle.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/alidoc/setStyle.d.ts deleted file mode 100644 index a431f4f2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/alidoc/setStyle.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.alidoc.setStyle"; -/** - * 控制钉钉文档容器内的原生工具栏 请求参数定义 - * @apiName biz.alidoc.setStyle - */ -export interface IBizAlidocSetStyleParams { - [key: string]: any; -} -/** - * 控制钉钉文档容器内的原生工具栏 返回结果定义 - * @apiName biz.alidoc.setStyle - */ -export interface IBizAlidocSetStyleResult { - [key: string]: any; -} -/** - * 控制钉钉文档容器内的原生工具栏 - * @apiName biz.alidoc.setStyle - * @supportVersion ios: 5.1.35 android: 5.1.35 - * @author Android:吾贤 iOS:弘煜 - */ -export declare function setStyle$(params: IBizAlidocSetStyleParams): Promise; -export default setStyle$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/alidoc/setStyle.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/alidoc/setStyle.js deleted file mode 100644 index f400f643..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/alidoc/setStyle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setStyle$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setStyle$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.alidoc.setStyle",exports.setStyle$=setStyle$,exports.default=setStyle$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/auth.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/auth.d.ts deleted file mode 100644 index db62b398..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/auth.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.alipay.auth"; -/** - * 支付宝移动支付Sdk,授权JS-API封装 请求参数定义 - * @apiName biz.alipay.auth - */ -export interface IBizAlipayAuthParams { - [key: string]: any; -} -/** - * 支付宝移动支付Sdk,授权JS-API封装 返回结果定义 - * @apiName biz.alipay.auth - */ -export interface IBizAlipayAuthResult { - [key: string]: any; -} -/** - * 支付宝移动支付Sdk,授权JS-API封装 - * @apiName biz.alipay.auth - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function auth$(params: IBizAlipayAuthParams): Promise; -export default auth$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/auth.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/auth.js deleted file mode 100644 index caf9df77..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/auth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function auth$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.auth$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.alipay.auth",exports.auth$=auth$,exports.default=auth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/openAuth.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/openAuth.d.ts deleted file mode 100644 index 6efdcb5e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/openAuth.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.alipay.openAuth"; -/** - * 开放给内部或二方合作伙伴跳到支付宝完成电子发票、账户授权、独立签约功能 请求参数定义 - * @apiName biz.alipay.openAuth - */ -export interface IBizAlipayOpenAuthParams { - /** 0:电子发票(Invoice) 1:账户授权(AccountAuth) 2:独立签约(Deduct) */ - bizType: number; - /** 随 bizType 各不相同的业务参数。对于独立签约业务,仅需要一个参数 "sign_params",生成规则详见支付宝开放文档,https://opendocs.alipay.com/pre-open/20170601105911096277/lpxi4u */ - params: string; - /** 是否在用户未安装支付宝的情况下,展示一个 H5 页面引导用户安装支付宝 */ - useBrowserLanding?: boolean; -} -/** - * 开放给内部或二方合作伙伴跳到支付宝完成电子发票、账户授权、独立签约功能 返回结果定义 - * @apiName biz.alipay.openAuth - */ -export interface IBizAlipayOpenAuthResult { - /** 支付宝返回的结果码 */ - resultCode: number; - /** 支付宝请求业务功能返回的数据 */ - result: string; -} -/** - * 开放给内部或二方合作伙伴跳到支付宝完成电子发票、账户授权、独立签约功能 - * @apiName biz.alipay.openAuth - * @supportVersion ios: 5.1.8 android: 5.1.8 - * @author Android:珑一 iOS:姚曦 - */ -export declare function openAuth$(params: IBizAlipayOpenAuthParams): Promise; -export default openAuth$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/openAuth.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/openAuth.js deleted file mode 100644 index afae7b2e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/openAuth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openAuth$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openAuth$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.alipay.openAuth",exports.openAuth$=openAuth$,exports.default=openAuth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/pay.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/pay.d.ts deleted file mode 100644 index ad9ad782..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/pay.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.alipay.pay"; -/** - * 支付宝移动支付Sdk,订单支付JS-API封装 请求参数定义 - * @apiName biz.alipay.pay - */ -export interface IBizAlipayPayParams { - [key: string]: any; -} -/** - * 支付宝移动支付Sdk,订单支付JS-API封装 返回结果定义 - * @apiName biz.alipay.pay - */ -export interface IBizAlipayPayResult { - [key: string]: any; -} -/** - * 支付宝移动支付Sdk,订单支付JS-API封装 - * @apiName biz.alipay.pay - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function pay$(params: IBizAlipayPayParams): Promise; -export default pay$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/pay.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/pay.js deleted file mode 100644 index 49a523a8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/alipay/pay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pay$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pay$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.alipay.pay",exports.pay$=pay$,exports.default=pay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthCode.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthCode.d.ts deleted file mode 100644 index 5156bce0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthCode.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.auth.requestAuthCode"; -/** - * JS免登 请求参数定义 - * @apiName biz.auth.requestAuthCode - */ -export interface IBizAuthRequestAuthCodeParams { - [key: string]: any; -} -/** - * JS免登 返回结果定义 - * @apiName biz.auth.requestAuthCode - */ -export interface IBizAuthRequestAuthCodeResult { - [key: string]: any; -} -/** - * JS免登 - * @apiName biz.auth.requestAuthCode - * @supportVersion ios: 2.15 android: 2.15 - */ -export declare function requestAuthCode$(params: IBizAuthRequestAuthCodeParams): Promise; -export default requestAuthCode$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthCode.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthCode.js deleted file mode 100644 index e2babeb3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestAuthCode$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestAuthCode$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.auth.requestAuthCode",exports.requestAuthCode$=requestAuthCode$,exports.default=requestAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthInfo.d.ts deleted file mode 100644 index 606af677..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthInfo.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.auth.requestAuthInfo"; -/** - * 弹出授权弹窗,提示用户授权某些接口的权限 请求参数定义 - * @apiName biz.auth.requestAuthInfo - */ -export interface IBizAuthRequestAuthInfoParams { - /** 授权类型: 0 企业通讯录授权范围 1 企业接口和字段权限 2 个人数据授权 */ - authorizeType: string; - /** 授权内容参数,根据授权场景不同有较大差异 */ - ext: string; -} -/** - * 弹出授权弹窗,提示用户授权某些接口的权限 返回结果定义 - * @apiName biz.auth.requestAuthInfo - */ -export interface IBizAuthRequestAuthInfoResult { -} -/** - * 弹出授权弹窗,提示用户授权某些接口的权限 - * @apiName biz.auth.requestAuthInfo - * @supportVersion ios: 5.1.19 android: 5.1.19 - * @author Android:煮虾 iOS:无最 - */ -export declare function requestAuthInfo$(params: IBizAuthRequestAuthInfoParams): Promise; -export default requestAuthInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthInfo.js deleted file mode 100644 index 4fa185f9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/auth/requestAuthInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestAuthInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestAuthInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.auth.requestAuthInfo",exports.requestAuthInfo$=requestAuthInfo$,exports.default=requestAuthInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseDateTime.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseDateTime.d.ts deleted file mode 100644 index 3a4419dc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseDateTime.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.calendar.chooseDateTime"; -/** - * 唤起月历组件,并选择其中某具体时间(精度到分钟) 请求参数定义 - * @apiName biz.calendar.chooseDateTime - */ -export interface IBizCalendarChooseDateTimeParams { - /** 时间戳,默认选中时间,单位为毫秒ms */ - default?: number; -} -/** - * 唤起月历组件,并选择其中某具体时间(精度到分钟) 返回结果定义 - * @apiName biz.calendar.chooseDateTime - */ -export interface IBizCalendarChooseDateTimeResult { - [key: string]: any; -} -/** - * 唤起月历组件,并选择其中某具体时间(精度到分钟) - * @description 选择的时间精确到分钟 - * @apiName biz.calendar.chooseDateTime - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseDateTime$(params: IBizCalendarChooseDateTimeParams): Promise; -export default chooseDateTime$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseDateTime.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseDateTime.js deleted file mode 100644 index 016cd3ba..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseDateTime.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDateTime$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDateTime$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.calendar.chooseDateTime",exports.chooseDateTime$=chooseDateTime$,exports.default=chooseDateTime$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseHalfDay.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseHalfDay.d.ts deleted file mode 100644 index 4ad1dd15..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseHalfDay.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.calendar.chooseHalfDay"; -/** - * 唤起月历组件,并选择其中半天 请求参数定义 - * @apiName biz.calendar.chooseHalfDay - */ -export interface IBizCalendarChooseHalfDayParams { - default?: number; -} -/** - * 唤起月历组件,并选择其中半天 返回结果定义 - * @apiName biz.calendar.chooseHalfDay - */ -export interface IBizCalendarChooseHalfDayResult { - /** 时间戳,如果用户选择上午,则为当日0点的时间;如果是下午,则为当日12点的时间;单位为毫秒ms */ - chosen: number; - /** 整型,用户当前所在时区 */ - timezone: number; -} -/** - * 唤起月历组件,并选择其中半天 - * @apiName biz.calendar.chooseHalfDay - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseHalfDay$(params: IBizCalendarChooseHalfDayParams): Promise; -export default chooseHalfDay$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseHalfDay.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseHalfDay.js deleted file mode 100644 index ed2b928b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseHalfDay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseHalfDay$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseHalfDay$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.calendar.chooseHalfDay",exports.chooseHalfDay$=chooseHalfDay$,exports.default=chooseHalfDay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseInterval.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseInterval.d.ts deleted file mode 100644 index f0159e94..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseInterval.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.calendar.chooseInterval"; -/** - * 唤起月历组件,并选择日期区间,并以“天”为维度 请求参数定义 - * @apiName biz.calendar.chooseInterval - */ -export interface IBizCalendarChooseIntervalParams { - /** 时间戳,默认开始时间,单位为毫秒ms */ - defaultStart: number; - /** 时间戳,默认结束时间,单位为毫秒ms */ - defaultEnd: number; -} -/** - * 唤起月历组件,并选择日期区间,并以“天”为维度 返回结果定义 - * @apiName biz.calendar.chooseInterval - */ -export interface IBizCalendarChooseIntervalResult { - /** 时间戳,为起始当日0点的时间,单位为毫秒ms */ - start: number; - /** 时间戳,为截止当日0点的时间,单位为毫秒ms */ - end: number; - /** 整型,用户当前所在时区 */ - timezone: number; -} -/** - * 唤起月历组件,并选择日期区间,并以“天”为维度 - * @description 依赖钉钉客户端3.5.0以上版本 - * @apiName biz.calendar.chooseInterval - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseInterval$(params: IBizCalendarChooseIntervalParams): Promise; -export default chooseInterval$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseInterval.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseInterval.js deleted file mode 100644 index f9a81fc8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseInterval.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseInterval$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseInterval$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.calendar.chooseInterval",exports.chooseInterval$=chooseInterval$,exports.default=chooseInterval$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseOneDay.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseOneDay.d.ts deleted file mode 100644 index e7d23aae..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseOneDay.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.calendar.chooseOneDay"; -/** - * 唤起月历组件,选择某天 请求参数定义 - * @apiName biz.calendar.chooseOneDay - */ -export interface IBizCalendarChooseOneDayParams { - /** 时间戳,默认选中时间,单位为毫秒ms */ - default?: number; -} -/** - * 唤起月历组件,选择某天 返回结果定义 - * @apiName biz.calendar.chooseOneDay - */ -export interface IBizCalendarChooseOneDayResult { - /** 时间戳,用户选择日期当日0点的时间(在用户时区),单位为毫秒ms */ - chosen: number; - /** 整型,用户当前所在时区 */ - timezone: number; -} -/** - * 唤起月历组件,选择某天 - * @description 依赖钉钉客户端3.5.0以上版本 - * @apiName biz.calendar.chooseOneDay - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseOneDay$(params: IBizCalendarChooseOneDayParams): Promise; -export default chooseOneDay$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseOneDay.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseOneDay.js deleted file mode 100644 index ffecc93f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/chooseOneDay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseOneDay$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseOneDay$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.calendar.chooseOneDay",exports.chooseOneDay$=chooseOneDay$,exports.default=chooseOneDay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/datePicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/datePicker.d.ts deleted file mode 100644 index 32442f4f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/datePicker.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.calendar.datePicker"; -/** - * 新的日历控件(包含年月日),4.3.2版本仅支持android 请求参数定义 - * @apiName biz.calendar.datePicker - */ -export interface IBizCalendarDatePickerParams { - format: string; - value: string; -} -/** - * 新的日历控件(包含年月日),4.3.2版本仅支持android 返回结果定义 - * @apiName biz.calendar.datePicker - */ -export interface IBizCalendarDatePickerResult { - value: string; -} -/** - * 新的日历控件(包含年月日),4.3.2版本仅支持android - * @apiName biz.calendar.datePicker - * @supportVersion ios: 4.3.2 android: 4.3.2 - */ -export declare function datePicker$(params: IBizCalendarDatePickerParams): Promise; -export default datePicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/datePicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/datePicker.js deleted file mode 100644 index 7eb956a3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/calendar/datePicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function datePicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.datePicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.calendar.datePicker",exports.datePicker$=datePicker$,exports.default=datePicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/addGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/addGroup.d.ts deleted file mode 100644 index 8f908386..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/addGroup.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.chat.addGroup"; -/** - * 自己加入一个公开群 请求参数定义 - * @apiName biz.chat.addGroup - */ -export interface IBizChatAddGroupParams { - [key: string]: any; -} -/** - * 自己加入一个公开群 返回结果定义 - * @apiName biz.chat.addGroup - */ -export interface IBizChatAddGroupResult { - [key: string]: any; -} -/** - * 自己加入一个公开群 - * @apiName biz.chat.addGroup - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function addGroup$(params: IBizChatAddGroupParams): Promise; -export default addGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/addGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/addGroup.js deleted file mode 100644 index 37ea64b8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/addGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addGroup$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.addGroup",exports.addGroup$=addGroup$,exports.default=addGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversation.d.ts deleted file mode 100644 index 7d0800ac..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversation.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.chat.chooseConversation"; -/** - * 选会话 请求参数定义 - * @apiName biz.chat.chooseConversation - */ -export interface IBizChatChooseConversationParams { - [key: string]: any; -} -/** - * 选会话 返回结果定义 - * @apiName biz.chat.chooseConversation - */ -export interface IBizChatChooseConversationResult { - [key: string]: any; -} -/** - * 选会话 - * @apiName biz.chat.chooseConversation - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function chooseConversation$(params: IBizChatChooseConversationParams): Promise; -export default chooseConversation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversation.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversation.js deleted file mode 100644 index e52e5a49..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseConversation$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseConversation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.chooseConversation",exports.chooseConversation$=chooseConversation$,exports.default=chooseConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversationByCorpId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversationByCorpId.d.ts deleted file mode 100644 index 7d5b35a0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversationByCorpId.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "biz.chat.chooseConversationByCorpId"; -/** - * 选择企业会话 请求参数定义 - * @apiName biz.chat.chooseConversationByCorpId - */ -export interface IBizChatChooseConversationByCorpIdParams { - /** 企业id */ - corpId: string; - /** 是否允许创建会话, 仅支持移动端 */ - isAllowCreateGroup?: boolean; - /** 是否限制为自己创建的会话,仅支持移动端 */ - filterNotOwnerGroup?: boolean; -} -/** - * 选择企业会话 返回结果定义 - * @apiName biz.chat.chooseConversationByCorpId - */ -export interface IBizChatChooseConversationByCorpIdResult { - /** 会话id(该会话cid永久有效) */ - chatId: string; - /** 会话标题 */ - title: string; -} -/** - * 选择企业会话 - * @description corpid必须是用户所属的企业的corpid - * @apiName biz.chat.chooseConversationByCorpId - * @supportVersion ios: 2.6.0 android: 2.6.0 pc: 4.7.11 - * @author Win:伏檀; Mac:北塔 - */ -export declare function chooseConversationByCorpId$(params: IBizChatChooseConversationByCorpIdParams): Promise; -export default chooseConversationByCorpId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversationByCorpId.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversationByCorpId.js deleted file mode 100644 index 93d5ea81..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/chooseConversationByCorpId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseConversationByCorpId$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseConversationByCorpId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.chooseConversationByCorpId",exports.chooseConversationByCorpId$=chooseConversationByCorpId$,exports.default=chooseConversationByCorpId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/collectSticker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/collectSticker.d.ts deleted file mode 100644 index 98534281..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/collectSticker.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.chat.collectSticker"; -/** - * 收藏表情(支持批量) 请求参数定义 - * @apiName biz.chat.collectSticker - */ -export interface IBizChatCollectStickerParams { - /** 表情url数组 */ - stickerUrls: string[]; -} -/** - * 收藏表情(支持批量) 返回结果定义 - * @apiName biz.chat.collectSticker - */ -export interface IBizChatCollectStickerResult { -} -/** - * 收藏表情(支持批量) - * @apiName biz.chat.collectSticker - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function collectSticker$(params: IBizChatCollectStickerParams): Promise; -export default collectSticker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/collectSticker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/collectSticker.js deleted file mode 100644 index 7a26bc85..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/collectSticker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function collectSticker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.collectSticker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.collectSticker",exports.collectSticker$=collectSticker$,exports.default=collectSticker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createOrgPublicGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createOrgPublicGroup.d.ts deleted file mode 100644 index ff539e76..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createOrgPublicGroup.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.chat.createOrgPublicGroup"; -/** - * 跳转到创建群群中间页让用户创建某个企业的公开群 请求参数定义 - * @apiName biz.chat.createOrgPublicGroup - */ -export interface IBizChatCreateOrgPublicGroupParams { - [key: string]: any; -} -/** - * 跳转到创建群群中间页让用户创建某个企业的公开群 返回结果定义 - * @apiName biz.chat.createOrgPublicGroup - */ -export interface IBizChatCreateOrgPublicGroupResult { - [key: string]: any; -} -/** - * 跳转到创建群群中间页让用户创建某个企业的公开群 - * @apiName biz.chat.createOrgPublicGroup - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function createOrgPublicGroup$(params: IBizChatCreateOrgPublicGroupParams): Promise; -export default createOrgPublicGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createOrgPublicGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createOrgPublicGroup.js deleted file mode 100644 index c5f71f17..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createOrgPublicGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createOrgPublicGroup$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createOrgPublicGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.createOrgPublicGroup",exports.createOrgPublicGroup$=createOrgPublicGroup$,exports.default=createOrgPublicGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createSceneGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createSceneGroup.d.ts deleted file mode 100644 index d063ce71..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createSceneGroup.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "biz.chat.createSceneGroup"; -/** - * 创建场景群 请求参数定义 - * @apiName biz.chat.createSceneGroup - */ -export interface IBizChatCreateSceneGroupParams { - corpId: string; - /** 群名称 */ - title?: string; - /** 群头像url地址 */ - avatar?: string; - /** 群类型,1:年会大群;2:筹备群 */ - type?: number; - extension?: { - [key: string]: string; - }; -} -/** - * 创建场景群 返回结果定义 - * @apiName biz.chat.createSceneGroup - */ -export interface IBizChatCreateSceneGroupResult { - /** 会话Id */ - chatId: string; -} -/** - * 创建场景群 - * @apiName biz.chat.createSceneGroup - * @supportVersion ios: 4.7.17 android: 4.7.17 pc:4.7.17 - * @author windows: 仟晨 mac: 舒绎 android: 峰砺 iOS: 鱼非 - */ -export declare function createSceneGroup$(params: IBizChatCreateSceneGroupParams): Promise; -export default createSceneGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createSceneGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createSceneGroup.js deleted file mode 100644 index b6144b0e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/createSceneGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createSceneGroup$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createSceneGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.createSceneGroup",exports.createSceneGroup$=createSceneGroup$,exports.default=createSceneGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getConversationInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getConversationInfo.d.ts deleted file mode 100644 index 06942091..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getConversationInfo.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.chat.getConversationInfo"; -/** - * 查询会话信息 请求参数定义 - * @apiName biz.chat.getConversationInfo - */ -export interface IBizChatGetConversationInfoParams { - [key: string]: any; -} -/** - * 查询会话信息 返回结果定义 - * @apiName biz.chat.getConversationInfo - */ -export interface IBizChatGetConversationInfoResult { - /** 会话状态:0:正常,1:隐藏,2:退出,3:被踢,4:解散 (移动端 4.6.37 开始支持) */ - status?: number; - [key: string]: any; -} -/** - * 查询会话信息 - * @apiName biz.chat.getConversationInfo - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function getConversationInfo$(params: IBizChatGetConversationInfoParams): Promise; -export default getConversationInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getConversationInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getConversationInfo.js deleted file mode 100644 index cfe587a1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getConversationInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getConversationInfo$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getConversationInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.getConversationInfo",exports.getConversationInfo$=getConversationInfo$,exports.default=getConversationInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getRealmCid.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getRealmCid.d.ts deleted file mode 100644 index e3fde743..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getRealmCid.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.chat.getRealmCid"; -/** - * 根据userId获取发送消息的会话cidToken 请求参数定义 - * @apiName biz.chat.getRealmCid - */ -export interface IBizChatGetRealmCidParams { - /** 指定对象的userId(staffId) */ - userId: string; - /** 指定对象所归属的企业Id */ - corpId: string; -} -/** - * 根据userId获取发送消息的会话cidToken 返回结果定义 - * @apiName biz.chat.getRealmCid - */ -export interface IBizChatGetRealmCidResult { - /** 会话发送消息的cidToken */ - cid: string; -} -/** - * 根据userId获取发送消息的会话cidToken - * @apiName biz.chat.getRealmCid - * @supportVersion ios: 4.7.12 android: 4.7.12 win: 4.7.12 mac 暂不支持 - * @author android:笔歌,ios:怒龙,win:秋裤 - */ -export declare function getRealmCid$(params: IBizChatGetRealmCidParams): Promise; -export default getRealmCid$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getRealmCid.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getRealmCid.js deleted file mode 100644 index 8041c579..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/getRealmCid.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getRealmCid$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getRealmCid$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.getRealmCid",exports.getRealmCid$=getRealmCid$,exports.default=getRealmCid$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/locationChatMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/locationChatMessage.d.ts deleted file mode 100644 index 47fc8e54..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/locationChatMessage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.chat.locationChatMessage"; -/** - * 未知 请求参数定义 - * @apiName biz.chat.locationChatMessage - */ -export interface IBizChatLocationChatMessageParams { - [key: string]: any; -} -/** - * 未知 返回结果定义 - * @apiName biz.chat.locationChatMessage - */ -export interface IBizChatLocationChatMessageResult { - [key: string]: any; -} -/** - * 未知 - * @apiName biz.chat.locationChatMessage - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function locationChatMessage$(params: IBizChatLocationChatMessageParams): Promise; -export default locationChatMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/locationChatMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/locationChatMessage.js deleted file mode 100644 index 433b436c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/locationChatMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function locationChatMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.locationChatMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.locationChatMessage",exports.locationChatMessage$=locationChatMessage$,exports.default=locationChatMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/modifyGroupDesc.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/modifyGroupDesc.d.ts deleted file mode 100644 index a584b14e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/modifyGroupDesc.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.chat.modifyGroupDesc"; -/** - * 跳转到群简介修改界面修改某个群的群简介 请求参数定义 - * @apiName biz.chat.modifyGroupDesc - */ -export interface IBizChatModifyGroupDescParams { - [key: string]: any; -} -/** - * 跳转到群简介修改界面修改某个群的群简介 返回结果定义 - * @apiName biz.chat.modifyGroupDesc - */ -export interface IBizChatModifyGroupDescResult { - [key: string]: any; -} -/** - * 跳转到群简介修改界面修改某个群的群简介 - * @apiName biz.chat.modifyGroupDesc - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function modifyGroupDesc$(params: IBizChatModifyGroupDescParams): Promise; -export default modifyGroupDesc$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/modifyGroupDesc.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/modifyGroupDesc.js deleted file mode 100644 index 2800f742..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/modifyGroupDesc.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function modifyGroupDesc$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.modifyGroupDesc$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.modifyGroupDesc",exports.modifyGroupDesc$=modifyGroupDesc$,exports.default=modifyGroupDesc$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/open.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/open.d.ts deleted file mode 100644 index 2890ef5f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/open.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.chat.open"; -/** - * 打开会话 请求参数定义 - * @apiName biz.chat.open - */ -export interface IBizChatOpenParams { - [key: string]: any; -} -/** - * 打开会话 返回结果定义 - * @apiName biz.chat.open - */ -export interface IBizChatOpenResult { - [key: string]: any; -} -/** - * 打开会话 - * @apiName biz.chat.open - * @supportVersion ios: 3.4.0 android: 3.4.0 - */ -export declare function open$(params: IBizChatOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/open.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/open.js deleted file mode 100644 index f638bf4a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.open",exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/openSingleChat.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/openSingleChat.d.ts deleted file mode 100644 index fc66bb31..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/openSingleChat.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.chat.openSingleChat"; -/** - * 打开某个用户的聊天页面,如果没有,创建会话 请求参数定义 - * @apiName biz.chat.openSingleChat - */ -export interface IBizChatOpenSingleChatParams { - /** 企业id */ - corpId: string; - /** 用户的工号 */ - userId: string; -} -/** - * 打开某个用户的聊天页面,如果没有,创建会话 返回结果定义 - * @apiName biz.chat.openSingleChat - */ -export interface IBizChatOpenSingleChatResult { -} -/** - * 打开与某个用户的聊天页面(单聊会话) - * @apiName biz.chat.openSingleChat - * @supportVersion ios: 3.4.10 android: 3.4.10 - */ -export declare function openSingleChat$(params: IBizChatOpenSingleChatParams): Promise; -export default openSingleChat$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/openSingleChat.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/openSingleChat.js deleted file mode 100644 index b6b85bba..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/openSingleChat.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openSingleChat$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openSingleChat$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.openSingleChat",exports.openSingleChat$=openSingleChat$,exports.default=openSingleChat$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/pickConversation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/pickConversation.d.ts deleted file mode 100644 index d8b37d80..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/pickConversation.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "biz.chat.pickConversation"; -/** - * 选群组 请求参数定义 - * @apiName biz.chat.pickConversation - */ -export interface IBizChatPickConversationParams { - /** 企业id */ - corpId: string; - /** 是否弹出确认窗口,默认为true */ - isConfirm: string; -} -/** - * 选群组 返回结果定义 - * @apiName biz.chat.pickConversation - */ -export interface IBizChatPickConversationResult { - /** 该cid和服务端开发文档-普通会话消息接口配合使用,而且只能使用一次,之后将失效 */ - cid: string; - /** 会话标题 */ - title: string; -} -/** - * 选群组 - * @description corpid必须是用户所属的企业的corpid - * @apiName biz.chat.pickConversation - * @supportVersion ios: 2.4.2 android: 2.4.2 - */ -export declare function pickConversation$(params: IBizChatPickConversationParams): Promise; -export default pickConversation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/pickConversation.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/pickConversation.js deleted file mode 100644 index 3334ff16..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/pickConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pickConversation$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pickConversation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.pickConversation",exports.pickConversation$=pickConversation$,exports.default=pickConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/queryUnreadSessions.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/queryUnreadSessions.d.ts deleted file mode 100644 index a9e99fc4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/queryUnreadSessions.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.chat.queryUnreadSessions"; -/** - * 根据会话类型和会话tag计算有未读消息的会话数量, 注意:此数量是客户端缓存的会话数量 请求参数定义 - * @apiName biz.chat.queryUnreadSessions - */ -export interface IBizChatQueryUnreadSessionsParams { - /** 会话类型 1 单聊 */ - type: number; - /** 会话标签 16 新零售 */ - tag: number; -} -/** - * 根据会话类型和会话tag计算有未读消息的会话数量, 注意:此数量是客户端缓存的会话数量. 返回结果定义 - * @apiName biz.chat.queryUnreadSessions - */ -export interface IBizChatQueryUnreadSessionsResult { - /** 有未读消息的会话数量 */ - count: number; -} -/** - * 根据会话类型和会话tag计算有未读消息的会话数量, 注意:此数量是客户端缓存的会话数量. - * @apiName biz.chat.queryUnreadSessions - * @supportVersion ios: 4.5.0 android: 4.5.0 - */ -export declare function queryUnreadSessions$(params: IBizChatQueryUnreadSessionsParams): Promise; -export default queryUnreadSessions$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/queryUnreadSessions.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/queryUnreadSessions.js deleted file mode 100644 index f926eae1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/queryUnreadSessions.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryUnreadSessions$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryUnreadSessions$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.queryUnreadSessions",exports.queryUnreadSessions$=queryUnreadSessions$,exports.default=queryUnreadSessions$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendEmotion.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendEmotion.d.ts deleted file mode 100644 index 8afcdeb3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendEmotion.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.chat.sendEmotion"; -/** - * 发送表情。调用js-api后会唤起选会话组件,用户选择发送的会话,确认后发送。 请求参数定义 - * imageUrl和mediaId二选一 authMediaId配合mediaId,可选 - * @apiName biz.chat.sendEmotion - */ -export interface IBizChatSendEmotionParams { - /** 表情图片链接 */ - imageUrl?: string; - /** 表情图片mediaId */ - mediaId?: string; - /** 表情图片authMediaId */ - authMediaId?: string; -} -/** - * 发送表情。调用js-api后会唤起选会话组件,用户选择发送的会话,确认后发送。 返回结果定义 - * @apiName biz.chat.sendEmotion - */ -export interface IBizChatSendEmotionResult { -} -/** - * 发送表情。调用js-api后会唤起选会话组件,用户选择发送的会话,确认后发送。 - * @apiName biz.chat.sendEmotion - * @supportVersion ios: 4.6.12 android: 4.6.12 - */ -export declare function sendEmotion$(params: IBizChatSendEmotionParams): Promise; -export default sendEmotion$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendEmotion.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendEmotion.js deleted file mode 100644 index dc86cfa3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendEmotion.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendEmotion$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendEmotion$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.sendEmotion",exports.sendEmotion$=sendEmotion$,exports.default=sendEmotion$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendMessageToContact.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendMessageToContact.d.ts deleted file mode 100644 index d636d2cc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendMessageToContact.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -export declare const apiName = "biz.chat.sendMessageToContact"; -/** - * 发一条消息给联系人 请求参数定义 - * @apiName biz.chat.sendMessageToContact - */ -export interface IBizChatSendMessageToContactParams { - /** 字符串,联系人类型,默认为空。目前只支值 为"filesHelper",设置其他或者不设置均为无效。开发者指定 contactType 之后直接发送消息到对应的联系人,不需要拉起联系人选择页面。 */ - contactType?: string; - /** 消息标题 */ - messageTitle?: string; - /** 消息图片(支持mediaId和url两种形式) */ - messageImage?: string; - /** 消息点击跳转的链接 */ - messageHref?: string; - /** 消息类型: 0 - link消息,取值messageTitle, messageImage,messageHref 1 - 图片消息,取值 messageImage */ - messageType: number; - /** bool 值,执行发送后,是否关闭当前webview,默认为 NO,不关闭当前页面。仅在指定有效的 contactType 有用。 */ - closeCurrentPage?: boolean; - /** bool 值, 发送消息后,是否跳转到聊天页面。 仅在指定有效的 contactType 有用。 */ - goToConversationPage: boolean; -} -/** - * 发一条消息给联系人 返回结果定义 - * @apiName biz.chat.sendMessageToContact - */ -export interface IBizChatSendMessageToContactResult { - [key: string]: any; -} -/** - * 发一条消息给联系人 - * @apiName biz.chat.sendMessageToContact - * @supportVersion ios: 4.5.2 android: 4.5.2 - */ -export declare function sendMessageToContact$(params: IBizChatSendMessageToContactParams): Promise; -export default sendMessageToContact$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendMessageToContact.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendMessageToContact.js deleted file mode 100644 index 59b1f2d9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendMessageToContact.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMessageToContact$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMessageToContact$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.sendMessageToContact",exports.sendMessageToContact$=sendMessageToContact$,exports.default=sendMessageToContact$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendReplyToInputPanel.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendReplyToInputPanel.d.ts deleted file mode 100644 index b6d7ed5a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendReplyToInputPanel.d.ts +++ /dev/null @@ -1,41 +0,0 @@ -export declare const apiName = "biz.chat.sendReplyToInputPanel"; -/** - * 发送回复消息文本到会话聊天输入框 请求参数定义 - * @apiName biz.chat.sendReplyToInputPanel - */ -export interface IBizChatSendReplyToInputPanelParams { - /** 会话id */ - cid?: string; - /** 消息id */ - mid?: string; - /** 加密会话id */ - cidEnc?: string; - /** 回复的加密消息id */ - msgIdEnc?: string; - /** 回复的内容 */ - replyContent?: string; - /** 回复的内容 */ - payload?: string; - /** 想要@的人的uid和昵称 {"uid":"nick"} */ - atOpenIds?: { - [uid: string]: string; - }; - /** 想要@的人的dingtalkId和昵称,{"dingtalkId":"nick"} */ - atDingTalkIds?: { - [dingtalkId: string]: string; - }; -} -/** - * 发送回复消息文本到会话聊天输入框 返回结果定义 - * @apiName biz.chat.sendReplyToInputPanel - */ -export interface IBizChatSendReplyToInputPanelResult { -} -/** - * 发送回复消息文本到会话聊天输入框 - * @apiName biz.chat.sendReplyToInputPanel - * @supportVersion ios: 4.7.12 android: 4.7.12 pc: 4.7.12 - * @author Android: 风沂; iOS: 鱼非; Windows: 仟晨; Mac: 舒绎 - */ -export declare function sendReplyToInputPanel$(params: IBizChatSendReplyToInputPanelParams): Promise; -export default sendReplyToInputPanel$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendReplyToInputPanel.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendReplyToInputPanel.js deleted file mode 100644 index f58cba9e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendReplyToInputPanel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendReplyToInputPanel$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendReplyToInputPanel$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.sendReplyToInputPanel",exports.sendReplyToInputPanel$=sendReplyToInputPanel$,exports.default=sendReplyToInputPanel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendRichTextToEditor.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendRichTextToEditor.d.ts deleted file mode 100644 index b60d9128..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendRichTextToEditor.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -export declare const apiName = "biz.chat.sendRichTextToEditor"; -/** - * 发送富文本到会话富文本编辑器 请求参数定义 - * @apiName biz.chat.sendRichTextToEditor - */ -export interface IBizChatSendRichTextToEditorParams { - /** 会话id */ - cid?: string; - /** 加密会话id */ - cidEnc?: string; - /** 回复的内容 */ - payload?: string; - /** 想要@的人的uid和昵称 {"uid":"nick"} */ - atOpenIds?: { - [uid: string]: string; - }; - /** 想要@的人的dingtalkId和昵称,{"dingtalkId":"nick"} */ - atDingTalkIds?: { - [dingtalkId: string]: string; - }; -} -/** - * 发送富文本到会话富文本编辑器 返回结果定义 - * @apiName biz.chat.sendRichTextToEditor - */ -export interface IBizChatSendRichTextToEditorResult { -} -/** - * 发送富文本到会话富文本编辑器 - * @apiName biz.chat.sendRichTextToEditor - * @supportVersion ios: 4.7.12 android: 4.7.12 - * @author Android: 风沂; iOS: 鱼非; Windows: 仟晨; Mac: 舒绎 - */ -export declare function sendRichTextToEditor$(params: IBizChatSendRichTextToEditorParams): Promise; -export default sendRichTextToEditor$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendRichTextToEditor.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendRichTextToEditor.js deleted file mode 100644 index 0591f87e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/sendRichTextToEditor.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendRichTextToEditor$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendRichTextToEditor$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.sendRichTextToEditor",exports.sendRichTextToEditor$=sendRichTextToEditor$,exports.default=sendRichTextToEditor$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversation.d.ts deleted file mode 100644 index be959c5f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversation.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.chat.toConversation"; -/** - * 跳转会话 请求参数定义 - * @apiName biz.chat.toConversation - */ -export interface IBizChatToConversationParams { - /** 企业id */ - corpId: string; - /** 会话Id */ - chatId: string; -} -/** - * 跳转会话 返回结果定义 - * @apiName biz.chat.toConversation - */ -export interface IBizChatToConversationResult { -} -/** - * 根据chatId跳转到对应会话 - * @description corpid必须是用户所属的企业的corpid - * @apiName biz.chat.toConversation - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function toConversation$(params: IBizChatToConversationParams): Promise; -export default toConversation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversation.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversation.js deleted file mode 100644 index 7be76aba..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function toConversation$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.toConversation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.toConversation",exports.toConversation$=toConversation$,exports.default=toConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversationByOpenConversationId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversationByOpenConversationId.d.ts deleted file mode 100644 index bc220f27..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversationByOpenConversationId.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.chat.toConversationByOpenConversationId"; -/** - * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话 请求参数定义 - * @apiName biz.chat.toConversationByOpenConversationId - */ -export interface IBizChatToConversationByOpenConversationIdParams { - /** 开放会话cid */ - openConversationId: string; -} -/** - * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话 返回结果定义 - * @apiName biz.chat.toConversationByOpenConversationId - */ -export interface IBizChatToConversationByOpenConversationIdResult { -} -/** - * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话 - * @apiName biz.chat.toConversationByOpenConversationId - * @supportVersion ios: 5.1.30 android: 5.1.30 pc: 5.1.33 - * @author Android:允武 iOS:度尽 Mac:北塔 Windows:秋酷 - */ -export declare function toConversationByOpenConversationId$(params: IBizChatToConversationByOpenConversationIdParams): Promise; -export default toConversationByOpenConversationId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversationByOpenConversationId.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversationByOpenConversationId.js deleted file mode 100644 index 8b64b48c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/chat/toConversationByOpenConversationId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function toConversationByOpenConversationId$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.toConversationByOpenConversationId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.chat.toConversationByOpenConversationId",exports.toConversationByOpenConversationId$=toConversationByOpenConversationId$,exports.default=toConversationByOpenConversationId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/clipboardData/setData.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/clipboardData/setData.d.ts deleted file mode 100644 index 77d9b631..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/clipboardData/setData.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.clipboardData.setData"; -/** - * 添加到黏贴板 请求参数定义 - * @apiName biz.clipboardData.setData - */ -export interface IBizClipboardDataSetDataParams { - /** 要复制粘贴板的内容 */ - text: string; -} -/** - * 添加到黏贴板 返回结果定义 - * @apiName biz.clipboardData.setData - */ -export interface IBizClipboardDataSetDataResult { -} -/** - * 添加到黏贴板 - * @apiName biz.clipboardData.setData - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function setData$(params: IBizClipboardDataSetDataParams): Promise; -export default setData$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/clipboardData/setData.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/clipboardData/setData.js deleted file mode 100644 index d1ff274a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/clipboardData/setData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setData$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setData$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.clipboardData.setData",exports.setData$=setData$,exports.default=setData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/createCloudCall.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/createCloudCall.d.ts deleted file mode 100644 index 2b2fcc3e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/createCloudCall.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "biz.conference.createCloudCall"; -/** - * 办公电话直接拨打 请求参数定义 - * @apiName biz.conference.createCloudCall - */ -export interface IBizConferenceCreateCloudCallParams { - corpId: string; - bizNumber: string; - calleeNumber: string; - closePushCallRecord?: boolean; - openCallRecord?: boolean; - hideCalleeNumber?: boolean; -} -/** - * 办公电话直接拨打 返回结果定义 - * @apiName biz.conference.createCloudCall - */ -export interface IBizConferenceCreateCloudCallResult { - code: number; - cause: string; - sessionId: string; -} -/** - * 办公电话直接拨打 - * @apiName biz.conference.createCloudCall - * @supportVersion ios: 6.0.0 android: 6.0.0 pc: 6.0.9 - * @author Android:洛洋, iOS:度尽, pc:远觉 - */ -export declare function createCloudCall$(params: IBizConferenceCreateCloudCallParams): Promise; -export default createCloudCall$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/createCloudCall.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/createCloudCall.js deleted file mode 100644 index e0feceb4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/createCloudCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createCloudCall$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createCloudCall$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.conference.createCloudCall",exports.createCloudCall$=createCloudCall$,exports.default=createCloudCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/docRoomStatusChanged.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/docRoomStatusChanged.d.ts deleted file mode 100644 index b1bed510..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/docRoomStatusChanged.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.conference.docRoomStatusChanged"; -/** - * 更新文档房间属性 请求参数定义 - * @apiName biz.conference.docRoomStatusChanged - */ -export interface IBizConferenceDocRoomStatusChangedParams { - is_following: boolean; - presenter_uid: boolean; -} -/** - * 更新文档房间属性 返回结果定义 - * @apiName biz.conference.docRoomStatusChanged - */ -export interface IBizConferenceDocRoomStatusChangedResult { - data: any; -} -/** - * 更新文档房间属性 - * @apiName biz.conference.docRoomStatusChanged - * @supportVersion ios: 6.0.19 android: 6.0.17 - * @author Android:@风纭, iOS:@蒙歌 - */ -export declare function docRoomStatusChanged$(params: IBizConferenceDocRoomStatusChangedParams): Promise; -export default docRoomStatusChanged$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/docRoomStatusChanged.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/docRoomStatusChanged.js deleted file mode 100644 index 0465ea65..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/docRoomStatusChanged.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function docRoomStatusChanged$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.docRoomStatusChanged$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.conference.docRoomStatusChanged",exports.docRoomStatusChanged$=docRoomStatusChanged$,exports.default=docRoomStatusChanged$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallInfo.d.ts deleted file mode 100644 index 26237066..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallInfo.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.conference.getCloudCallInfo"; -/** - * 办公电话话单查询 请求参数定义 - * @apiName biz.conference.getCloudCallInfo - */ -export interface IBizConferenceGetCloudCallInfoParams { - corpId: string; -} -/** - * 办公电话话单查询 返回结果定义 - * @apiName biz.conference.getCloudCallInfo - */ -export interface IBizConferenceGetCloudCallInfoResult { - code: number; - cause: string; - hasOpen: boolean; - bizNumberList?: string[]; -} -/** - * 办公电话话单查询 - * @apiName biz.conference.getCloudCallInfo - * @supportVersion ios: 6.0.0 android: 6.0.0 pc: 6.0.9 - * @author Android:洛洋, iOS:度尽, pc:远觉 - */ -export declare function getCloudCallInfo$(params: IBizConferenceGetCloudCallInfoParams): Promise; -export default getCloudCallInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallInfo.js deleted file mode 100644 index 308ba77d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCloudCallInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCloudCallInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.conference.getCloudCallInfo",exports.getCloudCallInfo$=getCloudCallInfo$,exports.default=getCloudCallInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallList.d.ts deleted file mode 100644 index eeb98ec3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallList.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -export declare const apiName = "biz.conference.getCloudCallList"; -/** - * 办公电话话单查询 请求参数定义 - * @apiName biz.conference.getCloudCallList - */ -export interface IBizConferenceGetCloudCallListParams { - corpId: string; - sessionId?: string; - bizNumber?: string; - startTime: string; - endTime: string; - staffIdList?: string; - direction?: number; - index?: number; - pageSize?: number; -} -/** - * 办公电话话单查询 返回结果定义 - * @apiName biz.conference.getCloudCallList - */ -export interface IBizConferenceGetCloudCallListResult { - code: number; - cause: string; - total: number; - callList?: any[]; - hasMore: boolean; - currentIndex: number; -} -/** - * 办公电话话单查询 - * @apiName biz.conference.getCloudCallList - * @supportVersion ios: 6.0.0 android: 6.0.0 pc: 6.0.9 - * @author Android:洛洋, iOS:度尽, pc:远觉 - */ -export declare function getCloudCallList$(params: IBizConferenceGetCloudCallListParams): Promise; -export default getCloudCallList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallList.js deleted file mode 100644 index 2d76a63d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/getCloudCallList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCloudCallList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCloudCallList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.conference.getCloudCallList",exports.getCloudCallList$=getCloudCallList$,exports.default=getCloudCallList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/screenshot.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/screenshot.d.ts deleted file mode 100644 index db7b1e14..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/screenshot.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -export declare const apiName = "biz.conference.screenshot"; -/** - * 获取当前进行中会议的窗口截图 请求参数定义 - * @apiName biz.conference.screenshot - */ -export interface IBizConferenceScreenshotParams { - /** 水印内容 | 非必填 | 默认无水印 */ - watermarkText?: string; - /** 水印输出位置,以九宫格表示区域划分,1为左上,6为右中,以此类推 | 非必填 | 默认 7(左下位置) */ - watermarkPositon?: number; - /** jpg / png | 非必填 | 默认 jpg */ - imageFormat?: string; - /** jpg的图片质量, 取值1到100 | 非必填 | 默认 75 */ - quality?: number; - /** 图片的最大宽度.过大将被等比缩小 | 非必填 | 默认无限制 */ - maxWidth?: number; - /** 图片的最大高度.过大将被等比缩小 | 非必填 | 默认无限制 */ - maxHeight?: number; - /** 水印文字的颜色,用 0xaarrggbb 格式来表示颜色对应的 argb 值 | 非必填 | 默认 0xffffffff (白色) */ - watermarkColor?: string; -} -/** - * 获取当前进行中会议的窗口截图 返回结果定义 - * @apiName biz.conference.screenshot - */ -export interface IBizConferenceScreenshotResult { - /** 截图的路径(虚拟路径) */ - filePath: string; -} -/** - * 获取当前进行中会议的窗口截图 - * @apiName biz.conference.screenshot - * @supportVersion ios: 4.6.40 android: 4.6.40 - */ -export declare function screenshot$(params: IBizConferenceScreenshotParams): Promise; -export default screenshot$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/screenshot.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/screenshot.js deleted file mode 100644 index b77deac8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/screenshot.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function screenshot$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.screenshot$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.conference.screenshot",exports.screenshot$=screenshot$,exports.default=screenshot$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/toggleConfAudio.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/toggleConfAudio.d.ts deleted file mode 100644 index 9d481e72..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/toggleConfAudio.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.conference.toggleConfAudio"; -/** - * 新增JSAPI(Android/iOS端), 用于在Android/iOS端的音视频会议模块中,对进行中的会议做音频静音操作 请求参数定义 - * @apiName biz.conference.toggleConfAudio - */ -export interface IBizConferenceToggleConfAudioParams { - /** true 静音, false 不静音 */ - mute: boolean; -} -/** - * 新增JSAPI(Android/iOS端), 用于在Android/iOS端的音视频会议模块中,对进行中的会议做音频静音操作 返回结果定义 - * @apiName biz.conference.toggleConfAudio - */ -export interface IBizConferenceToggleConfAudioResult { -} -/** - * 新增JSAPI(Android/iOS端), 用于在Android/iOS端的音视频会议模块中,对进行中的会议做音频静音操作 - * @apiName biz.conference.toggleConfAudio - * @supportVersion ios: 5.1.9 android: 5.1.9 - * @author android: 洛洋 ios: 见招 - */ -export declare function toggleConfAudio$(params: IBizConferenceToggleConfAudioParams): Promise; -export default toggleConfAudio$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/toggleConfAudio.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/toggleConfAudio.js deleted file mode 100644 index a904a79c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/toggleConfAudio.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function toggleConfAudio$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.toggleConfAudio$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.conference.toggleConfAudio",exports.toggleConfAudio$=toggleConfAudio$,exports.default=toggleConfAudio$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoCall.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoCall.d.ts deleted file mode 100644 index 5c8bd448..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoCall.d.ts +++ /dev/null @@ -1,44 +0,0 @@ -export declare const apiName = "biz.conference.videoCall"; -/** - * 受信任的二方,可以使用该接口,向指定用户发起视频通话 请求参数定义 - * @apiName biz.conference.videoCall - */ -export interface IBizConferenceVideoCallParams { - /** 通话主题,建议传入有实际意义的简短描述,便于之后查看通话记录时快速筛选 | 必填 */ - title: string; - /** 主叫昵称 | 必填 */ - callerNick: string; - /** 调用 api 的业务标识,由小程序自己定义。 | 必填 */ - bizType: string; - /** 被叫的所属企业id | 必填 */ - calleeCorpId: string; - /** 参会人在所属企业中的 staff - id,注意,这里的 calleeStaffId 必须归属于上面的 calleeCorpId 对应的企业 | 必填 */ - calleeStaffId: string; -} -/** - * 受信任的二方,可以使用该接口,向指定用户发起视频通话 返回结果定义 - * @apiName biz.conference.videoCall - */ -export interface IBizConferenceVideoCallResult { - /** 结束原因码:200, 正常接通后挂断 201, 对方拒绝接听 202, 对方超时未接听 203, 对方正在通话中(包括语音、视频、电话和直播) 204, 主叫取消呼叫 */ - exitCode: number; - /** 本次通话的id */ - conferenceId: string; - /** 被叫的所属企业id */ - calleeCorpId: string; - /** 被叫在其所属企业中的 staff - id */ - calleeStaffId: string; - /** 开始呼叫的时间戳 */ - callTime: number; - /** 被叫接听时间,如果被叫没有接听呼叫,则该值为 null */ - acceptTime?: number; - /** 任意一方挂断,或者主叫取消呼叫的时间戳 */ - hangupTime: number; -} -/** - * 受信任的二方,可以使用该接口,向指定用户发起视频通话 - * @apiName biz.conference.videoCall - * @supportVersion ios: 4.6.40 android: 4.6.40 - */ -export declare function videoCall$(params: IBizConferenceVideoCallParams): Promise; -export default videoCall$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoCall.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoCall.js deleted file mode 100644 index 99a2d7d9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function videoCall$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.videoCall$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.conference.videoCall",exports.videoCall$=videoCall$,exports.default=videoCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoConfCall.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoConfCall.d.ts deleted file mode 100644 index 71b95b09..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoConfCall.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.conference.videoConfCall"; -/** - * 向组织内用户发起视频会议 请求参数定义 - * @apiName biz.conference.videoConfCall - */ -export interface IBizConferenceVideoConfCallParams { - /** 通话主题,建议传入有实际意义的简短描述,便于之后查看通话记录时快速筛选。 */ - title: string; - /** 被叫的所属企业id */ - calleeCorpId: string; - /** 参会人在所属企业中的 staff-id列表,注意,这里的 StaffId 必须归属于上面的 calleeCorpId 对应的企业 */ - calleeStaffIds: string[]; -} -/** - * 向组织内用户发起视频会议 返回结果定义 - * @apiName biz.conference.videoConfCall - */ -export interface IBizConferenceVideoConfCallResult { -} -/** - * 向组织内用户发起视频会议 - * @apiName biz.conference.videoConfCall - * @supportVersion ios: 5.0.8 android: 5.0.8 pc: 5.1.28 - * @author iOS: 怒龙, android: 柳樵 windows: 桓奇 Mac:远觉 - */ -export declare function videoConfCall$(params: IBizConferenceVideoConfCallParams): Promise; -export default videoConfCall$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoConfCall.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoConfCall.js deleted file mode 100644 index 7b244a8a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/conference/videoConfCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function videoConfCall$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.videoConfCall$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.conference.videoConfCall",exports.videoConfCall$=videoConfCall$,exports.default=videoConfCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromContact.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromContact.d.ts deleted file mode 100644 index 045c0808..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromContact.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.addFromContact"; -/** - * 选手机联系人 请求参数定义 - * @apiName biz.contact.addFromContact - */ -export interface IBizContactAddFromContactParams { - [key: string]: any; -} -/** - * 选手机联系人 返回结果定义 - * @apiName biz.contact.addFromContact - */ -export interface IBizContactAddFromContactResult { - [key: string]: any; -} -/** - * 选手机联系人 - * @apiName biz.contact.addFromContact - * @supportVersion ios: 3.0 android: 3.0 - */ -export declare function addFromContact$(params: IBizContactAddFromContactParams): Promise; -export default addFromContact$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromContact.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromContact.js deleted file mode 100644 index 5e8e2aef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromContact.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addFromContact$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addFromContact$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.addFromContact",exports.addFromContact$=addFromContact$,exports.default=addFromContact$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromManual.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromManual.d.ts deleted file mode 100644 index 201f4c3b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromManual.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.addFromManual"; -/** - * 选企业通信录的人 请求参数定义 - * @apiName biz.contact.addFromManual - */ -export interface IBizContactAddFromManualParams { - [key: string]: any; -} -/** - * 选企业通信录的人 返回结果定义 - * @apiName biz.contact.addFromManual - */ -export interface IBizContactAddFromManualResult { - [key: string]: any; -} -/** - * 选企业通信录的人 - * @apiName biz.contact.addFromManual - * @supportVersion ios: 3.0 android: 3.0 - */ -export declare function addFromManual$(params: IBizContactAddFromManualParams): Promise; -export default addFromManual$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromManual.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromManual.js deleted file mode 100644 index 58d888c2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addFromManual.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addFromManual$(a){return common_1.ddSdk.invokeAPI(exports.apiName,a)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addFromManual$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.addFromManual",exports.addFromManual$=addFromManual$,exports.default=addFromManual$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addSubManager.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addSubManager.d.ts deleted file mode 100644 index 38cccd9b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addSubManager.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.addSubManager"; -/** - * 跳转到添加子管理员界面 请求参数定义 - * @apiName biz.contact.addSubManager - */ -export interface IBizContactAddSubManagerParams { - [key: string]: any; -} -/** - * 跳转到添加子管理员界面 返回结果定义 - * @apiName biz.contact.addSubManager - */ -export interface IBizContactAddSubManagerResult { - [key: string]: any; -} -/** - * 跳转到添加子管理员界面 - * @apiName biz.contact.addSubManager - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function addSubManager$(params: IBizContactAddSubManagerParams): Promise; -export default addSubManager$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addSubManager.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addSubManager.js deleted file mode 100644 index 3e1a0f02..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addSubManager.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addSubManager$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addSubManager$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.addSubManager",exports.addSubManager$=addSubManager$,exports.default=addSubManager$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addUserForm.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addUserForm.d.ts deleted file mode 100644 index 5c6ddb48..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addUserForm.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.contact.addUserForm"; -/** - * 添加联系人 请求参数定义 - * @apiName biz.contact.addUserForm - */ -export interface IBizContactAddUserFormParams { - /** 上游业务来源 */ - origin?: number; - /** 上游业务来源描述 */ - originMeta?: string; - [key: string]: any; -} -/** - * 添加联系人 返回结果定义 - * @apiName biz.contact.addUserForm - */ -export interface IBizContactAddUserFormResult { - [key: string]: any; -} -/** - * 添加联系人 - * @apiName biz.contact.addUserForm - * @supportVersion ios: 3.1 android: 3.1 - */ -export declare function addUserForm$(params: IBizContactAddUserFormParams): Promise; -export default addUserForm$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addUserForm.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addUserForm.js deleted file mode 100644 index 86805020..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/addUserForm.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addUserForm$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addUserForm$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.addUserForm",exports.addUserForm$=addUserForm$,exports.default=addUserForm$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/changeCustomerFollower.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/changeCustomerFollower.d.ts deleted file mode 100644 index fa906e2a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/changeCustomerFollower.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.changeCustomerFollower"; -/** - * 企业通讯录选人,加入微应用权限过滤 请求参数定义 - * @apiName biz.contact.changeCustomerFollower - */ -export interface IBizContactChangeCustomerFollowerParams { - [key: string]: any; -} -/** - * 企业通讯录选人,加入微应用权限过滤 返回结果定义 - * @apiName biz.contact.changeCustomerFollower - */ -export interface IBizContactChangeCustomerFollowerResult { - [key: string]: any; -} -/** - * 企业通讯录选人,加入微应用权限过滤 - * @apiName biz.contact.changeCustomerFollower - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function changeCustomerFollower$(params: IBizContactChangeCustomerFollowerParams): Promise; -export default changeCustomerFollower$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/changeCustomerFollower.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/changeCustomerFollower.js deleted file mode 100644 index ee0a6b08..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/changeCustomerFollower.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function changeCustomerFollower$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.changeCustomerFollower$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.changeCustomerFollower",exports.changeCustomerFollower$=changeCustomerFollower$,exports.default=changeCustomerFollower$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/choose.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/choose.d.ts deleted file mode 100644 index bd19374f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/choose.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.choose"; -/** - * 修改企业通讯录选人 请求参数定义 - * @apiName biz.contact.choose - */ -export interface IBizContactChooseParams { - [key: string]: any; -} -/** - * 修改企业通讯录选人 返回结果定义 - * @apiName biz.contact.choose - */ -export interface IBizContactChooseResult { - [key: string]: any; -} -/** - * 修改企业通讯录选人 - * @apiName biz.contact.choose - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function choose$(params: IBizContactChooseParams): Promise; -export default choose$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/choose.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/choose.js deleted file mode 100644 index ae916045..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/choose.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function choose$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.choose$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.choose",exports.choose$=choose$,exports.default=choose$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/chooseMobileContacts.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/chooseMobileContacts.d.ts deleted file mode 100644 index d038cf8b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/chooseMobileContacts.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.chooseMobileContacts"; -/** - * 选择手机联系人 请求参数定义 - * @apiName biz.contact.chooseMobileContacts - */ -export interface IBizContactChooseMobileContactsParams { - [key: string]: any; -} -/** - * 选择手机联系人 返回结果定义 - * @apiName biz.contact.chooseMobileContacts - */ -export interface IBizContactChooseMobileContactsResult { - [key: string]: any; -} -/** - * 选择手机联系人 - * @apiName biz.contact.chooseMobileContacts - * @supportVersion ios: 3.1 android: 3.1 - */ -export declare function chooseMobileContacts$(params: IBizContactChooseMobileContactsParams): Promise; -export default chooseMobileContacts$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/chooseMobileContacts.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/chooseMobileContacts.js deleted file mode 100644 index 18da0b5e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/chooseMobileContacts.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseMobileContacts$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseMobileContacts$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.chooseMobileContacts",exports.chooseMobileContacts$=chooseMobileContacts$,exports.default=chooseMobileContacts$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexChoose.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexChoose.d.ts deleted file mode 100644 index 0fa56b57..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexChoose.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.complexChoose"; -/** - * 企业通讯录同时选人,选部门 请求参数定义 - * @apiName biz.contact.complexChoose - */ -export interface IBizContactComplexChooseParams { - [key: string]: any; -} -/** - * 企业通讯录同时选人,选部门 返回结果定义 - * @apiName biz.contact.complexChoose - */ -export interface IBizContactComplexChooseResult { - [key: string]: any; -} -/** - * 企业通讯录同时选人,选部门 - * @apiName biz.contact.complexChoose - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function complexChoose$(params: IBizContactComplexChooseParams): Promise; -export default complexChoose$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexChoose.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexChoose.js deleted file mode 100644 index ef5d28cc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexChoose.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function complexChoose$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.complexChoose$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.complexChoose",exports.complexChoose$=complexChoose$,exports.default=complexChoose$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexPicker.d.ts deleted file mode 100644 index fe67240a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexPicker.d.ts +++ /dev/null @@ -1,81 +0,0 @@ -export declare const apiName = "biz.contact.complexPicker"; -/** - * 选人与部门 请求参数定义 - * @apiName biz.contact.complexPicker - */ -export interface IBizContactComplexPickerParams { - /** 标题 */ - title?: string; - /** 企业的corpId */ - corpId?: string; - /** 是否多选 */ - multiple?: boolean; - /** 超过限定人数返回提示 */ - limitTips?: string; - /** 选人组件,用户未选择人的时候,左下角的提示文案 */ - pickTips?: string; - /** 最大可选人数 */ - maxUsers?: number; - /** 已选用户 */ - pickedUsers?: string[]; - /** 已选部门 */ - pickedDepartments?: string[]; - /** 不可选用户 */ - disabledUsers?: string[]; - /** 不可选部门 */ - disabledDepartments?: string[]; - /** 必选用户(不可取消选中状态) */ - requiredUsers?: string[]; - /** 必选部门(不可取消选中状态) */ - requiredDepartments?: string[]; - /** 微应用的Id */ - appId?: number; - /** 选人权限,目前只有GLOBAL这个参数 */ - permissionType?: string; - /** 返回人,或者返回人和部门 */ - responseUserOnly?: boolean; - /** 0表示从企业最上层开始 */ - startWithDepartmentId?: number; - /** 上游业务来源 */ - origin?: number; - /** 上游业务来源描述 */ - originMeta?: string; - /** 只支持移动端,可以直接跳到具体部门。-1 表示根部门,0 表示当前部门(startWithDepartmentId需要传2,depId才生效) */ - deptId?: number; - /** 标准钉在专有钉容器中使用需要打开这个开关,默认是按照标准钉的格式返回,未做转换 */ - isTranslateStaffid?: boolean; -} -/** - * 选人与部门 返回结果定义 - * @apiName biz.contact.complexPicker - */ -export interface IBizContactComplexPickerResult { - /** 选择人数 */ - selectedCount: number; - /** 返回选人的列表,列表中的对象包含name(用户名),avatar(用户头像),emplId(用户工号)三个字段 */ - users?: Array<{ - name: string; - avatar: string; - /** 用户工号 */ - emplId: string; - /** 员工部门 id */ - selectDeptId?: number; - /** 员工部门名称 */ - selectDeptName?: string; - }>; - /** 返回已选部门列表,列表中每个对象包含id(部门id)、name(部门名称)、number(部门人数) */ - departments?: Array<{ - id: string; - name: string; - number: string; - }>; -} -/** - * 选人与部门 - * 支持选择部门后,把所选部门转换成对应部门下的人,permissionType可以添加权限校验 - * @apiName biz.contact.complexPicker - * @supportVersion ios: 2.9.0 android: 2.9.0 pc: 4.3.5 - * @author iOS:晓毒; Android:几米; - */ -export declare function complexPicker$(params: IBizContactComplexPickerParams): Promise; -export default complexPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexPicker.js deleted file mode 100644 index 0669bc09..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function complexPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.complexPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.complexPicker",exports.complexPicker$=complexPicker$,exports.default=complexPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexSelectedPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexSelectedPicker.d.ts deleted file mode 100644 index e8b56d87..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexSelectedPicker.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.contact.complexSelectedPicker"; -/** - * 跳转到已选成员组件 请求参数定义 - * @apiName biz.contact.complexSelectedPicker - */ -export interface IBizContactComplexSelectedPickerParams { - /** 上游业务来源 */ - origin?: number; - /** 上游业务来源描述 */ - originMeta?: string; - [key: string]: any; -} -/** - * 跳转到已选成员组件 返回结果定义 - * @apiName biz.contact.complexSelectedPicker - */ -export interface IBizContactComplexSelectedPickerResult { - [key: string]: any; -} -/** - * 跳转到已选成员组件 - * @apiName biz.contact.complexSelectedPicker - * @supportVersion ios: 3.5 android: 3.5 - */ -export declare function complexSelectedPicker$(params: IBizContactComplexSelectedPickerParams): Promise; -export default complexSelectedPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexSelectedPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexSelectedPicker.js deleted file mode 100644 index 060ab1bd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/complexSelectedPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function complexSelectedPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.complexSelectedPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.complexSelectedPicker",exports.complexSelectedPicker$=complexSelectedPicker$,exports.default=complexSelectedPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/createGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/createGroup.d.ts deleted file mode 100644 index d49b75ef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/createGroup.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.contact.createGroup"; -/** - * 创建群 请求参数定义 - * @apiName biz.contact.createGroup - */ -export interface IBizContactCreateGroupParams { - corpId?: string; - users?: string[]; -} -/** - * 创建群 返回结果定义 - * @apiName biz.contact.createGroup - */ -export interface IBizContactCreateGroupResult { - /** 企业群ID */ - id: string; -} -/** - * 创建群 - * @apiName biz.contact.createGroup - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function createGroup$(params: IBizContactCreateGroupParams): Promise; -export default createGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/createGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/createGroup.js deleted file mode 100644 index 5848bec4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/createGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createGroup$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.createGroup",exports.createGroup$=createGroup$,exports.default=createGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsPicker.d.ts deleted file mode 100644 index 8d9b7b28..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsPicker.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.departmentsPicker"; -/** - * 选部门 请求参数定义 - * @apiName biz.contact.departmentsPicker - */ -export interface IBizContactDepartmentsPickerParams { - [key: string]: any; -} -/** - * 选部门 返回结果定义 - * @apiName biz.contact.departmentsPicker - */ -export interface IBizContactDepartmentsPickerResult { - [key: string]: any; -} -/** - * 选部门 - * @apiName biz.contact.departmentsPicker - * @supportVersion pc: 4.2.5 ios: 3.0 android: 3.0 - */ -export declare function departmentsPicker$(params: IBizContactDepartmentsPickerParams): Promise; -export default departmentsPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsPicker.js deleted file mode 100644 index a11782f9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function departmentsPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.departmentsPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.departmentsPicker",exports.departmentsPicker$=departmentsPicker$,exports.default=departmentsPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsSelectedPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsSelectedPicker.d.ts deleted file mode 100644 index 1f111f34..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsSelectedPicker.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.departmentsSelectedPicker"; -/** - * 跳转到已选部门组件 请求参数定义 - * @apiName biz.contact.departmentsSelectedPicker - */ -export interface IBizContactDepartmentsSelectedPickerParams { - [key: string]: any; -} -/** - * 跳转到已选部门组件 返回结果定义 - * @apiName biz.contact.departmentsSelectedPicker - */ -export interface IBizContactDepartmentsSelectedPickerResult { - [key: string]: any; -} -/** - * 跳转到已选部门组件 - * @apiName biz.contact.departmentsSelectedPicker - * @supportVersion ios: 3.5 android: 3.5 - */ -export declare function departmentsSelectedPicker$(params: IBizContactDepartmentsSelectedPickerParams): Promise; -export default departmentsSelectedPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsSelectedPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsSelectedPicker.js deleted file mode 100644 index b9a3ea76..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/departmentsSelectedPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function departmentsSelectedPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.departmentsSelectedPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.departmentsSelectedPicker",exports.departmentsSelectedPicker$=departmentsSelectedPicker$,exports.default=departmentsSelectedPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalComplexPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalComplexPicker.d.ts deleted file mode 100644 index 5351a10c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalComplexPicker.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.externalComplexPicker"; -/** - * 选外部通信录 请求参数定义 - * @apiName biz.contact.externalComplexPicker - */ -export interface IBizContactExternalComplexPickerParams { - [key: string]: any; -} -/** - * 选外部通信录 返回结果定义 - * @apiName biz.contact.externalComplexPicker - */ -export interface IBizContactExternalComplexPickerResult { - [key: string]: any; -} -/** - * 选外部通信录 - * @apiName biz.contact.externalComplexPicker - * @supportVersion pc: 3.0.0 ios: 3.0 android: 3.0 - */ -export declare function externalComplexPicker$(params: IBizContactExternalComplexPickerParams): Promise; -export default externalComplexPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalComplexPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalComplexPicker.js deleted file mode 100644 index 66264dfb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalComplexPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function externalComplexPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.externalComplexPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.externalComplexPicker",exports.externalComplexPicker$=externalComplexPicker$,exports.default=externalComplexPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalEditForm.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalEditForm.d.ts deleted file mode 100644 index 523e6847..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalEditForm.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.externalEditForm"; -/** - * 编辑联系人 请求参数定义 - * @apiName biz.contact.externalEditForm - */ -export interface IBizContactExternalEditFormParams { - [key: string]: any; -} -/** - * 编辑联系人 返回结果定义 - * @apiName biz.contact.externalEditForm - */ -export interface IBizContactExternalEditFormResult { - [key: string]: any; -} -/** - * 编辑联系人 - * @apiName biz.contact.externalEditForm - * @supportVersion ios: 3.0 android: 3.0 - */ -export declare function externalEditForm$(params: IBizContactExternalEditFormParams): Promise; -export default externalEditForm$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalEditForm.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalEditForm.js deleted file mode 100644 index 378c24f4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/externalEditForm.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function externalEditForm$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.externalEditForm$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.externalEditForm",exports.externalEditForm$=externalEditForm$,exports.default=externalEditForm$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/getMobileContact.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/getMobileContact.d.ts deleted file mode 100644 index d6dde301..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/getMobileContact.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.getMobileContact"; -/** - * 查询手机联系人 请求参数定义 - * @apiName biz.contact.getMobileContact - */ -export interface IBizContactGetMobileContactParams { - [key: string]: any; -} -/** - * 查询手机联系人 返回结果定义 - * @apiName biz.contact.getMobileContact - */ -export interface IBizContactGetMobileContactResult { - [key: string]: any; -} -/** - * 查询手机联系人 - * @apiName biz.contact.getMobileContact - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function getMobileContact$(params: IBizContactGetMobileContactParams): Promise; -export default getMobileContact$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/getMobileContact.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/getMobileContact.js deleted file mode 100644 index 3899a9d8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/getMobileContact.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getMobileContact$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getMobileContact$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.getMobileContact",exports.getMobileContact$=getMobileContact$,exports.default=getMobileContact$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/inviteGroupMember.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/inviteGroupMember.d.ts deleted file mode 100644 index 759d4ed1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/inviteGroupMember.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -export declare const apiName = "biz.contact.inviteGroupMember"; -/** - * 企业或部门 添加团队成员页面 请求参数定义 - * @apiName biz.contact.inviteGroupMember - */ -export interface IBizContactInviteGroupMemberParams { - /** 企业 corpId */ - corpId: string; - /** 部门Id */ - deptId?: number; - /** 业务方标识 */ - scene?: string; - /** 上游业务来源 */ - origin?: number; - /** 上游业务来源描述 */ - originMeta?: string; -} -/** - * 企业或部门 添加团队成员页面 返回结果定义 - * @apiName biz.contact.inviteGroupMember - */ -export interface IBizContactInviteGroupMemberResult { - invitedMembers: Array<{ - staffId: string; - userName: string; - mobile: string; - job?: string; - }>; -} -/** - * 企业或部门 添加团队成员页面 - * @apiName biz.contact.inviteGroupMember - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function inviteGroupMember$(params: IBizContactInviteGroupMemberParams): Promise; -export default inviteGroupMember$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/inviteGroupMember.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/inviteGroupMember.js deleted file mode 100644 index 16906000..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/inviteGroupMember.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function inviteGroupMember$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.inviteGroupMember$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.inviteGroupMember",exports.inviteGroupMember$=inviteGroupMember$,exports.default=inviteGroupMember$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/isForeignOrg.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/isForeignOrg.d.ts deleted file mode 100644 index 273d2576..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/isForeignOrg.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.isForeignOrg"; -/** - * 判断corpId对应的企业是否是海外企业 请求参数定义 - * @apiName biz.contact.isForeignOrg - */ -export interface IBizContactIsForeignOrgParams { - [key: string]: any; -} -/** - * 判断corpId对应的企业是否是海外企业 返回结果定义 - * @apiName biz.contact.isForeignOrg - */ -export interface IBizContactIsForeignOrgResult { - [key: string]: any; -} -/** - * 判断corpId对应的企业是否是海外企业 - * @apiName biz.contact.isForeignOrg - * @supportVersion ios: 4.2 android: 4.2 - */ -export declare function isForeignOrg$(params: IBizContactIsForeignOrgParams): Promise; -export default isForeignOrg$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/isForeignOrg.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/isForeignOrg.js deleted file mode 100644 index 6d5e8558..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/isForeignOrg.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isForeignOrg$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isForeignOrg$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.isForeignOrg",exports.isForeignOrg$=isForeignOrg$,exports.default=isForeignOrg$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/manageContactAlert.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/manageContactAlert.d.ts deleted file mode 100644 index 8a46a419..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/manageContactAlert.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.manageContactAlert"; -/** - * 管理获取通信录弹窗 请求参数定义 - * @apiName biz.contact.manageContactAlert - */ -export interface IBizContactManageContactAlertParams { - [key: string]: any; -} -/** - * 管理获取通信录弹窗 返回结果定义 - * @apiName biz.contact.manageContactAlert - */ -export interface IBizContactManageContactAlertResult { - [key: string]: any; -} -/** - * 管理获取通信录弹窗 - * @apiName biz.contact.manageContactAlert - * @supportVersion ios: 3.4 android: 3.4 - */ -export declare function manageContactAlert$(params: IBizContactManageContactAlertParams): Promise; -export default manageContactAlert$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/manageContactAlert.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/manageContactAlert.js deleted file mode 100644 index 80bf2b4c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/manageContactAlert.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function manageContactAlert$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.manageContactAlert$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.manageContactAlert",exports.manageContactAlert$=manageContactAlert$,exports.default=manageContactAlert$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickCustomer.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickCustomer.d.ts deleted file mode 100644 index 2499ba33..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickCustomer.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.pickCustomer"; -/** - * 选择客户 请求参数定义 - * @apiName biz.contact.pickCustomer - */ -export interface IBizContactPickCustomerParams { - [key: string]: any; -} -/** - * 选择客户 返回结果定义 - * @apiName biz.contact.pickCustomer - */ -export interface IBizContactPickCustomerResult { - [key: string]: any; -} -/** - * 选择客户 - * @apiName biz.contact.pickCustomer - * @supportVersion pc: 3.0.0 ios: 2.11 android: 2.11 - */ -export declare function pickCustomer$(params: IBizContactPickCustomerParams): Promise; -export default pickCustomer$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickCustomer.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickCustomer.js deleted file mode 100644 index 34bcf7bd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickCustomer.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pickCustomer$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pickCustomer$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.pickCustomer",exports.pickCustomer$=pickCustomer$,exports.default=pickCustomer$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickJobTitle.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickJobTitle.d.ts deleted file mode 100644 index 40ec70c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickJobTitle.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.pickJobTitle"; -/** - * 选择职务 请求参数定义 - * @apiName biz.contact.pickJobTitle - */ -export interface IBizContactPickJobTitleParams { - [key: string]: any; -} -/** - * 选择职务 返回结果定义 - * @apiName biz.contact.pickJobTitle - */ -export interface IBizContactPickJobTitleResult { - [key: string]: any; -} -/** - * 选择职务 - * @apiName biz.contact.pickJobTitle - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function pickJobTitle$(params: IBizContactPickJobTitleParams): Promise; -export default pickJobTitle$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickJobTitle.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickJobTitle.js deleted file mode 100644 index a68891c7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/pickJobTitle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pickJobTitle$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pickJobTitle$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.pickJobTitle",exports.pickJobTitle$=pickJobTitle$,exports.default=pickJobTitle$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/setRule.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/setRule.d.ts deleted file mode 100644 index 3baf220c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/setRule.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.setRule"; -/** - * 设置规则 请求参数定义 - * @apiName biz.contact.setRule - */ -export interface IBizContactSetRuleParams { - [key: string]: any; -} -/** - * 设置规则 返回结果定义 - * @apiName biz.contact.setRule - */ -export interface IBizContactSetRuleResult { - [key: string]: any; -} -/** - * 设置规则 - * @apiName biz.contact.setRule - * @supportVersion ios: 2.15 android: 2.15 - */ -export declare function setRule$(params: IBizContactSetRuleParams): Promise; -export default setRule$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/setRule.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/setRule.js deleted file mode 100644 index f9bfab7a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/setRule.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setRule$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setRule$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.setRule",exports.setRule$=setRule$,exports.default=setRule$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/teamScaleSelect.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/teamScaleSelect.d.ts deleted file mode 100644 index 9de5220f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/teamScaleSelect.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "biz.contact.teamScaleSelect"; -/** - * 团队规则选择页面 请求参数定义 - * @apiName biz.contact.teamScaleSelect - */ -export interface IBizContactTeamScaleSelectParams { - /** 当前选中的index ,缺省或者-1,代表没选 */ - selectedIndex?: number; -} -/** - * 团队规则选择页面 返回结果定义 - * @apiName biz.contact.teamScaleSelect - */ -export interface IBizContactTeamScaleSelectResult { - /** 当前选中的index ,缺省或者-1,代表没选 */ - selectedIndex?: number; - /** 选中的规模描述方案,如:1-10 */ - scaleDesc: string; - /** 选中的规模编码 */ - scaleCode: number; - /** 选中规模的最小人数 */ - minLimit: number; -} -/** - * 团队规则选择页面 - * @apiName biz.contact.teamScaleSelect - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function teamScaleSelect$(params: IBizContactTeamScaleSelectParams): Promise; -export default teamScaleSelect$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/teamScaleSelect.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/teamScaleSelect.js deleted file mode 100644 index ee118301..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/teamScaleSelect.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function teamScaleSelect$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.teamScaleSelect$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.teamScaleSelect",exports.teamScaleSelect$=teamScaleSelect$,exports.default=teamScaleSelect$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/useTagPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/useTagPicker.d.ts deleted file mode 100644 index f031430b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/useTagPicker.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.contact.useTagPicker"; -/** - * 标签选人 请求参数定义 - * @apiName biz.contact.useTagPicker - */ -export interface IBizContactUseTagPickerParams { - [key: string]: any; -} -/** - * 标签选人 返回结果定义 - * @apiName biz.contact.useTagPicker - */ -export interface IBizContactUseTagPickerResult { - [key: string]: any; -} -/** - * 标签选人 - * @apiName biz.contact.useTagPicker - * @supportVersion pc: 3.3.0 - */ -export declare function useTagPicker$(params: IBizContactUseTagPickerParams): Promise; -export default useTagPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/useTagPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/useTagPicker.js deleted file mode 100644 index f2be8ee1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/contact/useTagPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function useTagPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.useTagPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.contact.useTagPicker",exports.useTagPicker$=useTagPicker$,exports.default=useTagPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/chooseSpaceDir.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/chooseSpaceDir.d.ts deleted file mode 100644 index c9f4c276..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/chooseSpaceDir.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "biz.cspace.chooseSpaceDir"; -/** - * 唤起钉盘选择器 请求参数定义 - * @apiName biz.cspace.chooseSpaceDir - */ -export interface IBizCspaceChooseSpaceDirParams { - /** 组织id, 必填,被选择的企业空间限制在corpid对应的企业下 */ - corpId: string; -} -/** - * 唤起钉盘选择器 返回结果定义 - * @apiName biz.cspace.chooseSpaceDir - */ -export interface IBizCspaceChooseSpaceDirResult { - data: Array<{ - /** 被选中文件夹所在的钉盘空间id */ - spaceId: string; - /** 被选中的文件夹路径, 例如“/测试/测试子目录/” */ - path: string; - /** 被选中的文件夹id */ - dirId: string; - }>; -} -/** - * 唤起钉盘选择器 - * 唤起钉盘选择器, 从当前用户的企业空间或个人空间选择一个目录, 用以保存文件等操作 - * @apiName biz.cspace.chooseSpaceDir - * @supportVersion ios: 3.5.6 android: 3.5.6 pc: 5.1.27 - * @author pc: 法真 - */ -export declare function chooseSpaceDir$(params: IBizCspaceChooseSpaceDirParams): Promise; -export default chooseSpaceDir$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/chooseSpaceDir.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/chooseSpaceDir.js deleted file mode 100644 index dd23ca70..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/chooseSpaceDir.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseSpaceDir$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseSpaceDir$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.cspace.chooseSpaceDir",exports.chooseSpaceDir$=chooseSpaceDir$,exports.default=chooseSpaceDir$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/copy.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/copy.d.ts deleted file mode 100644 index 4708ba62..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/copy.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.cspace.copy"; -/** - * 将钉盘系统内文件拷贝到钉盘内指定位置 请求参数定义 - * @apiName biz.cspace.copy - */ -export interface IBizCspaceCopyParams { - [key: string]: any; -} -/** - * 将钉盘系统内文件拷贝到钉盘内指定位置 返回结果定义 - * @apiName biz.cspace.copy - */ -export interface IBizCspaceCopyResult { - [key: string]: any; -} -/** - * 将钉盘系统内文件拷贝到钉盘内指定位置 - * @apiName biz.cspace.copy - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function copy$(params: IBizCspaceCopyParams): Promise; -export default copy$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/copy.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/copy.js deleted file mode 100644 index 0081a069..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/copy.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function copy$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.copy$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.cspace.copy",exports.copy$=copy$,exports.default=copy$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/delete.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/delete.d.ts deleted file mode 100644 index d777b56c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/delete.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.cspace.delete"; -/** - * 删除钉盘附件 请求参数定义 - * @apiName biz.cspace.delete - */ -export interface IBizCspaceDeleteParams { - /** 空间id */ - spaceId: string; - /** 目录id */ - dentryId: string; -} -/** - * 删除钉盘附件 返回结果定义 - * @apiName biz.cspace.delete - */ -export interface IBizCspaceDeleteResult { -} -/** - * 删除钉盘附件 - * @apiName biz.cspace.delete - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function delete$(params: IBizCspaceDeleteParams): Promise; -export default delete$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/delete.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/delete.js deleted file mode 100644 index bda80d83..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/delete.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function delete$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.delete$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.cspace.delete",exports.delete$=delete$,exports.default=delete$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/getPlayUrl.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/getPlayUrl.d.ts deleted file mode 100644 index 1e2677bf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/getPlayUrl.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.cspace.getPlayUrl"; -/** - * 获取钉盘文件播放地址(视频&音频) 请求参数定义 - * @apiName biz.cspace.getPlayUrl - */ -export interface IBizCspaceGetPlayUrlParams { - spaceId: any; - fileId: any; -} -/** - * 获取钉盘文件播放地址(视频&音频) 返回结果定义 - * @apiName biz.cspace.getPlayUrl - */ -export interface IBizCspaceGetPlayUrlResult { - url: string; - /** 1: 完成(已经获取可播放的url) 2:处理中,转码等 3:错误 */ - status: 1 | 2 | 3; -} -/** - * 获取钉盘文件播放地址(视频&音频) - * @apiName biz.cspace.getPlayUrl - * @supportVersion ios: 4.3.5 android: 4.3.5 pc: 4.3.5 - */ -export declare function getPlayUrl$(params: IBizCspaceGetPlayUrlParams): Promise; -export default getPlayUrl$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/getPlayUrl.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/getPlayUrl.js deleted file mode 100644 index d481db62..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/getPlayUrl.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPlayUrl$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPlayUrl$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.cspace.getPlayUrl",exports.getPlayUrl$=getPlayUrl$,exports.default=getPlayUrl$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/preview.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/preview.d.ts deleted file mode 100644 index 1624bd30..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/preview.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -export declare const apiName = "biz.cspace.preview"; -/** - * 附件预览 请求参数定义 - * @apiName biz.cspace.preview - */ -export interface IBizCspacePreviewParams { - /** 用户当前的corpid,此文件预览成功后只能转发或保存到此corpId对应的企业群和个人 */ - corpId: string; - /** 空间ID */ - spaceId: string; - /** 文件ID */ - fileId: string; - /** 文件名称 */ - fileName: string; - /** 文件大小,字节数 */ - fileSize: number; - /** 文件扩展名 */ - fileType: string; - /** 预览时候可以控制是否显示 下载、转发等等按钮, 暂支持移动端 */ - mode?: 'safe' | 'normal' | 'edit' | 'revise' | 'restrict'; - /** 表示预览文件的某个版本,4.3.5开始支持,支持移动端 */ - version?: string; -} -/** - * 附件预览 返回结果定义 - * @apiName biz.cspace.preview - */ -export interface IBizCspacePreviewResult { -} -/** - * 附件预览 - * @apiName biz.cspace.preview - * @supportVersion pc: 3.0.0 ios: 2.7.0 android: 2.7.0 - */ -export declare function preview$(params: IBizCspacePreviewParams): Promise; -export default preview$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/preview.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/preview.js deleted file mode 100644 index cd5a3caa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/preview.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function preview$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.preview$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.cspace.preview",exports.preview$=preview$,exports.default=preview$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/saveFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/saveFile.d.ts deleted file mode 100644 index b575d9b2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/saveFile.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -export declare const apiName = "biz.cspace.saveFile"; -/** - * 转存附件 请求参数定义 - * @apiName biz.cspace.saveFile - */ -export interface IBizCspaceSaveFileParams { - /** 用户当前的corpid,将只能存储到当前corpid对应企业的钉盘和个人钉盘 */ - corpId: string; - /** 文件在第三方服务器地址, 也可为通过服务端接口上传文件得到的media_id,详见参数说明 */ - url: string; - /** 文件保存的名字 */ - name: string; -} -/** - * 转存附件 返回结果定义 - * @apiName biz.cspace.saveFile - */ -export interface IBizCspaceSaveFileResult { - data: Array<{ - /** 空间id */ - spaceId: string; - /** 文件id */ - fileId: string; - /** 文件名 */ - fileName: string; - /** 文件大小 */ - fileSize: number; - /** 文件类型 */ - fileType: string; - }>; -} -/** - * 转存附件 - * @apiName biz.cspace.saveFile - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function saveFile$(params: IBizCspaceSaveFileParams): Promise; -export default saveFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/saveFile.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/saveFile.js deleted file mode 100644 index f89a7942..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/cspace/saveFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveFile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.cspace.saveFile",exports.saveFile$=saveFile$,exports.default=saveFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/choose.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/choose.d.ts deleted file mode 100644 index 5d412e16..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/choose.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.customContact.choose"; -/** - * 自定义选人组件 请求参数定义 - * @apiName biz.customContact.choose - */ -export interface IBizCustomContactChooseParams { - [key: string]: any; -} -/** - * 自定义选人组件 返回结果定义 - * @apiName biz.customContact.choose - */ -export interface IBizCustomContactChooseResult { - [key: string]: any; -} -/** - * 自定义选人组件 - * @apiName biz.customContact.choose - * @supportVersion pc: 3.0.0 ios: 2.5.2 android: 2.5.2 - */ -export declare function choose$(params: IBizCustomContactChooseParams): Promise; -export default choose$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/choose.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/choose.js deleted file mode 100644 index 9faa034f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/choose.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function choose$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.choose$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.customContact.choose",exports.choose$=choose$,exports.default=choose$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/multipleChoose.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/multipleChoose.d.ts deleted file mode 100644 index ca09003a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/multipleChoose.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.customContact.multipleChoose"; -/** - * 自定义选人组件(多选) 请求参数定义 - * @apiName biz.customContact.multipleChoose - */ -export interface IBizCustomContactMultipleChooseParams { - [key: string]: any; -} -/** - * 自定义选人组件(多选) 返回结果定义 - * @apiName biz.customContact.multipleChoose - */ -export interface IBizCustomContactMultipleChooseResult { - [key: string]: any; -} -/** - * 自定义选人组件(多选) - * @apiName biz.customContact.multipleChoose - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function multipleChoose$(params: IBizCustomContactMultipleChooseParams): Promise; -export default multipleChoose$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/multipleChoose.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/multipleChoose.js deleted file mode 100644 index 57cd4d91..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/customContact/multipleChoose.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function multipleChoose$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.multipleChoose$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.customContact.multipleChoose",exports.multipleChoose$=multipleChoose$,exports.default=multipleChoose$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/data/getAvatar.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/data/getAvatar.d.ts deleted file mode 100644 index 48e53339..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/data/getAvatar.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.data.getAvatar"; -/** - * 获取头像URL 请求参数定义 - * @apiName biz.data.getAvatar - */ -export interface IBizDataGetAvatarParams { - [key: string]: any; -} -/** - * 获取头像URL 返回结果定义 - * @apiName biz.data.getAvatar - */ -export interface IBizDataGetAvatarResult { - [key: string]: any; -} -/** - * 获取头像URL - * @apiName biz.data.getAvatar - * @supportVersion ios: 3.3 android: 3.3 - */ -export declare function getAvatar$(params: IBizDataGetAvatarParams): Promise; -export default getAvatar$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/data/getAvatar.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/data/getAvatar.js deleted file mode 100644 index d827ff53..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/data/getAvatar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAvatar$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAvatar$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.data.getAvatar",exports.getAvatar$=getAvatar$,exports.default=getAvatar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/create.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/create.d.ts deleted file mode 100644 index c1679dd6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/create.d.ts +++ /dev/null @@ -1,89 +0,0 @@ -export declare const apiName = "biz.ding.create"; -/** - * 打开DING、任务、会议界面 请求参数定义 - * @apiName biz.ding.create - */ -export interface IBizDingCreateParams { - /** 用户列表,工号 */ - users: string[]; - /** 企业id */ - corpId: string; - /** 附件类型 1:image 2:link */ - type?: 1 | 2; - /** 钉发送方式 0:电话, 1:短信, 2:应用内 */ - alertType?: 0 | 1 | 2; - alertDate?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 附件信息 */ - attachment?: { - images: string[]; - } | { - title: string; - url: string; - image: string; - text: string; - }; - /** 正文 */ - text?: string; - /** 业务类型 0:通知DING;1:任务;2:会议; */ - bizType?: 0 | 1 | 2; - /** 会议信息 */ - confInfo?: { - /** 子业务类型如会议:0:预约会议;1:预约电话会议;2:预约视频会议;(注:目前只有会议才有子业务类型) */ - bizSubType: 0 | 1 | 2; - /** 会议地点;(非必填) */ - location?: string; - /** 会议开始时间 */ - startTime?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 会议结束时间 */ - endTime?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 会前提醒。单位分钟-1:不提醒;0:事件发生时提醒;5:提前5分钟;15:提前15分钟;30:提前30分钟;60:提前1个小时;1440:提前一天; */ - remindMinutes?: number; - /** 会议提前提醒方式。0:电话, 1:短信, 2:应用内 */ - remindType?: 0 | 1 | 2; - }; - taskInfo?: { - /** 抄送用户列表,工号 */ - ccUsers?: string[]; - /** 任务截止时间 */ - deadlineTime?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 任务提醒时间,单位分钟0:不提醒;15:提前15分钟;60:提前1个小时;180:提前3个小时;1440:提前一天; */ - taskRemind?: number; - }; -} -/** - * 打开DING、任务、会议界面 返回结果定义 - * @apiName biz.ding.create - */ -export interface IBizDingCreateResult { - dingCreateResult?: boolean; -} -/** - * 打开DING、任务、会议界面 - * @description 钉钉3.5.1版本以后建议使用Ding 2.0发钉接口,Ding 1.0 发钉接口(dd.biz.ding.post)会被慢慢废弃。请大家及时切换,并关注兼容性问题。 - * DING 2.0发钉接口支持打开DING、任务、会议界面。 - * 目前发钉只支持客户端发钉,不支持直接通过服务端发钉。 - * @apiName biz.ding.create - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function create$(params: IBizDingCreateParams): Promise; -export default create$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/create.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/create.js deleted file mode 100644 index 58db6737..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/create.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function create$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.create$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ding.create",exports.create$=create$,exports.default=create$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/detail.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/detail.d.ts deleted file mode 100644 index 46f1c366..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/detail.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.ding.detail"; -/** - * 智能会议室打开会议详情 请求参数定义 - * @apiName biz.ding.detail - */ -export interface IBizDingDetailParams { - /** DING详情Id */ - dingId: string; - /** 业务类型(0:通知DING;1:任务;2:会议) */ - bizType: number; -} -/** - * 智能会议室打开会议详情 返回结果定义 - * @apiName biz.ding.detail - */ -export interface IBizDingDetailResult { -} -/** - * 智能会议室打开会议详情 - * @apiName biz.ding.detail - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function detail$(params: IBizDingDetailParams): Promise; -export default detail$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/detail.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/detail.js deleted file mode 100644 index 456fa55a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/detail.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detail$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detail$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ding.detail",exports.detail$=detail$,exports.default=detail$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/post.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/post.d.ts deleted file mode 100644 index fa6373ee..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/post.d.ts +++ /dev/null @@ -1,47 +0,0 @@ -export declare const apiName = "biz.ding.post"; -/** - * 发钉 请求参数定义 - * @apiName biz.ding.post - */ -export interface IBizDingPostParams { - /** 用户列表,工号 */ - users: string[]; - /** 企业id */ - corpId: string; - /** 附件类型 1:image 2:link */ - type: 1 | 2; - /** 钉发送方式 0:电话, 1:短信, 2:应用内 */ - alertType?: 0 | 1 | 2; - alertDate?: { - /** yyyy-MM-dd HH:mm */ - format: string; - /** 2015-05-09 08:00 */ - value: string; - }; - /** 附件信息 */ - attachment?: { - images: string[]; - } | { - title: string; - url: string; - image: string; - text: string; - bizName?: string; - urlPc?: string; - }; - /** 正文 */ - text?: string; -} -/** - * 发钉 返回结果定义 - * @apiName biz.ding.post - */ -export interface IBizDingPostResult { -} -/** - * 发钉 - * @apiName biz.ding.post - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function post$(params: IBizDingPostParams): Promise; -export default post$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/post.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/post.js deleted file mode 100644 index 02672c8e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/post.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function post$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.post$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ding.post",exports.post$=post$,exports.default=post$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/update.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/update.d.ts deleted file mode 100644 index ad172d8a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/update.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.ding.update"; -/** - * 打开DING修改窗口 请求参数定义 - * @apiName biz.ding.update - */ -export interface IBizDingUpdateParams { - /** DING id,必选 */ - dingId: string; - /** 业务类型,必选【0:通知DING;1:任务;2:会议;】 */ - bizType: number; - /** 会议重复,必选【 0:非重复,1:重复所有,2:重复单次】 */ - meetingScope: number; -} -/** - * 打开DING修改窗口 返回结果定义 - * @apiName biz.ding.update - */ -export interface IBizDingUpdateResult { - [key: string]: any; -} -/** - * 打开DING修改窗口 - * @apiName biz.ding.update - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function update$(params: IBizDingUpdateParams): Promise; -export default update$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/update.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/update.js deleted file mode 100644 index a5b8c112..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/ding/update.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function update$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.update$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.ding.update",exports.update$=update$,exports.default=update$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/finishMiniCourseByRecordId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/finishMiniCourseByRecordId.d.ts deleted file mode 100644 index 7316a7a9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/finishMiniCourseByRecordId.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.edu.finishMiniCourseByRecordId"; -/** - * 标记微课完成 请求参数定义 - * @apiName biz.edu.finishMiniCourseByRecordId - */ -export interface IBizEduFinishMiniCourseByRecordIdParams { - /** 记录的Id */ - recordId?: string; -} -/** - * 标记微课完成 返回结果定义 - * @apiName biz.edu.finishMiniCourseByRecordId - */ -export interface IBizEduFinishMiniCourseByRecordIdResult { - /** 1为成功,0位失败 */ - success: number; -} -/** - * 标记微课完成 - * @apiName biz.edu.finishMiniCourseByRecordId - * @supportVersion ios: 6.0.15 android: 6.0.15 - */ -export declare function finishMiniCourseByRecordId$(params: IBizEduFinishMiniCourseByRecordIdParams): Promise; -export default finishMiniCourseByRecordId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/finishMiniCourseByRecordId.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/finishMiniCourseByRecordId.js deleted file mode 100644 index 4845aca2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/finishMiniCourseByRecordId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function finishMiniCourseByRecordId$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.finishMiniCourseByRecordId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.edu.finishMiniCourseByRecordId",exports.finishMiniCourseByRecordId$=finishMiniCourseByRecordId$,exports.default=finishMiniCourseByRecordId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/getMiniCourseDraftList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/getMiniCourseDraftList.d.ts deleted file mode 100644 index be1f9177..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/getMiniCourseDraftList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.edu.getMiniCourseDraftList"; -/** - * 获取微课草稿列表 请求参数定义 - * @apiName biz.edu.getMiniCourseDraftList - */ -export interface IBizEduGetMiniCourseDraftListParams { -} -/** - * 获取微课草稿列表 返回结果定义 - * @apiName biz.edu.getMiniCourseDraftList - */ -export interface IBizEduGetMiniCourseDraftListResult { - [key: string]: any; -} -/** - * 获取微课草稿列表 - * @apiName biz.edu.getMiniCourseDraftList - * @supportVersion ios: 6.0.15 android: 6.0.15 - * @author Android:景松 iOS:景松 教育线:林谦、楠者 - */ -export declare function getMiniCourseDraftList$(params: IBizEduGetMiniCourseDraftListParams): Promise; -export default getMiniCourseDraftList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/getMiniCourseDraftList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/getMiniCourseDraftList.js deleted file mode 100644 index 741845be..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/getMiniCourseDraftList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getMiniCourseDraftList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getMiniCourseDraftList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.edu.getMiniCourseDraftList",exports.getMiniCourseDraftList$=getMiniCourseDraftList$,exports.default=getMiniCourseDraftList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/joinClassroom.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/joinClassroom.d.ts deleted file mode 100644 index fd1cda63..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/joinClassroom.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.edu.joinClassroom"; -/** - * 加入在线课堂专业版 请求参数定义 - * @apiName biz.edu.joinClassroom - */ -export interface IBizEduJoinClassroomParams { - /** 加入课堂的参数,该值需要调用开放接口获取; */ - classroomId: string; -} -/** - * 加入在线课堂专业版 返回结果定义 - * @apiName biz.edu.joinClassroom - */ -export interface IBizEduJoinClassroomResult { -} -/** - * 加入在线课堂专业版 - * @apiName biz.edu.joinClassroom - * @supportVersion ios: 6.0.15 android: 6.0.15 pc: 6.0.15 - * @author Android:序望 iOS:橙希 Windows:砺之 教育线:林谦、楠者 - */ -export declare function joinClassroom$(params: IBizEduJoinClassroomParams): Promise; -export default joinClassroom$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/joinClassroom.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/joinClassroom.js deleted file mode 100644 index 18dc0438..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/joinClassroom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function joinClassroom$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.joinClassroom$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.edu.joinClassroom",exports.joinClassroom$=joinClassroom$,exports.default=joinClassroom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/makeMiniCourse.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/makeMiniCourse.d.ts deleted file mode 100644 index 96dcc712..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/makeMiniCourse.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.edu.makeMiniCourse"; -/** - * 创建一个微课 请求参数定义 - * @apiName biz.edu.makeMiniCourse - */ -export interface IBizEduMakeMiniCourseParams { - /** 记录的Id */ - recordId?: string; - /** 会话的ID */ - chatId?: string; - /** 话题 */ - topic?: string; - /** 环境参数 */ - env?: string; - /** 必须是Encode过的string */ - extData?: string; -} -/** - * 创建一个微课 返回结果定义 - * @apiName biz.edu.makeMiniCourse - */ -export interface IBizEduMakeMiniCourseResult { -} -/** - * 创建一个微课 - * @apiName biz.edu.makeMiniCourse - * @supportVersion ios: 6.0.15 android: 6.0.15 - * @author Android:景松 iOS:景松 教育线:林谦、楠者 - */ -export declare function makeMiniCourse$(params: IBizEduMakeMiniCourseParams): Promise; -export default makeMiniCourse$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/makeMiniCourse.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/makeMiniCourse.js deleted file mode 100644 index 56f75fb1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/edu/makeMiniCourse.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function makeMiniCourse$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.makeMiniCourse$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.edu.makeMiniCourse",exports.makeMiniCourse$=makeMiniCourse$,exports.default=makeMiniCourse$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/event/notifyWeex.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/event/notifyWeex.d.ts deleted file mode 100644 index a5b3ff81..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/event/notifyWeex.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.event.notifyWeex"; -/** - * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息 请求参数定义 - * @apiName biz.event.notifyWeex - */ -export interface IBizEventNotifyWeexParams { - [key: string]: any; -} -/** - * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息 返回结果定义 - * @apiName biz.event.notifyWeex - */ -export interface IBizEventNotifyWeexResult { - [key: string]: any; -} -/** - * 在iOS端weex的dd-web组件中,调用此JSAPI可以向weex端发送消息 - * @apiName biz.event.notifyWeex - * @supportVersion ios: 4.5.0 - */ -export declare function notifyWeex$(params: IBizEventNotifyWeexParams): Promise; -export default notifyWeex$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/event/notifyWeex.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/event/notifyWeex.js deleted file mode 100644 index 10fcc9d5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/event/notifyWeex.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function notifyWeex$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.notifyWeex$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.event.notifyWeex",exports.notifyWeex$=notifyWeex$,exports.default=notifyWeex$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/experienceFunction.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/experienceFunction.d.ts deleted file mode 100644 index 74785bf7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/experienceFunction.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.experienceFunction"; -/** - * 体验功能 请求参数定义 - * @apiName biz.faceBox.experienceFunction - */ -export interface IBizFaceBoxExperienceFunctionParams { - [key: string]: any; -} -/** - * 体验功能 返回结果定义 - * @apiName biz.faceBox.experienceFunction - */ -export interface IBizFaceBoxExperienceFunctionResult { - [key: string]: any; -} -/** - * 体验功能 - * @apiName biz.faceBox.experienceFunction - * @supportVersion ios: 4.2.8 android: 4.2.8 - */ -export declare function experienceFunction$(params: IBizFaceBoxExperienceFunctionParams): Promise; -export default experienceFunction$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/experienceFunction.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/experienceFunction.js deleted file mode 100644 index 91be5230..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/experienceFunction.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function experienceFunction$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.experienceFunction$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.experienceFunction",exports.experienceFunction$=experienceFunction$,exports.default=experienceFunction$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/getRecognition.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/getRecognition.d.ts deleted file mode 100644 index 3f6f886b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/getRecognition.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.getRecognition"; -/** - * 获取当前设备模式 请求参数定义 - * @apiName biz.faceBox.getRecognition - */ -export interface IBizFaceBoxGetRecognitionParams { - [key: string]: any; -} -/** - * 获取当前设备模式 返回结果定义 - * @apiName biz.faceBox.getRecognition - */ -export interface IBizFaceBoxGetRecognitionResult { - [key: string]: any; -} -/** - * 获取当前设备模式 - * @apiName biz.faceBox.getRecognition - * @supportVersion ios: 3.5.4 android: 3.5.4 - */ -export declare function getRecognition$(params: IBizFaceBoxGetRecognitionParams): Promise; -export default getRecognition$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/getRecognition.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/getRecognition.js deleted file mode 100644 index 6558232b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/getRecognition.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getRecognition$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getRecognition$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.getRecognition",exports.getRecognition$=getRecognition$,exports.default=getRecognition$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/removeFace.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/removeFace.d.ts deleted file mode 100644 index e16729c0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/removeFace.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.removeFace"; -/** - * 删除已录入的人脸接口 请求参数定义 - * @apiName biz.faceBox.removeFace - */ -export interface IBizFaceBoxRemoveFaceParams { - [key: string]: any; -} -/** - * 删除已录入的人脸接口 返回结果定义 - * @apiName biz.faceBox.removeFace - */ -export interface IBizFaceBoxRemoveFaceResult { - [key: string]: any; -} -/** - * 删除已录入的人脸接口 - * @apiName biz.faceBox.removeFace - * @supportVersion ios: 3.5.4 android: 3.5.4 - */ -export declare function removeFace$(params: IBizFaceBoxRemoveFaceParams): Promise; -export default removeFace$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/removeFace.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/removeFace.js deleted file mode 100644 index 42d6a238..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/removeFace.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeFace$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeFace$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.removeFace",exports.removeFace$=removeFace$,exports.default=removeFace$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/sendMessageToContact.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/sendMessageToContact.d.ts deleted file mode 100644 index 792f3132..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/sendMessageToContact.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.sendMessageToContact"; -/** - * 发送消息 请求参数定义 - * @apiName biz.faceBox.sendMessageToContact - */ -export interface IBizFaceBoxSendMessageToContactParams { - [key: string]: any; -} -/** - * 发送消息 返回结果定义 - * @apiName biz.faceBox.sendMessageToContact - */ -export interface IBizFaceBoxSendMessageToContactResult { - [key: string]: any; -} -/** - * 发送消息 - * @apiName biz.faceBox.sendMessageToContact - * @supportVersion ios: 4.2.8 android: 4.2.8 - */ -export declare function sendMessageToContact$(params: IBizFaceBoxSendMessageToContactParams): Promise; -export default sendMessageToContact$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/sendMessageToContact.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/sendMessageToContact.js deleted file mode 100644 index 27758bf5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/sendMessageToContact.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMessageToContact$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMessageToContact$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.sendMessageToContact",exports.sendMessageToContact$=sendMessageToContact$,exports.default=sendMessageToContact$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/setRecognition.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/setRecognition.d.ts deleted file mode 100644 index ae2aeb8c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/setRecognition.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.setRecognition"; -/** - * 设置当前设备模式 请求参数定义 - * @apiName biz.faceBox.setRecognition - */ -export interface IBizFaceBoxSetRecognitionParams { - [key: string]: any; -} -/** - * 设置当前设备模式 返回结果定义 - * @apiName biz.faceBox.setRecognition - */ -export interface IBizFaceBoxSetRecognitionResult { - [key: string]: any; -} -/** - * 设置当前设备模式 - * @apiName biz.faceBox.setRecognition - * @supportVersion ios: 3.5.4 android: 3.5.4 - */ -export declare function setRecognition$(params: IBizFaceBoxSetRecognitionParams): Promise; -export default setRecognition$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/setRecognition.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/setRecognition.js deleted file mode 100644 index 931608e1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/setRecognition.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setRecognition$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setRecognition$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.setRecognition",exports.setRecognition$=setRecognition$,exports.default=setRecognition$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/showRemind.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/showRemind.d.ts deleted file mode 100644 index 1f0bc2fd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/showRemind.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.showRemind"; -/** - * 提醒用户录入人脸 请求参数定义 - * @apiName biz.faceBox.showRemind - */ -export interface IBizFaceBoxShowRemindParams { - [key: string]: any; -} -/** - * 提醒用户录入人脸 返回结果定义 - * @apiName biz.faceBox.showRemind - */ -export interface IBizFaceBoxShowRemindResult { - [key: string]: any; -} -/** - * 提醒用户录入人脸 - * @apiName biz.faceBox.showRemind - * @supportVersion ios: 3.5.4 android: 3.5.4 - */ -export declare function showRemind$(params: IBizFaceBoxShowRemindParams): Promise; -export default showRemind$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/showRemind.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/showRemind.js deleted file mode 100644 index 538144cd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/showRemind.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showRemind$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showRemind$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.showRemind",exports.showRemind$=showRemind$,exports.default=showRemind$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecord.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecord.d.ts deleted file mode 100644 index 5533fbdc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecord.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.startCameraRecord"; -/** - * 唤起人脸录入界面 请求参数定义 - * @apiName biz.faceBox.startCameraRecord - */ -export interface IBizFaceBoxStartCameraRecordParams { - [key: string]: any; -} -/** - * 唤起人脸录入界面 返回结果定义 - * @apiName biz.faceBox.startCameraRecord - */ -export interface IBizFaceBoxStartCameraRecordResult { - [key: string]: any; -} -/** - * 唤起人脸录入界面 - * @apiName biz.faceBox.startCameraRecord - * @supportVersion ios: 3.5.4 android: 3.5.4 - */ -export declare function startCameraRecord$(params: IBizFaceBoxStartCameraRecordParams): Promise; -export default startCameraRecord$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecord.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecord.js deleted file mode 100644 index 5127d6ae..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startCameraRecord$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startCameraRecord$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.startCameraRecord",exports.startCameraRecord$=startCameraRecord$,exports.default=startCameraRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecordFromPartner.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecordFromPartner.d.ts deleted file mode 100644 index d2150928..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecordFromPartner.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.startCameraRecordFromPartner"; -/** - * 唤起人脸录入界面 请求参数定义 - * @apiName biz.faceBox.startCameraRecordFromPartner - */ -export interface IBizFaceBoxStartCameraRecordFromPartnerParams { - [key: string]: any; -} -/** - * 唤起人脸录入界面 返回结果定义 - * @apiName biz.faceBox.startCameraRecordFromPartner - */ -export interface IBizFaceBoxStartCameraRecordFromPartnerResult { - [key: string]: any; -} -/** - * 唤起人脸录入界面 - * @apiName biz.faceBox.startCameraRecordFromPartner - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function startCameraRecordFromPartner$(params: IBizFaceBoxStartCameraRecordFromPartnerParams): Promise; -export default startCameraRecordFromPartner$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecordFromPartner.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecordFromPartner.js deleted file mode 100644 index c1595370..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startCameraRecordFromPartner.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startCameraRecordFromPartner$(r){return common_1.ddSdk.invokeAPI(exports.apiName,r)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startCameraRecordFromPartner$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.startCameraRecordFromPartner",exports.startCameraRecordFromPartner$=startCameraRecordFromPartner$,exports.default=startCameraRecordFromPartner$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startPictureRecord.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startPictureRecord.d.ts deleted file mode 100644 index 8b27f4cd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startPictureRecord.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.faceBox.startPictureRecord"; -/** - * 唤起图片选择界面然后检测人脸 请求参数定义 - * @apiName biz.faceBox.startPictureRecord - */ -export interface IBizFaceBoxStartPictureRecordParams { - [key: string]: any; -} -/** - * 唤起图片选择界面然后检测人脸 返回结果定义 - * @apiName biz.faceBox.startPictureRecord - */ -export interface IBizFaceBoxStartPictureRecordResult { - [key: string]: any; -} -/** - * 唤起图片选择界面然后检测人脸 - * @apiName biz.faceBox.startPictureRecord - * @supportVersion ios: 3.5.4 android: 3.5.4 - */ -export declare function startPictureRecord$(params: IBizFaceBoxStartPictureRecordParams): Promise; -export default startPictureRecord$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startPictureRecord.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startPictureRecord.js deleted file mode 100644 index 0fadfb50..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/faceBox/startPictureRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startPictureRecord$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startPictureRecord$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.faceBox.startPictureRecord",exports.startPictureRecord$=startPictureRecord$,exports.default=startPictureRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/intent/fetchData.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/intent/fetchData.d.ts deleted file mode 100644 index 18d727cd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/intent/fetchData.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.intent.fetchData"; -/** - * 选择图片 请求参数定义 - * @apiName biz.intent.fetchData - */ -export interface IBizIntentFetchDataParams { - [key: string]: any; -} -/** - * 选择图片 返回结果定义 - * @apiName biz.intent.fetchData - */ -export interface IBizIntentFetchDataResult { - [key: string]: any; -} -/** - * 选择图片 - * @apiName biz.intent.fetchData - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function fetchData$(params: IBizIntentFetchDataParams): Promise; -export default fetchData$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/intent/fetchData.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/intent/fetchData.js deleted file mode 100644 index f5e336b4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/intent/fetchData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetchData$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetchData$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.intent.fetchData",exports.fetchData$=fetchData$,exports.default=fetchData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bind.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bind.d.ts deleted file mode 100644 index 77bc3b98..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bind.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.iot.bind"; -/** - * iot设备绑定 请求参数定义 - * @apiName biz.iot.bind - */ -export interface IBizIotBindParams { - [key: string]: any; -} -/** - * iot设备绑定 返回结果定义 - * @apiName biz.iot.bind - */ -export interface IBizIotBindResult { - [key: string]: any; -} -/** - * iot设备绑定 - * @apiName biz.iot.bind - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function bind$(params: IBizIotBindParams): Promise; -export default bind$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bind.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bind.js deleted file mode 100644 index 920886f6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bind.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bind$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.bind$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.iot.bind",exports.bind$=bind$,exports.default=bind$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bindMeetingRoom.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bindMeetingRoom.d.ts deleted file mode 100644 index 25e0f0b1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bindMeetingRoom.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.iot.bindMeetingRoom"; -/** - * 设备与会议室绑定 请求参数定义 - * @apiName biz.iot.bindMeetingRoom - */ -export interface IBizIotBindMeetingRoomParams { - [key: string]: any; -} -/** - * 设备与会议室绑定 返回结果定义 - * @apiName biz.iot.bindMeetingRoom - */ -export interface IBizIotBindMeetingRoomResult { - [key: string]: any; -} -/** - * 设备与会议室绑定 - * @apiName biz.iot.bindMeetingRoom - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function bindMeetingRoom$(params: IBizIotBindMeetingRoomParams): Promise; -export default bindMeetingRoom$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bindMeetingRoom.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bindMeetingRoom.js deleted file mode 100644 index 267274b5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/bindMeetingRoom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bindMeetingRoom$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.bindMeetingRoom$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.iot.bindMeetingRoom",exports.bindMeetingRoom$=bindMeetingRoom$,exports.default=bindMeetingRoom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/getDeviceProperties.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/getDeviceProperties.d.ts deleted file mode 100644 index 1a163dc4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/getDeviceProperties.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.iot.getDeviceProperties"; -/** - * 智能硬获取设备属性 请求参数定义 - * @apiName biz.iot.getDeviceProperties - */ -export interface IBizIotGetDevicePropertiesParams { - /** 设备的id */ - deviceId: string; - /** 设备所在的server id,产品id */ - devServerId: string; -} -/** - * 智能硬获取设备属性 返回结果定义 - * @apiName biz.iot.getDeviceProperties - */ -export interface IBizIotGetDevicePropertiesResult { - /** 设置属性集合的json string(为属性的key, value集合) */ - property: string; -} -/** - * 智能硬获取设备属性 - * @apiName biz.iot.getDeviceProperties - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function getDeviceProperties$(params: IBizIotGetDevicePropertiesParams): Promise; -export default getDeviceProperties$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/getDeviceProperties.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/getDeviceProperties.js deleted file mode 100644 index 04dc2e7a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/getDeviceProperties.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDeviceProperties$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDeviceProperties$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.iot.getDeviceProperties",exports.getDeviceProperties$=getDeviceProperties$,exports.default=getDeviceProperties$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/invokeThingService.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/invokeThingService.d.ts deleted file mode 100644 index b7285680..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/invokeThingService.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.iot.invokeThingService"; -/** - * 调用iot物模型服务 请求参数定义 - * @apiName biz.iot.invokeThingService - */ -export interface IBizIotInvokeThingServiceParams { - /** 设备的id */ - deviceId: string; - /** 设备所在的server id */ - devServerId: number; - /** 要设置属性集合的json string */ - params: string; -} -/** - * 调用iot物模型服务 返回结果定义 - * @apiName biz.iot.invokeThingService - */ -export interface IBizIotInvokeThingServiceResult { - property: string; -} -/** - * 调用iot物模型服务 - * @apiName biz.iot.invokeThingService - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function invokeThingService$(params: IBizIotInvokeThingServiceParams): Promise; -export default invokeThingService$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/invokeThingService.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/invokeThingService.js deleted file mode 100644 index 7070cba4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/invokeThingService.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function invokeThingService$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.invokeThingService$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.iot.invokeThingService",exports.invokeThingService$=invokeThingService$,exports.default=invokeThingService$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/queryMeetingRoomList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/queryMeetingRoomList.d.ts deleted file mode 100644 index c57c224a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/queryMeetingRoomList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.iot.queryMeetingRoomList"; -/** - * 查询会议室列表 请求参数定义 - * @apiName biz.iot.queryMeetingRoomList - */ -export interface IBizIotQueryMeetingRoomListParams { - [key: string]: any; -} -/** - * 查询会议室列表 返回结果定义 - * @apiName biz.iot.queryMeetingRoomList - */ -export interface IBizIotQueryMeetingRoomListResult { - [key: string]: any; -} -/** - * 查询会议室列表 - * @apiName biz.iot.queryMeetingRoomList - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function queryMeetingRoomList$(params: IBizIotQueryMeetingRoomListParams): Promise; -export default queryMeetingRoomList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/queryMeetingRoomList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/queryMeetingRoomList.js deleted file mode 100644 index c37df51f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/queryMeetingRoomList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryMeetingRoomList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryMeetingRoomList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.iot.queryMeetingRoomList",exports.queryMeetingRoomList$=queryMeetingRoomList$,exports.default=queryMeetingRoomList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/setDeviceProperties.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/setDeviceProperties.d.ts deleted file mode 100644 index c741e4d5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/setDeviceProperties.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.iot.setDeviceProperties"; -/** - * 智能硬件设置设备属性 请求参数定义 - * @apiName biz.iot.setDeviceProperties - */ -export interface IBizIotSetDevicePropertiesParams { - /** 设备的id */ - deviceId: string; - /** 设备所在的server id,产品id */ - devServerId: string; - /** 要设置属性集合的json string(为属性的key, value集合) */ - property: string; -} -/** - * 智能硬件设置设备属性 返回结果定义 - * @apiName biz.iot.setDeviceProperties - */ -export interface IBizIotSetDevicePropertiesResult { -} -/** - * 智能硬件设置设备属性 - * @apiName biz.iot.setDeviceProperties - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function setDeviceProperties$(params: IBizIotSetDevicePropertiesParams): Promise; -export default setDeviceProperties$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/setDeviceProperties.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/setDeviceProperties.js deleted file mode 100644 index 8c6ec063..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/setDeviceProperties.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setDeviceProperties$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setDeviceProperties$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.iot.setDeviceProperties",exports.setDeviceProperties$=setDeviceProperties$,exports.default=setDeviceProperties$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/unbind.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/unbind.d.ts deleted file mode 100644 index dc8f10da..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/unbind.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.iot.unbind"; -/** - * iot设备解绑 请求参数定义 - * @apiName biz.iot.unbind - */ -export interface IBizIotUnbindParams { - [key: string]: any; -} -/** - * iot设备解绑 返回结果定义 - * @apiName biz.iot.unbind - */ -export interface IBizIotUnbindResult { - [key: string]: any; -} -/** - * iot设备解绑 - * @apiName biz.iot.unbind - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function unbind$(params: IBizIotUnbindParams): Promise; -export default unbind$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/unbind.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/unbind.js deleted file mode 100644 index b43ea7a6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/iot/unbind.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unbind$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unbind$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.iot.unbind",exports.unbind$=unbind$,exports.default=unbind$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/kingGrid/approvalPdf.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/kingGrid/approvalPdf.d.ts deleted file mode 100644 index 5360a8e1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/kingGrid/approvalPdf.d.ts +++ /dev/null @@ -1,49 +0,0 @@ -export declare const apiName = "biz.kingGrid.approvalPdf"; -/** - * 金格单PDF审批功能 请求参数定义 - * @apiName biz.kingGrid.approvalPdf - */ -export interface IBizKingGridApprovalPdfParams { - /** PDF编辑作者 */ - pdfEditorAuthor: string; - /** PDF下载地址 */ - pdfDownloadUrl: string; - /** PDF编辑上传方法 采用POST 上传key为uploadFileName到uploadUrl的地址 */ - pdfUploadMethod: { - /** 上传地址 */ - uploadUrl: string; - /** 文件流对应的key */ - uploadFileName: string; - /** httpform */ - uploadForms: { - [key: string]: string; - }; - /** httpheader */ - uploadHeaders: { - [key: string]: string; - }; - }; -} -/** - * 金格单PDF审批功能 返回结果定义 - * @apiName biz.kingGrid.approvalPdf - */ -export interface IBizKingGridApprovalPdfResult { - /** - * -1 OK //完成了批注并上传成功 - * 4 //文档未修改 用户不选择保存 - * 0 //取消 没有任何相关操作 - * 2 //下载PDF失败 - * 3 //上传PDF失败 - * 5 //打开文件失败 - */ - result: string; -} -/** - * 金格单PDF审批功能 - * 仅支持android 北京政府项目客户端 - * @apiName biz.kingGrid.approvalPdf - * @supportVersion android: 4.5.16 - */ -export declare function approvalPdf$(params: IBizKingGridApprovalPdfParams): Promise; -export default approvalPdf$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/kingGrid/approvalPdf.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/kingGrid/approvalPdf.js deleted file mode 100644 index 471f091a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/kingGrid/approvalPdf.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function approvalPdf$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.approvalPdf$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.kingGrid.approvalPdf",exports.approvalPdf$=approvalPdf$,exports.default=approvalPdf$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/chooseLiveGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/chooseLiveGroup.d.ts deleted file mode 100644 index 5e57d648..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/chooseLiveGroup.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.chooseLiveGroup"; -/** - * 调起选人组件,选择可以分享大直播的群 请求参数定义 - * @apiName biz.live.chooseLiveGroup - */ -export interface IBizLiveChooseLiveGroupParams { - [key: string]: any; -} -/** - * 调起选人组件,选择可以分享大直播的群 返回结果定义 - * @apiName biz.live.chooseLiveGroup - */ -export interface IBizLiveChooseLiveGroupResult { - [key: string]: any; -} -/** - * 调起选人组件,选择可以分享大直播的群 - * @apiName biz.live.chooseLiveGroup - * @supportVersion pc: 4.5.5 - */ -export declare function chooseLiveGroup$(params: IBizLiveChooseLiveGroupParams): Promise; -export default chooseLiveGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/chooseLiveGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/chooseLiveGroup.js deleted file mode 100644 index f7c5324b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/chooseLiveGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseLiveGroup$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseLiveGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.chooseLiveGroup",exports.chooseLiveGroup$=chooseLiveGroup$,exports.default=chooseLiveGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/destroyPlayer.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/destroyPlayer.d.ts deleted file mode 100644 index 93b85dd8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/destroyPlayer.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.destroyPlayer"; -/** - * 销毁播放器 请求参数定义 - * @apiName biz.live.destroyPlayer - */ -export interface IBizLiveDestroyPlayerParams { - [key: string]: any; -} -/** - * 销毁播放器 返回结果定义 - * @apiName biz.live.destroyPlayer - */ -export interface IBizLiveDestroyPlayerResult { - [key: string]: any; -} -/** - * 销毁播放器 - * @apiName biz.live.destroyPlayer - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function destroyPlayer$(params: IBizLiveDestroyPlayerParams): Promise; -export default destroyPlayer$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/destroyPlayer.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/destroyPlayer.js deleted file mode 100644 index 31e3e087..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/destroyPlayer.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function destroyPlayer$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.destroyPlayer$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.destroyPlayer",exports.destroyPlayer$=destroyPlayer$,exports.default=destroyPlayer$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getAllLiveList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getAllLiveList.d.ts deleted file mode 100644 index 2a61b2bd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getAllLiveList.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "biz.live.getAllLiveList"; -/** - * 获取当前正在进行的直播 请求参数定义 - * @apiName biz.live.getAllLiveList - */ -export interface IBizLiveGetAllLiveListParams { -} -/** - * 获取当前正在进行的直播 返回结果定义 - * @apiName biz.live.getAllLiveList - */ -export declare type IBizLiveGetAllLiveListResult = Array<{ - /** 群id */ - cid: string; - /** 群名称 */ - cidName: string; - /** 直播uuid */ - liveUuid: string; - /** 直播标题 */ - title: string; - /** 直播封面图 */ - coverUrl: string; -}>; -/** - * 获取当前正在进行的直播 - * @apiName biz.live.getAllLiveList - * @supportVersion ios: 4.5.16 android: 4.5.16 pc: 4.5.16 - */ -export declare function getAllLiveList$(params: IBizLiveGetAllLiveListParams): Promise; -export default getAllLiveList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getAllLiveList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getAllLiveList.js deleted file mode 100644 index 5d1674eb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getAllLiveList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAllLiveList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAllLiveList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.getAllLiveList",exports.getAllLiveList$=getAllLiveList$,exports.default=getAllLiveList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getDynamicMsgCount.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getDynamicMsgCount.d.ts deleted file mode 100644 index fab51d4d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getDynamicMsgCount.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.live.getDynamicMsgCount"; -/** - * 获取直播动态消息数 请求参数定义 - * @apiName biz.live.getDynamicMsgCount - */ -export interface IBizLiveGetDynamicMsgCountParams { - [key: string]: any; -} -/** - * 获取直播动态消息数 返回结果定义 - * @apiName biz.live.getDynamicMsgCount - */ -export interface IBizLiveGetDynamicMsgCountResult { - /** 未读动态数 */ - count: number; -} -/** - * 获取直播动态消息数 - * @apiName biz.live.getDynamicMsgCount - * @supportVersion ios: 4.6.10 android: 4.6.10 - */ -export declare function getDynamicMsgCount$(params: IBizLiveGetDynamicMsgCountParams): Promise; -export default getDynamicMsgCount$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getDynamicMsgCount.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getDynamicMsgCount.js deleted file mode 100644 index 96241525..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getDynamicMsgCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDynamicMsgCount$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDynamicMsgCount$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.getDynamicMsgCount",exports.getDynamicMsgCount$=getDynamicMsgCount$,exports.default=getDynamicMsgCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveFuncMsgs.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveFuncMsgs.d.ts deleted file mode 100644 index 23e000a1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveFuncMsgs.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -export declare const apiName = "biz.live.getLiveFuncMsgs"; -/** - * 拉群群直播功能会话消息 请求参数定义 - * @apiName biz.live.getLiveFuncMsgs - */ -export interface IBizLiveGetLiveFuncMsgsParams { - /** 向前拉取 */ - forward: any; - /** 拉取位置 */ - cursor: any; - /** 消息个数 */ - size: number; -} -/** - * 拉群群直播功能会话消息 返回结果定义 - * @apiName biz.live.getLiveFuncMsgs - */ -export declare type IBizLiveGetLiveFuncMsgsResult = Array<{ - text: string; - extension: { - liveEntryType: string; - coverUrl: string; - title: string; - timeStamp: any; - nick: string; - uuid: string; - anchorId: string; - cid: string; - conversationTitle: string; - }; -}>; -/** - * 拉群群直播功能会话消息 - * @apiName biz.live.getLiveFuncMsgs - * @supportVersion ios: 4.6.10 android: 4.6.10 - */ -export declare function getLiveFuncMsgs$(params: IBizLiveGetLiveFuncMsgsParams): Promise; -export default getLiveFuncMsgs$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveFuncMsgs.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveFuncMsgs.js deleted file mode 100644 index 4f333fa4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveFuncMsgs.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLiveFuncMsgs$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLiveFuncMsgs$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.getLiveFuncMsgs",exports.getLiveFuncMsgs$=getLiveFuncMsgs$,exports.default=getLiveFuncMsgs$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveInfos.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveInfos.d.ts deleted file mode 100644 index 3913ae6f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveInfos.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.getLiveInfos"; -/** - * 获取群直播的状态信息 请求参数定义 - * @apiName biz.live.getLiveInfos - */ -export interface IBizLiveGetLiveInfosParams { - [key: string]: any; -} -/** - * 获取群直播的状态信息 返回结果定义 - * @apiName biz.live.getLiveInfos - */ -export interface IBizLiveGetLiveInfosResult { - [key: string]: any; -} -/** - * 获取群直播的状态信息 - * @apiName biz.live.getLiveInfos - * @supportVersion pc: 4.5.5 - */ -export declare function getLiveInfos$(params: IBizLiveGetLiveInfosParams): Promise; -export default getLiveInfos$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveInfos.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveInfos.js deleted file mode 100644 index 9d8e00b1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveInfos.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLiveInfos$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLiveInfos$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.getLiveInfos",exports.getLiveInfos$=getLiveInfos$,exports.default=getLiveInfos$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveStatistics.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveStatistics.d.ts deleted file mode 100644 index 24c1d7b2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveStatistics.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.getLiveStatistics"; -/** - * 获取录播统计信息 请求参数定义 - * @apiName biz.live.getLiveStatistics - */ -export interface IBizLiveGetLiveStatisticsParams { - [key: string]: any; -} -/** - * 获取录播统计信息 返回结果定义 - * @apiName biz.live.getLiveStatistics - */ -export interface IBizLiveGetLiveStatisticsResult { - [key: string]: any; -} -/** - * 获取录播统计信息 - * @apiName biz.live.getLiveStatistics - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function getLiveStatistics$(params: IBizLiveGetLiveStatisticsParams): Promise; -export default getLiveStatistics$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveStatistics.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveStatistics.js deleted file mode 100644 index 715f77ec..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getLiveStatistics.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLiveStatistics$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLiveStatistics$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.getLiveStatistics",exports.getLiveStatistics$=getLiveStatistics$,exports.default=getLiveStatistics$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlaybackList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlaybackList.d.ts deleted file mode 100644 index b286f717..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlaybackList.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -export declare const apiName = "biz.live.getPlaybackList"; -/** - * 获取回放 请求参数定义 - * @apiName biz.live.getPlaybackList - */ -export interface IBizLiveGetPlaybackListParams { - /** 页码 */ - page: number; - /** 每页容量 */ - page_size: number; - /** 筛选类型(0 我未看的, 1 我看过的, 2 全部, 3 我发起的) */ - searchType: number; -} -/** - * 获取回放 返回结果定义 - * @apiName biz.live.getPlaybackList - */ -export interface IBizLiveGetPlaybackListResult { - records: Array<{ - anchorId: string; - liveUuid: string; - title: string; - coverUrl: string; - playUrl: string; - status: number; - datetime: string; - duration: number; - key: string; - hasWatched: boolean; - liveType: number; - isLiveAbord: number; - conversationName: string; - pv: number; - praiseCount: number; - largeCoverUrl: string; - }>; - ended: boolean; -} -/** - * 获取回放 - * @apiName biz.live.getPlaybackList - * @supportVersion ios: 4.5.16 android: 4.5.16 pc: 4.5.16 - */ -export declare function getPlaybackList$(params: IBizLiveGetPlaybackListParams): Promise; -export default getPlaybackList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlaybackList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlaybackList.js deleted file mode 100644 index e65440aa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlaybackList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPlaybackList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPlaybackList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.getPlaybackList",exports.getPlaybackList$=getPlaybackList$,exports.default=getPlaybackList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlayerPosition.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlayerPosition.d.ts deleted file mode 100644 index b5fd69d6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlayerPosition.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.live.getPlayerPosition"; -/** - * 当前正在进行直播回放时调用该jsapi,获取到当前播放的时长,单位为秒(S),用于后续再次播放时从该位置开始播放 请求参数定义 - * @apiName biz.live.getPlayerPosition - */ -export interface IBizLiveGetPlayerPositionParams { -} -/** - * 当前正在进行直播回放时调用该jsapi,获取到当前播放的时长,单位为秒(S),用于后续再次播放时从该位置开始播放 返回结果定义 - * @apiName biz.live.getPlayerPosition - */ -export interface IBizLiveGetPlayerPositionResult { - /** 当前播放时长,单位为秒 */ - position: number; -} -/** - * 当前正在进行直播回放时调用该jsapi,获取到当前播放的时长,单位为秒(S),用于后续再次播放时从该位置开始播放 - * @apiName biz.live.getPlayerPosition - * @supportVersion ios: 4.7.11 android: 4.7.11 - * @author iOS: 钧鸿; Android: 倾池 - */ -export declare function getPlayerPosition$(params: IBizLiveGetPlayerPositionParams): Promise; -export default getPlayerPosition$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlayerPosition.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlayerPosition.js deleted file mode 100644 index 82ef0b8e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getPlayerPosition.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPlayerPosition$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPlayerPosition$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.getPlayerPosition",exports.getPlayerPosition$=getPlayerPosition$,exports.default=getPlayerPosition$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getStickyStatus.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getStickyStatus.d.ts deleted file mode 100644 index 1901838d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getStickyStatus.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.getStickyStatus"; -/** - * 查询群直播功能会话置顶状态 请求参数定义 - * @apiName biz.live.getStickyStatus - */ -export interface IBizLiveGetStickyStatusParams { - [key: string]: any; -} -/** - * 查询群直播功能会话置顶状态 返回结果定义 - * @apiName biz.live.getStickyStatus - */ -export interface IBizLiveGetStickyStatusResult { - status: boolean; -} -/** - * 查询群直播功能会话置顶状态 - * @apiName biz.live.getStickyStatus - * @supportVersion ios: 4.6.0 android: 4.6.0 - */ -export declare function getStickyStatus$(params: IBizLiveGetStickyStatusParams): Promise; -export default getStickyStatus$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getStickyStatus.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getStickyStatus.js deleted file mode 100644 index 647ad2c6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/getStickyStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getStickyStatus$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getStickyStatus$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.getStickyStatus",exports.getStickyStatus$=getStickyStatus$,exports.default=getStickyStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/hidePlayer.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/hidePlayer.d.ts deleted file mode 100644 index 37e8893c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/hidePlayer.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.hidePlayer"; -/** - * 隐藏直播播放器 请求参数定义 - * @apiName biz.live.hidePlayer - */ -export interface IBizLiveHidePlayerParams { - [key: string]: any; -} -/** - * 隐藏直播播放器 返回结果定义 - * @apiName biz.live.hidePlayer - */ -export interface IBizLiveHidePlayerResult { - [key: string]: any; -} -/** - * 隐藏直播播放器 - * @apiName biz.live.hidePlayer - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function hidePlayer$(params: IBizLiveHidePlayerParams): Promise; -export default hidePlayer$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/hidePlayer.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/hidePlayer.js deleted file mode 100644 index 88bf67cb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/hidePlayer.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hidePlayer$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.hidePlayer$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.hidePlayer",exports.hidePlayer$=hidePlayer$,exports.default=hidePlayer$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/initPlayer.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/initPlayer.d.ts deleted file mode 100644 index 29778915..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/initPlayer.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.initPlayer"; -/** - * 初始化直播播放器 请求参数定义 - * @apiName biz.live.initPlayer - */ -export interface IBizLiveInitPlayerParams { - [key: string]: any; -} -/** - * 初始化直播播放器 返回结果定义 - * @apiName biz.live.initPlayer - */ -export interface IBizLiveInitPlayerResult { - [key: string]: any; -} -/** - * 初始化直播播放器 - * @apiName biz.live.initPlayer - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function initPlayer$(params: IBizLiveInitPlayerParams): Promise; -export default initPlayer$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/initPlayer.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/initPlayer.js deleted file mode 100644 index f1fa4319..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/initPlayer.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function initPlayer$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.initPlayer$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.initPlayer",exports.initPlayer$=initPlayer$,exports.default=initPlayer$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveRecords.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveRecords.d.ts deleted file mode 100644 index 1efe4fc3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveRecords.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.listLiveRecords"; -/** - * 获取录播列表 请求参数定义 - * @apiName biz.live.listLiveRecords - */ -export interface IBizLiveListLiveRecordsParams { - [key: string]: any; -} -/** - * 获取录播列表 返回结果定义 - * @apiName biz.live.listLiveRecords - */ -export interface IBizLiveListLiveRecordsResult { - [key: string]: any; -} -/** - * 获取录播列表 - * @apiName biz.live.listLiveRecords - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function listLiveRecords$(params: IBizLiveListLiveRecordsParams): Promise; -export default listLiveRecords$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveRecords.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveRecords.js deleted file mode 100644 index 8d979f43..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveRecords.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function listLiveRecords$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.listLiveRecords$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.listLiveRecords",exports.listLiveRecords$=listLiveRecords$,exports.default=listLiveRecords$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveViewers.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveViewers.d.ts deleted file mode 100644 index fd2f6d18..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveViewers.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.listLiveViewers"; -/** - * 获取观众列表 请求参数定义 - * @apiName biz.live.listLiveViewers - */ -export interface IBizLiveListLiveViewersParams { - [key: string]: any; -} -/** - * 获取观众列表 返回结果定义 - * @apiName biz.live.listLiveViewers - */ -export interface IBizLiveListLiveViewersResult { - [key: string]: any; -} -/** - * 获取观众列表 - * @apiName biz.live.listLiveViewers - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function listLiveViewers$(params: IBizLiveListLiveViewersParams): Promise; -export default listLiveViewers$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveViewers.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveViewers.js deleted file mode 100644 index 16ed3f68..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/listLiveViewers.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function listLiveViewers$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.listLiveViewers$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.listLiveViewers",exports.listLiveViewers$=listLiveViewers$,exports.default=listLiveViewers$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2GroupAnchorList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2GroupAnchorList.d.ts deleted file mode 100644 index d1cff254..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2GroupAnchorList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.nav2GroupAnchorList"; -/** - * 跳转群主播列表页面 请求参数定义 - * @apiName biz.live.nav2GroupAnchorList - */ -export interface IBizLiveNav2GroupAnchorListParams { - [key: string]: any; -} -/** - * 跳转群主播列表页面 返回结果定义 - * @apiName biz.live.nav2GroupAnchorList - */ -export interface IBizLiveNav2GroupAnchorListResult { - [key: string]: any; -} -/** - * 跳转群主播列表页面 - * @apiName biz.live.nav2GroupAnchorList - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function nav2GroupAnchorList$(params: IBizLiveNav2GroupAnchorListParams): Promise; -export default nav2GroupAnchorList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2GroupAnchorList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2GroupAnchorList.js deleted file mode 100644 index 93408d19..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2GroupAnchorList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nav2GroupAnchorList$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.nav2GroupAnchorList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.nav2GroupAnchorList",exports.nav2GroupAnchorList$=nav2GroupAnchorList$,exports.default=nav2GroupAnchorList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2PlayVideo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2PlayVideo.d.ts deleted file mode 100644 index 2c3698f6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2PlayVideo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.nav2PlayVideo"; -/** - * 跳转至播放页面 请求参数定义 - * @apiName biz.live.nav2PlayVideo - */ -export interface IBizLiveNav2PlayVideoParams { - [key: string]: any; -} -/** - * 跳转至播放页面 返回结果定义 - * @apiName biz.live.nav2PlayVideo - */ -export interface IBizLiveNav2PlayVideoResult { - [key: string]: any; -} -/** - * 跳转至播放页面 - * @apiName biz.live.nav2PlayVideo - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function nav2PlayVideo$(params: IBizLiveNav2PlayVideoParams): Promise; -export default nav2PlayVideo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2PlayVideo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2PlayVideo.js deleted file mode 100644 index 021e8035..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/nav2PlayVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nav2PlayVideo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.nav2PlayVideo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.nav2PlayVideo",exports.nav2PlayVideo$=nav2PlayVideo$,exports.default=nav2PlayVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPause.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPause.d.ts deleted file mode 100644 index 796e4b4b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPause.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.playerPause"; -/** - * 直播播放器暂停 请求参数定义 - * @apiName biz.live.playerPause - */ -export interface IBizLivePlayerPauseParams { - [key: string]: any; -} -/** - * 直播播放器暂停 返回结果定义 - * @apiName biz.live.playerPause - */ -export interface IBizLivePlayerPauseResult { - [key: string]: any; -} -/** - * 直播播放器暂停 - * @apiName biz.live.playerPause - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function playerPause$(params: IBizLivePlayerPauseParams): Promise; -export default playerPause$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPause.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPause.js deleted file mode 100644 index 6d874a90..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPause.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function playerPause$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.playerPause$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.playerPause",exports.playerPause$=playerPause$,exports.default=playerPause$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPlay.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPlay.d.ts deleted file mode 100644 index a6c071b0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPlay.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.playerPlay"; -/** - * 直播播放器播放 请求参数定义 - * @apiName biz.live.playerPlay - */ -export interface IBizLivePlayerPlayParams { - [key: string]: any; -} -/** - * 直播播放器播放 返回结果定义 - * @apiName biz.live.playerPlay - */ -export interface IBizLivePlayerPlayResult { - [key: string]: any; -} -/** - * 直播播放器播放 - * @apiName biz.live.playerPlay - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function playerPlay$(params: IBizLivePlayerPlayParams): Promise; -export default playerPlay$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPlay.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPlay.js deleted file mode 100644 index 1821d9ca..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerPlay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function playerPlay$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.playerPlay$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.playerPlay",exports.playerPlay$=playerPlay$,exports.default=playerPlay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerSeekTo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerSeekTo.d.ts deleted file mode 100644 index e815a003..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerSeekTo.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.live.playerSeekTo"; -/** - * 用于前端指定直播回放播放器当前播放位置,这样下次播放时可以从上次播放的位置开始,不需要重头播放 请求参数定义 - * @apiName biz.live.playerSeekTo - */ -export interface IBizLivePlayerSeekToParams { - /** 当前播放时长,单位为秒 */ - position: number; -} -/** - * 用于前端指定直播回放播放器当前播放位置,这样下次播放时可以从上次播放的位置开始,不需要重头播放 返回结果定义 - * @apiName biz.live.playerSeekTo - */ -export interface IBizLivePlayerSeekToResult { -} -/** - * 用于前端指定直播回放播放器当前播放位置,这样下次播放时可以从上次播放的位置开始,不需要重头播放 - * @apiName biz.live.playerSeekTo - * @supportVersion ios: 4.7.11 android: 4.7.11 - * @author iOS: 钧鸿; Android: 倾池 - */ -export declare function playerSeekTo$(params: IBizLivePlayerSeekToParams): Promise; -export default playerSeekTo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerSeekTo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerSeekTo.js deleted file mode 100644 index 182a9004..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/playerSeekTo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function playerSeekTo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.playerSeekTo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.playerSeekTo",exports.playerSeekTo$=playerSeekTo$,exports.default=playerSeekTo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/setStickyStatus.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/setStickyStatus.d.ts deleted file mode 100644 index 69d42217..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/setStickyStatus.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.setStickyStatus"; -/** - * 设置群直播功能会话置顶状态 请求参数定义 - * @apiName biz.live.setStickyStatus - */ -export interface IBizLiveSetStickyStatusParams { - status: boolean; -} -/** - * 设置群直播功能会话置顶状态 返回结果定义 - * @apiName biz.live.setStickyStatus - */ -export interface IBizLiveSetStickyStatusResult { - [key: string]: any; -} -/** - * 设置群直播功能会话置顶状态 - * @apiName biz.live.setStickyStatus - * @supportVersion ios: 4.6.0 android: 4.6.0 - */ -export declare function setStickyStatus$(params: IBizLiveSetStickyStatusParams): Promise; -export default setStickyStatus$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/setStickyStatus.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/setStickyStatus.js deleted file mode 100644 index e44ac00f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/setStickyStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setStickyStatus$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setStickyStatus$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.setStickyStatus",exports.setStickyStatus$=setStickyStatus$,exports.default=setStickyStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/shareToGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/shareToGroup.d.ts deleted file mode 100644 index 6e83728c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/shareToGroup.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "biz.live.shareToGroup"; -/** - * 分享大直播到某些群 请求参数定义 - * @apiName biz.live.shareToGroup - */ -export interface IBizLiveShareToGroupParams { - /** 当前群id */ - cid: string; - /** 直播的uuid */ - liveuuid: string; - /** 要分享到群的id列表 */ - toCids: string[]; -} -/** - * 分享大直播到某些群 返回结果定义 - * @apiName biz.live.shareToGroup - */ -export interface IBizLiveShareToGroupResult { - /** 成功的cid列表 */ - successCids: string[]; -} -/** - * 分享大直播到某些群 - * @apiName biz.live.shareToGroup - * @supportVersion ios: 4.5.5 android: 4.5.5 - */ -export declare function shareToGroup$(params: IBizLiveShareToGroupParams): Promise; -export default shareToGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/shareToGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/shareToGroup.js deleted file mode 100644 index 15ac47d6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/shareToGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function shareToGroup$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.shareToGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.shareToGroup",exports.shareToGroup$=shareToGroup$,exports.default=shareToGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/showPlayer.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/showPlayer.d.ts deleted file mode 100644 index 0db727a2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/showPlayer.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.showPlayer"; -/** - * 展示直播播放器 请求参数定义 - * @apiName biz.live.showPlayer - */ -export interface IBizLiveShowPlayerParams { - [key: string]: any; -} -/** - * 展示直播播放器 返回结果定义 - * @apiName biz.live.showPlayer - */ -export interface IBizLiveShowPlayerResult { - [key: string]: any; -} -/** - * 展示直播播放器 - * @apiName biz.live.showPlayer - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function showPlayer$(params: IBizLiveShowPlayerParams): Promise; -export default showPlayer$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/showPlayer.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/showPlayer.js deleted file mode 100644 index 64962815..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/showPlayer.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showPlayer$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showPlayer$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.showPlayer",exports.showPlayer$=showPlayer$,exports.default=showPlayer$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startClassRoom.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startClassRoom.d.ts deleted file mode 100644 index c483e969..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startClassRoom.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.startClassRoom"; -/** - * 提供给ISV发起在线课堂的接口 请求参数定义 - * @apiName biz.live.startClassRoom - */ -export interface IBizLiveStartClassRoomParams { - startParam: any; -} -/** - * 提供给ISV发起在线课堂的接口 返回结果定义 - * @apiName biz.live.startClassRoom - */ -export interface IBizLiveStartClassRoomResult { -} -/** - * 提供给ISV发起在线课堂的接口 - * @apiName biz.live.startClassRoom - * @supportVersion pc: 5.1.19 - * @author windows:霁明, mac: 霁明 - */ -export declare function startClassRoom$(params: IBizLiveStartClassRoomParams): Promise; -export default startClassRoom$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startClassRoom.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startClassRoom.js deleted file mode 100644 index 891770b9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startClassRoom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startClassRoom$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startClassRoom$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.startClassRoom",exports.startClassRoom$=startClassRoom$,exports.default=startClassRoom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startDummyLive.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startDummyLive.d.ts deleted file mode 100644 index 0da589b4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startDummyLive.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.startDummyLive"; -/** - * 分享大直播到某个群 请求参数定义 - * @apiName biz.live.startDummyLive - */ -export interface IBizLiveStartDummyLiveParams { - [key: string]: any; -} -/** - * 分享大直播到某个群 返回结果定义 - * @apiName biz.live.startDummyLive - */ -export interface IBizLiveStartDummyLiveResult { - [key: string]: any; -} -/** - * 分享大直播到某个群 - * @apiName biz.live.startDummyLive - * @supportVersion pc: 4.5.5 - */ -export declare function startDummyLive$(params: IBizLiveStartDummyLiveParams): Promise; -export default startDummyLive$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startDummyLive.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startDummyLive.js deleted file mode 100644 index 957fb2e9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startDummyLive.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startDummyLive$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startDummyLive$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.startDummyLive",exports.startDummyLive$=startDummyLive$,exports.default=startDummyLive$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startUnifiedLive.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startUnifiedLive.d.ts deleted file mode 100644 index da2b069e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startUnifiedLive.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.live.startUnifiedLive"; -/** - * 发起公开直播 请求参数定义 - * @apiName biz.live.startUnifiedLive - */ -export interface IBizLiveStartUnifiedLiveParams { - /** 包含直播类型,以及直播的uuid */ - startParam: any; -} -/** - * 发起公开直播 返回结果定义 - * @apiName biz.live.startUnifiedLive - */ -export interface IBizLiveStartUnifiedLiveResult { -} -/** - * 发起公开直播 - * @apiName biz.live.startUnifiedLive - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author windows/mac:霁明 - */ -export declare function startUnifiedLive$(params: IBizLiveStartUnifiedLiveParams): Promise; -export default startUnifiedLive$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startUnifiedLive.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startUnifiedLive.js deleted file mode 100644 index 37e05cbd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/startUnifiedLive.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startUnifiedLive$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startUnifiedLive$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.startUnifiedLive",exports.startUnifiedLive$=startUnifiedLive$,exports.default=startUnifiedLive$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLive.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLive.d.ts deleted file mode 100644 index fa96635d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLive.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.stopDummyLive"; -/** - * 停止分享大直播到某个群 请求参数定义 - * @apiName biz.live.stopDummyLive - */ -export interface IBizLiveStopDummyLiveParams { - [key: string]: any; -} -/** - * 停止分享大直播到某个群 返回结果定义 - * @apiName biz.live.stopDummyLive - */ -export interface IBizLiveStopDummyLiveResult { - [key: string]: any; -} -/** - * 停止分享大直播到某个群 - * @apiName biz.live.stopDummyLive - * @supportVersion pc: 4.5.5 - */ -export declare function stopDummyLive$(params: IBizLiveStopDummyLiveParams): Promise; -export default stopDummyLive$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLive.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLive.js deleted file mode 100644 index 110987f9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLive.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopDummyLive$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopDummyLive$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.stopDummyLive",exports.stopDummyLive$=stopDummyLive$,exports.default=stopDummyLive$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLiveAll.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLiveAll.d.ts deleted file mode 100644 index b146c350..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLiveAll.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.live.stopDummyLiveAll"; -/** - * 停止分享大直播到某些群 请求参数定义 - * @apiName biz.live.stopDummyLiveAll - */ -export interface IBizLiveStopDummyLiveAllParams { - [key: string]: any; -} -/** - * 停止分享大直播到某些群 返回结果定义 - * @apiName biz.live.stopDummyLiveAll - */ -export interface IBizLiveStopDummyLiveAllResult { - [key: string]: any; -} -/** - * 停止分享大直播到某些群 - * @apiName biz.live.stopDummyLiveAll - * @supportVersion pc: 4.5.5 - */ -export declare function stopDummyLiveAll$(params: IBizLiveStopDummyLiveAllParams): Promise; -export default stopDummyLiveAll$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLiveAll.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLiveAll.js deleted file mode 100644 index 37a6086e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/stopDummyLiveAll.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopDummyLiveAll$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopDummyLiveAll$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.stopDummyLiveAll",exports.stopDummyLiveAll$=stopDummyLiveAll$,exports.default=stopDummyLiveAll$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateDrawingCache.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateDrawingCache.d.ts deleted file mode 100644 index 62322712..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateDrawingCache.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "biz.live.updateDrawingCache"; -/** - * 大型直播页面刷新View Cache 请求参数定义 - * @apiName biz.live.updateDrawingCache - */ -export interface IBizLiveUpdateDrawingCacheParams { -} -/** - * 大型直播页面刷新View Cache 返回结果定义 - * @apiName biz.live.updateDrawingCache - */ -export interface IBizLiveUpdateDrawingCacheResult { -} -/** - * 大型直播页面刷新View Cache - * @apiName biz.live.updateDrawingCache - * @supportVersion android: 4.3.7 - */ -export declare function updateDrawingCache$(params: IBizLiveUpdateDrawingCacheParams): Promise; -export default updateDrawingCache$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateDrawingCache.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateDrawingCache.js deleted file mode 100644 index b37313be..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateDrawingCache.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function updateDrawingCache$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.updateDrawingCache$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.updateDrawingCache",exports.updateDrawingCache$=updateDrawingCache$,exports.default=updateDrawingCache$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateSimulGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateSimulGroup.d.ts deleted file mode 100644 index 47dcbf03..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateSimulGroup.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "biz.live.updateSimulGroup"; -/** - * 更新联播群 请求参数定义 - * @apiName biz.live.updateSimulGroup - */ -export interface IBizLiveUpdateSimulGroupParams { - /** 已选群列表 */ - selectedGroups?: string[]; - /** 禁用群列表 */ - disabledGroups?: string[]; - /** 可选择群的上限,不填默认45 */ - upperLimitCount?: number; - /** 标题,不填默认是“添加联播群” */ - title?: string; -} -/** - * 更新联播群 返回结果定义 - * @apiName biz.live.updateSimulGroup - */ -export interface IBizLiveUpdateSimulGroupResult { - result: { - cid: string; - conversationName: string; - }[]; -} -/** - * 更新联播群 - * @apiName biz.live.updateSimulGroup - * @supportVersion ios: 6.0.16 android: 6.0.16 - * @author Android:海牛 iOS:钧鸿 - */ -export declare function updateSimulGroup$(params: IBizLiveUpdateSimulGroupParams): Promise; -export default updateSimulGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateSimulGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateSimulGroup.js deleted file mode 100644 index dcc01c3e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/live/updateSimulGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function updateSimulGroup$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.updateSimulGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.live.updateSimulGroup",exports.updateSimulGroup$=updateSimulGroup$,exports.default=updateSimulGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/locate.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/map/locate.d.ts deleted file mode 100644 index 2893194e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/locate.d.ts +++ /dev/null @@ -1,49 +0,0 @@ -export declare const apiName = "biz.map.locate"; -/** - * 地图定位 请求参数定义 - * @apiName biz.map.locate - */ -export interface IBizMapLocateParams { - /** 非必须字段,需要和longitude组合成合法经纬度,高德坐标 */ - latitude?: number; - /** 非必须字段,需要和latitude组合成合法经纬度,高德坐标 */ - longitude?: number; -} -/** - * 地图定位 返回结果定义 - * @apiName biz.map.locate - */ -export interface IBizMapLocateResult { - /** POI所在省会,可能为空 */ - province: string; - /** POI所在省会编码,可能为空 */ - provinceCode: string; - /** POI所在城市,可能为空 */ - city: string; - /** POI所在城市的编码,可能为空 */ - cityCode: string; - /** POI所在区,可能为空 */ - adName: string; - /** POI所在区的编码,可能为空 */ - adCode: string; - /** POI与设备位置的距离 */ - distance: string; - /** POI的邮编,可能为空 */ - postCode: string; - /** POI的街道地址,可能为空 */ - snippet: string; - /** POI的名称 */ - title: string; - /** POI的纬度,高德坐标 */ - latitude: number; - /** POI的经度,高德坐标 */ - longitude: number; -} -/** - * 地图定位 - * 唤起地图页面,获取设备位置及设备附近的POI信息;若传入的合法经纬度则显示出入的位置信息及其附近的POI信息。 - * @apiName biz.map.locate - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function locate$(params: IBizMapLocateParams): Promise; -export default locate$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/locate.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/map/locate.js deleted file mode 100644 index ac8daf55..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/locate.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function locate$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.locate$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.map.locate",exports.locate$=locate$,exports.default=locate$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/search.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/map/search.d.ts deleted file mode 100644 index fd762460..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/search.d.ts +++ /dev/null @@ -1,51 +0,0 @@ -export declare const apiName = "biz.map.search"; -/** - * 地图搜索 请求参数定义 - * @apiName biz.map.search - */ -export interface IBizMapSearchParams { - /** 非必须字段,需要和longitude组合成合法经纬度,高德坐标 */ - latitude: number; - /** 非必须字段,需要和latitude组合成合法经纬度,高德坐标 */ - longitude: number; - /** 搜索范围,建议不要设置过低,否则可能搜索不到POI */ - scope: number; -} -/** - * 地图搜索 返回结果定义 - * @apiName biz.map.search - */ -export interface IBizMapSearchResult { - /** POI所在省会,可能为空 */ - province: string; - /** POI所在省会编码,可能为空 */ - provinceCode: string; - /** POI所在城市,可能为空 */ - city: string; - /** POI所在城市的编码,可能为空 */ - cityCode: string; - /** POI所在区,可能为空 */ - adName: string; - /** POI所在区的编码,可能为空 */ - adCode: string; - /** POI与设备位置的距离 */ - distance: string; - /** POI的邮编,可能为空 */ - postCode: string; - /** POI的街道地址,可能为空 */ - snippet: string; - /** POI的名称 */ - title: string; - /** POI的纬度,高德坐标 */ - latitude: number; - /** POI的经度,高德坐标 */ - longitude: number; -} -/** - * 地图搜索 - * 唤起地图页面,根据设备位置或者传入的经纬度搜索POI。 - * @apiName biz.map.search - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function search$(params: IBizMapSearchParams): Promise; -export default search$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/search.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/map/search.js deleted file mode 100644 index b432da77..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/search.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function search$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.search$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.map.search",exports.search$=search$,exports.default=search$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/searchRoute.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/map/searchRoute.d.ts deleted file mode 100644 index e3cce35a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/searchRoute.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.map.searchRoute"; -/** - * 查询路线 请求参数定义 - * @apiName biz.map.searchRoute - */ -export interface IBizMapSearchRouteParams { - [key: string]: any; -} -/** - * 查询路线 返回结果定义 - * @apiName biz.map.searchRoute - */ -export interface IBizMapSearchRouteResult { - [key: string]: any; -} -/** - * 查询路线 - * @apiName biz.map.searchRoute - * @supportVersion ios: 2.11 android: 2.11 - */ -export declare function searchRoute$(params: IBizMapSearchRouteParams): Promise; -export default searchRoute$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/searchRoute.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/map/searchRoute.js deleted file mode 100644 index b3c8cc91..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/searchRoute.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function searchRoute$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.searchRoute$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.map.searchRoute",exports.searchRoute$=searchRoute$,exports.default=searchRoute$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/view.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/map/view.d.ts deleted file mode 100644 index aabae875..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/view.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.map.view"; -/** - * 查看定位 请求参数定义 - * @apiName biz.map.view - */ -export interface IBizMapViewParams { - /** 需要和longitude组合成合法经纬度,高德坐标 */ - latitude: number; - /** 需要和latitude组合成合法经纬度,高德坐标 */ - longitude: number; - /** 在地图锚点气泡显示的文案 */ - title: string; -} -/** - * 查看定位 返回结果定义 - * @apiName biz.map.view - */ -export interface IBizMapViewResult { -} -/** - * 查看定位 - * @apiName biz.map.view - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function view$(params: IBizMapViewParams): Promise; -export default view$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/view.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/map/view.js deleted file mode 100644 index fb42ecce..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/map/view.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function view$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.view$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.map.view",exports.view$=view$,exports.default=view$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/media/compressVideo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/media/compressVideo.d.ts deleted file mode 100644 index eaab7582..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/media/compressVideo.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.media.compressVideo"; -/** - * 视频压缩 请求参数定义 - * @apiName biz.media.compressVideo - */ -export interface IBizMediaCompressVideoParams { - /** 要压缩的视频路径(只支持解析虚拟地址) */ - filePath: string; -} -/** - * 视频压缩 返回结果定义 - * @apiName biz.media.compressVideo - */ -export interface IBizMediaCompressVideoResult { - /** 压缩后的路径(虚拟路径) */ - filePath: string; -} -/** - * 视频压缩 - * @apiName biz.media.compressVideo - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function compressVideo$(params: IBizMediaCompressVideoParams): Promise; -export default compressVideo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/media/compressVideo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/media/compressVideo.js deleted file mode 100644 index b615c0ef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/media/compressVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function compressVideo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.compressVideo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.media.compressVideo",exports.compressVideo$=compressVideo$,exports.default=compressVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/openApp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/openApp.d.ts deleted file mode 100644 index 8804dea6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/openApp.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.microApp.openApp"; -/** - * 打开应用 请求参数定义 - * @apiName biz.microApp.openApp - */ -export interface IBizMicroAppOpenAppParams { - agentId: string; - appId: string; - corpId: string; -} -/** - * 打开应用 返回结果定义 - * @apiName biz.microApp.openApp - */ -export interface IBizMicroAppOpenAppResult { - /** 结果,int (-1 unkown,0 fail,1 success) */ - result: number; -} -/** - * 打开应用 - * @apiName biz.microApp.openApp - * @supportVersion ios: 4.5.6 android: 4.5.6 - */ -export declare function openApp$(params: IBizMicroAppOpenAppParams): Promise; -export default openApp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/openApp.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/openApp.js deleted file mode 100644 index 9fa5c340..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/openApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openApp$(p){return common_1.ddSdk.invokeAPI(exports.apiName,p)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openApp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.microApp.openApp",exports.openApp$=openApp$,exports.default=openApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/visualList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/visualList.d.ts deleted file mode 100644 index 14665fdd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/visualList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.microApp.visualList"; -/** - * 获取当前用户可见的企业开通的微应用信息 请求参数定义 - * @apiName biz.microApp.visualList - */ -export interface IBizMicroAppVisualListParams { - [key: string]: any; -} -/** - * 获取当前用户可见的企业开通的微应用信息 返回结果定义 - * @apiName biz.microApp.visualList - */ -export interface IBizMicroAppVisualListResult { - [key: string]: any; -} -/** - * 获取当前用户可见的企业开通的微应用信息 - * @apiName biz.microApp.visualList - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function visualList$(params: IBizMicroAppVisualListParams): Promise; -export default visualList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/visualList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/visualList.js deleted file mode 100644 index 8ba836a6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/microApp/visualList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function visualList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.visualList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.microApp.visualList",exports.visualList$=visualList$,exports.default=visualList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/back.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/back.d.ts deleted file mode 100644 index 51e4d16f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/back.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.back"; -/** - * 弹窗alert 请求参数定义 - * @apiName biz.navigation.back - */ -export interface IBizNavigationBackParams { - [key: string]: any; -} -/** - * 弹窗alert 返回结果定义 - * @apiName biz.navigation.back - */ -export interface IBizNavigationBackResult { - [key: string]: any; -} -/** - * 弹窗alert - * @apiName biz.navigation.back - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function back$(params: IBizNavigationBackParams): Promise; -export default back$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/back.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/back.js deleted file mode 100644 index 5a08cb89..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/back.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function back$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.back$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.back",exports.back$=back$,exports.default=back$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/close.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/close.d.ts deleted file mode 100644 index fa5c9289..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/close.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "biz.navigation.close"; -/** - * 关闭webview 请求参数定义 - * @apiName biz.navigation.close - */ -export interface IBizNavigationCloseParams { -} -/** - * 关闭webview 返回结果定义 - * @apiName biz.navigation.close - */ -export interface IBizNavigationCloseResult { -} -/** - * 关闭webview - * 调用此接口可以关闭当前浏览器窗口 - * @apiName biz.navigation.close - * @supportVersion ios: 2.4.0 android: 2.4.0 pc: 4.3.5 - */ -export declare function close$(params: IBizNavigationCloseParams): Promise; -export default close$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/close.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/close.js deleted file mode 100644 index b3de27af..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/close.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function close$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.close$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.close",exports.close$=close$,exports.default=close$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/createEditor.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/createEditor.d.ts deleted file mode 100644 index 018b47e3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/createEditor.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.createEditor"; -/** - * 创建通用组件 请求参数定义 - * @apiName biz.navigation.createEditor - */ -export interface IBizNavigationCreateEditorParams { - [key: string]: any; -} -/** - * 创建通用组件 返回结果定义 - * @apiName biz.navigation.createEditor - */ -export interface IBizNavigationCreateEditorResult { - [key: string]: any; -} -/** - * 创建通用组件 - * @apiName biz.navigation.createEditor - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function createEditor$(params: IBizNavigationCreateEditorParams): Promise; -export default createEditor$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/createEditor.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/createEditor.js deleted file mode 100644 index 84d2cb6d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/createEditor.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createEditor$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createEditor$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.createEditor",exports.createEditor$=createEditor$,exports.default=createEditor$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/finishEditor.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/finishEditor.d.ts deleted file mode 100644 index 11076fa0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/finishEditor.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.finishEditor"; -/** - * 销毁通用组件 请求参数定义 - * @apiName biz.navigation.finishEditor - */ -export interface IBizNavigationFinishEditorParams { - [key: string]: any; -} -/** - * 销毁通用组件 返回结果定义 - * @apiName biz.navigation.finishEditor - */ -export interface IBizNavigationFinishEditorResult { - [key: string]: any; -} -/** - * 销毁通用组件 - * @apiName biz.navigation.finishEditor - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function finishEditor$(params: IBizNavigationFinishEditorParams): Promise; -export default finishEditor$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/finishEditor.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/finishEditor.js deleted file mode 100644 index 407077e1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/finishEditor.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function finishEditor$(i){return common_1.ddSdk.invokeAPI(exports.apiName,i)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.finishEditor$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.finishEditor",exports.finishEditor$=finishEditor$,exports.default=finishEditor$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/gestures.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/gestures.d.ts deleted file mode 100644 index e67f394c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/gestures.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.gestures"; -/** - * 配置容器相关手势 请求参数定义 - * @apiName biz.navigation.gestures - */ -export interface IBizNavigationGesturesParams { - [key: string]: any; -} -/** - * 配置容器相关手势 返回结果定义 - * @apiName biz.navigation.gestures - */ -export interface IBizNavigationGesturesResult { - [key: string]: any; -} -/** - * 配置容器相关手势 - * @apiName biz.navigation.gestures - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function gestures$(params: IBizNavigationGesturesParams): Promise; -export default gestures$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/gestures.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/gestures.js deleted file mode 100644 index d552671a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/gestures.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function gestures$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.gestures$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.gestures",exports.gestures$=gestures$,exports.default=gestures$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/goBack.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/goBack.d.ts deleted file mode 100644 index 8cab8708..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/goBack.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "biz.navigation.goBack"; -/** - * 返回上一步 请求参数定义 - * @apiName biz.navigation.goBack - */ -export interface IBizNavigationGoBackParams { -} -/** - * 返回上一步 返回结果定义 - * @apiName biz.navigation.goBack - */ -export interface IBizNavigationGoBackResult { -} -/** - * 返回上一步 - * 调用此接口会返回前端页面的上级浏览页面,如果是H5的根页面,调用此接口会关闭当前浏览窗口。 - * @apiName biz.navigation.goBack - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function goBack$(params: IBizNavigationGoBackParams): Promise; -export default goBack$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/goBack.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/goBack.js deleted file mode 100644 index c2cb57aa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/goBack.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function goBack$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.goBack$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.goBack",exports.goBack$=goBack$,exports.default=goBack$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/hideBar.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/hideBar.d.ts deleted file mode 100644 index 794d2aaf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/hideBar.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.hideBar"; -/** - * JS端控制容器导航栏的显示和隐藏 请求参数定义 - * @apiName biz.navigation.hideBar - */ -export interface IBizNavigationHideBarParams { - [key: string]: any; -} -/** - * JS端控制容器导航栏的显示和隐藏 返回结果定义 - * @apiName biz.navigation.hideBar - */ -export interface IBizNavigationHideBarResult { - [key: string]: any; -} -/** - * JS端控制容器导航栏的显示和隐藏 - * @apiName biz.navigation.hideBar - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function hideBar$(params: IBizNavigationHideBarParams): Promise; -export default hideBar$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/hideBar.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/hideBar.js deleted file mode 100644 index 7801eb36..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/hideBar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hideBar$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.hideBar$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.hideBar",exports.hideBar$=hideBar$,exports.default=hideBar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/navigateToMiniProgram.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/navigateToMiniProgram.d.ts deleted file mode 100644 index e1d63637..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/navigateToMiniProgram.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "biz.navigation.navigateToMiniProgram"; -/** - * 从H5启动小程序的专用接口 请求参数定义 - * @apiName biz.navigation.navigateToMiniProgram - */ -export interface IBizNavigationNavigateToMiniProgramParams { - appId: string; - path?: string; - extraData?: string; - /** 小程序 buildId,用于打开特定小程序版本(目的方便测试,并且,A 跳 B,如果 A 小程序是线上版本,自动忽略该参数 */ - buildId?: string; - /** 目标小程序启动相关的参数 */ - ddAppParams?: any; -} -/** - * 从H5启动小程序的专用接口 返回结果定义 - * @apiName biz.navigation.navigateToMiniProgram - */ -export interface IBizNavigationNavigateToMiniProgramResult { -} -/** - * 从H5启动小程序的专用接口 - * @apiName biz.navigation.navigateToMiniProgram - * @supportVersion ios: 5.1.31 android: 5.1.31 - * @author Android:泠轩 iOS:序元 - */ -export declare function navigateToMiniProgram$(params: IBizNavigationNavigateToMiniProgramParams): Promise; -export default navigateToMiniProgram$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/navigateToMiniProgram.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/navigateToMiniProgram.js deleted file mode 100644 index 848699d2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/navigateToMiniProgram.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function navigateToMiniProgram$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.navigateToMiniProgram$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.navigateToMiniProgram",exports.navigateToMiniProgram$=navigateToMiniProgram$,exports.default=navigateToMiniProgram$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/popGesture.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/popGesture.d.ts deleted file mode 100644 index 78220f61..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/popGesture.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.popGesture"; -/** - * 未知 请求参数定义 - * @apiName biz.navigation.popGesture - */ -export interface IBizNavigationPopGestureParams { - [key: string]: any; -} -/** - * 未知 返回结果定义 - * @apiName biz.navigation.popGesture - */ -export interface IBizNavigationPopGestureResult { - [key: string]: any; -} -/** - * 未知 - * @apiName biz.navigation.popGesture - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function popGesture$(params: IBizNavigationPopGestureParams): Promise; -export default popGesture$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/popGesture.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/popGesture.js deleted file mode 100644 index 16ab4c9c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/popGesture.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function popGesture$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.popGesture$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.popGesture",exports.popGesture$=popGesture$,exports.default=popGesture$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/quit.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/quit.d.ts deleted file mode 100644 index db292964..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/quit.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.quit"; -/** - * 退出模态框或者侧边框 请求参数定义 - * @apiName biz.navigation.quit - */ -export interface IBizNavigationQuitParams { - [key: string]: any; -} -/** - * 退出模态框或者侧边框 返回结果定义 - * @apiName biz.navigation.quit - */ -export interface IBizNavigationQuitResult { - [key: string]: any; -} -/** - * 退出模态框或者侧边框 - * @apiName biz.navigation.quit - * @supportVersion pc: 2.5.0 - */ -export declare function quit$(params: IBizNavigationQuitParams): Promise; -export default quit$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/quit.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/quit.js deleted file mode 100644 index c5d7c089..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/quit.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function quit$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.quit$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.quit",exports.quit$=quit$,exports.default=quit$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/replace.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/replace.d.ts deleted file mode 100644 index 3f55cbb8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/replace.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.replace"; -/** - * 页面替换 请求参数定义 - * @apiName biz.navigation.replace - */ -export interface IBizNavigationReplaceParams { - url: string; -} -/** - * 页面替换 返回结果定义 - * @apiName biz.navigation.replace - */ -export interface IBizNavigationReplaceResult { -} -/** - * 页面替换 - * 使用新的页面替换当前页面,当前页面会被立即销毁,展示新页面,无动画。 - * @apiName biz.navigation.replace - * @supportVersion ios: 3.4.6 android: 3.4.6 - */ -export declare function replace$(params: IBizNavigationReplaceParams): Promise; -export default replace$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/replace.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/replace.js deleted file mode 100644 index 5111a8ed..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/replace.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function replace$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.replace$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.replace",exports.replace$=replace$,exports.default=replace$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setActions.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setActions.d.ts deleted file mode 100644 index 141bc07a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setActions.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.navigation.setActions"; -/** - * 设置右上角 请求参数定义 - * @apiName biz.navigation.setActions - */ -export interface IBizNavigationSetActionsParams { - /** onSuccess为监听函数 */ - onSuccess?: () => void; - [key: string]: any; -} -/** - * 设置右上角 返回结果定义 - * @apiName biz.navigation.setActions - */ -export interface IBizNavigationSetActionsResult { - [key: string]: any; -} -/** - * 设置右上角 - * @apiName biz.navigation.setActions - * @supportVersion ios: 3.5.2 android: 3.5.2 - */ -export declare function setActions$(params: IBizNavigationSetActionsParams): Promise; -export default setActions$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setActions.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setActions.js deleted file mode 100644 index f7f4edea..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setActions.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setActions$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setActions$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setActions",exports.setActions$=setActions$,exports.default=setActions$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setIcon.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setIcon.d.ts deleted file mode 100644 index 65c82be3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setIcon.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "biz.navigation.setIcon"; -/** - * 设置导航icon 请求参数定义 - * @apiName biz.navigation.setIcon - */ -export interface IBizNavigationSetIconParams { - /** 是否显示icon */ - showIcon?: boolean; - /** 显示的iconIndex,如文档的图 */ - iconIndex?: number; - /** onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 设置导航icon 返回结果定义 - * @apiName biz.navigation.setIcon - */ -export interface IBizNavigationSetIconResult { -} -/** - * 标题栏添加问号Icon - * 调用此jsapi之后,icon的显示位置在Android和iOS上有所区别,如下图 - * iOS:显示在导航栏标题的旁边,紧靠着标题 - * Android:显示在导航栏右侧按钮组的最左边 - * @apiName biz.navigation.setIcon - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function setIcon$(params: IBizNavigationSetIconParams): Promise; -export default setIcon$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setIcon.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setIcon.js deleted file mode 100644 index 93607e41..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setIcon.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setIcon$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setIcon$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setIcon",exports.setIcon$=setIcon$,exports.default=setIcon$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setLeft.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setLeft.d.ts deleted file mode 100644 index 0193ec72..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setLeft.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "biz.navigation.setLeft"; -/** - * 设置导航左侧按钮 请求参数定义 - * @apiName biz.navigation.setLeft - */ -export interface IBizNavigationSetLeftParams { - /** 是否控制点击事件,true 控制,false 不控制, 默认false */ - control?: boolean; - /** 安卓端如果需要控制左上角返回事件加上这个字段,并设置为true(只给安卓使用) */ - android?: boolean; - /** 控制显示文本,空字符串表示显示默认文本 */ - text?: string; - /** 当control为true时,onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 设置导航左侧按钮 返回结果定义 - * @apiName biz.navigation.setLeft - */ -export interface IBizNavigationSetLeftResult { - [key: string]: any; -} -/** - * 设置导航左侧按钮 - * @apiName biz.navigation.setLeft - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function setLeft$(params: IBizNavigationSetLeftParams): Promise; -export default setLeft$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setLeft.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setLeft.js deleted file mode 100644 index 7dbfb5a4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setLeft.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setLeft$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setLeft$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setLeft",exports.setLeft$=setLeft$,exports.default=setLeft$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setMenu.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setMenu.d.ts deleted file mode 100644 index 7fa61a22..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setMenu.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -export declare const apiName = "biz.navigation.setMenu"; -/** - * 设置导航栏右侧多个按钮 请求参数定义 - * @apiName biz.navigation.setMenu - */ -export interface IBizNavigationSetMenuParams { - /** 下拉菜单背景色,例如#ADD8E6 */ - backgroundColor?: string; - /** 下拉菜单文字颜色 例如#ADD8E611 */ - textColor?: string; - /** 多个按钮的属性数组 */ - items: Array<{ - /** 每一个item的唯一标示 */ - id: string; - /** 钉钉预置icon的索引值 */ - iconId?: string; - /** item的文字属性 */ - text: string; - /** 是否显示红点 */ - showRedDot?: boolean; - /** badge 内容 */ - badge?: string; - /** 定义图标url */ - url?: string; - }>; - /** 点击任一一个按钮将会回调onSuccess,并返回被点击item的id */ - onSuccess?: (data: IBizNavigationSetMenuResult) => void; -} -/** - * 设设置导航栏右侧多个按钮 返回结果定义 - * @apiName biz.navigation.setMenu - */ -export interface IBizNavigationSetMenuResult { - id: string; -} -/** - * 设置导航栏右侧多个按钮 - * 每一个item对应右上角的一个按钮 - * @apiName biz.navigation.setMenu - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function setMenu$(params: IBizNavigationSetMenuParams): Promise; -export default setMenu$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setMenu.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setMenu.js deleted file mode 100644 index b7a47067..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setMenu.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setMenu$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setMenu$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setMenu",exports.setMenu$=setMenu$,exports.default=setMenu$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setPullGesture.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setPullGesture.d.ts deleted file mode 100644 index ece146bd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setPullGesture.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.setPullGesture"; -/** - * 设置当前页面(容器实例)是否支持设置收纳到缩略图功能 请求参数定义 - * @apiName biz.navigation.setPullGesture - */ -export interface IBizNavigationSetPullGestureParams { - [key: string]: any; -} -/** - * 设置当前页面(容器实例)是否支持设置收纳到缩略图功能 返回结果定义 - * @apiName biz.navigation.setPullGesture - */ -export interface IBizNavigationSetPullGestureResult { - [key: string]: any; -} -/** - * 设置当前页面(容器实例)是否支持设置收纳到缩略图功能 - * @apiName biz.navigation.setPullGesture - * @supportVersion ios: 4.2 android: 4.2 - */ -export declare function setPullGesture$(params: IBizNavigationSetPullGestureParams): Promise; -export default setPullGesture$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setPullGesture.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setPullGesture.js deleted file mode 100644 index 719b8ce7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setPullGesture.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setPullGesture$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setPullGesture$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setPullGesture",exports.setPullGesture$=setPullGesture$,exports.default=setPullGesture$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setRight.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setRight.d.ts deleted file mode 100644 index c1559ecc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setRight.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.navigation.setRight"; -/** - * 设置导航右侧按钮 请求参数定义 - * @apiName biz.navigation.setRight - */ -export interface IBizNavigationSetRightParams { - /** 控制按钮显示, true 显示, false 隐藏, 默认true */ - show?: boolean; - /** 是否控制点击事件,true 控制,false 不控制, 默认false */ - control?: boolean; - /** 控制显示文本,空字符串表示显示默认文本 */ - text?: string; - /** 当control为true时,onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 设置导航右侧按钮 返回结果定义 - * @apiName biz.navigation.setRight - */ -export interface IBizNavigationSetRightResult { - [key: string]: any; -} -/** - * 设置导航栏右侧单个按钮 - * 调用jsapi-setRight可以设置导航栏最右侧按钮的文字,并且接收点击事件, - * 只能设置文本按钮,需要设置按钮的icon请查看 biz.navigation.setMenu - * @apiName biz.navigation.setRight - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function setRight$(params: IBizNavigationSetRightParams): Promise; -export default setRight$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setRight.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setRight.js deleted file mode 100644 index 4104ed32..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setRight.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setRight$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setRight$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setRight",exports.setRight$=setRight$,exports.default=setRight$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setSubtitle.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setSubtitle.d.ts deleted file mode 100644 index fbc85ef5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setSubtitle.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.setSubtitle"; -/** - * navigationBar 小标题 请求参数定义 - * @apiName biz.navigation.setSubtitle - */ -export interface IBizNavigationSetSubtitleParams { - [key: string]: any; -} -/** - * navigationBar 小标题 返回结果定义 - * @apiName biz.navigation.setSubtitle - */ -export interface IBizNavigationSetSubtitleResult { - [key: string]: any; -} -/** - * navigationBar 小标题 - * @apiName biz.navigation.setSubtitle - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function setSubtitle$(params: IBizNavigationSetSubtitleParams): Promise; -export default setSubtitle$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setSubtitle.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setSubtitle.js deleted file mode 100644 index b9848ba5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setSubtitle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setSubtitle$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setSubtitle$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setSubtitle",exports.setSubtitle$=setSubtitle$,exports.default=setSubtitle$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitle.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitle.d.ts deleted file mode 100644 index d370e0e0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitle.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.navigation.setTitle"; -/** - * 弹窗alert 请求参数定义 - * @apiName biz.navigation.setTitle - */ -export interface IBizNavigationSetTitleParams { - /** 控制标题文本,空字符串表示显示默认文本 */ - title?: string; - /** 副标题 */ - subTitle?: string; -} -/** - * 弹窗alert 返回结果定义 - * @apiName biz.navigation.setTitle - */ -export interface IBizNavigationSetTitleResult { -} -/** - * 设置导航栏标题 - * 此JSAPI在iOS和Android上的显示有所不同 - * IOS:根据iOS的设计规范,iOS的标题在导航栏正中央 - * Android:根据Android的设计规范,标题显示在导航栏左侧 - * @apiName biz.navigation.setTitle - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function setTitle$(params: IBizNavigationSetTitleParams): Promise; -export default setTitle$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitle.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitle.js deleted file mode 100644 index 620582e5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setTitle$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setTitle$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setTitle",exports.setTitle$=setTitle$,exports.default=setTitle$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitleIcon.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitleIcon.d.ts deleted file mode 100644 index 2350359d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitleIcon.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.setTitleIcon"; -/** - * 在标题旁边设置一个icon 请求参数定义 - * @apiName biz.navigation.setTitleIcon - */ -export interface IBizNavigationSetTitleIconParams { - [key: string]: any; -} -/** - * 在标题旁边设置一个icon 返回结果定义 - * @apiName biz.navigation.setTitleIcon - */ -export interface IBizNavigationSetTitleIconResult { - [key: string]: any; -} -/** - * 在标题旁边设置一个icon - * @apiName biz.navigation.setTitleIcon - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function setTitleIcon$(params: IBizNavigationSetTitleIconParams): Promise; -export default setTitleIcon$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitleIcon.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitleIcon.js deleted file mode 100644 index 298e88ea..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/setTitleIcon.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setTitleIcon$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setTitleIcon$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.setTitleIcon",exports.setTitleIcon$=setTitleIcon$,exports.default=setTitleIcon$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/showPopdownList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/showPopdownList.d.ts deleted file mode 100644 index 8a3c0729..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/showPopdownList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.navigation.showPopdownList"; -/** - * navigationBar展示下拉列表 请求参数定义 - * @apiName biz.navigation.showPopdownList - */ -export interface IBizNavigationShowPopdownListParams { - [key: string]: any; -} -/** - * navigationBar展示下拉列表 返回结果定义 - * @apiName biz.navigation.showPopdownList - */ -export interface IBizNavigationShowPopdownListResult { - [key: string]: any; -} -/** - * navigationBar展示下拉列表 - * @apiName biz.navigation.showPopdownList - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function showPopdownList$(params: IBizNavigationShowPopdownListParams): Promise; -export default showPopdownList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/showPopdownList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/showPopdownList.js deleted file mode 100644 index c9e2968b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/navigation/showPopdownList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showPopdownList$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showPopdownList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.navigation.showPopdownList",exports.showPopdownList$=showPopdownList$,exports.default=showPopdownList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/notify/send.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/notify/send.d.ts deleted file mode 100644 index 2d0abbc5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/notify/send.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.notify.send"; -/** - * 消息通知H5到Native 请求参数定义 - * @apiName biz.notify.send - */ -export interface IBizNotifySendParams { - [key: string]: any; -} -/** - * 消息通知H5到Native 返回结果定义 - * @apiName biz.notify.send - */ -export interface IBizNotifySendResult { - [key: string]: any; -} -/** - * 消息通知H5到Native - * @apiName biz.notify.send - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function send$(params: IBizNotifySendParams): Promise; -export default send$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/notify/send.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/notify/send.js deleted file mode 100644 index 5f03594d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/notify/send.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function send$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.send$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.notify.send",exports.send$=send$,exports.default=send$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/authorityVerify.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/authorityVerify.d.ts deleted file mode 100644 index 717c8b92..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/authorityVerify.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.oa.authorityVerify"; -/** - * 校验页面是否有权限设置工作首页链接 请求参数定义 - * @apiName biz.oa.authorityVerify - */ -export interface IBizOaAuthorityVerifyParams { - [key: string]: any; -} -/** - * 校验页面是否有权限设置工作首页链接 返回结果定义 - * @apiName biz.oa.authorityVerify - */ -export interface IBizOaAuthorityVerifyResult { - [key: string]: any; -} -/** - * 校验页面是否有权限设置工作首页链接 - * @apiName biz.oa.authorityVerify - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function authorityVerify$(params: IBizOaAuthorityVerifyParams): Promise; -export default authorityVerify$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/authorityVerify.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/authorityVerify.js deleted file mode 100644 index 4635852d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/authorityVerify.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function authorityVerify$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.authorityVerify$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.oa.authorityVerify",exports.authorityVerify$=authorityVerify$,exports.default=authorityVerify$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/setWorkTab.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/setWorkTab.d.ts deleted file mode 100644 index f3f18dc3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/setWorkTab.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.oa.setWorkTab"; -/** - * 配置用户用户企业工作台,设置自定义title和自定义主页链接,仅对管理员开放,如果当前用户不是设置企业的管理员,则报错 请求参数定义 - * @apiName biz.oa.setWorkTab - */ -export interface IBizOaSetWorkTabParams { - [key: string]: any; -} -/** - * 配置用户用户企业工作台,设置自定义title和自定义主页链接,仅对管理员开放,如果当前用户不是设置企业的管理员,则报错 返回结果定义 - * @apiName biz.oa.setWorkTab - */ -export interface IBizOaSetWorkTabResult { - [key: string]: any; -} -/** - * 配置用户用户企业工作台,设置自定义title和自定义主页链接,仅对管理员开放,如果当前用户不是设置企业的管理员,则报错 - * @apiName biz.oa.setWorkTab - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function setWorkTab$(params: IBizOaSetWorkTabParams): Promise; -export default setWorkTab$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/setWorkTab.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/setWorkTab.js deleted file mode 100644 index d7e78a60..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/oa/setWorkTab.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setWorkTab$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setWorkTab$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.oa.setWorkTab",exports.setWorkTab$=setWorkTab$,exports.default=setWorkTab$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/oauth/authorize.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/oauth/authorize.d.ts deleted file mode 100644 index 836f7ac9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/oauth/authorize.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.oauth.authorize"; -/** - * authorize 请求参数定义 - * @apiName biz.oauth.authorize - */ -export interface IBizOauthAuthorizeParams { - [key: string]: any; -} -/** - * authorize 返回结果定义 - * @apiName biz.oauth.authorize - */ -export interface IBizOauthAuthorizeResult { - [key: string]: any; -} -/** - * authorize - * @apiName biz.oauth.authorize - * @supportVersion pc: 2.5.0 - */ -export declare function authorize$(params: IBizOauthAuthorizeParams): Promise; -export default authorize$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/oauth/authorize.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/oauth/authorize.js deleted file mode 100644 index a8a3f6a6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/oauth/authorize.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function authorize$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.authorize$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.oauth.authorize",exports.authorize$=authorize$,exports.default=authorize$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/componentPunchFromPartner.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/componentPunchFromPartner.d.ts deleted file mode 100644 index 30c14ee1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/componentPunchFromPartner.d.ts +++ /dev/null @@ -1,44 +0,0 @@ -export declare const apiName = "biz.pbp.componentPunchFromPartner"; -/** - * 组件打卡开放接口,前置调用位置匹配接口,此接口只提供给ISV运行期间内的多次相同入参调用会被拒绝 请求参数定义 - * @apiName biz.pbp.componentPunchFromPartner - */ -export interface IBizPbpComponentPunchFromPartnerParams { - /** 业务实例唯一标识 */ - bizInstId: string; - /** 业务code */ - bizCode: string; - /** 由匹配打卡规则获取到的sessionId */ - positionSessionId?: string; - /** 由调用人脸组件获取到的sessionId,本期暂不支持,因此positionSessionId必填 */ - faceSessionId?: string; - /** 最长1024个字节 该数据会透传给业务系统,打卡成功后,会将业务系统推送结果进行透传。建议可以传入标识唯一性的id用作上下文处理等 */ - extension?: string; -} -/** - * 组件打卡开放接口,前置调用位置匹配接口,此接口只提供给ISV运行期间内的多次相同入参调用会被拒绝 返回结果定义 - * @apiName biz.pbp.componentPunchFromPartner - */ -export interface IBizPbpComponentPunchFromPartnerResult { - /** 是否成功 */ - success: boolean; - /** 接口错误码 */ - code: string; - /** 接口错误信息 */ - message: string; - /** 推送事件 - * "pbp_punch_result":打卡平台打卡结果 - * "biz_punch_result": 业务系统打卡结果 - **/ - event: string; - /** 推送数据,如果为业务系统打卡结果,数据结构由业务方自己定义 为打卡平台打卡结果时,需要自己做反序列化 */ - data: string; -} -/** - * 组件打卡开放接口,前置调用位置匹配接口,此接口只提供给ISV运行期间内的多次相同入参调用会被拒绝 - * @apiName biz.pbp.componentPunchFromPartner - * @supportVersion ios: 5.1.10 android: 5.1.10 - * @author Android:序望,iOS:度尽 - */ -export declare function componentPunchFromPartner$(params: IBizPbpComponentPunchFromPartnerParams): Promise; -export default componentPunchFromPartner$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/componentPunchFromPartner.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/componentPunchFromPartner.js deleted file mode 100644 index f45b1fe8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/componentPunchFromPartner.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function componentPunchFromPartner$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.componentPunchFromPartner$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.pbp.componentPunchFromPartner",exports.componentPunchFromPartner$=componentPunchFromPartner$,exports.default=componentPunchFromPartner$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/startMatchRuleFromPartner.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/startMatchRuleFromPartner.d.ts deleted file mode 100644 index eb229490..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/startMatchRuleFromPartner.d.ts +++ /dev/null @@ -1,69 +0,0 @@ -export declare const apiName = "biz.pbp.startMatchRuleFromPartner"; -/** - * 开始匹配打卡规则,多次回调如未成功回调,表示此时没有正常扫描到对应的资源,此时调用打卡接口不能得到对应的资源信息拒绝同一微应用、同一企业、同一bizInstId的连续多次调用,调用前需stop上一次操作 请求参数定义 - * @apiName biz.pbp.startMatchRuleFromPartner - */ -export interface IBizPbpStartMatchRuleFromPartnerParams { - /** 业务实例唯一标识 */ - bizInstId: string; - /** 需要满足的位置信息,与打卡方式映射。满足其中条件即视为。 key:positionType,定义如下 - * "1":地理位置 - * "2":Wi-Fi - * "101":蓝牙 - * value:positionList,可传空,空的情况下不做匹配,返回扫描到的资源信息,定义如下: - * 位置id - * String positionId - * 目前仅支持蓝牙 - * 蓝牙打卡方式下,key为"101",value为蓝牙匹配规则的JSON结构体, - * 如 - * { - * "101":{"positions": [{"positionId":"123123"}, {"positionId":"123123123"}]} - * } - **/ - positionMap: { - [key: string]: any; - }; -} -/** - * 开始匹配打卡规则,多次回调如未成功回调,表示此时没有正常扫描到对应的资源,此时调用打卡接口不能得到对应的资源信息拒绝同一微应用、同一企业、同一bizInstId的连续多次调用,调用前需stop上一次操作 返回结果定义 - * @apiName biz.pbp.startMatchRuleFromPartner - */ -export interface IBizPbpStartMatchRuleFromPartnerResult { - /** - * 匹配结果状态码,定义如下: - * "10000":卡点匹配成功 - * "10001":卡点未匹配 - * "10002":卡点匹配停止 - **/ - code: string; - /** - * 返回匹配数据,定义如下: - * 每次调用开始匹配接口为调用方生成唯一的ID,打卡用 - * 1: string positionSessionId - * // 位置类型,"101" 为蓝牙 - * 2: string positionType - * // 当前返回的位置信息,"positionName"为位置名称,"positionId"为位置ID - * 3: list positions - * // 预留字段 - * 4: map extension - * 目前仅支持蓝牙。蓝牙返回的结果是当前周边所有匹配到的蓝牙设备列表信息 - * 如 - * { - * "positionSessionId":"positionSessionId", - * "positionType":"101", - * "positions":[{ - * "positionName":"测试B1", - * "positionId":"123123" - * }] - * } - */ - data: any; -} -/** - * 开始匹配打卡规则,多次回调如未成功回调,表示此时没有正常扫描到对应的资源,此时调用打卡接口不能得到对应的资源信息拒绝同一微应用、同一企业、同一bizInstId的连续多次调用,调用前需stop上一次操作 - * @apiName biz.pbp.startMatchRuleFromPartner - * @supportVersion ios: 5.1.10 android: 5.1.10 - * @author Android:序望,iOS:度尽 - */ -export declare function startMatchRuleFromPartner$(params: IBizPbpStartMatchRuleFromPartnerParams): Promise; -export default startMatchRuleFromPartner$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/startMatchRuleFromPartner.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/startMatchRuleFromPartner.js deleted file mode 100644 index bf6ed64a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/startMatchRuleFromPartner.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startMatchRuleFromPartner$(r){return common_1.ddSdk.invokeAPI(exports.apiName,r)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startMatchRuleFromPartner$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.pbp.startMatchRuleFromPartner",exports.startMatchRuleFromPartner$=startMatchRuleFromPartner$,exports.default=startMatchRuleFromPartner$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/stopMatchRuleFromPartner.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/stopMatchRuleFromPartner.d.ts deleted file mode 100644 index 14a69ca8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/stopMatchRuleFromPartner.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.pbp.stopMatchRuleFromPartner"; -/** - * 停止匹配打卡规则 请求参数定义 - * @apiName biz.pbp.stopMatchRuleFromPartner - */ -export interface IBizPbpStopMatchRuleFromPartnerParams { - /** 业务实例唯一标识 */ - bizInstId: string; -} -/** - * 停止匹配打卡规则 返回结果定义 - * @apiName biz.pbp.stopMatchRuleFromPartner - */ -export interface IBizPbpStopMatchRuleFromPartnerResult { -} -/** - * 停止匹配打卡规则 - * @apiName biz.pbp.stopMatchRuleFromPartner - * @supportVersion ios: 5.1.10 android: 5.1.10 - * @author Android;序望,iOS:度尽 - */ -export declare function stopMatchRuleFromPartner$(params: IBizPbpStopMatchRuleFromPartnerParams): Promise; -export default stopMatchRuleFromPartner$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/stopMatchRuleFromPartner.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/stopMatchRuleFromPartner.js deleted file mode 100644 index 7aeeec65..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/pbp/stopMatchRuleFromPartner.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopMatchRuleFromPartner$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopMatchRuleFromPartner$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.pbp.stopMatchRuleFromPartner",exports.stopMatchRuleFromPartner$=stopMatchRuleFromPartner$,exports.default=stopMatchRuleFromPartner$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/preload/video.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/preload/video.d.ts deleted file mode 100644 index 87065a60..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/preload/video.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.preload.video"; -/** - * 视频预加载功能,提前下载部分视频头部文件 请求参数定义 - * @apiName biz.preload.video - */ -export interface IBizPreloadVideoParams { - /** 需要预加载的资源,支持url,不支持hls(m3u8) */ - src: string; - /** 仅Android支持,每个视频缓存大小 1048576(1M) <= cacheSize <= 10485760(10M) */ - cacheSize?: number; - /** 仅Android支持,是否用H265解码 默认以H264解码 */ - H265?: boolean; -} -/** - * 视频预加载功能,提前下载部分视频头部文件 返回结果定义 - * @apiName biz.preload.video - */ -export interface IBizPreloadVideoResult { -} -/** - * 视频预加载功能,提前下载部分视频头部文件 - * @apiName biz.preload.video - * @supportVersion ios: 5.1.19 android: 5.1.19 - * @author Android:零封 iOS:须莫 - */ -export declare function video$(params: IBizPreloadVideoParams): Promise; -export default video$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/preload/video.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/preload/video.js deleted file mode 100644 index 25b83c1e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/preload/video.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function video$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.video$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.preload.video",exports.video$=video$,exports.default=video$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getRealtimeTracingStatus.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getRealtimeTracingStatus.d.ts deleted file mode 100644 index 8c52891a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getRealtimeTracingStatus.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.realm.getRealtimeTracingStatus"; -/** - * 专属包实时定位任务状态查询 请求参数定义 - * @apiName biz.realm.getRealtimeTracingStatus - */ -export interface IBizRealmGetRealtimeTracingStatusParams { -} -/** - * 专属包实时定位任务状态查询 返回结果定义 - * @apiName biz.realm.getRealtimeTracingStatus - */ -export interface IBizRealmGetRealtimeTracingStatusResult { - /** 巡检任务状态 */ - isTraceRunning: boolean; - /** 巡检位置数据上报周期 */ - reportPeriod: number; - /** 巡检位置数据获取周期 */ - collectPeriod: number; -} -/** - * 专属包实时定位任务状态查询 - * @apiName biz.realm.getRealtimeTracingStatus - * @supportVersion android: 6.0.13 - * @author Android:晤歌 - */ -export declare function getRealtimeTracingStatus$(params: IBizRealmGetRealtimeTracingStatusParams): Promise; -export default getRealtimeTracingStatus$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getRealtimeTracingStatus.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getRealtimeTracingStatus.js deleted file mode 100644 index 837d9979..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getRealtimeTracingStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getRealtimeTracingStatus$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getRealtimeTracingStatus$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.realm.getRealtimeTracingStatus",exports.getRealtimeTracingStatus$=getRealtimeTracingStatus$,exports.default=getRealtimeTracingStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getUserExclusiveInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getUserExclusiveInfo.d.ts deleted file mode 100644 index 6d1988f3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getUserExclusiveInfo.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.realm.getUserExclusiveInfo"; -/** - * 专属钉钉获取用户信息 请求参数定义 - * @apiName biz.realm.getUserExclusiveInfo - */ -export interface IBizRealmGetUserExclusiveInfoParams { -} -/** - * 专属钉钉获取用户信息 返回结果定义 - * @apiName biz.realm.getUserExclusiveInfo - */ -export interface IBizRealmGetUserExclusiveInfoResult { - /** 0:标准包;1:专属包 */ - isExclusiveApp: number; -} -/** - * 专属钉钉获取用户信息 - * @apiName biz.realm.getUserExclusiveInfo - * @supportVersion ios: 6.0.14 android: 6.0.14 - * @author Android:晤歌; iOS:路客; winodows: 秋酷 - */ -export declare function getUserExclusiveInfo$(params: IBizRealmGetUserExclusiveInfoParams): Promise; -export default getUserExclusiveInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getUserExclusiveInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getUserExclusiveInfo.js deleted file mode 100644 index cd1a7c1f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/getUserExclusiveInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getUserExclusiveInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUserExclusiveInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.realm.getUserExclusiveInfo",exports.getUserExclusiveInfo$=getUserExclusiveInfo$,exports.default=getUserExclusiveInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/startRealtimeTracing.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/startRealtimeTracing.d.ts deleted file mode 100644 index ff7a0aed..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/startRealtimeTracing.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.realm.startRealtimeTracing"; -/** - * 专属包开启实时定位 请求参数定义 - * @apiName biz.realm.startRealtimeTracing - */ -export interface IBizRealmStartRealtimeTracingParams { -} -/** - * 专属包开启实时定位 返回结果定义 - * @apiName biz.realm.startRealtimeTracing - */ -export interface IBizRealmStartRealtimeTracingResult { - /** 当前定位任务是否开启 */ - isStartSuccess: boolean; - /** 定位收集周期 */ - collectPeriod: number; - /** 定位上报周期 */ - reportPeriod: number; - /** 结果代码 */ - resultCode: string; - /** 结果信息 */ - resultMsg: string; -} -/** - * 专属包开启实时定位 - * @apiName biz.realm.startRealtimeTracing - * @supportVersion android: 6.0.13 - * @author Android:晤歌 - */ -export declare function startRealtimeTracing$(params: IBizRealmStartRealtimeTracingParams): Promise; -export default startRealtimeTracing$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/startRealtimeTracing.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/startRealtimeTracing.js deleted file mode 100644 index 02c4e94a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/startRealtimeTracing.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startRealtimeTracing$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startRealtimeTracing$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.realm.startRealtimeTracing",exports.startRealtimeTracing$=startRealtimeTracing$,exports.default=startRealtimeTracing$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/stopRealtimeTracing.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/stopRealtimeTracing.d.ts deleted file mode 100644 index 5a7fb4c3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/stopRealtimeTracing.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.realm.stopRealtimeTracing"; -/** - * 专属包停止实时定位 请求参数定义 - * @apiName biz.realm.stopRealtimeTracing - */ -export interface IBizRealmStopRealtimeTracingParams { -} -/** - * 专属包停止实时定位 返回结果定义 - * @apiName biz.realm.stopRealtimeTracing - */ -export interface IBizRealmStopRealtimeTracingResult { - /** 定位任务关闭状态 */ - isTaskStopped: boolean; - /** 结果代码 */ - resultCode: string; - /** 结果信息 */ - resultMsg: string; -} -/** - * 专属包停止实时定位 - * @apiName biz.realm.stopRealtimeTracing - * @supportVersion android: 6.0.13 - * @author Android:晤歌 - */ -export declare function stopRealtimeTracing$(params: IBizRealmStopRealtimeTracingParams): Promise; -export default stopRealtimeTracing$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/stopRealtimeTracing.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/stopRealtimeTracing.js deleted file mode 100644 index 93cf0f57..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/stopRealtimeTracing.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopRealtimeTracing$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopRealtimeTracing$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.realm.stopRealtimeTracing",exports.stopRealtimeTracing$=stopRealtimeTracing$,exports.default=stopRealtimeTracing$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/subscribe.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/subscribe.d.ts deleted file mode 100644 index 1167578e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/subscribe.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.realm.subscribe"; -/** - * 大客户业务应用订阅事件 请求参数定义 - * @apiName biz.realm.subscribe - */ -export interface IBizRealmSubscribeParams { - channel: string; -} -/** - * 大客户业务应用订阅事件 返回结果定义 - * @apiName biz.realm.subscribe - */ -export interface IBizRealmSubscribeResult { - /** map形态的内容,和具体客户约定具体格式 */ - data: any; -} -/** - * 大客户业务应用订阅事件 - * @apiName biz.realm.subscribe - * @supportVersion ios: 4.7.18 android: 4.7.18 - * @author Android :笔歌; IOS: 怒龙 - */ -export declare function subscribe$(params: IBizRealmSubscribeParams): Promise; -export default subscribe$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/subscribe.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/subscribe.js deleted file mode 100644 index 4fd633c9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/subscribe.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function subscribe$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.subscribe$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.realm.subscribe",exports.subscribe$=subscribe$,exports.default=subscribe$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/unsubscribe.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/unsubscribe.d.ts deleted file mode 100644 index 122a57b1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/unsubscribe.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.realm.unsubscribe"; -/** - * 取消订阅专属sdk事件 请求参数定义 - * @apiName biz.realm.unsubscribe - */ -export interface IBizRealmUnsubscribeParams { - channel: string; -} -/** - * 取消订阅专属sdk事件 返回结果定义 - * @apiName biz.realm.unsubscribe - */ -export interface IBizRealmUnsubscribeResult { -} -/** - * 取消订阅专属sdk事件 - * @apiName biz.realm.unsubscribe - * @supportVersion ios: 4.7.18 android: 4.7.18 - * @author Android :笔歌; IOS: 怒龙 - */ -export declare function unsubscribe$(params: IBizRealmUnsubscribeParams): Promise; -export default unsubscribe$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/unsubscribe.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/unsubscribe.js deleted file mode 100644 index c152ed87..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/realm/unsubscribe.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unsubscribe$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unsubscribe$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.realm.unsubscribe",exports.unsubscribe$=unsubscribe$,exports.default=unsubscribe$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendEnterpriseRedEnvelop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendEnterpriseRedEnvelop.d.ts deleted file mode 100644 index b2ad101f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendEnterpriseRedEnvelop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.redenvelop.sendEnterpriseRedEnvelop"; -/** - * x 请求参数定义 - * @apiName biz.redenvelop.sendEnterpriseRedEnvelop - */ -export interface IBizRedenvelopSendEnterpriseRedEnvelopParams { - [key: string]: any; -} -/** - * x 返回结果定义 - * @apiName biz.redenvelop.sendEnterpriseRedEnvelop - */ -export interface IBizRedenvelopSendEnterpriseRedEnvelopResult { - [key: string]: any; -} -/** - * x - * @apiName biz.redenvelop.sendEnterpriseRedEnvelop - * @supportVersion ios: 2.15 android: 2.15 - */ -export declare function sendEnterpriseRedEnvelop$(params: IBizRedenvelopSendEnterpriseRedEnvelopParams): Promise; -export default sendEnterpriseRedEnvelop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendEnterpriseRedEnvelop.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendEnterpriseRedEnvelop.js deleted file mode 100644 index 8e901be9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendEnterpriseRedEnvelop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendEnterpriseRedEnvelop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendEnterpriseRedEnvelop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.redenvelop.sendEnterpriseRedEnvelop",exports.sendEnterpriseRedEnvelop$=sendEnterpriseRedEnvelop$,exports.default=sendEnterpriseRedEnvelop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendNormalRedEnvelop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendNormalRedEnvelop.d.ts deleted file mode 100644 index 341908ef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendNormalRedEnvelop.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "biz.redenvelop.sendNormalRedEnvelop"; -/** - * x 请求参数定义 - * @apiName biz.redenvelop.sendNormalRedEnvelop - */ -export interface IBizRedenvelopSendNormalRedEnvelopParams { - /** 发送红包企业上下文 */ - corpId: string; - /** 专享红包的接收者,staffId集合 */ - receivers: any; - /** 默认红包附属文案 */ - cong?: string; - extraMsg?: string; - thirdpartId?: string; - thirdpartSource?: string; - /** 默认金额, 4.7.16以上支持 */ - defaultMoney?: number; -} -/** - * x 返回结果定义 - * @apiName biz.redenvelop.sendNormalRedEnvelop - */ -export interface IBizRedenvelopSendNormalRedEnvelopResult { - /** 1 成功 2失败 3取消 0 未知 */ - sendResult: number; -} -/** - * x - * @apiName biz.redenvelop.sendNormalRedEnvelop - * @supportVersion ios: 2.13 android: 2.13 - * @author Andriod : 朴文, IOS: 云信 - */ -export declare function sendNormalRedEnvelop$(params: IBizRedenvelopSendNormalRedEnvelopParams): Promise; -export default sendNormalRedEnvelop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendNormalRedEnvelop.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendNormalRedEnvelop.js deleted file mode 100644 index a4219380..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/redenvelop/sendNormalRedEnvelop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendNormalRedEnvelop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendNormalRedEnvelop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.redenvelop.sendNormalRedEnvelop",exports.sendNormalRedEnvelop$=sendNormalRedEnvelop$,exports.default=sendNormalRedEnvelop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/schedule/create.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/schedule/create.d.ts deleted file mode 100644 index 914d1feb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/schedule/create.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.schedule.create"; -/** - * 创建日程 请求参数定义 - * @apiName biz.schedule.create - */ -export interface IBizScheduleCreateParams { - [key: string]: any; -} -/** - * 创建日程 返回结果定义 - * @apiName biz.schedule.create - */ -export interface IBizScheduleCreateResult { - [key: string]: any; -} -/** - * 创建日程 - * @apiName biz.schedule.create - * @supportVersion ios: 4.2 android: 4.2 - */ -export declare function create$(params: IBizScheduleCreateParams): Promise; -export default create$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/schedule/create.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/schedule/create.js deleted file mode 100644 index 0ae89c27..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/schedule/create.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function create$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.create$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.schedule.create",exports.create$=create$,exports.default=create$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/shortCut/addShortCut.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/shortCut/addShortCut.d.ts deleted file mode 100644 index 1c8ea003..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/shortCut/addShortCut.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.shortCut.addShortCut"; -/** - * 增加桌面快捷方式 请求参数定义 - * @apiName biz.shortCut.addShortCut - */ -export interface IBizShortCutAddShortCutParams { - name: string; - corpId: string; - agentId: number; -} -/** - * 增加桌面快捷方式 返回结果定义 - * @apiName biz.shortCut.addShortCut - */ -export interface IBizShortCutAddShortCutResult { -} -/** - * 增加桌面快捷方式 - * @apiName biz.shortCut.addShortCut - * @supportVersion android: 4.7.32 - * @author android: 攸元 - */ -export declare function addShortCut$(params: IBizShortCutAddShortCutParams): Promise; -export default addShortCut$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/shortCut/addShortCut.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/shortCut/addShortCut.js deleted file mode 100644 index d0ce9763..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/shortCut/addShortCut.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addShortCut$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addShortCut$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.shortCut.addShortCut",exports.addShortCut$=addShortCut$,exports.default=addShortCut$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/disableStepCountSync.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/disableStepCountSync.d.ts deleted file mode 100644 index 2d545fac..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/disableStepCountSync.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "biz.sports.disableStepCountSync"; -/** - * 钉钉运动停止上传步数 请求参数定义 - * @apiName biz.sports.disableStepCountSync - */ -export interface IBizSportsDisableStepCountSyncParams { -} -/** - * 钉钉运动停止上传步数 返回结果定义 - * @apiName biz.sports.disableStepCountSync - */ -export interface IBizSportsDisableStepCountSyncResult { -} -/** - * 钉钉运动停止上传步数 - * @apiName biz.sports.disableStepCountSync - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function disableStepCountSync$(params: IBizSportsDisableStepCountSyncParams): Promise; -export default disableStepCountSync$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/disableStepCountSync.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/disableStepCountSync.js deleted file mode 100644 index d2bc2b42..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/disableStepCountSync.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disableStepCountSync$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.disableStepCountSync$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.sports.disableStepCountSync",exports.disableStepCountSync$=disableStepCountSync$,exports.default=disableStepCountSync$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/enableStepCountSync.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/enableStepCountSync.d.ts deleted file mode 100644 index 2e6d5dfa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/enableStepCountSync.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "biz.sports.enableStepCountSync"; -/** - * 钉钉运动开启上传步数 请求参数定义 - * @apiName biz.sports.enableStepCountSync - */ -export interface IBizSportsEnableStepCountSyncParams { -} -/** - * 钉钉运动开启上传步数 返回结果定义 - * @apiName biz.sports.enableStepCountSync - */ -export interface IBizSportsEnableStepCountSyncResult { -} -/** - * 钉钉运动开启上传步数 - * @apiName biz.sports.enableStepCountSync - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function enableStepCountSync$(params: IBizSportsEnableStepCountSyncParams): Promise; -export default enableStepCountSync$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/enableStepCountSync.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/enableStepCountSync.js deleted file mode 100644 index 605ee5a7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/enableStepCountSync.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enableStepCountSync$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enableStepCountSync$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.sports.enableStepCountSync",exports.enableStepCountSync$=enableStepCountSync$,exports.default=enableStepCountSync$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchAliuid.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchAliuid.d.ts deleted file mode 100644 index ee3c1c49..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchAliuid.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.sports.fetchAliuid"; -/** - * 阿里体育获取钉钉账号对应的阿里体育uid 请求参数定义 - * @apiName biz.sports.fetchAliuid - */ -export interface IBizSportsFetchAliuidParams { - [key: string]: any; -} -/** - * 阿里体育获取钉钉账号对应的阿里体育uid 返回结果定义 - * @apiName biz.sports.fetchAliuid - */ -export interface IBizSportsFetchAliuidResult { - [key: string]: any; -} -/** - * 阿里体育获取钉钉账号对应的阿里体育uid - * @apiName biz.sports.fetchAliuid - * @supportVersion ios: 4.6.3 android: 4.6.3 - */ -export declare function fetchAliuid$(params: IBizSportsFetchAliuidParams): Promise; -export default fetchAliuid$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchAliuid.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchAliuid.js deleted file mode 100644 index 79fa159f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchAliuid.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetchAliuid$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetchAliuid$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.sports.fetchAliuid",exports.fetchAliuid$=fetchAliuid$,exports.default=fetchAliuid$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchStephubSteps.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchStephubSteps.d.ts deleted file mode 100644 index 30b47c62..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchStephubSteps.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.sports.fetchStephubSteps"; -/** - * 从步数中心获取步数 请求参数定义 - * @apiName biz.sports.fetchStephubSteps - */ -export interface IBizSportsFetchStephubStepsParams { - statDate: string; -} -/** - * 从步数中心获取步数 返回结果定义 - * @apiName biz.sports.fetchStephubSteps - */ -export interface IBizSportsFetchStephubStepsResult { - count: number; - timestamp: number; -} -/** - * 从步数中心获取步数 - * @apiName biz.sports.fetchStephubSteps - * @supportVersion ios: 4.5.16 android: 4.5.16 - */ -export declare function fetchStephubSteps$(params: IBizSportsFetchStephubStepsParams): Promise; -export default fetchStephubSteps$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchStephubSteps.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchStephubSteps.js deleted file mode 100644 index 85601779..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchStephubSteps.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetchStephubSteps$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetchStephubSteps$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.sports.fetchStephubSteps",exports.fetchStephubSteps$=fetchStephubSteps$,exports.default=fetchStephubSteps$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoH5TrustLoginUrlForAlisports.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoH5TrustLoginUrlForAlisports.d.ts deleted file mode 100644 index 2aaebc7a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoH5TrustLoginUrlForAlisports.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.sports.fetchTaobaoH5TrustLoginUrlForAlisports"; -/** - * 阿里体育获取淘宝免登url 请求参数定义 - * @apiName biz.sports.fetchTaobaoH5TrustLoginUrlForAlisports - */ -export interface IBizSportsFetchTaobaoH5TrustLoginUrlForAlisportsParams { - targetUrl: string; - failedTargetUrl: string; -} -/** - * 阿里体育获取淘宝免登url 返回结果定义 - * @apiName biz.sports.fetchTaobaoH5TrustLoginUrlForAlisports - */ -export interface IBizSportsFetchTaobaoH5TrustLoginUrlForAlisportsResult { - result: string; -} -/** - * 阿里体育获取淘宝免登url - * @apiName biz.sports.fetchTaobaoH5TrustLoginUrlForAlisports - * @supportVersion ios: 4.5.16 android: 4.5.16 - */ -export declare function fetchTaobaoH5TrustLoginUrlForAlisports$(params: IBizSportsFetchTaobaoH5TrustLoginUrlForAlisportsParams): Promise; -export default fetchTaobaoH5TrustLoginUrlForAlisports$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoH5TrustLoginUrlForAlisports.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoH5TrustLoginUrlForAlisports.js deleted file mode 100644 index a6ac43f0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoH5TrustLoginUrlForAlisports.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetchTaobaoH5TrustLoginUrlForAlisports$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetchTaobaoH5TrustLoginUrlForAlisports$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.sports.fetchTaobaoH5TrustLoginUrlForAlisports",exports.fetchTaobaoH5TrustLoginUrlForAlisports$=fetchTaobaoH5TrustLoginUrlForAlisports$,exports.default=fetchTaobaoH5TrustLoginUrlForAlisports$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoId.d.ts deleted file mode 100644 index 1948a17a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoId.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "biz.sports.fetchTaobaoId"; -/** - * 阿里体育获取淘宝免登url 请求参数定义 - * @apiName biz.sports.fetchTaobaoId - */ -export interface IBizSportsFetchTaobaoIdParams { -} -/** - * 阿里体育获取淘宝免登url 返回结果定义 - * @apiName biz.sports.fetchTaobaoId - */ -export interface IBizSportsFetchTaobaoIdResult { - result: string; -} -/** - * 阿里体育获取淘宝免登url - * @apiName biz.sports.fetchTaobaoId - * @supportVersion ios: 4.5.16 android: 4.5.16 - */ -export declare function fetchTaobaoId$(params: IBizSportsFetchTaobaoIdParams): Promise; -export default fetchTaobaoId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoId.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoId.js deleted file mode 100644 index 060e73d2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/fetchTaobaoId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetchTaobaoId$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetchTaobaoId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.sports.fetchTaobaoId",exports.fetchTaobaoId$=fetchTaobaoId$,exports.default=fetchTaobaoId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/getTodaysStepCount.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/getTodaysStepCount.d.ts deleted file mode 100644 index e8de75c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/getTodaysStepCount.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -export declare const apiName = "biz.sports.getTodaysStepCount"; -/** - * 钉钉运动,后去当天行走步数 请求参数定义 - * @apiName biz.sports.getTodaysStepCount - */ -export interface IBizSportsGetTodaysStepCountParams { -} -/** - * 钉钉运动,后去当天行走步数 返回结果定义 - * @apiName biz.sports.getTodaysStepCount - */ -export interface IBizSportsGetTodaysStepCountResult { - /** 系统是否支持计步 */ - support: boolean; - /** 当前步数总数 */ - stepCount: number; - /** 最后一次上传的步数 */ - lastUploadCount: number; - /** 最后一次上传的时间 */ - lastUploadTime: number; - /** 是否已经开始计步 */ - countingStarted: boolean; - /** 注册系统计步传感器是否成功 */ - sensorInitialized: boolean; - /** 步数上传周期(毫秒) */ - uploadInterval: number; - /** 本地步数保存周期(毫秒) */ - saveInterval: number; - /** 最后一次步数记录是否是非法数据 */ - lastStepsInvalid: boolean; -} -/** - * 钉钉运动,后去当天行走步数 - * @apiName biz.sports.getTodaysStepCount - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function getTodaysStepCount$(params: IBizSportsGetTodaysStepCountParams): Promise; -export default getTodaysStepCount$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/getTodaysStepCount.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/getTodaysStepCount.js deleted file mode 100644 index 81934824..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/sports/getTodaysStepCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTodaysStepCount$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTodaysStepCount$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.sports.getTodaysStepCount",exports.getTodaysStepCount$=getTodaysStepCount$,exports.default=getTodaysStepCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/closeUnpayOrder.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/store/closeUnpayOrder.d.ts deleted file mode 100644 index 17852bbb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/closeUnpayOrder.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.store.closeUnpayOrder"; -/** - * 关闭订单 请求参数定义 - * @apiName biz.store.closeUnpayOrder - */ -export interface IBizStoreCloseUnpayOrderParams { - params: string; -} -/** - * 关闭订单 返回结果定义 - * @apiName biz.store.closeUnpayOrder - */ -export interface IBizStoreCloseUnpayOrderResult { - success: boolean; -} -/** - * 关闭订单 - * @apiName biz.store.closeUnpayOrder - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function closeUnpayOrder$(params: IBizStoreCloseUnpayOrderParams): Promise; -export default closeUnpayOrder$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/closeUnpayOrder.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/store/closeUnpayOrder.js deleted file mode 100644 index b334a16e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/closeUnpayOrder.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closeUnpayOrder$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.closeUnpayOrder$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.store.closeUnpayOrder",exports.closeUnpayOrder$=closeUnpayOrder$,exports.default=closeUnpayOrder$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/createOrder.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/store/createOrder.d.ts deleted file mode 100644 index 38ca00a1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/createOrder.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.store.createOrder"; -/** - * 创建订单 请求参数定义 - * @apiName biz.store.createOrder - */ -export interface IBizStoreCreateOrderParams { - params: string; -} -/** - * 创建订单 返回结果定义 - * @apiName biz.store.createOrder - */ -export interface IBizStoreCreateOrderResult { - bizOrderId: string; - totalFee: number; - totalActualPayFee: number; - totalActualPromFee: number; - refundFee: number; -} -/** - * 创建订单 - * @apiName biz.store.createOrder - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function createOrder$(params: IBizStoreCreateOrderParams): Promise; -export default createOrder$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/createOrder.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/store/createOrder.js deleted file mode 100644 index d4ab4a6f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/createOrder.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createOrder$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createOrder$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.store.createOrder",exports.createOrder$=createOrder$,exports.default=createOrder$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/getPayUrl.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/store/getPayUrl.d.ts deleted file mode 100644 index 7e795f92..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/getPayUrl.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.store.getPayUrl"; -/** - * 获取支付链接 请求参数定义 - * @apiName biz.store.getPayUrl - */ -export interface IBizStoreGetPayUrlParams { - params: string; -} -/** - * 获取支付链接 返回结果定义 - * @apiName biz.store.getPayUrl - */ -export interface IBizStoreGetPayUrlResult { - payUrl: string; - unionPayUrl: string; -} -/** - * 获取支付链接 - * @apiName biz.store.getPayUrl - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function getPayUrl$(params: IBizStoreGetPayUrlParams): Promise; -export default getPayUrl$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/getPayUrl.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/store/getPayUrl.js deleted file mode 100644 index 192d0c29..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/getPayUrl.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPayUrl$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPayUrl$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.store.getPayUrl",exports.getPayUrl$=getPayUrl$,exports.default=getPayUrl$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/inquiry.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/store/inquiry.d.ts deleted file mode 100644 index d972123e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/inquiry.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.store.inquiry"; -/** - * 内购查询 请求参数定义 - * @apiName biz.store.inquiry - */ -export interface IBizStoreInquiryParams { - params: string; -} -/** - * 内购查询 返回结果定义 - * @apiName biz.store.inquiry - */ -export interface IBizStoreInquiryResult { - bizOrderId: string; - totalFee: number; - totalActualPayFee: number; - totalActualPromFee: number; - refundFee: number; -} -/** - * 内购查询 - * @apiName biz.store.inquiry - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function inquiry$(params: IBizStoreInquiryParams): Promise; -export default inquiry$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/inquiry.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/store/inquiry.js deleted file mode 100644 index 57e1c020..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/store/inquiry.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function inquiry$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.inquiry$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.store.inquiry",exports.inquiry$=inquiry$,exports.default=inquiry$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/batchTags.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/batchTags.d.ts deleted file mode 100644 index 27723813..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/batchTags.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.tag.batchTags"; -/** - * 批量获取全局标签信息 请求参数定义 - * @apiName biz.tag.batchTags - */ -export interface IBizTagBatchTagsParams { - tagCodes: string[]; -} -/** - * 批量获取全局标签信息 返回结果定义 - * @apiName biz.tag.batchTags - */ -export interface IBizTagBatchTagsResult { - [tagCode: string]: { - valid: boolean; - name: string; - }; -} -/** - * 批量获取全局标签信息 - * @apiName biz.tag.batchTags - * @supportVersion pc: 5.1.40 - * @author PC:心存 - */ -export declare function batchTags$(params: IBizTagBatchTagsParams): Promise; -export default batchTags$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/batchTags.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/batchTags.js deleted file mode 100644 index 93b8e627..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/batchTags.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function batchTags$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.batchTags$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.tag.batchTags",exports.batchTags$=batchTags$,exports.default=batchTags$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/mark.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/mark.d.ts deleted file mode 100644 index d21af1c1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/mark.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.tag.mark"; -/** - * 呼起打标页面 请求参数定义 - * @apiName biz.tag.mark - */ -export interface IBizTagMarkParams { - /** 实体类型,例如 消息、联系人、会话 */ - entityType: string; - /** 实体 id,例如 消息id、uid、cid */ - entityId: string; - /** 来源:im_chatlist、im_msglist 。规则: 业务缩写_场景 */ - source: string; - /** 实体子类型。给消息打标传:im_text、im_img、im_audio、im_video 即消息类型枚举,业务自行决定枚举 */ - entitySubtype?: string; - /** 打标窗口 title, 覆盖默认title,可选 */ - title?: string; -} -/** - * 呼起打标页面 返回结果定义 - * @apiName biz.tag.mark - */ -export interface IBizTagMarkResult { -} -/** - * 呼起打标页面 - * @apiName biz.tag.mark - * @supportVersion ios: 5.1.40 android: 5.1.40 pc: 5.1.40 - * @author PC:心存, iOS:木锤, Android:峰砺 - */ -export declare function mark$(params: IBizTagMarkParams): Promise; -export default mark$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/mark.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/mark.js deleted file mode 100644 index f585e1f6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/tag/mark.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function mark$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.mark$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.tag.mark",exports.mark$=mark$,exports.default=mark$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/call.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/call.d.ts deleted file mode 100644 index 00e48113..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/call.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.telephone.call"; -/** - * 打电话 请求参数定义 - * @apiName biz.telephone.call - */ -export interface IBizTelephoneCallParams { - [key: string]: any; -} -/** - * 打电话 返回结果定义 - * @apiName biz.telephone.call - */ -export interface IBizTelephoneCallResult { - [key: string]: any; -} -/** - * 打电话 - * @apiName biz.telephone.call - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function call$(params: IBizTelephoneCallParams): Promise; -export default call$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/call.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/call.js deleted file mode 100644 index 54d24264..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/call.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function call$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.call$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.telephone.call",exports.call$=call$,exports.default=call$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/callOrgExternalContacts.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/callOrgExternalContacts.d.ts deleted file mode 100644 index 2581487e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/callOrgExternalContacts.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.telephone.callOrgExternalContacts"; -/** - * 企业员工拨打企业外部联系人电话 请求参数定义 - * @apiName biz.telephone.callOrgExternalContacts - */ -export interface IBizTelephoneCallOrgExternalContactsParams { - [key: string]: any; -} -/** - * 企业员工拨打企业外部联系人电话 返回结果定义 - * @apiName biz.telephone.callOrgExternalContacts - */ -export interface IBizTelephoneCallOrgExternalContactsResult { - [key: string]: any; -} -/** - * 企业员工拨打企业外部联系人电话 - * @apiName biz.telephone.callOrgExternalContacts - * @supportVersion ios: 3.5.3 android: 3.5.3 - */ -export declare function callOrgExternalContacts$(params: IBizTelephoneCallOrgExternalContactsParams): Promise; -export default callOrgExternalContacts$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/callOrgExternalContacts.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/callOrgExternalContacts.js deleted file mode 100644 index 5e2872e6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/callOrgExternalContacts.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function callOrgExternalContacts$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.callOrgExternalContacts$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.telephone.callOrgExternalContacts",exports.callOrgExternalContacts$=callOrgExternalContacts$,exports.default=callOrgExternalContacts$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/checkBizCall.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/checkBizCall.d.ts deleted file mode 100644 index cf322ffd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/checkBizCall.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.telephone.checkBizCall"; -/** - * 检查某个corpId下的办公电话是否开通 请求参数定义 - * @apiName biz.telephone.checkBizCall - */ -export interface IBizTelephoneCheckBizCallParams { - [key: string]: any; -} -/** - * 检查某个corpId下的办公电话是否开通 返回结果定义 - * @apiName biz.telephone.checkBizCall - */ -export interface IBizTelephoneCheckBizCallResult { - [key: string]: any; -} -/** - * 检查某个corpId下的办公电话是否开通 - * @apiName biz.telephone.checkBizCall - * @supportVersion pc: 4.0.0 ios: 3.5.6 android: 3.5.6 - */ -export declare function checkBizCall$(params: IBizTelephoneCheckBizCallParams): Promise; -export default checkBizCall$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/checkBizCall.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/checkBizCall.js deleted file mode 100644 index a11074de..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/checkBizCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkBizCall$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkBizCall$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.telephone.checkBizCall",exports.checkBizCall$=checkBizCall$,exports.default=checkBizCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCall.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCall.d.ts deleted file mode 100644 index bd4f6692..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCall.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.telephone.quickCall"; -/** - * 快速选择发起办公电话还是普通电话(以后按需扩展) 请求参数定义 - * @apiName biz.telephone.quickCall - */ -export interface IBizTelephoneQuickCallParams { - [key: string]: any; -} -/** - * 快速选择发起办公电话还是普通电话(以后按需扩展) 返回结果定义 - * @apiName biz.telephone.quickCall - */ -export interface IBizTelephoneQuickCallResult { - [key: string]: any; -} -/** - * 快速选择发起办公电话还是普通电话(以后按需扩展) - * @apiName biz.telephone.quickCall - * @supportVersion ios: 3.5.3 android: 3.5.3 - */ -export declare function quickCall$(params: IBizTelephoneQuickCallParams): Promise; -export default quickCall$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCall.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCall.js deleted file mode 100644 index e52b4fd9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function quickCall$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.quickCall$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.telephone.quickCall",exports.quickCall$=quickCall$,exports.default=quickCall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCallList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCallList.d.ts deleted file mode 100644 index bf79fa5b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCallList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.telephone.quickCallList"; -/** - * 拨打单人电话选项(可定制) 请求参数定义 - * @apiName biz.telephone.quickCallList - */ -export interface IBizTelephoneQuickCallListParams { - [key: string]: any; -} -/** - * 拨打单人电话选项(可定制) 返回结果定义 - * @apiName biz.telephone.quickCallList - */ -export interface IBizTelephoneQuickCallListResult { - [key: string]: any; -} -/** - * 拨打单人电话选项(可定制) - * @apiName biz.telephone.quickCallList - * @supportVersion pc: 3.5.6 ios: 3.5.6 android: 3.5.6 - */ -export declare function quickCallList$(params: IBizTelephoneQuickCallListParams): Promise; -export default quickCallList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCallList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCallList.js deleted file mode 100644 index 0ead2ae5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/quickCallList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function quickCallList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.quickCallList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.telephone.quickCallList",exports.quickCallList$=quickCallList$,exports.default=quickCallList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/showCallMenu.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/showCallMenu.d.ts deleted file mode 100644 index 1e4be521..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/showCallMenu.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.telephone.showCallMenu"; -/** - * 打电话选择面板 请求参数定义 - * @apiName biz.telephone.showCallMenu - */ -export interface IBizTelephoneShowCallMenuParams { - [key: string]: any; -} -/** - * 打电话选择面板 返回结果定义 - * @apiName biz.telephone.showCallMenu - */ -export interface IBizTelephoneShowCallMenuResult { - [key: string]: any; -} -/** - * 打电话选择面板 - * @apiName biz.telephone.showCallMenu - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function showCallMenu$(params: IBizTelephoneShowCallMenuParams): Promise; -export default showCallMenu$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/showCallMenu.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/showCallMenu.js deleted file mode 100644 index 48e1e7e2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/telephone/showCallMenu.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showCallMenu$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showCallMenu$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.telephone.showCallMenu",exports.showCallMenu$=showCallMenu$,exports.default=showCallMenu$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/directLogin.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/directLogin.d.ts deleted file mode 100644 index 1215a9a0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/directLogin.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "biz.uic.directLogin"; -/** - * 直接免登 请求参数定义 - * @apiName biz.uic.directLogin - */ -export interface IBizUicDirectLoginParams { - /** 企业corpId */ - corpId: string; - /** 业务类型(天猫、新零售、xxx) */ - bizType: string; - /** 用户id */ - userId: string; -} -/** - * 直接免登 返回结果定义 - * @apiName biz.uic.directLogin - */ -export interface IBizUicDirectLoginResult { - message: string; - /** cookie_set_success表示单账号免登成功;userlist表示多账号,会返回用户列表;error_message表示免登失败 */ - resultType: string; -} -/** - * 直接免登 - * @apiName biz.uic.directLogin - * @supportVersion ios: 4.5.0 android: 4.5.0 - */ -export declare function directLogin$(params: IBizUicDirectLoginParams): Promise; -export default directLogin$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/directLogin.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/directLogin.js deleted file mode 100644 index 7b3650d7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/directLogin.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function directLogin$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.directLogin$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.uic.directLogin",exports.directLogin$=directLogin$,exports.default=directLogin$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/doLogin.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/doLogin.d.ts deleted file mode 100644 index 6c287cb9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/doLogin.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "biz.uic.doLogin"; -/** - * uic获取免登数据 请求参数定义 - * @apiName biz.uic.doLogin - */ -export interface IBizUicDoLoginParams { - /** 企业corpId */ - corpId: string; - /** 业务类型(天猫、新零售、xxx) */ - bizType: string; -} -/** - * uic获取免登数据 返回结果定义 - * @apiName biz.uic.doLogin - */ -export interface IBizUicDoLoginResult { - message: string; - /** cookie_set_success表示单账号免登成功;userlist表示多账号,会返回用户列表;error_message表示免登失败 */ - resultType: string; - /** 根据resultType解析对应数据 */ - data?: string; -} -/** - * uic获取免登数据 - * @apiName biz.uic.doLogin - * @supportVersion ios: 4.5.0 android: 4.5.0 - */ -export declare function doLogin$(params: IBizUicDoLoginParams): Promise; -export default doLogin$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/doLogin.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/doLogin.js deleted file mode 100644 index a473415f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/uic/doLogin.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function doLogin$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.doLogin$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.uic.doLogin",exports.doLogin$=doLogin$,exports.default=doLogin$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/checkPassword.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/checkPassword.d.ts deleted file mode 100644 index 77a7d932..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/checkPassword.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.user.checkPassword"; -/** - * 验证钉钉密码已验证当前用户是否当前钉钉账户持有人 请求参数定义 - * @apiName biz.user.checkPassword - */ -export interface IBizUserCheckPasswordParams { - [key: string]: any; -} -/** - * 验证钉钉密码已验证当前用户是否当前钉钉账户持有人 返回结果定义 - * @apiName biz.user.checkPassword - */ -export interface IBizUserCheckPasswordResult { - /** 结果,int (1 success,2 fail) */ - result: number; -} -/** - * 验证钉钉密码已验证当前用户是否当前钉钉账户持有人 - * @apiName biz.user.checkPassword - * @supportVersion ios: 4.5.8 android: 4.5.8 - */ -export declare function checkPassword$(params: IBizUserCheckPasswordParams): Promise; -export default checkPassword$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/checkPassword.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/checkPassword.js deleted file mode 100644 index da85ff81..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/checkPassword.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkPassword$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkPassword$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.user.checkPassword",exports.checkPassword$=checkPassword$,exports.default=checkPassword$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/get.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/get.d.ts deleted file mode 100644 index bc82ba3b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/get.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.user.get"; -/** - * 获取当前登录用户信息 请求参数定义 - * @apiName biz.user.get - */ -export interface IBizUserGetParams { - /** 是否允许无组织用户 (4.6.37以上版本支持) */ - allowNoOrgUser?: boolean; - [key: string]: any; -} -/** - * 获取当前登录用户信息 返回结果定义 - * @apiName biz.user.get - */ -export interface IBizUserGetResult { - [key: string]: any; -} -/** - * 获取当前登录用户信息 - * @apiName biz.user.get - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function get$(params: IBizUserGetParams): Promise; -export default get$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/get.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/get.js deleted file mode 100644 index 71201d19..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/get.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function get$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.get$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.user.get",exports.get$=get$,exports.default=get$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginBySms.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginBySms.d.ts deleted file mode 100644 index fbf36252..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginBySms.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "biz.user.loginBySms"; -/** - * 通过短信验证码或者tmpCode进行登录 请求参数定义 - * @apiName biz.user.loginBySms - */ -export interface IBizUserLoginBySmsParams { - /** 用户手机号 */ - mobile: string; - /** 用户上次验证因子code */ - tmpCode: string; - /** 用户跳转入口 */ - entrance: string; - /** 是否抢注 */ - takeBack: boolean; - /** 识别当前手机号的是哪个用户id */ - historyId: number; -} -/** - * 通过短信验证码或者tmpCode进行登录 返回结果定义 - * @apiName biz.user.loginBySms - */ -export interface IBizUserLoginBySmsResult { - /** uid */ - id: number; -} -/** - * 通过短信验证码或者tmpCode进行登录 - * @apiName biz.user.loginBySms - * @supportVersion ios: 4.7.24 android: 4.7.24 - * @author android:码梦, ios:晓毒 - */ -export declare function loginBySms$(params: IBizUserLoginBySmsParams): Promise; -export default loginBySms$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginBySms.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginBySms.js deleted file mode 100644 index 81601ab7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginBySms.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function loginBySms$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.loginBySms$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.user.loginBySms",exports.loginBySms$=loginBySms$,exports.default=loginBySms$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginTaobaoWithDingtalkUserToken.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginTaobaoWithDingtalkUserToken.d.ts deleted file mode 100644 index 35edf363..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginTaobaoWithDingtalkUserToken.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "biz.user.loginTaobaoWithDingtalkUserToken"; -/** - * 使用钉钉usertoken登录淘宝 请求参数定义 - * @apiName biz.user.loginTaobaoWithDingtalkUserToken - */ -export interface IBizUserLoginTaobaoWithDingtalkUserTokenParams { -} -/** - * 使用钉钉usertoken登录淘宝 返回结果定义 - * @apiName biz.user.loginTaobaoWithDingtalkUserToken - */ -export interface IBizUserLoginTaobaoWithDingtalkUserTokenResult { -} -/** - * 使用钉钉usertoken登录淘宝 - * @apiName biz.user.loginTaobaoWithDingtalkUserToken - * @supportVersion ios: 4.7.10 android: 4.7.10 - * @author iOS:晨燕, Android:码梦 - */ -export declare function loginTaobaoWithDingtalkUserToken$(params: IBizUserLoginTaobaoWithDingtalkUserTokenParams): Promise; -export default loginTaobaoWithDingtalkUserToken$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginTaobaoWithDingtalkUserToken.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginTaobaoWithDingtalkUserToken.js deleted file mode 100644 index cb918d30..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/loginTaobaoWithDingtalkUserToken.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function loginTaobaoWithDingtalkUserToken$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.loginTaobaoWithDingtalkUserToken$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.user.loginTaobaoWithDingtalkUserToken",exports.loginTaobaoWithDingtalkUserToken$=loginTaobaoWithDingtalkUserToken$,exports.default=loginTaobaoWithDingtalkUserToken$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/secretID.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/secretID.d.ts deleted file mode 100644 index b2c57f67..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/secretID.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.user.secretID"; -/** - * 获取用户登录唯一标识 请求参数定义 - * @apiName biz.user.secretID - */ -export interface IBizUserSecretIDParams { - [key: string]: any; -} -/** - * 获取用户登录唯一标识 返回结果定义 - * @apiName biz.user.secretID - */ -export interface IBizUserSecretIDResult { - [key: string]: any; -} -/** - * 获取用户登录唯一标识 - * @apiName biz.user.secretID - * @supportVersion ios: 2.5.2 android: 2.5.2 - */ -export declare function secretID$(params: IBizUserSecretIDParams): Promise; -export default secretID$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/secretID.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/user/secretID.js deleted file mode 100644 index 807160bb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/user/secretID.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function secretID$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.secretID$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.user.secretID",exports.secretID$=secretID$,exports.default=secretID$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/acitveConversation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/acitveConversation.d.ts deleted file mode 100644 index e21615d8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/acitveConversation.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.util.acitveConversation"; -/** - * 激活会话窗口 请求参数定义 - * @apiName biz.util.acitveConversation - */ -export interface IBizUtilAcitveConversationParams { - cid: string; - messageId?: string; - keyword?: string; - createdAt?: string; -} -/** - * 激活会话窗口 返回结果定义 - * @apiName biz.util.acitveConversation - */ -export interface IBizUtilAcitveConversationResult { -} -/** - * 激活会话窗口 - * @apiName biz.util.acitveConversation - * @supportVersion win: 6.0.8 mac: 6.0.8 - * @author win:周镛 mac:伯温 - */ -export declare function acitveConversation$(params: IBizUtilAcitveConversationParams): Promise; -export default acitveConversation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/acitveConversation.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/acitveConversation.js deleted file mode 100644 index e1cab34f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/acitveConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function acitveConversation$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.acitveConversation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.acitveConversation",exports.acitveConversation$=acitveConversation$,exports.default=acitveConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addCalendarEvent.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addCalendarEvent.d.ts deleted file mode 100644 index df198b5b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addCalendarEvent.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "biz.util.addCalendarEvent"; -/** - * 添加日历事件到默认日历 请求参数定义 - * @apiName biz.util.addCalendarEvent - */ -export interface IBizUtilAddCalendarEventParams { - /** 日历事件标题 */ - title?: string; - /** 事件开始时间戳,单位为毫秒。 */ - beginTime: number; - /** 事件结束时间,单位为毫秒。如果缺失。默认为开始时间后1小时。如果小于开始时间,则强制设为开始时间 */ - endTime?: number; - /** 事件详细信息 */ - content?: string; -} -/** - * 添加日历事件到默认日历 返回结果定义 - * @apiName biz.util.addCalendarEvent - */ -export interface IBizUtilAddCalendarEventResult { -} -/** - * 添加日历事件到默认日历 - * @apiName biz.util.addCalendarEvent - * @supportVersion ios: 5.1.37 android: 5.1.37 - * @author Android: 步定, iOS: 照磊 - */ -export declare function addCalendarEvent$(params: IBizUtilAddCalendarEventParams): Promise; -export default addCalendarEvent$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addCalendarEvent.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addCalendarEvent.js deleted file mode 100644 index 6df0b2b3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addCalendarEvent.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addCalendarEvent$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addCalendarEvent$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.addCalendarEvent",exports.addCalendarEvent$=addCalendarEvent$,exports.default=addCalendarEvent$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addDesktopShortcuts.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addDesktopShortcuts.d.ts deleted file mode 100644 index e5d645a7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addDesktopShortcuts.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.addDesktopShortcuts"; -/** - * 添加桌面快捷方式 请求参数定义 - * @apiName biz.util.addDesktopShortcuts - */ -export interface IBizUtilAddDesktopShortcutsParams { - [key: string]: any; -} -/** - * 添加桌面快捷方式 返回结果定义 - * @apiName biz.util.addDesktopShortcuts - */ -export interface IBizUtilAddDesktopShortcutsResult { - [key: string]: any; -} -/** - * 添加桌面快捷方式 - * @apiName biz.util.addDesktopShortcuts - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function addDesktopShortcuts$(params: IBizUtilAddDesktopShortcutsParams): Promise; -export default addDesktopShortcuts$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addDesktopShortcuts.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addDesktopShortcuts.js deleted file mode 100644 index 88035874..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/addDesktopShortcuts.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addDesktopShortcuts$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addDesktopShortcuts$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.addDesktopShortcuts",exports.addDesktopShortcuts$=addDesktopShortcuts$,exports.default=addDesktopShortcuts$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chooseImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chooseImage.d.ts deleted file mode 100644 index 692db794..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chooseImage.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.util.chooseImage"; -/** - * 图片选择 请求参数定义 - * @apiName biz.util.chooseImage - */ -export interface IBizUtilChooseImageParams { - /** 最大可选照片数,默认1张 */ - count?: number; - /** 相册选取或者拍照,默认 ['camera','album'] */ - sourceType?: string[]; -} -/** - * 图片选择 返回结果定义 - * @apiName biz.util.chooseImage - */ -export interface IBizUtilChooseImageResult { - filePaths: string[]; - files: Array<{ - path: string; - size: number; - fileType: string; - }>; -} -/** - * 图片选择 - * @apiName biz.util.chooseImage - * @supportVersion ios: 5.1.1 android: 5.1.1 - * @author Android:狐斐 iOS:须莫 - */ -export declare function chooseImage$(params: IBizUtilChooseImageParams): Promise; -export default chooseImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chooseImage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chooseImage.js deleted file mode 100644 index 0b32f159..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chooseImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.chooseImage",exports.chooseImage$=chooseImage$,exports.default=chooseImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chosen.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chosen.d.ts deleted file mode 100644 index 7c220593..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chosen.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "biz.util.chosen"; -/** - * 下拉控件 请求参数定义 - * @apiName biz.util.chosen - */ -export interface IBizUtilChosenParams { - /** 下拉控件的内容 */ - source: Array<{ - /** 显示文本 */ - key: string; - /** 文本对应的值 */ - value: string; - }>; - /** 默认选中的key */ - selectedKey: string; -} -/** - * 下拉控件 返回结果定义 - * @apiName biz.util.chosen - */ -export interface IBizUtilChosenResult { - /** 显示文本 */ - key: string; - /** 文本对应的值 */ - value: string; -} -/** - * 下拉控件 - * @apiName biz.util.chosen - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function chosen$(params: IBizUtilChosenParams): Promise; -export default chosen$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chosen.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chosen.js deleted file mode 100644 index 88ba63f2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/chosen.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chosen$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chosen$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.chosen",exports.chosen$=chosen$,exports.default=chosen$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/clearWebStoreCache.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/clearWebStoreCache.d.ts deleted file mode 100644 index 6db3d740..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/clearWebStoreCache.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.util.clearWebStoreCache"; -/** - * 清理Web缓存 请求参数定义 - * @apiName biz.util.clearWebStoreCache - */ -export interface IBizUtilClearWebStoreCacheParams { -} -/** - * 清理Web缓存 返回结果定义 - * @apiName biz.util.clearWebStoreCache - */ -export interface IBizUtilClearWebStoreCacheResult { - /** 用户是否选择清理 */ - choice_clear: boolean; -} -/** - * 清理Web缓存 - * @apiName biz.util.clearWebStoreCache - * @supportVersion Windows:6.0.22 - * @author Windows: 心存 - */ -export declare function clearWebStoreCache$(params: IBizUtilClearWebStoreCacheParams): Promise; -export default clearWebStoreCache$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/clearWebStoreCache.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/clearWebStoreCache.js deleted file mode 100644 index 42f25763..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/clearWebStoreCache.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function clearWebStoreCache$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.clearWebStoreCache$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.clearWebStoreCache",exports.clearWebStoreCache$=clearWebStoreCache$,exports.default=clearWebStoreCache$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/compressImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/compressImage.d.ts deleted file mode 100644 index 790e57b5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/compressImage.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.util.compressImage"; -/** - * 图片压缩 请求参数定义 - * @apiName biz.util.compressImage - */ -export interface IBizUtilCompressImageParams { - /** 要压缩的图片地址数组 */ - filePaths: string[]; - /** 压缩级别,支持 0 ~ 4 的整数,默认 4。 */ - compressLevel?: number; -} -/** - * 图片压缩 返回结果定义 - * @apiName biz.util.compressImage - */ -export interface IBizUtilCompressImageResult { - /** 压缩后的路径数组 */ - filePaths: string[]; -} -/** - * 图片压缩 - * @apiName biz.util.compressImage - * @supportVersion ios: 5.1.1 android: 5.1.1 - */ -export declare function compressImage$(params: IBizUtilCompressImageParams): Promise; -export default compressImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/compressImage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/compressImage.js deleted file mode 100644 index f04727dd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/compressImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function compressImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.compressImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.compressImage",exports.compressImage$=compressImage$,exports.default=compressImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/createVoipConference.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/createVoipConference.d.ts deleted file mode 100644 index 598f5bc3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/createVoipConference.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.createVoipConference"; -/** - * 创建voip会议 请求参数定义 - * @apiName biz.util.createVoipConference - */ -export interface IBizUtilCreateVoipConferenceParams { - [key: string]: any; -} -/** - * 创建voip会议 返回结果定义 - * @apiName biz.util.createVoipConference - */ -export interface IBizUtilCreateVoipConferenceResult { - [key: string]: any; -} -/** - * 创建voip会议 - * @apiName biz.util.createVoipConference - * @supportVersion pc: 3.0.0 - */ -export declare function createVoipConference$(params: IBizUtilCreateVoipConferenceParams): Promise; -export default createVoipConference$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/createVoipConference.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/createVoipConference.js deleted file mode 100644 index af9db6e9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/createVoipConference.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createVoipConference$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createVoipConference$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.createVoipConference",exports.createVoipConference$=createVoipConference$,exports.default=createVoipConference$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datepicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datepicker.d.ts deleted file mode 100644 index c740d40f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datepicker.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.util.datepicker"; -/** - * 日期选择器 请求参数定义 - * @apiName biz.util.datepicker - */ -export interface IBizUtilDatepickerParams { - /** format只支持android系统规范,即2015-03-31格式为yyyy-MM-dd */ - format?: string; - /** 默认显示日期 */ - value?: string; -} -/** - * 日期选择器 返回结果定义 - * @apiName biz.util.datepicker - */ -export interface IBizUtilDatepickerResult { - /** 返回选择的日期 */ - value: string; -} -/** - * 日期选择器 - * @description 注意:format只支持android系统规范,即2015-03-31格式为yyyy-MM-dd - * @apiName biz.util.datepicker - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function datepicker$(params: IBizUtilDatepickerParams): Promise; -export default datepicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datepicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datepicker.js deleted file mode 100644 index 30aa865a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datepicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function datepicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.datepicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.datepicker",exports.datepicker$=datepicker$,exports.default=datepicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datetimepicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datetimepicker.d.ts deleted file mode 100644 index c71d014b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datetimepicker.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.util.datetimepicker"; -/** - * 日期时间控件 请求参数定义 - * @apiName biz.util.datetimepicker - */ -export interface IBizUtilDatetimepickerParams { - /** 日期和时间的格式 */ - format?: string; - /** 默认显示日期和时间 */ - value?: string; -} -/** - * 日期时间控件 返回结果定义 - * @apiName biz.util.datetimepicker - */ -export interface IBizUtilDatetimepickerResult { - /** 返回选择的日期和时间 */ - value: string; -} -/** - * 日期时间控件 - * @apiName biz.util.datetimepicker - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function datetimepicker$(params: IBizUtilDatetimepickerParams): Promise; -export default datetimepicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datetimepicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datetimepicker.js deleted file mode 100644 index ccc9673b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/datetimepicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function datetimepicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.datetimepicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.datetimepicker",exports.datetimepicker$=datetimepicker$,exports.default=datetimepicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/decrypt.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/decrypt.d.ts deleted file mode 100644 index 313d4752..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/decrypt.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.decrypt"; -/** - * 解密 请求参数定义 - * @apiName biz.util.decrypt - */ -export interface IBizUtilDecryptParams { - [key: string]: any; -} -/** - * 解密 返回结果定义 - * @apiName biz.util.decrypt - */ -export interface IBizUtilDecryptResult { - [key: string]: any; -} -/** - * 解密 - * @apiName biz.util.decrypt - * @supportVersion pc: 3.0.0 ios: 2.9.1 android: 2.9.1 - */ -export declare function decrypt$(params: IBizUtilDecryptParams): Promise; -export default decrypt$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/decrypt.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/decrypt.js deleted file mode 100644 index d2c62686..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/decrypt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function decrypt$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.decrypt$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.decrypt",exports.decrypt$=decrypt$,exports.default=decrypt$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/downloadFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/downloadFile.d.ts deleted file mode 100644 index 3049f2df..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/downloadFile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.downloadFile"; -/** - * 下载文件 请求参数定义 - * @apiName biz.util.downloadFile - */ -export interface IBizUtilDownloadFileParams { - [key: string]: any; -} -/** - * 下载文件 返回结果定义 - * @apiName biz.util.downloadFile - */ -export interface IBizUtilDownloadFileResult { - [key: string]: any; -} -/** - * 下载文件 - * @apiName biz.util.downloadFile - * @supportVersion pc: 2.5.0 - */ -export declare function downloadFile$(params: IBizUtilDownloadFileParams): Promise; -export default downloadFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/downloadFile.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/downloadFile.js deleted file mode 100644 index 3483770b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/downloadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function downloadFile$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.downloadFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.downloadFile",exports.downloadFile$=downloadFile$,exports.default=downloadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editPicture.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editPicture.d.ts deleted file mode 100644 index 409a9ac0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editPicture.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "biz.util.editPicture"; -/** - * 编辑图片功能 请求参数定义 - * @apiName biz.util.editPicture - */ -export interface IBizUtilEditPictureParams { - /** 图片的远端路径或者本地虚拟路径 */ - url: string; - /** 新窗口 title ,pc 端支持 */ - windowTitle?: string; -} -/** - * 编辑图片功能 返回结果定义 - * @apiName biz.util.editPicture - */ -export interface IBizUtilEditPictureResult { - /** 本地虚拟路径 */ - path: string; -} -/** - * 编辑图片功能 - * @apiName biz.util.editPicture - * @supportVersion ios: 4.7.32 android: 4.7.32 - * @author Android:卓剑, iOS:须莫 - */ -export declare function editPicture$(params: IBizUtilEditPictureParams): Promise; -export default editPicture$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editPicture.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editPicture.js deleted file mode 100644 index 06f1221c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editPicture.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function editPicture$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.editPicture$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.editPicture",exports.editPicture$=editPicture$,exports.default=editPicture$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editSpaceFileOnline.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editSpaceFileOnline.d.ts deleted file mode 100644 index d22a4603..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editSpaceFileOnline.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.util.editSpaceFileOnline"; -/** - * 编辑在线文件 请求参数定义 - * @apiName biz.util.editSpaceFileOnline - */ -export interface IBizUtilEditSpaceFileOnlineParams { - /** 钉盘文件参数space_id */ - space: string; - /** 钉盘文件参数file_id */ - file: string; - /** 会话Id */ - cid?: string; - /** 消息id */ - mid?: string; - /** 所有者Id */ - owner?: string; -} -/** - * 编辑在线文件 返回结果定义 - * @apiName biz.util.editSpaceFileOnline - */ -export interface IBizUtilEditSpaceFileOnlineResult { -} -/** - * 编辑在线文件 - * @apiName biz.util.editSpaceFileOnline - * @supportVersion win: 6.0.8 mac: 6.0.8 - * @author win:周镛 mac:伯温 - */ -export declare function editSpaceFileOnline$(params: IBizUtilEditSpaceFileOnlineParams): Promise; -export default editSpaceFileOnline$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editSpaceFileOnline.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editSpaceFileOnline.js deleted file mode 100644 index b2a0d3c3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/editSpaceFileOnline.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function editSpaceFileOnline$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.editSpaceFileOnline$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.editSpaceFileOnline",exports.editSpaceFileOnline$=editSpaceFileOnline$,exports.default=editSpaceFileOnline$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/encrypt.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/encrypt.d.ts deleted file mode 100644 index 76eae1ca..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/encrypt.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.encrypt"; -/** - * 加密 请求参数定义 - * @apiName biz.util.encrypt - */ -export interface IBizUtilEncryptParams { - [key: string]: any; -} -/** - * 加密 返回结果定义 - * @apiName biz.util.encrypt - */ -export interface IBizUtilEncryptResult { - [key: string]: any; -} -/** - * 加密 - * @apiName biz.util.encrypt - * @supportVersion pc: 3.0.0 ios: 2.9.1 android: 2.9.1 - */ -export declare function encrypt$(params: IBizUtilEncryptParams): Promise; -export default encrypt$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/encrypt.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/encrypt.js deleted file mode 100644 index 1c1a3ee7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/encrypt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function encrypt$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.encrypt$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.encrypt",exports.encrypt$=encrypt$,exports.default=encrypt$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchFileData.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchFileData.d.ts deleted file mode 100644 index d1f12202..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchFileData.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.fetchFileData"; -/** - * 获取客户端本地文件二进制数据 请求参数定义 - * @apiName biz.util.fetchFileData - */ -export interface IBizUtilFetchFileDataParams { - [key: string]: any; -} -/** - * 获取客户端本地文件二进制数据 返回结果定义 - * @apiName biz.util.fetchFileData - */ -export interface IBizUtilFetchFileDataResult { - [key: string]: any; -} -/** - * 获取客户端本地文件二进制数据 - * @apiName biz.util.fetchFileData - * @supportVersion ios: 3.4 android: 3.4 - */ -export declare function fetchFileData$(params: IBizUtilFetchFileDataParams): Promise; -export default fetchFileData$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchFileData.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchFileData.js deleted file mode 100644 index 9d2b273b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchFileData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetchFileData$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetchFileData$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.fetchFileData",exports.fetchFileData$=fetchFileData$,exports.default=fetchFileData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchImageData.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchImageData.d.ts deleted file mode 100644 index 22a3be3f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchImageData.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.fetchImageData"; -/** - * 在相册中拾取某张图片,对图片数据base64编码后返回给js 请求参数定义 - * @apiName biz.util.fetchImageData - */ -export interface IBizUtilFetchImageDataParams { - [key: string]: any; -} -/** - * 在相册中拾取某张图片,对图片数据base64编码后返回给js 返回结果定义 - * @apiName biz.util.fetchImageData - */ -export interface IBizUtilFetchImageDataResult { - [key: string]: any; -} -/** - * 在相册中拾取某张图片,对图片数据base64编码后返回给js - * @apiName biz.util.fetchImageData - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function fetchImageData$(params: IBizUtilFetchImageDataParams): Promise; -export default fetchImageData$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchImageData.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchImageData.js deleted file mode 100644 index c0d0de56..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/fetchImageData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetchImageData$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetchImageData$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.fetchImageData",exports.fetchImageData$=fetchImageData$,exports.default=fetchImageData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/forwardDpFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/forwardDpFile.d.ts deleted file mode 100644 index ed75f9e7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/forwardDpFile.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -export declare const apiName = "biz.util.forwardDpFile"; -/** - * 转发钉盘文件 请求参数定义 - * @apiName biz.util.forwardDpFile - */ -export interface IBizUtilForwardDpFileParams { - /** 钉盘文件参数space_id */ - space: string; - /** 钉盘文件参数file_id */ - file: string; - /** 钉盘文件名称 */ - name?: string; - /** 优先级 */ - priority?: string; - /** 组织id */ - orgId?: string; - /** 是否加密 */ - isEncrypt?: boolean; - /** 媒体id */ - isFolder?: boolean; -} -/** - * 转发钉盘文件 返回结果定义 - * @apiName biz.util.forwardDpFile - */ -export interface IBizUtilForwardDpFileResult { -} -/** - * 转发钉盘文件 - * @apiName biz.util.forwardDpFile - * @supportVersion win: 6.0.8 mac: 6.0.8 - * @author win:周镛 mac:伯温 - */ -export declare function forwardDpFile$(params: IBizUtilForwardDpFileParams): Promise; -export default forwardDpFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/forwardDpFile.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/forwardDpFile.js deleted file mode 100644 index e546fb40..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/forwardDpFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function forwardDpFile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.forwardDpFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.forwardDpFile",exports.forwardDpFile$=forwardDpFile$,exports.default=forwardDpFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getLocaleAndNationByCorpId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getLocaleAndNationByCorpId.d.ts deleted file mode 100644 index cc303ed8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getLocaleAndNationByCorpId.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.getLocaleAndNationByCorpId"; -/** - * 通过corpId获取对应企业所在的国家和语言 请求参数定义 - * @apiName biz.util.getLocaleAndNationByCorpId - */ -export interface IBizUtilGetLocaleAndNationByCorpIdParams { - [key: string]: any; -} -/** - * 通过corpId获取对应企业所在的国家和语言 返回结果定义 - * @apiName biz.util.getLocaleAndNationByCorpId - */ -export interface IBizUtilGetLocaleAndNationByCorpIdResult { - [key: string]: any; -} -/** - * 通过corpId获取对应企业所在的国家和语言 - * @apiName biz.util.getLocaleAndNationByCorpId - * @supportVersion ios: 3.5.3 android: 3.5.3 - */ -export declare function getLocaleAndNationByCorpId$(params: IBizUtilGetLocaleAndNationByCorpIdParams): Promise; -export default getLocaleAndNationByCorpId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getLocaleAndNationByCorpId.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getLocaleAndNationByCorpId.js deleted file mode 100644 index b37b4703..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getLocaleAndNationByCorpId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLocaleAndNationByCorpId$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLocaleAndNationByCorpId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.getLocaleAndNationByCorpId",exports.getLocaleAndNationByCorpId$=getLocaleAndNationByCorpId$,exports.default=getLocaleAndNationByCorpId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getPerfInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getPerfInfo.d.ts deleted file mode 100644 index 74187638..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getPerfInfo.d.ts +++ /dev/null @@ -1,49 +0,0 @@ -export declare const apiName = "biz.util.getPerfInfo"; -/** - * 返回小程序此次打开的关键性能数据 请求参数定义 - * @apiName biz.util.getPerfInfo - */ -export interface IBizUtilGetPerfInfoParams { -} -/** - * 返回小程序此次打开的关键性能数据 返回结果定义 - * @apiName biz.util.getPerfInfo - */ -export interface IBizUtilGetPerfInfoResult { - /** 小程序打开的时间戳(单位是秒,1970开始) */ - prepareStartTime: number; - /** appLoad开销 */ - appLoadedCost: number; - /** pageLoad开销 */ - pageLoadedCost: number; - /** renderFramework加载开销 */ - renderFrameworkLoadCost: number; - /** workerFramework加载开销 */ - workerFrameworkLoadCost: number; - /** 包准备开销 */ - prepareAppCost: number; - /** 是否需要下载zip包 */ - prepareNeedDownload: boolean; - /** 包元数据请求开销 */ - prepareReqInfoCost: number; - /** Zip包下载开销 */ - prepareDownloadCost: number; - /** Zip包解压开销 */ - prepareUnZipCost: number; - /** 包Version */ - metaPackageVersion: string; - /** 包Nick */ - metaPackageNick: string; - /** Appx包Nick */ - metaAppxPackageNick: string; - /** bizReadyTime-prepareStartTime的时长 */ - bizReadyCost: number; -} -/** - * 返回小程序此次打开的关键性能数据 - * @apiName biz.util.getPerfInfo - * @supportVersion ios: 5.1.14 android: 5.1.14 - * @author Android: 攸元 iOS: 贾逵 - */ -export declare function getPerfInfo$(params: IBizUtilGetPerfInfoParams): Promise; -export default getPerfInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getPerfInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getPerfInfo.js deleted file mode 100644 index 5b545d32..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/getPerfInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPerfInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPerfInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.getPerfInfo",exports.getPerfInfo$=getPerfInfo$,exports.default=getPerfInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/invokeWorkbench.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/invokeWorkbench.d.ts deleted file mode 100644 index 3af2b7db..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/invokeWorkbench.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.util.invokeWorkbench"; -/** - * 打开一个标签 请求参数定义 - * @apiName biz.util.invokeWorkbench - */ -export interface IBizUtilInvokeWorkbenchParams { - app_url: string; - app_info: any; -} -/** - * 打开一个标签 返回结果定义 - * @apiName biz.util.invokeWorkbench - */ -export interface IBizUtilInvokeWorkbenchResult { -} -/** - * 打开一个标签 - * @apiName biz.util.invokeWorkbench - * @supportVersion win: 6.0.8 mac: 6.0.8 - * @author win: 周镛, mac: 伯温 - */ -export declare function invokeWorkbench$(params: IBizUtilInvokeWorkbenchParams): Promise; -export default invokeWorkbench$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/invokeWorkbench.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/invokeWorkbench.js deleted file mode 100644 index 988caf2a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/invokeWorkbench.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function invokeWorkbench$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.invokeWorkbench$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.invokeWorkbench",exports.invokeWorkbench$=invokeWorkbench$,exports.default=invokeWorkbench$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isEnableGPUAcceleration.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isEnableGPUAcceleration.d.ts deleted file mode 100644 index b70f04c4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isEnableGPUAcceleration.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.util.isEnableGPUAcceleration"; -/** - * 获取当前GPU加速设置是否开启 请求参数定义 - * @apiName biz.util.isEnableGPUAcceleration - */ -export interface IBizUtilIsEnableGPUAccelerationParams { -} -/** - * 获取当前GPU加速设置是否开启 返回结果定义 - * @apiName biz.util.isEnableGPUAcceleration - */ -export interface IBizUtilIsEnableGPUAccelerationResult { - /** 当前GPU是否开启 */ - current_enabled: boolean; - /** 下次启动是否开启GPU */ - next_start_enabled: boolean; -} -/** - * 获取当前GPU加速设置是否开启 - * @apiName biz.util.isEnableGPUAcceleration - * @supportVersion Windows:6.0.22 - * @author Windows: 心存 - */ -export declare function isEnableGPUAcceleration$(params: IBizUtilIsEnableGPUAccelerationParams): Promise; -export default isEnableGPUAcceleration$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isEnableGPUAcceleration.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isEnableGPUAcceleration.js deleted file mode 100644 index 646e75e7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isEnableGPUAcceleration.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isEnableGPUAcceleration$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isEnableGPUAcceleration$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.isEnableGPUAcceleration",exports.isEnableGPUAcceleration$=isEnableGPUAcceleration$,exports.default=isEnableGPUAcceleration$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isLocalFileExist.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isLocalFileExist.d.ts deleted file mode 100644 index 6fc708ad..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isLocalFileExist.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.isLocalFileExist"; -/** - * 检测本地文件存在 请求参数定义 - * @apiName biz.util.isLocalFileExist - */ -export interface IBizUtilIsLocalFileExistParams { - [key: string]: any; -} -/** - * 检测本地文件存在 返回结果定义 - * @apiName biz.util.isLocalFileExist - */ -export interface IBizUtilIsLocalFileExistResult { - [key: string]: any; -} -/** - * 检测本地文件存在 - * @apiName biz.util.isLocalFileExist - * @supportVersion pc: 2.5.0 - */ -export declare function isLocalFileExist$(params: IBizUtilIsLocalFileExistParams): Promise; -export default isLocalFileExist$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isLocalFileExist.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isLocalFileExist.js deleted file mode 100644 index 2fa46141..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/isLocalFileExist.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isLocalFileExist$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isLocalFileExist$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.isLocalFileExist",exports.isLocalFileExist$=isLocalFileExist$,exports.default=isLocalFileExist$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/mailTo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/mailTo.d.ts deleted file mode 100644 index e3ec5907..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/mailTo.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.util.mailTo"; -/** - * 拉起系统邮件APP写邮件 请求参数定义 - * @apiName biz.util.mailTo - */ -export interface IBizUtilMailToParams { - /** 邮件标题。可以为空 */ - subject?: string; - /** 邮件内容,可以为空 */ - content?: string; -} -/** - * 拉起系统邮件APP写邮件 返回结果定义 - * @apiName biz.util.mailTo - */ -export interface IBizUtilMailToResult { -} -/** - * 拉起系统邮件APP写邮件 - * @apiName biz.util.mailTo - * @supportVersion ios: 5.1.37 android: 5.1.37 - * @author Android: 步定, iOS: 照磊 - */ -export declare function mailTo$(params: IBizUtilMailToParams): Promise; -export default mailTo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/mailTo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/mailTo.js deleted file mode 100644 index 67fbf229..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/mailTo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function mailTo$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.mailTo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.mailTo",exports.mailTo$=mailTo$,exports.default=mailTo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/multiSelect.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/multiSelect.d.ts deleted file mode 100644 index dd84a870..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/multiSelect.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.util.multiSelect"; -/** - * 下拉多选 请求参数定义 - * @apiName biz.util.multiSelect - */ -export interface IBizUtilMultiSelectParams { - /** 待选项列表 */ - options: string[]; - /** 已选选项列表 */ - selectOption: string[]; -} -/** - * 下拉多选 返回结果定义 - * 返回用户选中的index数组,从0开始。 例如 [ 2, 3 ] - * @apiName biz.util.multiSelect - */ -export declare type IBizUtilMultiSelectResult = string[]; -/** - * 下拉多选 - * 依赖钉钉客户端版本v3.0.0 - * @apiName biz.util.multiSelect - * @supportVersion ios: 3.0.0 android: 3.0.0 - */ -export declare function multiSelect$(params: IBizUtilMultiSelectParams): Promise; -export default multiSelect$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/multiSelect.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/multiSelect.js deleted file mode 100644 index 1038616b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/multiSelect.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function multiSelect$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.multiSelect$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.multiSelect",exports.multiSelect$=multiSelect$,exports.default=multiSelect$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/open.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/open.d.ts deleted file mode 100644 index 6657062a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/open.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.util.open"; -/** - * 打开应用内页面 请求参数定义 - * @apiName biz.util.open - */ -export interface IBizUtilOpenParams { - /** 页面名称 */ - name: string; - /** 传参 */ - params?: any; -} -/** - * 打开应用内页面 返回结果定义 - * @apiName biz.util.open - */ -export interface IBizUtilOpenResult { -} -/** - * 打开应用内页面 - * @apiName biz.util.open - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function open$(params: IBizUtilOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/open.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/open.js deleted file mode 100644 index 2b2d63c2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.open",exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openFloatWindow.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openFloatWindow.d.ts deleted file mode 100644 index 8fa8c341..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openFloatWindow.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.openFloatWindow"; -/** - * 打开浮层窗口 请求参数定义 - * @apiName biz.util.openFloatWindow - */ -export interface IBizUtilOpenFloatWindowParams { - [key: string]: any; -} -/** - * 打开浮层窗口 返回结果定义 - * @apiName biz.util.openFloatWindow - */ -export interface IBizUtilOpenFloatWindowResult { - [key: string]: any; -} -/** - * 打开浮层窗口 - * @apiName biz.util.openFloatWindow - * @supportVersion ios: 3.2 android: 3.2 - */ -export declare function openFloatWindow$(params: IBizUtilOpenFloatWindowParams): Promise; -export default openFloatWindow$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openFloatWindow.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openFloatWindow.js deleted file mode 100644 index 027a866f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openFloatWindow.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openFloatWindow$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openFloatWindow$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openFloatWindow",exports.openFloatWindow$=openFloatWindow$,exports.default=openFloatWindow$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLink.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLink.d.ts deleted file mode 100644 index 2b5fdf47..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLink.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.util.openLink"; -/** - * 新开页面 请求参数定义 - * @apiName biz.util.openLink - */ -export interface IBizUtilOpenLinkParams { - /** 要打开链接的地址 */ - url: string; - /** 新页面是否展示分享按钮 */ - enableShare?: boolean; -} -/** - * 新开页面 返回结果定义 - * @apiName biz.util.openLink - */ -export interface IBizUtilOpenLinkResult { -} -/** - * 新开页面/在新窗口上打开链接 - * @apiName biz.util.openLink - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function openLink$(params: IBizUtilOpenLinkParams): Promise; -export default openLink$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLink.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLink.js deleted file mode 100644 index b444604c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLink.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openLink$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openLink$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openLink",exports.openLink$=openLink$,exports.default=openLink$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLocalFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLocalFile.d.ts deleted file mode 100644 index d884f3c0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLocalFile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.openLocalFile"; -/** - * 打开本地文件 请求参数定义 - * @apiName biz.util.openLocalFile - */ -export interface IBizUtilOpenLocalFileParams { - [key: string]: any; -} -/** - * 打开本地文件 返回结果定义 - * @apiName biz.util.openLocalFile - */ -export interface IBizUtilOpenLocalFileResult { - [key: string]: any; -} -/** - * 打开本地文件 - * @apiName biz.util.openLocalFile - * @supportVersion pc: 2.5.0 - */ -export declare function openLocalFile$(params: IBizUtilOpenLocalFileParams): Promise; -export default openLocalFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLocalFile.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLocalFile.js deleted file mode 100644 index 8fd240d9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openLocalFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openLocalFile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openLocalFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openLocalFile",exports.openLocalFile$=openLocalFile$,exports.default=openLocalFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openModal.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openModal.d.ts deleted file mode 100644 index a52e86da..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openModal.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.openModal"; -/** - * 打开模态框 请求参数定义 - * @apiName biz.util.openModal - */ -export interface IBizUtilOpenModalParams { - [key: string]: any; -} -/** - * 打开模态框 返回结果定义 - * @apiName biz.util.openModal - */ -export interface IBizUtilOpenModalResult { - [key: string]: any; -} -/** - * 打开模态框 - * @apiName biz.util.openModal - * @supportVersion pc: 2.5.0 - */ -export declare function openModal$(params: IBizUtilOpenModalParams): Promise; -export default openModal$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openModal.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openModal.js deleted file mode 100644 index 67de1b84..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openModal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openModal$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openModal$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openModal",exports.openModal$=openModal$,exports.default=openModal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPage.d.ts deleted file mode 100644 index 696a0306..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPage.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.util.openPage"; -/** - * 用于打开客户端指定的 Native 页面 请求参数定义 - * @apiName biz.util.openPage - */ -export interface IBizUtilOpenPageParams { - name: string; - params?: { - [key: string]: any; - }; -} -/** - * 用于打开客户端指定的 Native 页面 返回结果定义 - * @apiName biz.util.openPage - */ -export interface IBizUtilOpenPageResult { - [key: string]: any; -} -/** - * 用于打开客户端指定的 Native 页面 - * @apiName biz.util.openPage - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function openPage$(params: IBizUtilOpenPageParams): Promise; -export default openPage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPage.js deleted file mode 100644 index a7af7c3a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openPage",exports.openPage$=openPage$,exports.default=openPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPrintWnd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPrintWnd.d.ts deleted file mode 100644 index 9027352f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPrintWnd.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "biz.util.openPrintWnd"; -/** - * 打开钉盘文件打印窗口 请求参数定义 - * @apiName biz.util.openPrintWnd - */ -export interface IBizUtilOpenPrintWndParams { - /** 钉盘文件参数space_id */ - space: string; - /** 钉盘文件参数file_id */ - file: string; - /** 文件类型 */ - fileType?: number; - /** 是否加密 */ - isEncrypt?: boolean; - /** 媒体id */ - media: string; - spm?: string; -} -/** - * 打开钉盘文件打印窗口 返回结果定义 - * @apiName biz.util.openPrintWnd - */ -export interface IBizUtilOpenPrintWndResult { -} -/** - * 打开钉盘文件打印窗口 - * @apiName biz.util.openPrintWnd - * @supportVersion win: 6.0.8 mac: 6.0.8 - * @author win:周镛 mac:伯温 - */ -export declare function openPrintWnd$(params: IBizUtilOpenPrintWndParams): Promise; -export default openPrintWnd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPrintWnd.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPrintWnd.js deleted file mode 100644 index bd55c368..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openPrintWnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPrintWnd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPrintWnd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openPrintWnd",exports.openPrintWnd$=openPrintWnd$,exports.default=openPrintWnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openShareDpFileWnd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openShareDpFileWnd.d.ts deleted file mode 100644 index dac29335..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openShareDpFileWnd.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.util.openShareDpFileWnd"; -/** - * 打开钉盘文档分享窗口 请求参数定义 - * @apiName biz.util.openShareDpFileWnd - */ -export interface IBizUtilOpenShareDpFileWndParams { - /** 钉盘文件参数space_id */ - space: string; - /** 钉盘文件参数file_id */ - file: string; -} -/** - * 打开钉盘文档分享窗口 返回结果定义 - * @apiName biz.util.openShareDpFileWnd - */ -export interface IBizUtilOpenShareDpFileWndResult { -} -/** - * 打开钉盘文档分享窗口 - * @apiName biz.util.openShareDpFileWnd - * @supportVersion ios: win: 6.0.8 mac: 6.0.8 - * @author win:周镛 mac:伯温 - */ -export declare function openShareDpFileWnd$(params: IBizUtilOpenShareDpFileWndParams): Promise; -export default openShareDpFileWnd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openShareDpFileWnd.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openShareDpFileWnd.js deleted file mode 100644 index 313aac80..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openShareDpFileWnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openShareDpFileWnd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openShareDpFileWnd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openShareDpFileWnd",exports.openShareDpFileWnd$=openShareDpFileWnd$,exports.default=openShareDpFileWnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openSlidePanel.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openSlidePanel.d.ts deleted file mode 100644 index 9a977a90..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openSlidePanel.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.openSlidePanel"; -/** - * 打开侧边框 请求参数定义 - * @apiName biz.util.openSlidePanel - */ -export interface IBizUtilOpenSlidePanelParams { - [key: string]: any; -} -/** - * 打开侧边框 返回结果定义 - * @apiName biz.util.openSlidePanel - */ -export interface IBizUtilOpenSlidePanelResult { - [key: string]: any; -} -/** - * 打开侧边框 - * @apiName biz.util.openSlidePanel - * @supportVersion pc: 2.5.0 - */ -export declare function openSlidePanel$(params: IBizUtilOpenSlidePanelParams): Promise; -export default openSlidePanel$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openSlidePanel.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openSlidePanel.js deleted file mode 100644 index ab5c1f94..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openSlidePanel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openSlidePanel$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openSlidePanel$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openSlidePanel",exports.openSlidePanel$=openSlidePanel$,exports.default=openSlidePanel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openWindowWithUrl.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openWindowWithUrl.d.ts deleted file mode 100644 index f5469bd1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openWindowWithUrl.d.ts +++ /dev/null @@ -1,47 +0,0 @@ -export declare const apiName = "biz.util.openWindowWithUrl"; -/** - * 客户端用于打开一个单独窗口的页面进行展示 请求参数定义 - * @apiName biz.util.openWindowWithUrl - */ -export interface IBizUtilOpenWindowWithUrlParams { - /** 窗口id */ - wndId: string; - /** 要打开的网址 */ - url: string; - /** 窗口标题 */ - title: string; - /** 是否隐藏在任务栏的显示 */ - isHideTaskBar?: boolean; - /** 是否隐藏标题栏 */ - isHideWndHeader?: boolean; - /** 是否禁用窗口大小调整 */ - isDisableResize?: boolean; - /** 是否禁用记住上次窗口位置 */ - isDisableRememberPosition?: boolean; - /** 默认宽 */ - width?: number; - /** 默认高 */ - height?: number; - /** 最小宽 */ - minWidth?: number; - /** 最小高 */ - minHeight?: number; - /** 相对调用者窗口的偏移X */ - offsetClientX?: number; - /** 相对调用者窗口的偏移Y */ - offsetClientY?: number; -} -/** - * 客户端用于打开一个单独窗口的页面进行展示 返回结果定义 - * @apiName biz.util.openWindowWithUrl - */ -export interface IBizUtilOpenWindowWithUrlResult { -} -/** - * 客户端用于打开一个单独窗口的页面进行展示 - * @apiName biz.util.openWindowWithUrl - * @supportVersion pc: 6.0.13 - * @author win:周镛 mac:伯温 - */ -export declare function openWindowWithUrl$(params: IBizUtilOpenWindowWithUrlParams): Promise; -export default openWindowWithUrl$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openWindowWithUrl.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openWindowWithUrl.js deleted file mode 100644 index ca24ba68..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/openWindowWithUrl.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openWindowWithUrl$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openWindowWithUrl$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.openWindowWithUrl",exports.openWindowWithUrl$=openWindowWithUrl$,exports.default=openWindowWithUrl$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/perfBizReady.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/perfBizReady.d.ts deleted file mode 100644 index 4744e9ce..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/perfBizReady.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.util.perfBizReady"; -/** - * 新增业务性能埋点接口 请求参数定义 - * @apiName biz.util.perfBizReady - */ -export interface IBizUtilPerfBizReadyParams { - availableTime?: number; -} -/** - * 新增业务性能埋点接口 返回结果定义 - * @apiName biz.util.perfBizReady - */ -export interface IBizUtilPerfBizReadyResult { - [key: string]: any; -} -/** - * 新增业务性能埋点接口 - * @description 用于业务性能埋点 perfBizReady的时长会上传到小程序基础性能埋点. (https://dp2.motu.alibaba-inc.com/#/event/60433/base?appId=23010479%40iphoneos) 对应的埋点字段统一为: bizReadyCost - * @apiName biz.util.perfBizReady - * @supportVersion ios: 5.1.8 android: 5.1.8 - * @author iOS:贾逵 Android:落韵 - */ -export declare function perfBizReady$(params: IBizUtilPerfBizReadyParams): Promise; -export default perfBizReady$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/perfBizReady.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/perfBizReady.js deleted file mode 100644 index 31f04984..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/perfBizReady.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function perfBizReady$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.perfBizReady$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.perfBizReady",exports.perfBizReady$=perfBizReady$,exports.default=perfBizReady$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/presentWindow.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/presentWindow.d.ts deleted file mode 100644 index 3b1a040a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/presentWindow.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.presentWindow"; -/** - * 打开窗口 请求参数定义 - * @apiName biz.util.presentWindow - */ -export interface IBizUtilPresentWindowParams { - [key: string]: any; -} -/** - * 打开窗口 返回结果定义 - * @apiName biz.util.presentWindow - */ -export interface IBizUtilPresentWindowResult { - [key: string]: any; -} -/** - * 打开窗口 - * @apiName biz.util.presentWindow - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function presentWindow$(params: IBizUtilPresentWindowParams): Promise; -export default presentWindow$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/presentWindow.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/presentWindow.js deleted file mode 100644 index ab29e6a1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/presentWindow.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function presentWindow$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.presentWindow$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.presentWindow",exports.presentWindow$=presentWindow$,exports.default=presentWindow$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewFile.d.ts deleted file mode 100644 index 47dfe265..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewFile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.previewFile"; -/** - * 预览文件 请求参数定义 - * @apiName biz.util.previewFile - */ -export interface IBizUtilPreviewFileParams { - [key: string]: any; -} -/** - * 预览文件 返回结果定义 - * @apiName biz.util.previewFile - */ -export interface IBizUtilPreviewFileResult { - [key: string]: any; -} -/** - * 预览文件 - * @apiName biz.util.previewFile - * @supportVersion pc: 3.0.0 - */ -export declare function previewFile$(params: IBizUtilPreviewFileParams): Promise; -export default previewFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewFile.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewFile.js deleted file mode 100644 index 93e6fe94..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewFile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.previewFile",exports.previewFile$=previewFile$,exports.default=previewFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewImage.d.ts deleted file mode 100644 index e2184243..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewImage.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.util.previewImage"; -/** - * 弹窗alert 请求参数定义 - * @apiName biz.util.previewImage - */ -export interface IBizUtilPreviewImageParams { - /** 图片地址列表 */ - urls: string[]; - /** 当前显示的图片链接 */ - current: string; -} -/** - * 弹窗alert 返回结果定义 - * @apiName biz.util.previewImage - */ -export interface IBizUtilPreviewImageResult { - [key: string]: any; -} -/** - * 弹窗alert - * @description 调用此api,将显示一个图片浏览器 - * @apiName biz.util.previewImage - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function previewImage$(params: IBizUtilPreviewImageParams): Promise; -export default previewImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewImage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewImage.js deleted file mode 100644 index 312b1d5f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.previewImage",exports.previewImage$=previewImage$,exports.default=previewImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewVideo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewVideo.d.ts deleted file mode 100644 index d35e8fd6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewVideo.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.util.previewVideo"; -/** - * 在新零售的场景下,支持在本地进行预览视频 请求参数定义 - * @apiName biz.util.previewVideo - */ -export interface IBizUtilPreviewVideoParams { - /** 视频的远端路径或者本地路径(必填) */ - url: string; - /** 视频的名字(必填) */ - fileName: string; - /** 视频的预览缩略图 (非必填的) */ - thumbnail?: string; -} -/** - * 在新零售的场景下,支持在本地进行预览视频 返回结果定义 - * @apiName biz.util.previewVideo - */ -export interface IBizUtilPreviewVideoResult { -} -/** - * 在新零售的场景下,支持在本地进行预览视频 - * @apiName biz.util.previewVideo - * @supportVersion ios: 4.3.7 android: 4.3.7 pc: 4.6.33 - */ -export declare function previewVideo$(params: IBizUtilPreviewVideoParams): Promise; -export default previewVideo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewVideo.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewVideo.js deleted file mode 100644 index dacdd9b4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/previewVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewVideo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewVideo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.previewVideo",exports.previewVideo$=previewVideo$,exports.default=previewVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/qrcode.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/qrcode.d.ts deleted file mode 100644 index 06e09ba9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/qrcode.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.qrcode"; -/** - * 弹窗alert 请求参数定义 - * @apiName biz.util.qrcode - */ -export interface IBizUtilQrcodeParams { - [key: string]: any; -} -/** - * 弹窗alert 返回结果定义 - * @apiName biz.util.qrcode - */ -export interface IBizUtilQrcodeResult { - [key: string]: any; -} -/** - * 弹窗alert - * @apiName biz.util.qrcode - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function qrcode$(params: IBizUtilQrcodeParams): Promise; -export default qrcode$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/qrcode.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/qrcode.js deleted file mode 100644 index dad1fadf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/qrcode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function qrcode$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.qrcode$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.qrcode",exports.qrcode$=qrcode$,exports.default=qrcode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/queryConferenceList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/queryConferenceList.d.ts deleted file mode 100644 index df26fe46..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/queryConferenceList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.queryConferenceList"; -/** - * 查询会议列表 请求参数定义 - * @apiName biz.util.queryConferenceList - */ -export interface IBizUtilQueryConferenceListParams { - [key: string]: any; -} -/** - * 查询会议列表 返回结果定义 - * @apiName biz.util.queryConferenceList - */ -export interface IBizUtilQueryConferenceListResult { - [key: string]: any; -} -/** - * 查询会议列表 - * @apiName biz.util.queryConferenceList - * @supportVersion pc: 3.0.0 - */ -export declare function queryConferenceList$(params: IBizUtilQueryConferenceListParams): Promise; -export default queryConferenceList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/queryConferenceList.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/queryConferenceList.js deleted file mode 100644 index 20d39717..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/queryConferenceList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryConferenceList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryConferenceList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.queryConferenceList",exports.queryConferenceList$=queryConferenceList$,exports.default=queryConferenceList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/recordVideoToUpload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/recordVideoToUpload.d.ts deleted file mode 100644 index 1b9262a1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/recordVideoToUpload.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.recordVideoToUpload"; -/** - * 录制视频进行上传 请求参数定义 - * @apiName biz.util.recordVideoToUpload - */ -export interface IBizUtilRecordVideoToUploadParams { - [key: string]: any; -} -/** - * 录制视频进行上传 返回结果定义 - * @apiName biz.util.recordVideoToUpload - */ -export interface IBizUtilRecordVideoToUploadResult { - [key: string]: any; -} -/** - * 录制视频进行上传 - * @apiName biz.util.recordVideoToUpload - * @supportVersion ios: 3.4 android: 3.4 - */ -export declare function recordVideoToUpload$(params: IBizUtilRecordVideoToUploadParams): Promise; -export default recordVideoToUpload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/recordVideoToUpload.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/recordVideoToUpload.js deleted file mode 100644 index 04a5d6e7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/recordVideoToUpload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function recordVideoToUpload$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.recordVideoToUpload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.recordVideoToUpload",exports.recordVideoToUpload$=recordVideoToUpload$,exports.default=recordVideoToUpload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/requestWorkbench.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/requestWorkbench.d.ts deleted file mode 100644 index 06df086a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/requestWorkbench.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -export declare const apiName = "biz.util.requestWorkbench"; -/** - * 对妙聚窗口执行动作比如刷新、独立、嵌套或者配置描述 请求参数定义 - * @apiName biz.util.requestWorkbench - */ -export interface IBizUtilRequestWorkbenchParams { - /** 请求类型,refresh,detach, attach, config */ - requestType: string; - /** 需要发起请求的妙聚窗口对象的id */ - configTarget?: string; - /** 窗口独立的方式,wndDetach,toCspace */ - detachType?: string; - /** 本地入口打开的方式,alone, embed, tocspace */ - natvieOpenType?: string; - /** 只有一个标签时是否自动隐藏标签栏 */ - autoHideHeader?: boolean; - /** 是否启用历史记录 */ - isEnableHistory?: boolean; - /** 独立窗口时的标题 */ - frameTitle?: string; - /** 新建按钮的行为定义 */ - newBtnUrl?: string; - /** 新建按钮的 tooltip */ - newBtnTooltip?: string; - /** 新建按钮打开的标签类型 */ - newBtnTabAppType?: string; - /** 首页的 url 定义 */ - homeTabUrl?: string; - /** 首页打开的标签类型 */ - homeTabAppType?: string; -} -/** - * 对妙聚窗口执行动作比如刷新、独立、嵌套或者配置描述 返回结果定义 - * @apiName biz.util.requestWorkbench - */ -export interface IBizUtilRequestWorkbenchResult { -} -/** - * 对妙聚窗口执行动作比如刷新、独立、嵌套或者配置描述 - * @apiName biz.util.requestWorkbench - * @supportVersion win: 6.0.8 mac: 6.0.8 - * @author win: 周镛, mac: 伯温 - */ -export declare function requestWorkbench$(params: IBizUtilRequestWorkbenchParams): Promise; -export default requestWorkbench$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/requestWorkbench.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/requestWorkbench.js deleted file mode 100644 index f031e806..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/requestWorkbench.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestWorkbench$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestWorkbench$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.requestWorkbench",exports.requestWorkbench$=requestWorkbench$,exports.default=requestWorkbench$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/saveImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/saveImage.d.ts deleted file mode 100644 index fd6c35d7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/saveImage.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.util.saveImage"; -/** - * 保存图片,可传入图片链接,也可由容器自动抓取当前容器内容 请求参数定义 - * @apiName biz.util.saveImage - */ -export interface IBizUtilSaveImageParams { - /** 图片URL */ - image: string; -} -/** - * 保存图片,可传入图片链接,也可由容器自动抓取当前容器内容 返回结果定义 - * @apiName biz.util.saveImage - */ -export interface IBizUtilSaveImageResult { -} -/** - * 保存图片,可传入图片链接,也可由容器自动抓取当前容器内容 - * @apiName biz.util.saveImage - * @supportVersion ios: 4.1 android: 4.1 - * @author android: 朴文 ios: 驽良 - */ -export declare function saveImage$(params: IBizUtilSaveImageParams): Promise; -export default saveImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/saveImage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/saveImage.js deleted file mode 100644 index 00845650..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/saveImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.saveImage",exports.saveImage$=saveImage$,exports.default=saveImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scan.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scan.d.ts deleted file mode 100644 index 6c458f08..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scan.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.scan"; -/** - * 扫码(支持二维码和条形码) 请求参数定义 - * @apiName biz.util.scan - */ -export interface IBizUtilScanParams { - [key: string]: any; -} -/** - * 扫码(支持二维码和条形码) 返回结果定义 - * @apiName biz.util.scan - */ -export interface IBizUtilScanResult { - [key: string]: any; -} -/** - * 扫码(支持二维码和条形码) - * @apiName biz.util.scan - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function scan$(params: IBizUtilScanParams): Promise; -export default scan$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scan.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scan.js deleted file mode 100644 index 3f163526..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scan.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scan$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.scan$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.scan",exports.scan$=scan$,exports.default=scan$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scanCard.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scanCard.d.ts deleted file mode 100644 index 0eff4d9d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scanCard.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.scanCard"; -/** - * 名片扫描 请求参数定义 - * @apiName biz.util.scanCard - */ -export interface IBizUtilScanCardParams { - [key: string]: any; -} -/** - * 名片扫描 返回结果定义 - * @apiName biz.util.scanCard - */ -export interface IBizUtilScanCardResult { - [key: string]: any; -} -/** - * 名片扫描 - * @apiName biz.util.scanCard - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function scanCard$(params: IBizUtilScanCardParams): Promise; -export default scanCard$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scanCard.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scanCard.js deleted file mode 100644 index 29326710..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/scanCard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scanCard$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.scanCard$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.scanCard",exports.scanCard$=scanCard$,exports.default=scanCard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/selectEmoji.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/selectEmoji.d.ts deleted file mode 100644 index 637c8450..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/selectEmoji.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.selectEmoji"; -/** - * 选择表情 请求参数定义 - * @apiName biz.util.selectEmoji - */ -export interface IBizUtilSelectEmojiParams { - [key: string]: any; -} -/** - * 选择表情 返回结果定义 - * @apiName biz.util.selectEmoji - */ -export interface IBizUtilSelectEmojiResult { - [key: string]: any; -} -/** - * 选择表情 - * @apiName biz.util.selectEmoji - * @supportVersion ios: 3.5.2 android: 3.5.2 - */ -export declare function selectEmoji$(params: IBizUtilSelectEmojiParams): Promise; -export default selectEmoji$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/selectEmoji.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/selectEmoji.js deleted file mode 100644 index 38087000..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/selectEmoji.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function selectEmoji$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.selectEmoji$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.selectEmoji",exports.selectEmoji$=selectEmoji$,exports.default=selectEmoji$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setGPUAcceleration.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setGPUAcceleration.d.ts deleted file mode 100644 index 85d61806..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setGPUAcceleration.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.util.setGPUAcceleration"; -/** - * 设置GPU加速状态 请求参数定义 - * @apiName biz.util.setGPUAcceleration - */ -export interface IBizUtilSetGPUAccelerationParams { - /** 设置下次启动时候是否启用GPU加速 */ - next_start_enable: boolean; -} -/** - * 设置GPU加速状态 返回结果定义 - * @apiName biz.util.setGPUAcceleration - */ -export interface IBizUtilSetGPUAccelerationResult { - /** 调用设置是否成功 */ - result: boolean; -} -/** - * 设置GPU加速状态 - * @apiName biz.util.setGPUAcceleration - * @supportVersion Windows:6.0.22 - * @author Windows: 心存 - */ -export declare function setGPUAcceleration$(params: IBizUtilSetGPUAccelerationParams): Promise; -export default setGPUAcceleration$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setGPUAcceleration.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setGPUAcceleration.js deleted file mode 100644 index 5c2b5bbc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setGPUAcceleration.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setGPUAcceleration$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setGPUAcceleration$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.setGPUAcceleration",exports.setGPUAcceleration$=setGPUAcceleration$,exports.default=setGPUAcceleration$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenBrightnessAndKeepOn.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenBrightnessAndKeepOn.d.ts deleted file mode 100644 index ba49cfe6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenBrightnessAndKeepOn.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "biz.util.setScreenBrightnessAndKeepOn"; -/** - * 设置屏幕亮度和常亮 请求参数定义 - * @apiName biz.util.setScreenBrightnessAndKeepOn - */ -export interface IBizUtilSetScreenBrightnessAndKeepOnParams { - /** 屏幕亮度,支持 0.1~1.0 范围内的值 */ - brightness: number; - /** true(常亮),false(不常亮) */ - isKeep: boolean; -} -/** - * 设置屏幕亮度和常亮 返回结果定义 - * @apiName biz.util.setScreenBrightnessAndKeepOn - */ -export interface IBizUtilSetScreenBrightnessAndKeepOnResult { -} -/** - * 设置屏幕亮度和常亮 - * @apiName biz.util.setScreenBrightnessAndKeepOn - * @supportVersion ios: 4.3.3 android: 4.3.3 - */ -export declare function setScreenBrightnessAndKeepOn$(params: IBizUtilSetScreenBrightnessAndKeepOnParams): Promise; -export default setScreenBrightnessAndKeepOn$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenBrightnessAndKeepOn.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenBrightnessAndKeepOn.js deleted file mode 100644 index 8da2f020..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenBrightnessAndKeepOn.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setScreenBrightnessAndKeepOn$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setScreenBrightnessAndKeepOn$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.setScreenBrightnessAndKeepOn",exports.setScreenBrightnessAndKeepOn$=setScreenBrightnessAndKeepOn$,exports.default=setScreenBrightnessAndKeepOn$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenKeepOn.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenKeepOn.d.ts deleted file mode 100644 index 10732e44..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenKeepOn.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.util.setScreenKeepOn"; -/** - * 设置屏幕常亮 请求参数定义 - * @apiName biz.util.setScreenKeepOn - */ -export interface IBizUtilSetScreenKeepOnParams { - /** 是否保持常亮 默认false */ - isKeep: boolean; -} -/** - * 设置屏幕常亮 返回结果定义 - * @apiName biz.util.setScreenKeepOn - */ -export interface IBizUtilSetScreenKeepOnResult { -} -/** - * 设置屏幕常亮,防止熄屏 H5容器关闭后自动失效 - * @apiName biz.util.setScreenKeepOn - * @supportVersion ios: 5.1.26 android: 5.1.26 - * @author Android:峰砺 iOS:新鹏 - */ -export declare function setScreenKeepOn$(params: IBizUtilSetScreenKeepOnParams): Promise; -export default setScreenKeepOn$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenKeepOn.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenKeepOn.js deleted file mode 100644 index 27f59f0d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/setScreenKeepOn.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setScreenKeepOn$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setScreenKeepOn$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.setScreenKeepOn",exports.setScreenKeepOn$=setScreenKeepOn$,exports.default=setScreenKeepOn$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/share.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/share.d.ts deleted file mode 100644 index 3c7b4c2d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/share.d.ts +++ /dev/null @@ -1,61 +0,0 @@ -export declare const apiName = "biz.util.share"; -/** - * 分享 请求参数定义 - * @apiName biz.util.share - */ -export interface IBizUtilShareParams { - /** 分享类型,0:全部组件默认; 1:只能分享到钉钉;2:不能分享,只有刷新按钮 */ - type: number; - /** url地址 */ - url: string; - /** 分享标题 */ - title: string; - /** 分享内容 */ - content: string; - /** 分享的图片 */ - image: string; - /** 每个平台自定义的内容 */ - custom?: { - [key: string]: { - content: string; - image: string; - url: string; - title: string; - }; - }; - /** 数组代表需要使用那几个平台,并且按序显示 */ - order?: string[]; - /** 按钮名 */ - buttonName?: string; - /** 是否只显示分享平台,布尔值,true:只显示分享平台,false:不仅显示分享平台,也显示收藏,复制等操作选项 */ - onlyShare?: boolean; - /** 不用选择平台,直接跳到指定平台分享,值与下表key值相同 */ - destChannelStyle?: string; - /** 用于传递手机号,进行短信的分享 */ - smsRecipients?: string[]; - /** 提供前端支持额外增加分享item的展示,item点击后返回对应的key提供前端进行业务处理 >5.1.1以上支持 移动端 */ - custom_addon?: { - [customShareType: string]: { - title: string; - iconUrl: string; - }; - }; -} -/** - * 分享 返回结果定义 - * @apiName biz.util.share - */ -export interface IBizUtilShareResult { - /** 分享平台类型 */ - shareType?: string; - /** result */ - result?: 0 | 1 | 2; -} -/** - * 分享 - * @apiName biz.util.share - * @supportVersion ios: 2.4.0 android: 2.4.0 - * @author android:长岚 iOS: 文算 - */ -export declare function share$(params: IBizUtilShareParams): Promise; -export default share$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/share.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/share.js deleted file mode 100644 index b36e8a39..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/share.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function share$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.share$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.share",exports.share$=share$,exports.default=share$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareImage.d.ts deleted file mode 100644 index f393d6cf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareImage.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.util.shareImage"; -/** - * 分享图片,可传入图片链接,也可由容器自动抓取当前容器内容 请求参数定义 - * @apiName biz.util.shareImage - */ -export interface IBizUtilShareImageParams { - /** 本地文件地址 */ - fileURL?: string; - /** dd/wxhy。钉钉/微信好友 */ - destChannelStyle?: string; - autoCapture?: boolean; -} -/** - * 分享图片,可传入图片链接,也可由容器自动抓取当前容器内容 返回结果定义 - * @apiName biz.util.shareImage - */ -export interface IBizUtilShareImageResult { -} -/** - * 分享图片,可传入图片链接,也可由容器自动抓取当前容器内容 - * @apiName biz.util.shareImage - * @supportVersion ios: 4.1 android: 4.1 - * @author android: 朴文 ios: 驽良 - */ -export declare function shareImage$(params: IBizUtilShareImageParams): Promise; -export default shareImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareImage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareImage.js deleted file mode 100644 index 9f58aadc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function shareImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.shareImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.shareImage",exports.shareImage$=shareImage$,exports.default=shareImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareLongImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareLongImage.d.ts deleted file mode 100644 index 7c3393d3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareLongImage.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "biz.util.shareLongImage"; -/** - * 分享长图 请求参数定义 - * @apiName biz.util.shareLongImage - */ -export interface IBizUtilShareLongImageParams { -} -/** - * 分享长图 返回结果定义 - * @apiName biz.util.shareLongImage - */ -export interface IBizUtilShareLongImageResult { - [key: string]: any; -} -/** - * 分享长图 - * @description 提供给日志等需要长图分享的业务场景 - * @apiName biz.util.shareLongImage - * @supportVersion ios: 6.0.0 android: 6.0.0 - * @author iOS: 贾逵 - */ -export declare function shareLongImage$(params: IBizUtilShareLongImageParams): Promise; -export default shareLongImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareLongImage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareLongImage.js deleted file mode 100644 index 8389f943..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/shareLongImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function shareLongImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.shareLongImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.shareLongImage",exports.shareLongImage$=shareLongImage$,exports.default=shareLongImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/startDocSign.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/startDocSign.d.ts deleted file mode 100644 index bc9229b0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/startDocSign.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.startDocSign"; -/** - * 开始签批(pdf全文批注或表单签批 ) 请求参数定义 - * @apiName biz.util.startDocSign - */ -export interface IBizUtilStartDocSignParams { - [key: string]: any; -} -/** - * 开始签批(pdf全文批注或表单签批 ) 返回结果定义 - * @apiName biz.util.startDocSign - */ -export interface IBizUtilStartDocSignResult { - [key: string]: any; -} -/** - * 开始签批(pdf全文批注或表单签批 ) - * @apiName biz.util.startDocSign - * @supportVersion ios: 4.6.33 android: 4.6.33 - */ -export declare function startDocSign$(params: IBizUtilStartDocSignParams): Promise; -export default startDocSign$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/startDocSign.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/startDocSign.js deleted file mode 100644 index 888df68d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/startDocSign.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startDocSign$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startDocSign$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.startDocSign",exports.startDocSign$=startDocSign$,exports.default=startDocSign$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/stickPage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/stickPage.d.ts deleted file mode 100644 index a2a78e5b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/stickPage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.stickPage"; -/** - * 将指定链接置顶到钉钉会话首页,点击可快速打开 请求参数定义 - * @apiName biz.util.stickPage - */ -export interface IBizUtilStickPageParams { - [key: string]: any; -} -/** - * 将指定链接置顶到钉钉会话首页,点击可快速打开 返回结果定义 - * @apiName biz.util.stickPage - */ -export interface IBizUtilStickPageResult { - [key: string]: any; -} -/** - * 将指定链接置顶到钉钉会话首页,点击可快速打开 - * @apiName biz.util.stickPage - * @supportVersion ios: 3.4.10 android: 3.4.10 - */ -export declare function stickPage$(params: IBizUtilStickPageParams): Promise; -export default stickPage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/stickPage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/stickPage.js deleted file mode 100644 index 1cac80c4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/stickPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stickPage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stickPage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.stickPage",exports.stickPage$=stickPage$,exports.default=stickPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/systemShare.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/systemShare.d.ts deleted file mode 100644 index f032ed2e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/systemShare.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "biz.util.systemShare"; -/** - * 唤起iOS & Android系统分享菜单 请求参数定义 - * @apiName biz.util.systemShare - */ -export interface IBizUtilSystemShareParams { - /** 1.Link 2.图片,限制 images 数组长度1-9 3.图片,图文限制 images 数组长度1-9, title:可选 4.纯文本,仅支持Android微信好友 */ - type: number; - /** 分享标题,可选 */ - title?: string; - /** 分享链接,可选 */ - url?: string; - /** 分享链接缩略图,可选 */ - thumbImage?: string; - /** 分享图片,可选 */ - images: string[]; -} -/** - * 唤起iOS & Android系统分享菜单 返回结果定义 - * @apiName biz.util.systemShare - */ -export interface IBizUtilSystemShareResult { - [key: string]: any; -} -/** - * 唤起iOS & Android系统分享菜单 - * @apiName biz.util.systemShare - * @supportVersion ios: 4.5.10 android: 4.5.10 - */ -export declare function systemShare$(params: IBizUtilSystemShareParams): Promise; -export default systemShare$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/systemShare.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/systemShare.js deleted file mode 100644 index 7d7d54ae..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/systemShare.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function systemShare$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.systemShare$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.systemShare",exports.systemShare$=systemShare$,exports.default=systemShare$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timepicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timepicker.d.ts deleted file mode 100644 index 3b8bcbcc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timepicker.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "biz.util.timepicker"; -/** - * 时间选择器 请求参数定义 - * @apiName biz.util.timepicker - */ -export interface IBizUtilTimepickerParams { - /** 时间格式 */ - format?: string; - /** 默认显示时间 */ - value?: string; -} -/** - * 时间选择器 返回结果定义 - * @apiName biz.util.timepicker - */ -export interface IBizUtilTimepickerResult { - /** 返回选择的时间 */ - value: string; -} -/** - * 时间选择器 - * @apiName biz.util.timepicker - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function timepicker$(params: IBizUtilTimepickerParams): Promise; -export default timepicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timepicker.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timepicker.js deleted file mode 100644 index d302f2a0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timepicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function timepicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.timepicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.timepicker",exports.timepicker$=timepicker$,exports.default=timepicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timestamp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timestamp.d.ts deleted file mode 100644 index 5e26b390..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timestamp.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.timestamp"; -/** - * 获取服务器时间 请求参数定义 - * @apiName biz.util.timestamp - */ -export interface IBizUtilTimestampParams { - [key: string]: any; -} -/** - * 获取服务器时间 返回结果定义 - * @apiName biz.util.timestamp - */ -export interface IBizUtilTimestampResult { - [key: string]: any; -} -/** - * 获取服务器时间 - * @apiName biz.util.timestamp - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function timestamp$(params: IBizUtilTimestampParams): Promise; -export default timestamp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timestamp.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timestamp.js deleted file mode 100644 index ee3cd630..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/timestamp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function timestamp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.timestamp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.timestamp",exports.timestamp$=timestamp$,exports.default=timestamp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadAttachment.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadAttachment.d.ts deleted file mode 100644 index bdd93792..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadAttachment.d.ts +++ /dev/null @@ -1,74 +0,0 @@ -export declare const apiName = "biz.util.uploadAttachment"; -/** - * 附件上传 请求参数定义 - * @apiName biz.util.uploadAttachment - */ -export interface IBizUtilUploadAttachmentParams { - /** types这个数组里有photo、camera参数需要构建这个数据 */ - image?: { - /** 是否多选,默认为false */ - multiple?: boolean; - /** 是否压缩,默认为true */ - compress?: boolean; - /** 最多选择的图片数目,最多支持9张 */ - max?: number; - /** 企业自定义空间 */ - spaceId: string; - /** 文件将要被上传到的钉盘文件夹ID, 仅Android和iOS支持 */ - folderId?: string; - }; - space?: { - /** 企业ID */ - corpId: string; - /** 企业自定义空间 */ - spaceId: string; - /** 1复制,0不复制 */ - isCopy?: number; - /** 最多选择的图片数目,最多支持9张 */ - max?: number; - /** 文件将要被上传到的钉盘文件夹ID, 仅Android和iOS支持 */ - folderId?: string; - }; - file: { - /** 企业自定义空间 */ - spaceId: string; - /** 最多选择的图片数目,最多支持9张 */ - max?: number; - /** 文件将要被上传到的钉盘文件夹ID, 仅Android和iOS支持 */ - folderId?: string; - }; - /** 支持上传附件的文件类型,至少一个,最多支持四种类型 */ - types: Array<'photo' | 'camera' | 'file' | 'space'>; -} -/** - * 附件上传 返回结果定义 - * @apiName biz.util.uploadAttachment - */ -export interface IBizUtilUploadAttachmentResult { - /** 用户选择了哪种文件类型 ,image(图片)、file(手机文件)、space(钉盘文件) */ - type: 'photo' | 'camera' | 'file' | 'space'; - /** 文件上传成功后的数据信息 */ - data: Array<{ - /** 目标空间id */ - spaceId: string; - /** 文件id */ - fileId: string; - /** 文件名称 */ - fileName: string; - /** 文件大小 */ - fileSize: number; - /** 文件类型 */ - fileType: string; - }>; -} -/** - * 附件上传 - * 该接口支持照片,拍照,本地系统文件和从已有钉盘文件选择,返回值为文件在钉盘系统内的数据信息 - * 例如SpaceID、FileID等。其中照片、拍照和本地系统文件将先上传到参数SpaceID指定的钉盘空间再返回 - * 上传过程对开发者透明。为此调用该接口前需先获取企业自定义空间并授予当前用户对该空间的上传操作权限。 - * 获取自定义空间与授权参见服务端开发文档中“获取企业下自定义空间”和“授权用户访问企业下自定义空间”接口 - * @apiName biz.util.uploadAttachment - * @supportVersion pc: 3.0.0 ios: 2.7.0 android: 2.7.0 - */ -export declare function uploadAttachment$(params: IBizUtilUploadAttachmentParams): Promise; -export default uploadAttachment$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadAttachment.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadAttachment.js deleted file mode 100644 index 0d9f6591..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadAttachment.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadAttachment$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadAttachment$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.uploadAttachment",exports.uploadAttachment$=uploadAttachment$,exports.default=uploadAttachment$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImage.d.ts deleted file mode 100644 index 067334a5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImage.d.ts +++ /dev/null @@ -1,49 +0,0 @@ -export declare const apiName = "biz.util.uploadImage"; -/** - * 上传图片 请求参数定义 - * @apiName biz.util.uploadImage - */ -export interface IBizUtilUploadImageParams { - /** 默认 jsapi (>= 5.0.0) */ - bizType?: string; - /** - * (>= 5.0.0) - * 1,STRICT_AUTH, 严格鉴权,下载文件时需要回调业务方进行鉴权,默认值 。 - * 4,TEMP_AUTH, 临时文件,过期后删除文件,无法访问。 - * 6,CDN_ONLY,公开文件,上传后只可以通过https下载 - */ - authType?: number; - /** 是否多选,默认false */ - multiple?: boolean; - /** 最多可选个数 */ - max?: number; - /** 是否压缩 */ - compression?: boolean; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小压缩越严重 */ - quality?: number; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小缩放越多 */ - resize?: number; - /** 水印信息,钉钉v2.11.0之后版本支持 */ - stickers?: { - time?: string; - dateWeather?: string; - username?: string; - address?: string; - }; -} -/** - * 上传图片 返回结果定义 - * @apiName biz.util.uploadImage - * @returnDemo ['https://static.dingtalk.com/media/lADOA9bQH8zIzMg_200_200.jpg'] - */ -export declare type IBizUtilUploadImageResult = string[]; -/** - * 上传图片 - * 选择图片+上传,防止恶意上传。注意:在工作tab页自定义主页不能使用该组件,工作tab页一级页面会阻塞该组件的执行。 - * 将在成功上传之后回调onSuccess方法,返回alicdn上的图片链接。微应用也可以调用来自定义上传图片,此标签钉钉客户端版本2.5及以上支持。 - * @apiName biz.util.uploadImage - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - * @author android:卓剑, ios:须莫 - */ -export declare function uploadImage$(params: IBizUtilUploadImageParams): Promise; -export default uploadImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImage.js deleted file mode 100644 index 72017e43..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.uploadImage",exports.uploadImage$=uploadImage$,exports.default=uploadImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImageFromCamera.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImageFromCamera.d.ts deleted file mode 100644 index 22301dfa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImageFromCamera.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -export declare const apiName = "biz.util.uploadImageFromCamera"; -/** - * 上传图片 请求参数定义 - * @apiName biz.util.uploadImageFromCamera - */ -export interface IBizUtilUploadImageFromCameraParams { - /** 是否压缩 */ - compression?: boolean; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小压缩越严重 */ - quality?: number; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小缩放越多 */ - resize?: number; - /** 水印信息,钉钉v2.11.0之后版本支持 */ - stickers?: { - time?: string; - dateWeather?: string; - username?: string; - address?: string; - }; -} -/** - * 上传图片 返回结果定义 - * @apiName biz.util.uploadImageFromCamera - * @returnDemo ['https://static.dingtalk.com/media/lADOA9bQH8zIzMg_200_200.jpg'] - */ -export declare type IBizUtilUploadImageFromCameraResult = string[]; -/** - * 上传图片(仅支持拍照上传) - * 只支持直接拍照上传,即调用这个API之后将直接调起相机界面 - * 比如可以应用在,需要用户上传即时照片的场景。成功上传之后回调onSuccess方法,返回图片链接 - * @apiName biz.util.uploadImageFromCamera - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function uploadImageFromCamera$(params: IBizUtilUploadImageFromCameraParams): Promise; -export default uploadImageFromCamera$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImageFromCamera.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImageFromCamera.js deleted file mode 100644 index 057c3ebe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadImageFromCamera.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadImageFromCamera$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadImageFromCamera$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.uploadImageFromCamera",exports.uploadImageFromCamera$=uploadImageFromCamera$,exports.default=uploadImageFromCamera$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadMedia.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadMedia.d.ts deleted file mode 100644 index 7f31bd97..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadMedia.d.ts +++ /dev/null @@ -1,74 +0,0 @@ -export declare const apiName = "biz.util.uploadMedia"; -/** - * 持在从相册选图时,可以选择视频。选择视频与选择图片互斥,且在选择视频场景,为单选 请求参数定义 - * @apiName biz.util.uploadMedia - */ -export interface IBizUtilUploadMediaParams { - /** (>= 5.0.0) */ - bizType?: string; - /** - * (>= 5.0.0) - * 1,STRICT_AUTH, 严格鉴权,下载文件时需要回调业务方进行鉴权,默认值 。 - * 4,TEMP_AUTH, 临时文件,过期后删除文件,无法访问。 - * 6,CDN_ONLY,公开文件,上传后只可以通过https下载 - */ - authType?: number; - /** 是否多选,默认false */ - multiple?: boolean; - /** 最多可选个数 */ - max?: number; - /** 是否压缩 */ - compression?: boolean; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小压缩越严重 */ - quality?: number; - /** Number为正整数,取值 0~100, 表示图片压缩质量,数值越小缩放越多 */ - resize?: number; - /** 是否在上传阶段显示上传对话框,默认true , 支持版本 >= 4.6.4 */ - showDialog?: boolean; - /** 视频压缩质量,默认high, 支持版本 >= 4.6.4 */ - videoQuality: 'high' | 'middle' | 'low'; - /** 水印信息,钉钉v2.11.0之后版本支持 */ - stickers?: { - time?: string; - dateWeather?: string; - username?: string; - address?: string; - }; - /** 是否callback上传进度, 默认 false */ - needProgress?: boolean; - /** 是否需要鉴权,默认false */ - needAuth?: boolean; - /** 上传视频大小可以配置(在上传前校验,过大给与提示),单位 KB */ - maxSize?: number; - onSuccess?: (result: IBizUtilUploadMediaResult) => void; -} -/** - * 持在从相册选图时,可以选择视频。选择视频与选择图片互斥,且在选择视频场景,为单选 返回结果定义 - * @apiName biz.util.uploadMedia - */ -export interface IBizUtilUploadMediaResult { - medias?: Array<{ - type?: 'image' | 'video'; - mediaId?: string; - mediaUrl?: string; - thumbnailMediaId?: string; - thumbnailUrl?: string; - videoHeight?: number; - videoWidth?: number; - videoDuration?: number; - videoFileSize?: number; - videoFileName?: string; - /** 如果传入了needAuth:true,则返回这个 */ - authMediaId?: string; - }>; - /** 如果needProgress=true,则callback进度, 取值 [0,100] */ - progress?: number; -} -/** - * 持在从相册选图时,可以选择视频。选择视频与选择图片互斥,且在选择视频场景,为单选 - * @apiName biz.util.uploadMedia - * @supportVersion ios: 4.3.5 android: 4.3.5 - * @author android:卓剑, ios:须莫 - */ -export declare function uploadMedia$(params: IBizUtilUploadMediaParams): Promise; -export default uploadMedia$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadMedia.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadMedia.js deleted file mode 100644 index 83683941..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/uploadMedia.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadMedia$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadMedia$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.uploadMedia",exports.uploadMedia$=uploadMedia$,exports.default=uploadMedia$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/ut.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/ut.d.ts deleted file mode 100644 index 0ce65399..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/ut.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "biz.util.ut"; -/** - * 上报埋点 请求参数定义 - * @apiName biz.util.ut - */ -export interface IBizUtilUtParams { - /** gmkey */ - key: string; - /** gokey, jsapi层填obj */ - value?: { - [key: string]: string; - }; - /** 允许钉钉在后台时也发送埋点,而不是丢弃;目前仅安卓消费 */ - allowBackground?: boolean; -} -/** - * 上报埋点 返回结果定义 - * @apiName biz.util.ut - */ -export interface IBizUtilUtResult { - [key: string]: any; -} -/** - * 上报埋点 - * @apiName biz.util.ut - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function ut$(params: IBizUtilUtParams): Promise; -export default ut$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/ut.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/ut.js deleted file mode 100644 index 1a16a4fc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/ut.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function ut$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.ut$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.ut",exports.ut$=ut$,exports.default=ut$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/vip.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/vip.d.ts deleted file mode 100644 index b9d6331c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/vip.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "biz.util.vip"; -/** - * vip监控 请求参数定义,参考 https://yuque.antfin-inc.com/dingtalk_ios/rriv6z/bdgoh8 https://pre-wsdebug.dingtalk.com/ - * @apiName biz.util.vip - */ -export interface IBizUtilVipParams { - /** 申请的 moduleName */ - moduleName: string; - /** 申请的 subtype */ - subtype: number | string; - /** 上报文本内容 */ - desc: string; - /** 主企业 corpId */ - corpId: string; - /** 上报 key-value 数据 */ - extra: { - [key: string]: any; - }; -} -/** - * vip监控 返回结果定义 - * @apiName biz.util.vip - */ -export interface IBizUtilVipResult { - [key: string]: any; -} -/** - * vip监控 - * @apiName biz.util.vip - * @supportVersion ios: 3.3.0 android: 3.3.0 pc: 5.1.6 - * @author mac 口合, Windows:口合 - */ -export declare function vip$(params: IBizUtilVipParams): Promise; -export default vip$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/vip.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/vip.js deleted file mode 100644 index 74255f9c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/vip.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function vip$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.vip$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.vip",exports.vip$=vip$,exports.default=vip$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/warn.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/warn.d.ts deleted file mode 100644 index 368b6fb4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/warn.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.util.warn"; -/** - * 报警接口 请求参数定义 - * @apiName biz.util.warn - */ -export interface IBizUtilWarnParams { - [key: string]: any; -} -/** - * 报警接口 返回结果定义 - * @apiName biz.util.warn - */ -export interface IBizUtilWarnResult { - [key: string]: any; -} -/** - * 报警接口 - * @apiName biz.util.warn - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function warn$(params: IBizUtilWarnParams): Promise; -export default warn$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/warn.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/warn.js deleted file mode 100644 index 5b9255ee..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/warn.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function warn$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.warn$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.warn",exports.warn$=warn$,exports.default=warn$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/watermarkCamera.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/watermarkCamera.d.ts deleted file mode 100644 index fa27b7c6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/watermarkCamera.d.ts +++ /dev/null @@ -1,41 +0,0 @@ -export declare const apiName = "biz.util.watermarkCamera"; -/** - * 水印打卡相机JSAPI 请求参数定义 - * @apiName biz.util.watermarkCamera - */ -export interface IBizUtilWatermarkCameraParams { - /** 默认水印id,传-1则,表示默认无水印 */ - defaultWatermarkId?: string; - /** 业务码 */ - bizCode: string; - /** 企业ID,与cid必有其一 */ - corpId?: string; - /** 会话ID,与corpId必有其一 */ - cid?: string; - /** 是否需要记流水 */ - needCheckIn?: boolean; - /** 初始化数据,这个数据切换模板的时候会保存,并且传入到模板内 */ - extendData?: any; -} -/** - * 水印打卡相机JSAPI 返回结果定义 - * @apiName biz.util.watermarkCamera - */ -export interface IBizUtilWatermarkCameraResult { - /** 水印打卡返回的图片地址 */ - url: string; - mediaId: string; - authMediaId: string; - /** 额外数据,包含入参及表单额外数据 */ - extendData: any; - /** 表单数据 */ - formDataLists: any; -} -/** - * 水印打卡相机JSAPI - * @apiName biz.util.watermarkCamera - * @supportVersion ios: 5.1.27 android: 5.1.27 - * @author iOS:度尽 Android:序望 - */ -export declare function watermarkCamera$(params: IBizUtilWatermarkCameraParams): Promise; -export default watermarkCamera$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/watermarkCamera.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/util/watermarkCamera.js deleted file mode 100644 index 5f2e1524..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/util/watermarkCamera.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function watermarkCamera$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.watermarkCamera$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.util.watermarkCamera",exports.watermarkCamera$=watermarkCamera$,exports.default=watermarkCamera$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/biometric.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/biometric.d.ts deleted file mode 100644 index 825a5702..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/biometric.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.verify.biometric"; -/** - * 活体识别,识别后返回识别结果图片 请求参数定义 - * @apiName biz.verify.biometric - */ -export interface IBizVerifyBiometricParams { - [key: string]: any; -} -/** - * 活体识别,识别后返回识别结果图片 返回结果定义 - * @apiName biz.verify.biometric - */ -export interface IBizVerifyBiometricResult { - [key: string]: any; -} -/** - * 活体识别,识别后返回识别结果图片 - * @apiName biz.verify.biometric - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function biometric$(params: IBizVerifyBiometricParams): Promise; -export default biometric$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/biometric.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/biometric.js deleted file mode 100644 index cf3abc91..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/biometric.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function biometric$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.biometric$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.verify.biometric",exports.biometric$=biometric$,exports.default=biometric$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/openBindIDCard.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/openBindIDCard.d.ts deleted file mode 100644 index ef197594..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/openBindIDCard.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "biz.verify.openBindIDCard"; -/** - * 跳转到实名身份绑定页面 请求参数定义 - * @apiName biz.verify.openBindIDCard - */ -export interface IBizVerifyOpenBindIDCardParams { -} -/** - * 跳转到实名身份绑定页面 返回结果定义 - * @apiName biz.verify.openBindIDCard - */ -export interface IBizVerifyOpenBindIDCardResult { -} -/** - * 跳转到实名身份绑定页面 - * @apiName biz.verify.openBindIDCard - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function openBindIDCard$(params: IBizVerifyOpenBindIDCardParams): Promise; -export default openBindIDCard$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/openBindIDCard.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/openBindIDCard.js deleted file mode 100644 index 8e5c97a3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/openBindIDCard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openBindIDCard$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openBindIDCard$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.verify.openBindIDCard",exports.openBindIDCard$=openBindIDCard$,exports.default=openBindIDCard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/startAuth.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/startAuth.d.ts deleted file mode 100644 index 906299c7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/startAuth.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "biz.verify.startAuth"; -/** - * 对用户进行人脸认证,判断是否与当前钉钉账号实名绑定的身份一致 请求参数定义 - * @apiName biz.verify.startAuth - */ -export interface IBizVerifyStartAuthParams { - /** 对账单号,开发者输入,用于跟踪 */ - bizId: string; - /** 认证方式,目前只支持 "byDingtalk" */ - authType: string; - /** 用户信息 */ - userInfo?: { - /** 姓名 */ - name: string; - /** 身份证号 */ - IDCardNo: string; - }; - [key: string]: any; -} -/** - * 对用户进行人脸认证,判断是否与当前钉钉账号实名绑定的身份一致 返回结果定义 - * @apiName biz.verify.startAuth - */ -export interface IBizVerifyStartAuthResult { - /** 认证通过时,返回的授权码,用于服务端确认认证结果 */ - tmpAuthCode: string; -} -/** - * 对用户进行人脸认证,判断是否与当前钉钉账号实名绑定的身份一致 - * @apiName biz.verify.startAuth - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function startAuth$(params: IBizVerifyStartAuthParams): Promise; -export default startAuth$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/startAuth.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/startAuth.js deleted file mode 100644 index 37a4a920..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/startAuth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startAuth$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startAuth$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.verify.startAuth",exports.startAuth$=startAuth$,exports.default=startAuth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/takePhoto.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/takePhoto.d.ts deleted file mode 100644 index ec4e5bd0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/takePhoto.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.verify.takePhoto"; -/** - * 拍摄身份证正反面 请求参数定义 - * @apiName biz.verify.takePhoto - */ -export interface IBizVerifyTakePhotoParams { - [key: string]: any; -} -/** - * 拍摄身份证正反面 返回结果定义 - * @apiName biz.verify.takePhoto - */ -export interface IBizVerifyTakePhotoResult { - [key: string]: any; -} -/** - * 拍摄身份证正反面 - * @apiName biz.verify.takePhoto - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function takePhoto$(params: IBizVerifyTakePhotoParams): Promise; -export default takePhoto$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/takePhoto.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/takePhoto.js deleted file mode 100644 index 182b18d7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/verify/takePhoto.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function takePhoto$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.takePhoto$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.verify.takePhoto",exports.takePhoto$=takePhoto$,exports.default=takePhoto$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/openPage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/openPage.d.ts deleted file mode 100644 index e1a7774e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/openPage.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "biz.wiki.openPage"; -/** - * 打开指定知识页 请求参数定义 - * @apiName biz.wiki.openPage - */ -export interface IBizWikiOpenPageParams { - /** 知识页id */ - id: string; - /** 知识库归属企业 */ - corpId?: string; -} -/** - * 打开指定知识页 返回结果定义 - * @apiName biz.wiki.openPage - */ -export interface IBizWikiOpenPageResult { -} -/** - * 打开指定知识页 - * @apiName biz.wiki.openPage - * @supportVersion ios: 5.1.5 android: 5.1.5 - * @author Android:吾贤 iOS:弘煜 - */ -export declare function openPage$(params: IBizWikiOpenPageParams): Promise; -export default openPage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/openPage.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/openPage.js deleted file mode 100644 index f17d2df6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/openPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.wiki.openPage",exports.openPage$=openPage$,exports.default=openPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/saveToWiki.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/saveToWiki.d.ts deleted file mode 100644 index ba3141cb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/saveToWiki.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "biz.wiki.saveToWiki"; -/** - * 将文本或其他格式文档保存到知识库 请求参数定义 - * @apiName biz.wiki.saveToWiki - */ -export interface IBizWikiSaveToWikiParams { - /** 归属企业,不传将选择主企业 */ - corpId: string; - /** 弹窗标题 */ - title: string; - /** 资源存储地址 */ - resourceUrl: string; - /** 资源类型,目前只支持字符串text */ - resourceType: string; - /** 导入后的知识页标题 */ - resourceName: string; -} -/** - * 将文本或其他格式文档保存到知识库 返回结果定义 - * @apiName biz.wiki.saveToWiki - */ -export interface IBizWikiSaveToWikiResult { - /** 保存后的知识页id */ - id: string; -} -/** - * 将文本或其他格式文档保存到知识库 - * @apiName biz.wiki.saveToWiki - * @supportVersion ios: 5.1.5 android: 5.1.5 - * @author Android:吾贤 iOS:弘煜 - */ -export declare function saveToWiki$(params: IBizWikiSaveToWikiParams): Promise; -export default saveToWiki$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/saveToWiki.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/saveToWiki.js deleted file mode 100644 index 18045f55..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/wiki/saveToWiki.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function saveToWiki$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.saveToWiki$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.wiki.saveToWiki",exports.saveToWiki$=saveToWiki$,exports.default=saveToWiki$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/download.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/download.d.ts deleted file mode 100644 index f13c22fd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/download.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.zoloz.download"; -/** - * 下载算法模型 请求参数定义 - * @apiName biz.zoloz.download - */ -export interface IBizZolozDownloadParams { - [key: string]: any; -} -/** - * 下载算法模型 返回结果定义 - * @apiName biz.zoloz.download - */ -export interface IBizZolozDownloadResult { - [key: string]: any; -} -/** - * 下载算法模型 - * @apiName biz.zoloz.download - * @supportVersion ios: 4.2 android: 4.2 - */ -export declare function download$(params: IBizZolozDownloadParams): Promise; -export default download$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/download.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/download.js deleted file mode 100644 index 3050bca1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/download.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function download$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.download$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.zoloz.download",exports.download$=download$,exports.default=download$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/zimIdentity.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/zimIdentity.d.ts deleted file mode 100644 index 5ec57646..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/zimIdentity.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "biz.zoloz.zimIdentity"; -/** - * 启动生物识别认证接口 请求参数定义 - * @apiName biz.zoloz.zimIdentity - */ -export interface IBizZolozZimIdentityParams { - [key: string]: any; -} -/** - * 启动生物识别认证接口 返回结果定义 - * @apiName biz.zoloz.zimIdentity - */ -export interface IBizZolozZimIdentityResult { - [key: string]: any; -} -/** - * 启动生物识别认证接口 - * @apiName biz.zoloz.zimIdentity - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function zimIdentity$(params: IBizZolozZimIdentityParams): Promise; -export default zimIdentity$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/zimIdentity.js b/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/zimIdentity.js deleted file mode 100644 index 47a4e377..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/biz/zoloz/zimIdentity.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function zimIdentity$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.zimIdentity$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="biz.zoloz.zimIdentity",exports.zimIdentity$=zimIdentity$,exports.default=zimIdentity$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/channel/open/profile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/channel/open/profile.d.ts deleted file mode 100644 index 183e1a7a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/channel/open/profile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "channel.open.profile"; -/** - * 服务窗打开个人profile页面 请求参数定义 - * @apiName channel.open.profile - */ -export interface IChannelOpenProfileParams { - [key: string]: any; -} -/** - * 服务窗打开个人profile页面 返回结果定义 - * @apiName channel.open.profile - */ -export interface IChannelOpenProfileResult { - [key: string]: any; -} -/** - * 服务窗打开个人profile页面 - * @apiName channel.open.profile - * @supportVersion ios: 3.0.0 android: 3.0.0 - */ -export declare function profile$(params: IChannelOpenProfileParams): Promise; -export default profile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/channel/open/profile.js b/node_modules/dingtalk-jsapi/lib/common/api/channel/open/profile.js deleted file mode 100644 index 376057c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/channel/open/profile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function profile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.profile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="channel.open.profile",exports.profile$=profile$,exports.default=profile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/channel/permission/requestAuthCode.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/channel/permission/requestAuthCode.d.ts deleted file mode 100644 index 78dd759e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/channel/permission/requestAuthCode.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "channel.permission.requestAuthCode"; -/** - * 服务窗请求授权码,免登改造用 请求参数定义 - * @apiName channel.permission.requestAuthCode - */ -export interface IChannelPermissionRequestAuthCodeParams { - corpId: string; -} -/** - * 服务窗请求授权码,免登改造用 返回结果定义 - * @apiName channel.permission.requestAuthCode - */ -export interface IChannelPermissionRequestAuthCodeResult { - code: string; -} -/** - * 服务窗请求授权码,免登改造用 - * @apiName channel.permission.requestAuthCode - * @supportVersion ios: 3.0.0 android: 3.0.0 - */ -export declare function requestAuthCode$(params: IChannelPermissionRequestAuthCodeParams): Promise; -export default requestAuthCode$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/channel/permission/requestAuthCode.js b/node_modules/dingtalk-jsapi/lib/common/api/channel/permission/requestAuthCode.js deleted file mode 100644 index 6fa11a12..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/channel/permission/requestAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestAuthCode$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestAuthCode$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="channel.permission.requestAuthCode",exports.requestAuthCode$=requestAuthCode$,exports.default=requestAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/clearShake.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/clearShake.d.ts deleted file mode 100644 index dd41c549..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/clearShake.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "device.accelerometer.clearShake"; -/** - * 停止摇一摇 请求参数定义 - * @apiName device.accelerometer.clearShake - */ -export interface IDeviceAccelerometerClearShakeParams { -} -/** - * 停止摇一摇 返回结果定义 - * @apiName device.accelerometer.clearShake - */ -export interface IDeviceAccelerometerClearShakeResult { -} -/** - * 停止摇一摇 清除监听 - * @apiName device.accelerometer.clearShake - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function clearShake$(params: IDeviceAccelerometerClearShakeParams): Promise; -export default clearShake$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/clearShake.js b/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/clearShake.js deleted file mode 100644 index 87ee7275..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/clearShake.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function clearShake$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.clearShake$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.accelerometer.clearShake",exports.clearShake$=clearShake$,exports.default=clearShake$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/watchShake.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/watchShake.d.ts deleted file mode 100644 index 489efa2f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/watchShake.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "device.accelerometer.watchShake"; -/** - * 启动摇一摇 请求参数定义 - * @apiName device.accelerometer.watchShake - */ -export interface IDeviceAccelerometerWatchShakeParams { - /** 振动幅度,Number类型,加速度变化超过这个值后触发shake */ - sensitivity: number; - /** 采样间隔(毫秒),Number类型,指每隔多长时间对加速度进行一次采样, 然后对比前后变化,判断是否触发shake */ - frequency: number; - /** 触发『摇一摇』后的等待时间(毫秒),Number类型,防止频繁调用 */ - callbackDelay: number; - /** onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 启动摇一摇 返回结果定义 - * @apiName device.accelerometer.watchShake - */ -export interface IDeviceAccelerometerWatchShakeResult { -} -/** - * 启动摇一摇 - * 开启监听 - * @apiName device.accelerometer.watchShake - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function watchShake$(params: IDeviceAccelerometerWatchShakeParams): Promise; -export default watchShake$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/watchShake.js b/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/watchShake.js deleted file mode 100644 index 9c80c524..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/accelerometer/watchShake.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function watchShake$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.watchShake$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.accelerometer.watchShake",exports.watchShake$=watchShake$,exports.default=watchShake$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/download.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/download.d.ts deleted file mode 100644 index b43eb54d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/download.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.download"; -/** - * 下载音频 请求参数定义 - * @apiName device.audio.download - */ -export interface IDeviceAudioDownloadParams { - [key: string]: any; -} -/** - * 下载音频 返回结果定义 - * @apiName device.audio.download - */ -export interface IDeviceAudioDownloadResult { - [key: string]: any; -} -/** - * 下载音频 - * @apiName device.audio.download - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function download$(params: IDeviceAudioDownloadParams): Promise; -export default download$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/download.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/download.js deleted file mode 100644 index afde6491..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/download.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function download$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.download$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.download",exports.download$=download$,exports.default=download$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getDuration.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getDuration.d.ts deleted file mode 100644 index 60729011..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getDuration.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.getDuration"; -/** - * 获取音频长度 请求参数定义 - * @apiName device.audio.getDuration - */ -export interface IDeviceAudioGetDurationParams { - localAudioId: string; -} -/** - * 获取音频长度 返回结果定义 - * @apiName device.audio.getDuration - */ -export interface IDeviceAudioGetDurationResult { - duration: number; -} -/** - * 获取音频长度 - * @apiName device.audio.getDuration - * @supportVersion ios: 5.1.20 android: 5.1.20 - */ -export declare function getDuration$(params: IDeviceAudioGetDurationParams): Promise; -export default getDuration$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getDuration.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getDuration.js deleted file mode 100644 index 4c02ab93..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getDuration.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDuration$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDuration$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.getDuration",exports.getDuration$=getDuration$,exports.default=getDuration$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getVolume.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getVolume.d.ts deleted file mode 100644 index 6ca39629..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getVolume.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "device.audio.getVolume"; -/** - * 获取当前播放器音量 请求参数定义 - * @apiName device.audio.getVolume - */ -export interface IDeviceAudioGetVolumeParams { -} -/** - * 获取当前播放器音量 返回结果定义 - * @apiName device.audio.getVolume - */ -export interface IDeviceAudioGetVolumeResult { - /** 音量,取值范围[0, 1] */ - volume: number; -} -/** - * 获取当前播放器音量 - * @apiName device.audio.getVolume - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author iOS:新鹏 Android:峰砺 - */ -export declare function getVolume$(params: IDeviceAudioGetVolumeParams): Promise; -export default getVolume$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getVolume.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getVolume.js deleted file mode 100644 index 77ea2f5e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/getVolume.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getVolume$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getVolume$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.getVolume",exports.getVolume$=getVolume$,exports.default=getVolume$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/isMute.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/isMute.d.ts deleted file mode 100644 index 9389479a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/isMute.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "device.audio.isMute"; -/** - * 获取当前播放器静音状态 请求参数定义 - * @apiName device.audio.isMute - */ -export interface IDeviceAudioIsMuteParams { -} -/** - * 获取当前播放器静音状态 返回结果定义 - * @apiName device.audio.isMute - */ -export interface IDeviceAudioIsMuteResult { - /** true 表示静音 false表示未静音 */ - isMute: boolean; -} -/** - * 获取当前播放器静音状态 - * @apiName device.audio.isMute - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author iOS:新鹏 Android:峰砺 - */ -export declare function isMute$(params: IDeviceAudioIsMuteParams): Promise; -export default isMute$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/isMute.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/isMute.js deleted file mode 100644 index 0308b2fb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/isMute.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isMute$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isMute$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.isMute",exports.isMute$=isMute$,exports.default=isMute$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onPlayEnd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onPlayEnd.d.ts deleted file mode 100644 index 3b06c4cc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onPlayEnd.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.onPlayEnd"; -/** - * 监听播放音频停止的事件接口 请求参数定义 - * @apiName device.audio.onPlayEnd - */ -export interface IDeviceAudioOnPlayEndParams { - [key: string]: any; -} -/** - * 监听播放音频停止的事件接口 返回结果定义 - * @apiName device.audio.onPlayEnd - */ -export interface IDeviceAudioOnPlayEndResult { - [key: string]: any; -} -/** - * 监听播放音频停止的事件接口 - * @apiName device.audio.onPlayEnd - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function onPlayEnd$(params: IDeviceAudioOnPlayEndParams): Promise; -export default onPlayEnd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onPlayEnd.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onPlayEnd.js deleted file mode 100644 index 67ac4c8e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onPlayEnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onPlayEnd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.onPlayEnd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.onPlayEnd",exports.onPlayEnd$=onPlayEnd$,exports.default=onPlayEnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onRecordEnd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onRecordEnd.d.ts deleted file mode 100644 index 92bf396e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onRecordEnd.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.onRecordEnd"; -/** - * 监听录音自动停止 请求参数定义 - * @apiName device.audio.onRecordEnd - */ -export interface IDeviceAudioOnRecordEndParams { - [key: string]: any; -} -/** - * 监听录音自动停止 返回结果定义 - * @apiName device.audio.onRecordEnd - */ -export interface IDeviceAudioOnRecordEndResult { - [key: string]: any; -} -/** - * 监听录音自动停止 - * @apiName device.audio.onRecordEnd - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function onRecordEnd$(params: IDeviceAudioOnRecordEndParams): Promise; -export default onRecordEnd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onRecordEnd.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onRecordEnd.js deleted file mode 100644 index faf8b380..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/onRecordEnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function onRecordEnd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.onRecordEnd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.onRecordEnd",exports.onRecordEnd$=onRecordEnd$,exports.default=onRecordEnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/pause.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/pause.d.ts deleted file mode 100644 index 8abe16ef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/pause.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.pause"; -/** - * 暂停播放音频 请求参数定义 - * @apiName device.audio.pause - */ -export interface IDeviceAudioPauseParams { - [key: string]: any; -} -/** - * 暂停播放音频 返回结果定义 - * @apiName device.audio.pause - */ -export interface IDeviceAudioPauseResult { - [key: string]: any; -} -/** - * 暂停播放音频 - * @apiName device.audio.pause - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function pause$(params: IDeviceAudioPauseParams): Promise; -export default pause$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/pause.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/pause.js deleted file mode 100644 index 772a7c7f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/pause.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pause$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pause$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.pause",exports.pause$=pause$,exports.default=pause$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/play.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/play.d.ts deleted file mode 100644 index db1485f6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/play.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.play"; -/** - * 播放音频 请求参数定义 - * @apiName device.audio.play - */ -export interface IDeviceAudioPlayParams { - [key: string]: any; -} -/** - * 播放音频 返回结果定义 - * @apiName device.audio.play - */ -export interface IDeviceAudioPlayResult { - [key: string]: any; -} -/** - * 播放音频 - * @apiName device.audio.play - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function play$(params: IDeviceAudioPlayParams): Promise; -export default play$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/play.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/play.js deleted file mode 100644 index ad126c90..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/play.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function play$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.play$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.play",exports.play$=play$,exports.default=play$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/resume.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/resume.d.ts deleted file mode 100644 index b5a91f98..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/resume.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.resume"; -/** - * 暂停之后继续播放音频 请求参数定义 - * @apiName device.audio.resume - */ -export interface IDeviceAudioResumeParams { - [key: string]: any; -} -/** - * 暂停之后继续播放音频 返回结果定义 - * @apiName device.audio.resume - */ -export interface IDeviceAudioResumeResult { - [key: string]: any; -} -/** - * 暂停之后继续播放音频 - * @apiName device.audio.resume - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function resume$(params: IDeviceAudioResumeParams): Promise; -export default resume$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/resume.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/resume.js deleted file mode 100644 index c05f05c1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/resume.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resume$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.resume$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.resume",exports.resume$=resume$,exports.default=resume$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/seek.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/seek.d.ts deleted file mode 100644 index 0a2273c0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/seek.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "device.audio.seek"; -/** - * 音频播放跳转 请求参数定义 - * @apiName device.audio.seek - */ -export interface IDeviceAudioSeekParams { - localAudioId: string; - position: number; -} -/** - * 音频播放跳转 返回结果定义 - * @apiName device.audio.seek - */ -export interface IDeviceAudioSeekResult { - [key: string]: any; -} -/** - * 音频播放跳转 - * @apiName device.audio.seek - * @supportVersion ios: 5.1.20 android: 5.1.20 - */ -export declare function seek$(params: IDeviceAudioSeekParams): Promise; -export default seek$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/seek.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/seek.js deleted file mode 100644 index 2302194a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/seek.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function seek$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.seek$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.seek",exports.seek$=seek$,exports.default=seek$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setMute.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setMute.d.ts deleted file mode 100644 index cd39f2fc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setMute.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "device.audio.setMute"; -/** - * 设置当前播放器静音 请求参数定义 - * @apiName device.audio.setMute - */ -export interface IDeviceAudioSetMuteParams { - /** 是否静音 true 表示静音 false表示取消静音 */ - mute: boolean; -} -/** - * 设置当前播放器静音 返回结果定义 - * @apiName device.audio.setMute - */ -export interface IDeviceAudioSetMuteResult { -} -/** - * 设置当前播放器静音 - * @apiName device.audio.setMute - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author iOS:新鹏 Android:峰砺 - */ -export declare function setMute$(params: IDeviceAudioSetMuteParams): Promise; -export default setMute$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setMute.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setMute.js deleted file mode 100644 index 72e89d0e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setMute.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setMute$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setMute$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.setMute",exports.setMute$=setMute$,exports.default=setMute$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setVolume.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setVolume.d.ts deleted file mode 100644 index 4f986ea5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setVolume.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "device.audio.setVolume"; -/** - * 设置当前播放器音量 请求参数定义 - * @apiName device.audio.setVolume - */ -export interface IDeviceAudioSetVolumeParams { - /** 音量,取值范围[0, 1] */ - volume: number; -} -/** - * 设置当前播放器音量 返回结果定义 - * @apiName device.audio.setVolume - */ -export interface IDeviceAudioSetVolumeResult { -} -/** - * 设置当前播放器音量 - * @apiName device.audio.setVolume - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author iOS:新鹏 Android:峰砺 - */ -export declare function setVolume$(params: IDeviceAudioSetVolumeParams): Promise; -export default setVolume$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setVolume.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setVolume.js deleted file mode 100644 index 4b24b19b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/setVolume.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setVolume$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setVolume$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.setVolume",exports.setVolume$=setVolume$,exports.default=setVolume$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/startRecord.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/startRecord.d.ts deleted file mode 100644 index ee028bf7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/startRecord.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.startRecord"; -/** - * 开始录制音频 请求参数定义 - * @apiName device.audio.startRecord - */ -export interface IDeviceAudioStartRecordParams { - [key: string]: any; -} -/** - * 开始录制音频 返回结果定义 - * @apiName device.audio.startRecord - */ -export interface IDeviceAudioStartRecordResult { - [key: string]: any; -} -/** - * 开始录制音频 - * @apiName device.audio.startRecord - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function startRecord$(params: IDeviceAudioStartRecordParams): Promise; -export default startRecord$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/startRecord.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/startRecord.js deleted file mode 100644 index 711579f3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/startRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startRecord$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startRecord$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.startRecord",exports.startRecord$=startRecord$,exports.default=startRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stop.d.ts deleted file mode 100644 index 2c4be018..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.stop"; -/** - * 停止播放音频 请求参数定义 - * @apiName device.audio.stop - */ -export interface IDeviceAudioStopParams { - [key: string]: any; -} -/** - * 停止播放音频 返回结果定义 - * @apiName device.audio.stop - */ -export interface IDeviceAudioStopResult { - [key: string]: any; -} -/** - * 停止播放音频 - * @apiName device.audio.stop - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function stop$(params: IDeviceAudioStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stop.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stop.js deleted file mode 100644 index d9a3cc31..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.stop",exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stopRecord.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stopRecord.d.ts deleted file mode 100644 index f0720ee6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stopRecord.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.stopRecord"; -/** - * 停止录制音频 请求参数定义 - * @apiName device.audio.stopRecord - */ -export interface IDeviceAudioStopRecordParams { - [key: string]: any; -} -/** - * 停止录制音频 返回结果定义 - * @apiName device.audio.stopRecord - */ -export interface IDeviceAudioStopRecordResult { - [key: string]: any; -} -/** - * 停止录制音频 - * @apiName device.audio.stopRecord - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function stopRecord$(params: IDeviceAudioStopRecordParams): Promise; -export default stopRecord$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stopRecord.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stopRecord.js deleted file mode 100644 index 65c501c4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/stopRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopRecord$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopRecord$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.stopRecord",exports.stopRecord$=stopRecord$,exports.default=stopRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/translateVoice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/translateVoice.d.ts deleted file mode 100644 index 6f4646f6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/translateVoice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.translateVoice"; -/** - * 音频转文字 请求参数定义 - * @apiName device.audio.translateVoice - */ -export interface IDeviceAudioTranslateVoiceParams { - [key: string]: any; -} -/** - * 音频转文字 返回结果定义 - * @apiName device.audio.translateVoice - */ -export interface IDeviceAudioTranslateVoiceResult { - [key: string]: any; -} -/** - * 音频转文字 - * @apiName device.audio.translateVoice - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function translateVoice$(params: IDeviceAudioTranslateVoiceParams): Promise; -export default translateVoice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/translateVoice.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/translateVoice.js deleted file mode 100644 index 8d88a694..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/translateVoice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function translateVoice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.translateVoice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.translateVoice",exports.translateVoice$=translateVoice$,exports.default=translateVoice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/upload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/upload.d.ts deleted file mode 100644 index a376eb4a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/upload.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.audio.upload"; -/** - * 上传已录制的音频 请求参数定义 - * @apiName device.audio.upload - */ -export interface IDeviceAudioUploadParams { - [key: string]: any; -} -/** - * 上传已录制的音频 返回结果定义 - * @apiName device.audio.upload - */ -export interface IDeviceAudioUploadResult { - [key: string]: any; -} -/** - * 上传已录制的音频 - * @apiName device.audio.upload - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function upload$(params: IDeviceAudioUploadParams): Promise; -export default upload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/upload.js b/node_modules/dingtalk-jsapi/lib/common/api/device/audio/upload.js deleted file mode 100644 index 7844e7c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/audio/upload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function upload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.upload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.audio.upload",exports.upload$=upload$,exports.default=upload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/connectBleDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/connectBleDevice.d.ts deleted file mode 100644 index 6d7d8a65..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/connectBleDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.connectBleDevice"; -/** - * 连接蓝牙设备 请求参数定义 - * @apiName device.base.connectBleDevice - */ -export interface IDeviceBaseConnectBleDeviceParams { - [key: string]: any; -} -/** - * 连接蓝牙设备 返回结果定义 - * @apiName device.base.connectBleDevice - */ -export interface IDeviceBaseConnectBleDeviceResult { - [key: string]: any; -} -/** - * 连接蓝牙设备 - * @apiName device.base.connectBleDevice - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function connectBleDevice$(params: IDeviceBaseConnectBleDeviceParams): Promise; -export default connectBleDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/connectBleDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/connectBleDevice.js deleted file mode 100644 index 9bb98d76..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/connectBleDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function connectBleDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.connectBleDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.connectBleDevice",exports.connectBleDevice$=connectBleDevice$,exports.default=connectBleDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/disConnectBleDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/disConnectBleDevice.d.ts deleted file mode 100644 index 908ac4ce..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/disConnectBleDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.disConnectBleDevice"; -/** - * 断链蓝牙设备 请求参数定义 - * @apiName device.base.disConnectBleDevice - */ -export interface IDeviceBaseDisConnectBleDeviceParams { - [key: string]: any; -} -/** - * 断链蓝牙设备 返回结果定义 - * @apiName device.base.disConnectBleDevice - */ -export interface IDeviceBaseDisConnectBleDeviceResult { - [key: string]: any; -} -/** - * 断链蓝牙设备 - * @apiName device.base.disConnectBleDevice - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function disConnectBleDevice$(params: IDeviceBaseDisConnectBleDeviceParams): Promise; -export default disConnectBleDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/disConnectBleDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/disConnectBleDevice.js deleted file mode 100644 index c03cfabd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/disConnectBleDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disConnectBleDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.disConnectBleDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.disConnectBleDevice",exports.disConnectBleDevice$=disConnectBleDevice$,exports.default=disConnectBleDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetooth.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetooth.d.ts deleted file mode 100644 index 6c6d64bb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetooth.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.enableBluetooth"; -/** - * 开启蓝牙 请求参数定义 - * @apiName device.base.enableBluetooth - */ -export interface IDeviceBaseEnableBluetoothParams { - [key: string]: any; -} -/** - * 开启蓝牙 返回结果定义 - * @apiName device.base.enableBluetooth - */ -export interface IDeviceBaseEnableBluetoothResult { - [key: string]: any; -} -/** - * 开启蓝牙 - * @apiName device.base.enableBluetooth - * @supportVersion ios: 3.3.0 android: 3.3.0 - */ -export declare function enableBluetooth$(params: IDeviceBaseEnableBluetoothParams): Promise; -export default enableBluetooth$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetooth.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetooth.js deleted file mode 100644 index 8aec9915..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetooth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enableBluetooth$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enableBluetooth$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.enableBluetooth",exports.enableBluetooth$=enableBluetooth$,exports.default=enableBluetooth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetoothV2.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetoothV2.d.ts deleted file mode 100644 index 2468454a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetoothV2.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "device.base.enableBluetoothV2"; -/** - * 打开设备蓝牙开关V2,解决Android部分机型上device.base.enableBluetooth点击「拒绝」或「允许」后没有回调状态的问题 请求参数定义 - * @apiName device.base.enableBluetoothV2 - */ -export interface IDeviceBaseEnableBluetoothV2Params { -} -/** - * 打开设备蓝牙开关V2,解决Android部分机型上device.base.enableBluetooth点击「拒绝」或「允许」后没有回调状态的问题 返回结果定义 - * @apiName device.base.enableBluetoothV2 - */ -export interface IDeviceBaseEnableBluetoothV2Result { -} -/** - * 打开设备蓝牙开关V2,解决Android部分机型上device.base.enableBluetooth点击「拒绝」或「允许」后没有回调状态的问题 - * @apiName device.base.enableBluetoothV2 - * @supportVersion android: 5.1.0 - * @author android: 序望 - */ -export declare function enableBluetoothV2$(params: IDeviceBaseEnableBluetoothV2Params): Promise; -export default enableBluetoothV2$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetoothV2.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetoothV2.js deleted file mode 100644 index 23352f40..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableBluetoothV2.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enableBluetoothV2$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enableBluetoothV2$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.enableBluetoothV2",exports.enableBluetoothV2$=enableBluetoothV2$,exports.default=enableBluetoothV2$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableLocation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableLocation.d.ts deleted file mode 100644 index a00cbd29..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableLocation.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.enableLocation"; -/** - * 开启定位 请求参数定义 - * @apiName device.base.enableLocation - */ -export interface IDeviceBaseEnableLocationParams { - [key: string]: any; -} -/** - * 开启定位 返回结果定义 - * @apiName device.base.enableLocation - */ -export interface IDeviceBaseEnableLocationResult { - [key: string]: any; -} -/** - * 开启定位 - * @apiName device.base.enableLocation - * @supportVersion ios: 3.3.0 android: 3.3.0 - */ -export declare function enableLocation$(params: IDeviceBaseEnableLocationParams): Promise; -export default enableLocation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableLocation.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableLocation.js deleted file mode 100644 index bfd1120d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableLocation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enableLocation$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enableLocation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.enableLocation",exports.enableLocation$=enableLocation$,exports.default=enableLocation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableWifi.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableWifi.d.ts deleted file mode 100644 index 57a6ce1b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableWifi.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "device.base.enableWifi"; -/** - * 打开WiFi开关 请求参数定义 - * @apiName device.base.enableWifi - */ -export interface IDeviceBaseEnableWifiParams { -} -/** - * 打开WiFi开关 返回结果定义 - * @apiName device.base.enableWifi - */ -export interface IDeviceBaseEnableWifiResult { -} -/** - * 打开WiFi开关 - * @apiName device.base.enableWifi - * @supportVersion ios: 4.6.1 android: 4.6.1 - */ -export declare function enableWifi$(params: IDeviceBaseEnableWifiParams): Promise; -export default enableWifi$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableWifi.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableWifi.js deleted file mode 100644 index 29e17e14..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/enableWifi.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enableWifi$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enableWifi$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.enableWifi",exports.enableWifi$=enableWifi$,exports.default=enableWifi$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getInterface.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getInterface.d.ts deleted file mode 100644 index 418c32a7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getInterface.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "device.base.getInterface"; -/** - * 获取热点接入信息 请求参数定义 - * @apiName device.base.getInterface - */ -export interface IDeviceBaseGetInterfaceParams { -} -/** - * 获取热点接入信息 返回结果定义 - * @apiName device.base.getInterface - */ -export interface IDeviceBaseGetInterfaceResult { - /** 热点ssid */ - ssid: string; - /** 热点mac地址 */ - macIp: string; -} -/** - * 获取热点接入信息 - * @apiName device.base.getInterface - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function getInterface$(params: IDeviceBaseGetInterfaceParams): Promise; -export default getInterface$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getInterface.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getInterface.js deleted file mode 100644 index a11bfc3c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getInterface.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getInterface$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getInterface$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.getInterface",exports.getInterface$=getInterface$,exports.default=getInterface$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getPhoneInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getPhoneInfo.d.ts deleted file mode 100644 index d553e2d2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getPhoneInfo.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "device.base.getPhoneInfo"; -/** - * 获取手机基础信息 请求参数定义 - * @apiName device.base.getPhoneInfo - */ -export interface IDeviceBaseGetPhoneInfoParams { -} -/** - * 获取手机基础信息 返回结果定义 - * @apiName device.base.getPhoneInfo - */ -export interface IDeviceBaseGetPhoneInfoResult { - /** 手机屏幕宽度 */ - screenWidth: number; - /** 手机屏幕高度 */ - screenHeight: number; - /** 手机品牌 */ - brand: string; - /** 手机型号 */ - model: string; - /** 版本 */ - version: string; - /** 网络类型 wifi/4g/3g */ - netInfo: 'wifi' | '4g' | '3g'; - /** 运营商信息 */ - operatorType: string; -} -/** - * 获取手机基础信息 - * @apiName device.base.getPhoneInfo - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function getPhoneInfo$(params: IDeviceBaseGetPhoneInfoParams): Promise; -export default getPhoneInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getPhoneInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getPhoneInfo.js deleted file mode 100644 index b60c0f97..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getPhoneInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPhoneInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPhoneInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.getPhoneInfo",exports.getPhoneInfo$=getPhoneInfo$,exports.default=getPhoneInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiList.d.ts deleted file mode 100644 index 10c86f62..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.getScanWifiList"; -/** - * 获取wifi列表 请求参数定义 - * @apiName device.base.getScanWifiList - */ -export interface IDeviceBaseGetScanWifiListParams { - [key: string]: any; -} -/** - * 获取wifi列表 返回结果定义 - * @apiName device.base.getScanWifiList - */ -export interface IDeviceBaseGetScanWifiListResult { - [key: string]: any; -} -/** - * 获取wifi列表 - * @apiName device.base.getScanWifiList - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function getScanWifiList$(params: IDeviceBaseGetScanWifiListParams): Promise; -export default getScanWifiList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiList.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiList.js deleted file mode 100644 index c02ea928..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getScanWifiList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getScanWifiList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.getScanWifiList",exports.getScanWifiList$=getScanWifiList$,exports.default=getScanWifiList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiListAsync.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiListAsync.d.ts deleted file mode 100644 index c4a5b9ed..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiListAsync.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "device.base.getScanWifiListAsync"; -/** - * 获取WIFI 请求参数定义 - * @apiName device.base.getScanWifiListAsync - */ -export interface IDeviceBaseGetScanWifiListAsyncParams { - /** 超时时间 int 必选 */ - timeout: number; - /** 缓存时间 int 必选 */ - cacheTime: number; -} -/** - * 获取WIFI 返回结果定义 - * @apiName device.base.getScanWifiListAsync - */ -export interface IDeviceBaseGetScanWifiListAsyncResult { - /** 错误码 int枚举值 必选 取值{ 0:成功 1:json错误 2:系统错误 3:超时 } */ - resultCode: number; - /** WiFi列表 */ - wifiList?: any[]; - /** 成功或错误信息 */ - resultMessage?: string; -} -/** - * 获取WIFI - * @apiName device.base.getScanWifiListAsync - * @supportVersion ios: 3.3.0 android: 3.3.0 - */ -export declare function getScanWifiListAsync$(params: IDeviceBaseGetScanWifiListAsyncParams): Promise; -export default getScanWifiListAsync$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiListAsync.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiListAsync.js deleted file mode 100644 index 2f400fb0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getScanWifiListAsync.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getScanWifiListAsync$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getScanWifiListAsync$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.getScanWifiListAsync",exports.getScanWifiListAsync$=getScanWifiListAsync$,exports.default=getScanWifiListAsync$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getSettings.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getSettings.d.ts deleted file mode 100644 index c84fe236..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getSettings.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.getSettings"; -/** - * 获取手机设置(目前只有ios支持) 请求参数定义 - * @apiName device.base.getSettings - */ -export interface IDeviceBaseGetSettingsParams { - [key: string]: any; -} -/** - * 获取手机设置(目前只有ios支持) 返回结果定义 - * @apiName device.base.getSettings - */ -export interface IDeviceBaseGetSettingsResult { - [key: string]: any; -} -/** - * 获取手机设置(目前只有ios支持) - * @apiName device.base.getSettings - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function getSettings$(params: IDeviceBaseGetSettingsParams): Promise; -export default getSettings$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getSettings.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getSettings.js deleted file mode 100644 index cd4714b9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getSettings.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getSettings$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getSettings$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.getSettings",exports.getSettings$=getSettings$,exports.default=getSettings$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getUUID.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getUUID.d.ts deleted file mode 100644 index 65dcebf0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getUUID.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.getUUID"; -/** - * 获取通用唯一识别码(卸载重新安装会改变) 请求参数定义 - * @apiName device.base.getUUID - */ -export interface IDeviceBaseGetUUIDParams { -} -/** - * 获取通用唯一识别码(卸载重新安装会改变) 返回结果定义 - * @apiName device.base.getUUID - */ -export interface IDeviceBaseGetUUIDResult { - /** 通用唯一识别码 */ - uuid: string; -} -/** - * 获取通用唯一识别码(卸载重新安装会改变) - * @apiName device.base.getUUID - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function getUUID$(params: IDeviceBaseGetUUIDParams): Promise; -export default getUUID$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getUUID.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getUUID.js deleted file mode 100644 index 877db246..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getUUID.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getUUID$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUUID$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.getUUID",exports.getUUID$=getUUID$,exports.default=getUUID$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getWifiStatus.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getWifiStatus.d.ts deleted file mode 100644 index 481818d3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getWifiStatus.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.getWifiStatus"; -/** - * 获取wifi是否打开 请求参数定义 - * @apiName device.base.getWifiStatus - */ -export interface IDeviceBaseGetWifiStatusParams { -} -/** - * 获取wifi是否打开 返回结果定义 - * @apiName device.base.getWifiStatus - */ -export interface IDeviceBaseGetWifiStatusResult { - /** 当前连接wifi的状态 1 :enable;0 : disable */ - status: 1 | 0; -} -/** - * 获取wifi是否打开 - * @apiName device.base.getWifiStatus - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function getWifiStatus$(params: IDeviceBaseGetWifiStatusParams): Promise; -export default getWifiStatus$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getWifiStatus.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/getWifiStatus.js deleted file mode 100644 index bdaf2a0b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/getWifiStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getWifiStatus$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getWifiStatus$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.getWifiStatus",exports.getWifiStatus$=getWifiStatus$,exports.default=getWifiStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/scanBleDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/scanBleDevice.d.ts deleted file mode 100644 index 84e79612..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/scanBleDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.scanBleDevice"; -/** - * 扫描低功耗蓝牙 请求参数定义 - * @apiName device.base.scanBleDevice - */ -export interface IDeviceBaseScanBleDeviceParams { - [key: string]: any; -} -/** - * 扫描低功耗蓝牙 返回结果定义 - * @apiName device.base.scanBleDevice - */ -export interface IDeviceBaseScanBleDeviceResult { - [key: string]: any; -} -/** - * 扫描低功耗蓝牙 - * @apiName device.base.scanBleDevice - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function scanBleDevice$(params: IDeviceBaseScanBleDeviceParams): Promise; -export default scanBleDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/scanBleDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/scanBleDevice.js deleted file mode 100644 index 8585c6ca..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/scanBleDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scanBleDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.scanBleDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.scanBleDevice",exports.scanBleDevice$=scanBleDevice$,exports.default=scanBleDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/sendDataToDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/sendDataToDevice.d.ts deleted file mode 100644 index 9da430b2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/sendDataToDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.sendDataToDevice"; -/** - * 发送蓝牙数据包 请求参数定义 - * @apiName device.base.sendDataToDevice - */ -export interface IDeviceBaseSendDataToDeviceParams { - [key: string]: any; -} -/** - * 发送蓝牙数据包 返回结果定义 - * @apiName device.base.sendDataToDevice - */ -export interface IDeviceBaseSendDataToDeviceResult { - [key: string]: any; -} -/** - * 发送蓝牙数据包 - * @apiName device.base.sendDataToDevice - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function sendDataToDevice$(params: IDeviceBaseSendDataToDeviceParams): Promise; -export default sendDataToDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/sendDataToDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/sendDataToDevice.js deleted file mode 100644 index dacbafb6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/sendDataToDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendDataToDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendDataToDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.sendDataToDevice",exports.sendDataToDevice$=sendDataToDevice$,exports.default=sendDataToDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/startBindDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/startBindDevice.d.ts deleted file mode 100644 index d5ee75ed..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/startBindDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.startBindDevice"; -/** - * 跳转到硬件绑定页面 请求参数定义 - * @apiName device.base.startBindDevice - */ -export interface IDeviceBaseStartBindDeviceParams { - [key: string]: any; -} -/** - * 跳转到硬件绑定页面 返回结果定义 - * @apiName device.base.startBindDevice - */ -export interface IDeviceBaseStartBindDeviceResult { - [key: string]: any; -} -/** - * 跳转到硬件绑定页面 - * @apiName device.base.startBindDevice - * @supportVersion ios: 3.3.0 android: 3.3.0 - */ -export declare function startBindDevice$(params: IDeviceBaseStartBindDeviceParams): Promise; -export default startBindDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/startBindDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/startBindDevice.js deleted file mode 100644 index 5c05d068..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/startBindDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startBindDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startBindDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.startBindDevice",exports.startBindDevice$=startBindDevice$,exports.default=startBindDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/stopScanBleDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/stopScanBleDevice.d.ts deleted file mode 100644 index f7fdbdd1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/stopScanBleDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.stopScanBleDevice"; -/** - * 停止扫描低功耗蓝牙 请求参数定义 - * @apiName device.base.stopScanBleDevice - */ -export interface IDeviceBaseStopScanBleDeviceParams { - [key: string]: any; -} -/** - * 停止扫描低功耗蓝牙 返回结果定义 - * @apiName device.base.stopScanBleDevice - */ -export interface IDeviceBaseStopScanBleDeviceResult { - [key: string]: any; -} -/** - * 停止扫描低功耗蓝牙 - * @apiName device.base.stopScanBleDevice - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function stopScanBleDevice$(params: IDeviceBaseStopScanBleDeviceParams): Promise; -export default stopScanBleDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/stopScanBleDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/stopScanBleDevice.js deleted file mode 100644 index 7b5a4212..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/stopScanBleDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopScanBleDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopScanBleDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.stopScanBleDevice",exports.stopScanBleDevice$=stopScanBleDevice$,exports.default=stopScanBleDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/unBindDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/base/unBindDevice.d.ts deleted file mode 100644 index b6a1aaf2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/unBindDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.base.unBindDevice"; -/** - * 硬件解绑 请求参数定义 - * @apiName device.base.unBindDevice - */ -export interface IDeviceBaseUnBindDeviceParams { - [key: string]: any; -} -/** - * 硬件解绑 返回结果定义 - * @apiName device.base.unBindDevice - */ -export interface IDeviceBaseUnBindDeviceResult { - [key: string]: any; -} -/** - * 硬件解绑 - * @apiName device.base.unBindDevice - * @supportVersion ios: 3.3.0 android: 3.3.0 - */ -export declare function unBindDevice$(params: IDeviceBaseUnBindDeviceParams): Promise; -export default unBindDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/base/unBindDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/device/base/unBindDevice.js deleted file mode 100644 index 0dad4ff2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/base/unBindDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unBindDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unBindDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.base.unBindDevice",exports.unBindDevice$=unBindDevice$,exports.default=unBindDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/connection/getNetworkType.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/connection/getNetworkType.d.ts deleted file mode 100644 index 3a436b01..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/connection/getNetworkType.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.connection.getNetworkType"; -/** - * 获取当前网络类型 请求参数定义 - * @apiName device.connection.getNetworkType - */ -export interface IDeviceConnectionGetNetworkTypeParams { -} -/** - * 获取当前网络类型 返回结果定义 - * @apiName device.connection.getNetworkType - */ -export interface IDeviceConnectionGetNetworkTypeResult { - /** result值: wifi 2g 3g 4g unknown none none表示离线 */ - result: 'wifi' | '2g' | '3g' | '4g' | 'unknown' | 'none'; -} -/** - * 获取当前网络类型 - * @apiName device.connection.getNetworkType - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function getNetworkType$(params: IDeviceConnectionGetNetworkTypeParams): Promise; -export default getNetworkType$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/connection/getNetworkType.js b/node_modules/dingtalk-jsapi/lib/common/api/device/connection/getNetworkType.js deleted file mode 100644 index 614aa95e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/connection/getNetworkType.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getNetworkType$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getNetworkType$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.connection.getNetworkType",exports.getNetworkType$=getNetworkType$,exports.default=getNetworkType$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkPermission.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkPermission.d.ts deleted file mode 100644 index 519d654b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkPermission.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.geolocation.checkPermission"; -/** - * 检查当前系统是否给钉钉授予定位权限 请求参数定义 - * @apiName device.geolocation.checkPermission - */ -export interface IDeviceGeolocationCheckPermissionParams { -} -/** - * 检查当前系统是否给钉钉授予定位权限 返回结果定义 - * @apiName device.geolocation.checkPermission - */ -export interface IDeviceGeolocationCheckPermissionResult { - hasPermission: boolean; -} -/** - * 检查当前系统是否给钉钉授予定位权限 - * @apiName device.geolocation.checkPermission - * @supportVersion android: 4.5.0 - * @author android:珑一 - */ -export declare function checkPermission$(params: IDeviceGeolocationCheckPermissionParams): Promise; -export default checkPermission$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkPermission.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkPermission.js deleted file mode 100644 index a1b7569d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkPermission.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkPermission$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkPermission$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.checkPermission",exports.checkPermission$=checkPermission$,exports.default=checkPermission$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkService.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkService.d.ts deleted file mode 100644 index 2c0a9f82..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkService.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "device.geolocation.checkService"; -/** - * 检查定位服务类型(仅Android) 请求参数定义 - * @apiName device.geolocation.checkService - */ -export interface IDeviceGeolocationCheckServiceParams { - [key: string]: any; -} -/** - * 检查定位服务类型(仅Android) 返回结果定义 - * @apiName device.geolocation.checkService - */ -export interface IDeviceGeolocationCheckServiceResult { - /** 定位服务类型: 1: 定位服务关闭 2: 仅限设备(gps) 4: 低耗电量(wifi) 8: 高精确度(gps+wifi) */ - serviceType: number; -} -/** - * 检查定位服务类型(仅Android) - * @apiName device.geolocation.checkService - * @supportVersion ios: 4.6.3 - * @author Android:序望 - */ -export declare function checkService$(params: IDeviceGeolocationCheckServiceParams): Promise; -export default checkService$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkService.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkService.js deleted file mode 100644 index 733b2abc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/checkService.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkService$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkService$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.checkService",exports.checkService$=checkService$,exports.default=checkService$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/get.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/get.d.ts deleted file mode 100644 index 94ac41f0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/get.d.ts +++ /dev/null @@ -1,69 +0,0 @@ -export declare const apiName = "device.geolocation.get"; -/** - * 获取经纬度 请求参数定义 - * @apiName device.geolocation.get - */ -export interface IDeviceGeolocationGetParams { - /** - * 期望定位精度半径(单位米),定位结果尽量满足该参数要求,但是不一定能保证小于该误差, - * 开发者需要读取返回结果的 accuracy 字段校验坐标精度; - * 建议按照业务需求设置定位精度,推荐采用200m, - * 可获得较好的精度和较短的响应时长 - */ - targetAccuracy: number; - /** 1:获取高德坐标, 0:获取标准坐标;推荐使用高德坐标;标准坐标没有address字段 */ - coordinate: number; - /** 是否需要带有逆地理编码信息;该功能需要网络请求,请更具自己的业务场景使用 */ - withReGeocode: boolean; - /** 是否缓存地理位置信息。默认是true。如果true,客户端会对定位的地理位置信息缓存,在缓存期内(2分钟)再次定位会返回旧的定位 */ - useCache: boolean; -} -/** - * 获取经纬度 返回结果定义 - * @apiName device.geolocation.get - */ -export interface IDeviceGeolocationGetResult { - /** 经度 */ - longitude: number; - /** 纬度 */ - latitude: number; - /** 实际的定位精度半径(单位米) */ - accuracy: number; - /** 格式化地址,如:北京市朝阳区南磨房镇北京国家广告产业园区 */ - address: string; - /** 省份,如:北京市 */ - province: string; - /** 城市,直辖市会返回空 */ - city: string; - /** 行政区,如:朝阳区 */ - district: string; - /** 街道,如:西大望路甲12-2号楼 */ - road: string; - /** 当前设备网络类型,如:wifi、3g等 */ - netType: string; - /** 当前设备使用移动运营商,如:CMCC等 */ - operatorType: string; - /** 对错误码的描述 */ - errorMessage?: string; - /** 错误码 */ - errorCode?: number; - /** 仅Android支持,wifi设置是否开启,不保证已连接上 */ - isWifiEnabled?: boolean; - /** 仅Android支持,gps设置是否开启,不保证已经连接上 */ - isGpsEnabled?: boolean; - /** 仅Android支持,定位返回的经纬度是否是模拟的结果 */ - isFromMock?: boolean; - /** 仅Android支持,我们使用的是混合定位,具体定位提供者有wifi/lbs/gps" 这三种 */ - provider?: 'wifi' | 'lbs' | 'gps'; - /** 仅Android支持,移动网络是设置是否开启,不保证已经连接上 */ - isMobileEnabled: boolean; -} -/** - * 获取当前地理位置(单次定位) - * Android客户端返回坐标是高德坐标,iOS客户端2.7.6及以后版本支持返回高德坐标;IOS客户端低于2.7.6版本仅支持返回标准坐标,如需使用高德坐标,可对返回的坐标做转换,具体请参考转换方法和坐标转换APIDemo演示页面 - * 钉钉Android客户端2.1及之前版本返回的数据结构比iOS客户端多嵌套一层location字段,2.2及之后版本返回的数据结构与钉钉iOS客户端一致,建议对返回的数据先判断存在location,做向后兼容处理。 - * @apiName device.geolocation.get - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function get$(params: IDeviceGeolocationGetParams): Promise; -export default get$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/get.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/get.js deleted file mode 100644 index dc395b6c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/get.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function get$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.get$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.get",exports.get$=get$,exports.default=get$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabled.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabled.d.ts deleted file mode 100644 index a3833b9e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabled.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.geolocation.isEnabled"; -/** - * 判断系统是否为钉钉App开启定位权限 请求参数定义 - * @apiName device.geolocation.isEnabled - */ -export interface IDeviceGeolocationIsEnabledParams { - [key: string]: any; -} -/** - * 判断系统是否为钉钉App开启定位权限 返回结果定义 - * @apiName device.geolocation.isEnabled - */ -export interface IDeviceGeolocationIsEnabledResult { - [key: string]: any; -} -/** - * 判断系统是否为钉钉App开启定位权限 - * @apiName device.geolocation.isEnabled - * @supportVersion ios: 3.5.3 android: 3.5.3 - */ -export declare function isEnabled$(params: IDeviceGeolocationIsEnabledParams): Promise; -export default isEnabled$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabled.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabled.js deleted file mode 100644 index d7f3a3e3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabled.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isEnabled$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isEnabled$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.isEnabled",exports.isEnabled$=isEnabled$,exports.default=isEnabled$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabledHighAccuracy.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabledHighAccuracy.d.ts deleted file mode 100644 index c97a8345..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabledHighAccuracy.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.geolocation.isEnabledHighAccuracy"; -/** - * 是否启用高进度Android定位模式 请求参数定义 - * @apiName device.geolocation.isEnabledHighAccuracy - */ -export interface IDeviceGeolocationIsEnabledHighAccuracyParams { - [key: string]: any; -} -/** - * 是否启用高进度Android定位模式 返回结果定义 - * @apiName device.geolocation.isEnabledHighAccuracy - */ -export interface IDeviceGeolocationIsEnabledHighAccuracyResult { - [key: string]: any; -} -/** - * 是否启用高进度Android定位模式 - * @apiName device.geolocation.isEnabledHighAccuracy - * @supportVersion android: 3.5.6 - */ -export declare function isEnabledHighAccuracy$(params: IDeviceGeolocationIsEnabledHighAccuracyParams): Promise; -export default isEnabledHighAccuracy$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabledHighAccuracy.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabledHighAccuracy.js deleted file mode 100644 index 4d7dff6a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/isEnabledHighAccuracy.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isEnabledHighAccuracy$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isEnabledHighAccuracy$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.isEnabledHighAccuracy",exports.isEnabledHighAccuracy$=isEnabledHighAccuracy$,exports.default=isEnabledHighAccuracy$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/openGps.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/openGps.d.ts deleted file mode 100644 index 1bedefe0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/openGps.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.geolocation.openGps"; -/** - * 打开设置,只有android有效 请求参数定义 - * @apiName device.geolocation.openGps - */ -export interface IDeviceGeolocationOpenGpsParams { - [key: string]: any; -} -/** - * 打开设置,只有android有效 返回结果定义 - * @apiName device.geolocation.openGps - */ -export interface IDeviceGeolocationOpenGpsResult { - [key: string]: any; -} -/** - * 打开设置,只有android有效 - * @apiName device.geolocation.openGps - * @supportVersion ios: 2.5.0 android: 2.5.0 - */ -export declare function openGps$(params: IDeviceGeolocationOpenGpsParams): Promise; -export default openGps$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/openGps.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/openGps.js deleted file mode 100644 index 7601cb05..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/openGps.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openGps$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openGps$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.openGps",exports.openGps$=openGps$,exports.default=openGps$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/start.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/start.d.ts deleted file mode 100644 index d2bbfc73..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/start.d.ts +++ /dev/null @@ -1,72 +0,0 @@ -export declare const apiName = "device.geolocation.start"; -/** - * 开启持续定位 请求参数定义 - * @apiName device.geolocation.start - */ -export interface IDeviceGeolocationStartParams { - /** 期望定位精度半径(单位米),定位结果尽量满足该参数要求, - * 但是不一定能保证小于该误差,开发者需要读取返回结果的 accuracy 字段校验坐标精度; - * 建议按照业务需求设置定位精度,推荐采用200m,可获得较好的精度和较短的响应时长 - */ - targetAccuracy: number; - /** iOS端位置变更敏感度,单位为m,此值会影响iOS端callback回调速率 */ - iOSDistanceFilter: number; - /** 是否缓存地理位置信息。默认是true。如果true,客户端会对定位的地理位置信息缓存,在缓存期内(2分钟)再次定位会返回旧的定位 */ - useCache?: boolean; - /** 是否需要带有逆地理编码信息;该功能需要网络请求,请更具自己的业务场景使用,默认否 */ - withReGeocode?: boolean; - /** 数据回传最小时间间隔,单位ms */ - callBackInterval: number; - /** 定位场景id,对于同一id的,不可连续start,否则会报错。不同scenceId的互不影响 */ - sceneId: string; -} -/** - * 开启持续定位 返回结果定义 - * @apiName device.geolocation.start - */ -export interface IDeviceGeolocationStartResult { - /** 经度 */ - longitude: number; - /** 纬度 */ - latitude: number; - /** 实际的定位精度半径(单位米) */ - accuracy: number; - /** 格式化地址,如:北京市朝阳区南磨房镇北京国家广告产业园区 */ - address: string; - /** 省份,如:北京市 */ - province: string; - /** 城市,直辖市会返回空 */ - city: string; - /** 行政区,如:朝阳区 */ - district: string; - /** 街道,如:西大望路甲12-2号楼 */ - road: string; - /** 当前设备网络类型,如:wifi、3g等 */ - netType: string; - /** 当前设备使用移动运营商,如:CMCC等 */ - operatorType: string; - /** 对错误码的描述 */ - errorMessage?: string; - /** 错误码 */ - errorCode?: number; - /** 仅Android支持,wifi设置是否开启,不保证已连接上 */ - isWifiEnabled?: boolean; - /** 仅Android支持,gps设置是否开启,不保证已经连接上 */ - isGpsEnabled?: boolean; - /** 仅Android支持,定位返回的经纬度是否是模拟的结果 */ - isFromMock?: boolean; - /** 仅Android支持,我们使用的是混合定位,具体定位提供者有wifi/lbs/gps" 这三种 */ - provider?: 'wifi' | 'lbs' | 'gps'; - /** 仅Android支持,移动网络是设置是否开启,不保证已经连接上 */ - isMobileEnabled: boolean; -} -/** - * 连续获取当前地理位置信息(持续定位) - * 连续定位接口可以通过持续接收callback的方式,不断获取到用户当前的位置信息。 - * 相比单次定位JSAPI,持续定位可以通过延长定位时间、增加定位次数的方式,不断接收用户位置信息,提高定位精度。可用于对定位精度要求较高以及需要持续更新用户位置的场景。 - * 连续定位功能(需要钉钉v3.4.8及以上版本支持),由以下三个接口组成,分别表示开始连续定位(start)、停止连续定位(stop)、以及获取当前定位状态(status)。 - * @apiName device.geolocation.start - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function start$(params: IDeviceGeolocationStartParams): Promise; -export default start$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/start.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/start.js deleted file mode 100644 index 3cc16b7a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/start.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function start$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.start$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.start",exports.start$=start$,exports.default=start$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/status.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/status.d.ts deleted file mode 100644 index bf843a21..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/status.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "device.geolocation.status"; -/** - * 批量查询持续定位JS-API状态 请求参数定义 - * @apiName device.geolocation.status - */ -export interface IDeviceGeolocationStatusParams { - /** 需要查询定位场景id列表 */ - sceneIds: string[]; -} -/** - * 批量查询持续定位JS-API状态 返回结果定义 - * 返回的值是一个数组,每一个元素为一个map,标志了一个定位场景的状态。map的key为场景id,value为其对应的状态 - * @apiName device.geolocation.status - */ -export declare type IDeviceGeolocationStatusResult = Array<{ - /** 场景id以及对应的开启状态,1 表示正在持续定位, 0 表示未开始持续 */ - [sceneId: string]: 0 | 1; -}>; -/** - * 批量查询持续定位JS-API状态 - * @apiName device.geolocation.status - * @supportVersion ios: 3.4.8 android: 3.4.8 - */ -export declare function status$(params: IDeviceGeolocationStatusParams): Promise; -export default status$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/status.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/status.js deleted file mode 100644 index 8dcb7638..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/status.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function status$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.status$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.status",exports.status$=status$,exports.default=status$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/stop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/stop.d.ts deleted file mode 100644 index 3adefc39..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/stop.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "device.geolocation.stop"; -/** - * 关闭持续定位 请求参数定义 - * @apiName device.geolocation.stop - */ -export interface IDeviceGeolocationStopParams { - /** 需要停止定位场景id */ - sceneId: string; -} -/** - * 关闭持续定位 返回结果定义 - * @apiName device.geolocation.stop - */ -export interface IDeviceGeolocationStopResult { - /** 停止的定位场景id,或者null */ - sceneId: string; -} -/** - * 关闭持续定位 - * @apiName device.geolocation.stop - * @supportVersion ios: 3.4.7 android: 3.4.7 - */ -export declare function stop$(params: IDeviceGeolocationStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/stop.js b/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/stop.js deleted file mode 100644 index 2cf02e83..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/geolocation/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.geolocation.stop",exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/changeSlatePosition.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/changeSlatePosition.d.ts deleted file mode 100644 index 7160603d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/changeSlatePosition.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.handwriting.changeSlatePosition"; -/** - * 更新手签控件位置,随网页位置变化 更新手签控件位置 请求参数定义 - * @apiName device.handwriting.changeSlatePosition - */ -export interface IDeviceHandwritingChangeSlatePositionParams { - /** 手写相对于h5页面的位置信息 */ - ratio: string; -} -/** - * 更新手签控件位置,随网页位置变化 更新手签控件位置 返回结果定义 - * @apiName device.handwriting.changeSlatePosition - */ -export interface IDeviceHandwritingChangeSlatePositionResult { -} -/** - * 更新手签控件位置,随网页位置变化 更新手签控件位置 - * @apiName device.handwriting.changeSlatePosition - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function changeSlatePosition$(params: IDeviceHandwritingChangeSlatePositionParams): Promise; -export default changeSlatePosition$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/changeSlatePosition.js b/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/changeSlatePosition.js deleted file mode 100644 index 330ad87c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/changeSlatePosition.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function changeSlatePosition$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.changeSlatePosition$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.handwriting.changeSlatePosition",exports.changeSlatePosition$=changeSlatePosition$,exports.default=changeSlatePosition$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/showHandPanel.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/showHandPanel.d.ts deleted file mode 100644 index 7dbc6cfe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/showHandPanel.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "device.handwriting.showHandPanel"; -/** - * 唤起手签控件接口 请求参数定义 - * @apiName device.handwriting.showHandPanel - */ -export interface IDeviceHandwritingShowHandPanelParams { - /** 初始手写相对于h5页面的位置信息 */ - ratio: string; -} -/** - * 唤起手签控件接口 返回结果定义 - * @apiName device.handwriting.showHandPanel - */ -export interface IDeviceHandwritingShowHandPanelResult { - /** 保存图片的本地路径 */ - path: string; -} -/** - * 唤起手签控件接口 - * @apiName device.handwriting.showHandPanel - * @supportVersion android: 4.3.7 - */ -export declare function showHandPanel$(params: IDeviceHandwritingShowHandPanelParams): Promise; -export default showHandPanel$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/showHandPanel.js b/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/showHandPanel.js deleted file mode 100644 index 4c965cfe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/handwriting/showHandPanel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showHandPanel$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showHandPanel$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.handwriting.showHandPanel",exports.showHandPanel$=showHandPanel$,exports.default=showHandPanel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/health/dayStepCount.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/health/dayStepCount.d.ts deleted file mode 100644 index ec0d2878..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/health/dayStepCount.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.health.dayStepCount"; -/** - * 健康每日数据 请求参数定义 - * @apiName device.health.dayStepCount - */ -export interface IDeviceHealthDayStepCountParams { - [key: string]: any; -} -/** - * 健康每日数据 返回结果定义 - * @apiName device.health.dayStepCount - */ -export interface IDeviceHealthDayStepCountResult { - [key: string]: any; -} -/** - * 健康每日数据 - * @apiName device.health.dayStepCount - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function dayStepCount$(params: IDeviceHealthDayStepCountParams): Promise; -export default dayStepCount$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/health/dayStepCount.js b/node_modules/dingtalk-jsapi/lib/common/api/device/health/dayStepCount.js deleted file mode 100644 index 0237c2b5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/health/dayStepCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function dayStepCount$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.dayStepCount$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.health.dayStepCount",exports.dayStepCount$=dayStepCount$,exports.default=dayStepCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/health/stepCount.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/health/stepCount.d.ts deleted file mode 100644 index effd2208..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/health/stepCount.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.health.stepCount"; -/** - * 健康步数 请求参数定义 - * @apiName device.health.stepCount - */ -export interface IDeviceHealthStepCountParams { - [key: string]: any; -} -/** - * 健康步数 返回结果定义 - * @apiName device.health.stepCount - */ -export interface IDeviceHealthStepCountResult { - [key: string]: any; -} -/** - * 健康步数 - * @apiName device.health.stepCount - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function stepCount$(params: IDeviceHealthStepCountParams): Promise; -export default stepCount$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/health/stepCount.js b/node_modules/dingtalk-jsapi/lib/common/api/device/health/stepCount.js deleted file mode 100644 index 840b0468..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/health/stepCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stepCount$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stepCount$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.health.stepCount",exports.stepCount$=stepCount$,exports.default=stepCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/checkInstalledApps.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/checkInstalledApps.d.ts deleted file mode 100644 index 1b6e9660..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/checkInstalledApps.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "device.launcher.checkInstalledApps"; -/** - * 检测应用是否安装 请求参数定义 - * @apiName device.launcher.checkInstalledApps - */ -export interface IDeviceLauncherCheckInstalledAppsParams { - /** 你要检测的应用列表 iOS:应用scheme;Android:应用包名 */ - apps: string[]; -} -/** - * 检测应用是否安装 返回结果定义 - * @apiName device.launcher.checkInstalledApps - */ -export interface IDeviceLauncherCheckInstalledAppsResult { - /** 安装过的应用列表 iOS:应用scheme;Android:应用包名 */ - installed: string[]; -} -/** - * 检测应用是否安装 - * iOS平台仅对iOS9之前的系统有效 - * @apiName device.launcher.checkInstalledApps - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function checkInstalledApps$(params: IDeviceLauncherCheckInstalledAppsParams): Promise; -export default checkInstalledApps$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/checkInstalledApps.js b/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/checkInstalledApps.js deleted file mode 100644 index 79d1329b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/checkInstalledApps.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkInstalledApps$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkInstalledApps$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.launcher.checkInstalledApps",exports.checkInstalledApps$=checkInstalledApps$,exports.default=checkInstalledApps$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/launchApp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/launchApp.d.ts deleted file mode 100644 index 7fce059a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/launchApp.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "device.launcher.launchApp"; -/** - * 启动第三方app 请求参数定义 - * @apiName device.launcher.launchApp - */ -export interface IDeviceLauncherLaunchAppParams { - /** iOS:应用scheme;Android:应用包名 */ - app: string; -} -/** - * 启动第三方app 返回结果定义 - * @apiName device.launcher.launchApp - */ -export interface IDeviceLauncherLaunchAppResult { - /** 唤起状态: true 唤起成功 false 唤起失败 */ - result: boolean; -} -/** - * 启动第三方app - * @apiName device.launcher.launchApp - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function launchApp$(params: IDeviceLauncherLaunchAppParams): Promise; -export default launchApp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/launchApp.js b/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/launchApp.js deleted file mode 100644 index 4cc6ee96..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/launcher/launchApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function launchApp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.launchApp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.launcher.launchApp",exports.launchApp$=launchApp$,exports.default=launchApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcRead.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcRead.d.ts deleted file mode 100644 index 7debfe67..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcRead.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "device.nfc.nfcRead"; -/** - * nfc读取接口 请求参数定义 - * @apiName device.nfc.nfcRead - */ -export interface IDeviceNfcNfcReadParams { -} -/** - * nfc读取接口 返回结果定义 - * @apiName device.nfc.nfcRead - */ -export interface IDeviceNfcNfcReadResult { - /** NFC芯片的内容 */ - content: string; -} -/** - * nfc读取接口 - * 只支持有nfc功能的android手机 - * 支持NDEF的数据交换格式 - * 使用方法:首先调用此jsapi,然后再把芯片放上去,即可读取,jspai调用一次读取一次信息 - * @apiName device.nfc.nfcRead - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function nfcRead$(params: IDeviceNfcNfcReadParams): Promise; -export default nfcRead$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcRead.js b/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcRead.js deleted file mode 100644 index 805f3eaa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcRead.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nfcRead$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.nfcRead$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.nfc.nfcRead",exports.nfcRead$=nfcRead$,exports.default=nfcRead$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcStop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcStop.d.ts deleted file mode 100644 index 60357adb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcStop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.nfc.nfcStop"; -/** - * 停止NFC功能的读或写 请求参数定义 - * @apiName device.nfc.nfcStop - */ -export interface IDeviceNfcNfcStopParams { - [key: string]: any; -} -/** - * 停止NFC功能的读或写 返回结果定义 - * @apiName device.nfc.nfcStop - */ -export interface IDeviceNfcNfcStopResult { - [key: string]: any; -} -/** - * 停止NFC功能的读或写 - * @apiName device.nfc.nfcStop - * @supportVersion ios: 4.3.9 android: 4.3.9 - */ -export declare function nfcStop$(params: IDeviceNfcNfcStopParams): Promise; -export default nfcStop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcStop.js b/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcStop.js deleted file mode 100644 index f51dcb17..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcStop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nfcStop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.nfcStop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.nfc.nfcStop",exports.nfcStop$=nfcStop$,exports.default=nfcStop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcWrite.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcWrite.d.ts deleted file mode 100644 index 579f0241..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcWrite.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "device.nfc.nfcWrite"; -/** - * nfc写接口 请求参数定义 - * @apiName device.nfc.nfcWrite - */ -export interface IDeviceNfcNfcWriteParams { - /** NFC芯片的内容 */ - content: string; -} -/** - * nfc写接口 返回结果定义 - * @apiName device.nfc.nfcWrite - */ -export interface IDeviceNfcNfcWriteResult { -} -/** - * nfc写接口 - * 只支持有nfc功能的android手机 - * 支持NDEF的数据交换格式 - * 使用方法:首先调用此jsapi,然后再把芯片放上去,即可写入,jsapi调用一次写一次内容 - * @apiName device.nfc.nfcWrite - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function nfcWrite$(params: IDeviceNfcNfcWriteParams): Promise; -export default nfcWrite$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcWrite.js b/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcWrite.js deleted file mode 100644 index e7af1030..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/nfc/nfcWrite.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nfcWrite$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.nfcWrite$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.nfc.nfcWrite",exports.nfcWrite$=nfcWrite$,exports.default=nfcWrite$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/actionSheet.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/actionSheet.d.ts deleted file mode 100644 index c78d4f58..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/actionSheet.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "device.notification.actionSheet"; -/** - * ActionSheet控件 请求参数定义 - * @apiName device.notification.actionSheet - */ -export interface IDeviceNotificationActionSheetParams { - /** 标题 */ - title: string; - /** 取消按钮文本 */ - cancelButton: string; - /** 其他按钮列表 */ - otherButtons: string[]; -} -/** - * ActionSheet控件 返回结果定义 - * @apiName device.notification.actionSheet - */ -export interface IDeviceNotificationActionSheetResult { - /** 被点击按钮的索引值,Number,从0开始, 取消按钮为-1 */ - buttonIndex: number; -} -/** - * ActionSheet控件 单选列表 - * @apiName device.notification.actionSheet - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function actionSheet$(params: IDeviceNotificationActionSheetParams): Promise; -export default actionSheet$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/actionSheet.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/actionSheet.js deleted file mode 100644 index c85edca5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/actionSheet.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function actionSheet$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.actionSheet$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.actionSheet",exports.actionSheet$=actionSheet$,exports.default=actionSheet$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/alert.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/alert.d.ts deleted file mode 100644 index 40f4e251..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/alert.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "device.notification.alert"; -/** - * 弹窗alert 请求参数定义 - * @apiName device.notification.alert - */ -export interface IDeviceNotificationAlertParams { - /** 消息内容 */ - message?: string; - /** 弹窗标题 */ - title?: string; - /** 按钮名称 */ - buttonName?: string; -} -/** - * 弹窗alert 返回结果定义, 将在点击button之后触发 - * @apiName device.notification.alert - */ -export interface IDeviceNotificationAlertResult { -} -/** - * 弹窗alert - * @apiName device.notification.alert - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function alert$(params: IDeviceNotificationAlertParams): Promise; -export default alert$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/alert.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/alert.js deleted file mode 100644 index 59c50db8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/alert.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function alert$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.alert$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.alert",exports.alert$=alert$,exports.default=alert$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/confirm.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/confirm.d.ts deleted file mode 100644 index 4188d08d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/confirm.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "device.notification.confirm"; -/** - * 弹窗confirm 请求参数定义 - * @apiName device.notification.confirm - */ -export interface IDeviceNotificationConfirmParams { - /** 消息说明 */ - message?: string; - /** 标题 */ - title?: string; - /** 按钮名称 */ - buttonLabels?: string[]; -} -/** - * 弹窗confirm 返回结果定义 - * @apiName device.notification.confirm - */ -export interface IDeviceNotificationConfirmResult { - /** 被点击按钮的索引值,Number类型,从0开始 */ - buttonIndex: number; -} -/** - * 弹窗confirm - * @apiName device.notification.confirm - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function confirm$(params: IDeviceNotificationConfirmParams): Promise; -export default confirm$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/confirm.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/confirm.js deleted file mode 100644 index 62021500..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/confirm.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function confirm$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.confirm$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.confirm",exports.confirm$=confirm$,exports.default=confirm$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/extendModal.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/extendModal.d.ts deleted file mode 100644 index 162d6244..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/extendModal.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "device.notification.extendModal"; -/** - * 弹层,支持多张图片 请求参数定义 - * @apiName device.notification.extendModal - */ -export interface IDeviceNotificationExtendModalParams { - /** 浮层元素数组,每一个item为一个包含image、title、content内容的对象 */ - cells: Array<{ - /** 图片地址 */ - image: string; - /** 标题 */ - title: string; - /** 文本内容 */ - content: string; - }>; - /** 最多两个按钮,至少有一个按钮。 */ - buttonLabels: string[]; -} -/** - * 弹层,支持多张图片 返回结果定义 - * @apiName device.notification.extendModal - */ -export interface IDeviceNotificationExtendModalResult { - /** 被点击按钮的索引值,Number,从0开始 */ - buttonIndex: number; -} -/** - * 弹层,支持多张图片 - * 增强版modal弹浮层,支持自定义每一个Cell的内容 - * @apiName device.notification.extendModal - * @supportVersion ios: 2.5.0 android: 2.5.0 - */ -export declare function extendModal$(params: IDeviceNotificationExtendModalParams): Promise; -export default extendModal$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/extendModal.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/extendModal.js deleted file mode 100644 index da1855ba..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/extendModal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function extendModal$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.extendModal$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.extendModal",exports.extendModal$=extendModal$,exports.default=extendModal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/getNotificationStatus.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/getNotificationStatus.d.ts deleted file mode 100644 index 2fecf345..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/getNotificationStatus.d.ts +++ /dev/null @@ -1,40 +0,0 @@ -export declare const apiName = "device.notification.getNotificationStatus"; -/** - * 获取客户端的通知状态开关是否打开 请求参数定义 - * @apiName device.notification.getNotificationStatus - */ -export interface IDeviceNotificationGetNotificationStatusParams { -} -/** - * 获取客户端的通知状态开关是否打开 返回结果定义 - * @apiName device.notification.getNotificationStatus - */ -export interface IDeviceNotificationGetNotificationStatusResult { - /** 系统通知开关是否打开 */ - system_notification: boolean; - /** 接受新消息通知是否打开 */ - receive_msg_notification: boolean; - /** 具体消息通知 */ - msg_notification: { - /** 普通消息开关是否打开 */ - normal: boolean; - /** DING消息开关是否打开 */ - ding: boolean; - /** 特别关注人消息开关是否打开 */ - concern: boolean; - /** At我的消息开关是否打开 */ - at_me: boolean; - /** 红包消息开关是否打开 */ - red_packet: boolean; - /** 连续DING消息开关是否打开 */ - ding_long: boolean; - }; -} -/** - * 获取客户端的通知状态开关是否打开 - * @apiName device.notification.getNotificationStatus - * @supportVersion ios: 5.1.41 android: 5.1.41 - * @author Android:彦海, iOS:新鹏 - */ -export declare function getNotificationStatus$(params: IDeviceNotificationGetNotificationStatusParams): Promise; -export default getNotificationStatus$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/getNotificationStatus.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/getNotificationStatus.js deleted file mode 100644 index 46821bd3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/getNotificationStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getNotificationStatus$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getNotificationStatus$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.getNotificationStatus",exports.getNotificationStatus$=getNotificationStatus$,exports.default=getNotificationStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/hidePreloader.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/hidePreloader.d.ts deleted file mode 100644 index efbef295..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/hidePreloader.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "device.notification.hidePreloader"; -/** - * 隐藏浮层 请求参数定义 - * @apiName device.notification.hidePreloader - */ -export interface IDeviceNotificationHidePreloaderParams { -} -/** - * 隐藏浮层 返回结果定义 - * @apiName device.notification.hidePreloader - */ -export interface IDeviceNotificationHidePreloaderResult { -} -/** - * 隐藏浮层 - * @apiName device.notification.hidePreloader - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function hidePreloader$(params: IDeviceNotificationHidePreloaderParams): Promise; -export default hidePreloader$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/hidePreloader.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/hidePreloader.js deleted file mode 100644 index dbf37498..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/hidePreloader.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hidePreloader$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.hidePreloader$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.hidePreloader",exports.hidePreloader$=hidePreloader$,exports.default=hidePreloader$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/modal.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/modal.d.ts deleted file mode 100644 index 9e3bfbe5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/modal.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "device.notification.modal"; -/** - * 弹浮层 请求参数定义 - * @apiName device.notification.modal - */ -export interface IDeviceNotificationModalParams { - /** 图片地址 */ - image?: string; - /** 图片地址数组。此参数与image互斥,冲突时优先使用此参数。 */ - banner?: string[]; - /** 标题 */ - title?: string; - /** 文本内容 */ - content?: string; - /** 其他按钮列表 */ - buttonLabels?: string[]; -} -/** - * 弹浮层 返回结果定义 - * @apiName device.notification.modal - */ -export interface IDeviceNotificationModalResult { - /** 被点击按钮的索引值,Number,从0开始 */ - buttonIndex: number; -} -/** - * 弹浮层 - * @apiName device.notification.modal - * @supportVersion pc: 4.2.5 ios: 2.4.0 android: 2.4.0 - */ -export declare function modal$(params: IDeviceNotificationModalParams): Promise; -export default modal$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/modal.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/modal.js deleted file mode 100644 index 9f2f78df..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/modal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function modal$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.modal$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.modal",exports.modal$=modal$,exports.default=modal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/prompt.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/prompt.d.ts deleted file mode 100644 index 15b762e3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/prompt.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "device.notification.prompt"; -/** - * 弹窗prompt 请求参数定义 - * @apiName device.notification.prompt - */ -export interface IDeviceNotificationPromptParams { - /** 消息内容 */ - message: string; - /** 标题 */ - title?: string; - /** 默认提示 */ - defaultText?: string; - /** 按钮名称 */ - buttonLabels?: string[]; -} -/** - * 弹窗prompt 返回结果定义 - * @apiName device.notification.prompt - */ -export interface IDeviceNotificationPromptResult { - /** 被点击按钮的索引值,Number类型,从0开始 */ - buttonIndex: number; - /** 输入的值 */ - value: string; -} -/** - * 弹窗prompt - * @apiName device.notification.prompt - * @supportVersion pc: 2.7.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function prompt$(params: IDeviceNotificationPromptParams): Promise; -export default prompt$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/prompt.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/prompt.js deleted file mode 100644 index a3ebae87..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/prompt.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function prompt$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.prompt$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.prompt",exports.prompt$=prompt$,exports.default=prompt$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/showPreloader.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/showPreloader.d.ts deleted file mode 100644 index c0f81129..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/showPreloader.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "device.notification.showPreloader"; -/** - * 显示浮层 请求参数定义 - * @apiName device.notification.showPreloader - */ -export interface IDeviceNotificationShowPreloaderParams { - /** loading显示的字符,空表示不显示文字 */ - text?: string; - /** 是否显示icon,默认true */ - showIcon?: boolean; -} -/** - * 显示浮层 返回结果定义 - * @apiName device.notification.showPreloader - */ -export interface IDeviceNotificationShowPreloaderResult { -} -/** - * 显示浮层 - * (显示浮层,请和hidePreloader配对使用) - * @apiName device.notification.showPreloader - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function showPreloader$(params: IDeviceNotificationShowPreloaderParams): Promise; -export default showPreloader$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/showPreloader.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/showPreloader.js deleted file mode 100644 index 46719e29..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/showPreloader.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showPreloader$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showPreloader$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.showPreloader",exports.showPreloader$=showPreloader$,exports.default=showPreloader$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/toast.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/toast.d.ts deleted file mode 100644 index 3380f2e3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/toast.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "device.notification.toast"; -/** - * Toast 请求参数定义 - * @apiName device.notification.toast - */ -export interface IDeviceNotificationToastParams { - /** 移动端 icon样式,有success和error,默认为空 0.0.2, PC端参数则代表样式类型 */ - icon?: 'success' | 'error'; - /** @deprecated PC端参数特有 toast的类型 alert, success, error, warning, information, confirm */ - type?: 'alert' | 'success' | 'error' | 'warning' | 'information'; - /** 提示信息 */ - text?: string; - /** 显示持续时间,单位秒,默认按系统规范[android只有两种(<=2s >2s)] */ - duration?: number; - /** 延迟显示,单位秒,默认0 */ - delay?: number; -} -/** - * Toast 返回结果定义 - * @apiName device.notification.toast - */ -export interface IDeviceNotificationToastResult { -} -/** - * Toast - * @apiName device.notification.toast - * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function toast$(params: IDeviceNotificationToastParams): Promise; -export default toast$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/toast.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/toast.js deleted file mode 100644 index 18e9cc58..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/toast.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function toast$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.toast$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.toast",exports.toast$=toast$,exports.default=toast$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/vibrate.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/vibrate.d.ts deleted file mode 100644 index c9068207..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/vibrate.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.notification.vibrate"; -/** - * 震动 请求参数定义 - * @apiName device.notification.vibrate - */ -export interface IDeviceNotificationVibrateParams { - /** 震动时间,android可配置 iOS忽略 */ - duration?: number; -} -/** - * 震动 返回结果定义 - * @apiName device.notification.vibrate - */ -export interface IDeviceNotificationVibrateResult { -} -/** - * 震动 - * @apiName device.notification.vibrate - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function vibrate$(params: IDeviceNotificationVibrateParams): Promise; -export default vibrate$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/vibrate.js b/node_modules/dingtalk-jsapi/lib/common/api/device/notification/vibrate.js deleted file mode 100644 index cdd359b7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/notification/vibrate.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function vibrate$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.vibrate$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.notification.vibrate",exports.vibrate$=vibrate$,exports.default=vibrate$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/insetAdjust.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/screen/insetAdjust.d.ts deleted file mode 100644 index 014fdc83..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/insetAdjust.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "device.screen.insetAdjust"; -/** - * iOS11系统数上,支持从H5端,动态调整调整webview的contentInsetAdjustmentBehavior。影响iPhone X等场景H5页面布局与安全区域 请求参数定义 - * @apiName device.screen.insetAdjust - */ -export interface IDeviceScreenInsetAdjustParams { - /** 0-自动(默认); 1-特殊case, JsApi场景同0; 2-不自动适配安全区域,全屏布局; 3-自动适配安全区域 */ - contentInsetAdjustmentBehavior: number; -} -/** - * iOS11系统数上,支持从H5端,动态调整调整webview的contentInsetAdjustmentBehavior。影响iPhone X等场景H5页面布局与安全区域 返回结果定义 - * @apiName device.screen.insetAdjust - */ -export interface IDeviceScreenInsetAdjustResult { - [key: string]: any; -} -/** - * iOS11系统数上,支持从H5端,动态调整调整webview的contentInsetAdjustmentBehavior。影响iPhone X等场景H5页面布局与安全区域 - * @apiName device.screen.insetAdjust - * @supportVersion ios: 4.6.18 - */ -export declare function insetAdjust$(params: IDeviceScreenInsetAdjustParams): Promise; -export default insetAdjust$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/insetAdjust.js b/node_modules/dingtalk-jsapi/lib/common/api/device/screen/insetAdjust.js deleted file mode 100644 index 93138b2c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/insetAdjust.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function insetAdjust$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.insetAdjust$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.screen.insetAdjust",exports.insetAdjust$=insetAdjust$,exports.default=insetAdjust$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/resetView.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/screen/resetView.d.ts deleted file mode 100644 index f0071421..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/resetView.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.screen.resetView"; -/** - * 重置旋转状态,并在恢复导航栏 请求参数定义 - * @apiName device.screen.resetView - */ -export interface IDeviceScreenResetViewParams { - [key: string]: any; -} -/** - * 重置旋转状态,并在恢复导航栏 返回结果定义 - * @apiName device.screen.resetView - */ -export interface IDeviceScreenResetViewResult { - [key: string]: any; -} -/** - * 重置旋转状态,并在恢复导航栏 - * @apiName device.screen.resetView - * @supportVersion android: 4.0 - */ -export declare function resetView$(params: IDeviceScreenResetViewParams): Promise; -export default resetView$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/resetView.js b/node_modules/dingtalk-jsapi/lib/common/api/device/screen/resetView.js deleted file mode 100644 index 27b5bd70..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/resetView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resetView$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.resetView$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.screen.resetView",exports.resetView$=resetView$,exports.default=resetView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/rotateView.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/screen/rotateView.d.ts deleted file mode 100644 index 967da219..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/rotateView.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.screen.rotateView"; -/** - * 旋转WebView,并在旋转的同时隐藏导航栏 请求参数定义 - * @apiName device.screen.rotateView - */ -export interface IDeviceScreenRotateViewParams { - [key: string]: any; -} -/** - * 旋转WebView,并在旋转的同时隐藏导航栏 返回结果定义 - * @apiName device.screen.rotateView - */ -export interface IDeviceScreenRotateViewResult { - [key: string]: any; -} -/** - * 旋转WebView,并在旋转的同时隐藏导航栏 - * @apiName device.screen.rotateView - * @supportVersion android: 4.0 - */ -export declare function rotateView$(params: IDeviceScreenRotateViewParams): Promise; -export default rotateView$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/rotateView.js b/node_modules/dingtalk-jsapi/lib/common/api/device/screen/rotateView.js deleted file mode 100644 index 3e3bcfd6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/rotateView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function rotateView$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.rotateView$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.screen.rotateView",exports.rotateView$=rotateView$,exports.default=rotateView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/setAutoOrientation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/screen/setAutoOrientation.d.ts deleted file mode 100644 index e58ae625..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/setAutoOrientation.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "device.screen.setAutoOrientation"; -/** - * 开启H5屏幕旋转 请求参数定义 - * @apiName device.screen.setAutoOrientation - */ -export interface IDeviceScreenSetAutoOrientationParams { - /** true开启屏幕旋转,false停止自动旋转(会重置为竖屏) */ - enable: boolean; - /** Android是否隐藏状态栏,仅在横屏模式下适用,竖屏模式下强制展示状态栏;iOS横屏下默认隐藏状态栏 */ - showStatusBar?: boolean; - /** 横屏是是否显示导航栏 */ - showNavBar?: boolean; -} -/** - * 开启H5屏幕旋转 返回结果定义 - * @apiName device.screen.setAutoOrientation - */ -export interface IDeviceScreenSetAutoOrientationResult { -} -/** - * 开启H5屏幕旋转 - * @apiName device.screen.setAutoOrientation - * @supportVersion ios: 6.0.16 android: 6.0.16 - * @author Android:零封; iOS:无最 - */ -export declare function setAutoOrientation$(params: IDeviceScreenSetAutoOrientationParams): Promise; -export default setAutoOrientation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/setAutoOrientation.js b/node_modules/dingtalk-jsapi/lib/common/api/device/screen/setAutoOrientation.js deleted file mode 100644 index bc97b058..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screen/setAutoOrientation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setAutoOrientation$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setAutoOrientation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.screen.setAutoOrientation",exports.setAutoOrientation$=setAutoOrientation$,exports.default=setAutoOrientation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/startMonitor.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/startMonitor.d.ts deleted file mode 100644 index b0e0d515..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/startMonitor.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.screenshot.startMonitor"; -/** - * 配置H5端开始监听客户端截屏事件。 多次调用时,客户端以最后一次调用数据为准 请求参数定义 - * @apiName device.screenshot.startMonitor - */ -export interface IDeviceScreenshotStartMonitorParams { - [key: string]: any; -} -/** - * 配置H5端开始监听客户端截屏事件。 多次调用时,客户端以最后一次调用数据为准 返回结果定义 - * @apiName device.screenshot.startMonitor - */ -export interface IDeviceScreenshotStartMonitorResult { - [key: string]: any; -} -/** - * 配置H5端开始监听客户端截屏事件。 多次调用时,客户端以最后一次调用数据为准 - * @apiName device.screenshot.startMonitor - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function startMonitor$(params: IDeviceScreenshotStartMonitorParams): Promise; -export default startMonitor$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/startMonitor.js b/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/startMonitor.js deleted file mode 100644 index 7332556f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/startMonitor.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startMonitor$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startMonitor$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.screenshot.startMonitor",exports.startMonitor$=startMonitor$,exports.default=startMonitor$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/stopMonitor.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/stopMonitor.d.ts deleted file mode 100644 index f89423a2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/stopMonitor.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "device.screenshot.stopMonitor"; -/** - * 配置H5端停止监听客户端截屏事件 请求参数定义 - * @apiName device.screenshot.stopMonitor - */ -export interface IDeviceScreenshotStopMonitorParams { - [key: string]: any; -} -/** - * 配置H5端停止监听客户端截屏事件 返回结果定义 - * @apiName device.screenshot.stopMonitor - */ -export interface IDeviceScreenshotStopMonitorResult { - [key: string]: any; -} -/** - * 配置H5端停止监听客户端截屏事件 - * @apiName device.screenshot.stopMonitor - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function stopMonitor$(params: IDeviceScreenshotStopMonitorParams): Promise; -export default stopMonitor$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/stopMonitor.js b/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/stopMonitor.js deleted file mode 100644 index c4e9fced..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/device/screenshot/stopMonitor.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopMonitor$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopMonitor$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="device.screenshot.stopMonitor",exports.stopMonitor$=stopMonitor$,exports.default=stopMonitor$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/beaconPickResult.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/beaconPickResult.d.ts deleted file mode 100644 index ae52796d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/beaconPickResult.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.ATMBle.beaconPickResult"; -/** - * B1设备选择器选择结果,只对一方,通过该接口与对外开放接口进行通信 请求参数定义 - * @apiName internal.ATMBle.beaconPickResult - */ -export interface IInternalATMBleBeaconPickResultParams { - /** 调用biz.ATMBle.beaconPicker时生成的callbackId,用于传递结果 */ - callbackId: string; - /** 选择结果,json对象,数据结构如下 */ - pickResult: { - /** 选择的设备ID列表 */ - chosenBeacons: number[]; - /** 人脸识别开关 */ - useFaceRecognition: boolean; - /** 设置的蓝牙设备距离 */ - distance: number; - }; -} -/** - * B1设备选择器选择结果,只对一方,通过该接口与对外开放接口进行通信 返回结果定义 - * @apiName internal.ATMBle.beaconPickResult - */ -export interface IInternalATMBleBeaconPickResultResult { -} -/** - * B1设备选择器选择结果,只对一方,通过该接口与对外开放接口进行通信 - * @apiName internal.ATMBle.beaconPickResult - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function beaconPickResult$(params: IInternalATMBleBeaconPickResultParams): Promise; -export default beaconPickResult$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/beaconPickResult.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/beaconPickResult.js deleted file mode 100644 index f20a0dff..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/beaconPickResult.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function beaconPickResult$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.beaconPickResult$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.beaconPickResult",exports.beaconPickResult$=beaconPickResult$,exports.default=beaconPickResult$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/checkIn.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/checkIn.d.ts deleted file mode 100644 index 9be102f6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/checkIn.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.ATMBle.checkIn"; -/** - * 智能考勤机打卡 请求参数定义 - * @apiName internal.ATMBle.checkIn - */ -export interface IInternalATMBleCheckInParams { - [key: string]: any; -} -/** - * 智能考勤机打卡 返回结果定义 - * @apiName internal.ATMBle.checkIn - */ -export interface IInternalATMBleCheckInResult { - [key: string]: any; -} -/** - * 智能考勤机打卡 - * @apiName internal.ATMBle.checkIn - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function checkIn$(params: IInternalATMBleCheckInParams): Promise; -export default checkIn$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/checkIn.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/checkIn.js deleted file mode 100644 index 6250c228..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/checkIn.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkIn$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkIn$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.checkIn",exports.checkIn$=checkIn$,exports.default=checkIn$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFace.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFace.d.ts deleted file mode 100644 index 2c9f84ae..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFace.d.ts +++ /dev/null @@ -1,59 +0,0 @@ -export declare const apiName = "internal.ATMBle.detectFace"; -/** - * 唤起蓝牙打卡实人实地弹窗进行人脸识别 请求参数定义 - * @apiName internal.ATMBle.detectFace - */ -export interface IInternalATMBleDetectFaceParams { - /** 企业ID(Mock模式下可不填) */ - corpId?: string; - /** 考勤组ID(Mock模式下可不填)) */ - groupId?: string; - /** 设备ID(Mock模式下可不填) */ - deviceUid?: number; - /** 考勤组内用户ID(Mock模式下可不填) */ - userId?: string; - /** 用户名,对应识别后水印的名字(Mock模式下可不填) */ - userName?: string; - /** 时间戳,对应识别后水印的时间(Mock模式下可不填) */ - timestamp?: number; - /** 当前是否存在已录入的人脸,对应录入/识别模式 */ - hasFace: boolean; - /** 是否需要美颜 */ - needBeauty?: boolean; - /** 设备名,对应识别后水印的设备名(Mock模式下可不填) */ - deviceName?: string; - /** 是否直接做动作活体(Mock模式下及正常模式下均可不填) */ - needFacePose?: boolean; - /** 打卡方式,"auto"或者"manual",此场景下埋点用 */ - checkWay?: string; - /** 弹窗类型,埋点用,如需额外字段,需提前与客户端开发人员确认, 区分 正常("0") 二次确认("1") 人脸识别("2") 二次确认后人脸识别("3") */ - windowType?: string; - /** 是否是Mock模式,此模式下识别/录入不真正进入流程,检测到人脸后即回调,此模式下只需要补充hasFace即可 */ - isMock?: boolean; -} -/** - * 唤起蓝牙打卡实人实地弹窗进行人脸识别 返回结果定义 - * @apiName internal.ATMBle.detectFace - */ -export interface IInternalATMBleDetectFaceResult { - /** - * 人脸识别结果 - * 1:人脸验证/录入成功 - * 2:人脸验证/录入失败 - * 3:动作活体识别成功 - * 4:动作活体识别失败 - * 5:人脸弹窗显示失败,Activity为空/横屏/未登录/Activity指定不能弹出弹窗 - * 6:人脸弹窗显示失败,存在更高优先级的弹窗(打卡结果 - */ - photoStatus: number; - /** 人脸识别成功后带的上传图片的url地址, 人脸录入成功后带的上传图片的带鉴权的url地址 */ - url: string; -} -/** - * 唤起蓝牙打卡实人实地弹窗进行人脸识别 - * @apiName internal.ATMBle.detectFace - * @supportVersion android: 4.7.21 - * @author android:序望 - */ -export declare function detectFace$(params: IInternalATMBleDetectFaceParams): Promise; -export default detectFace$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFace.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFace.js deleted file mode 100644 index 2f0a715f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFace.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectFace$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectFace$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.detectFace",exports.detectFace$=detectFace$,exports.default=detectFace$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFaceFullScreen.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFaceFullScreen.d.ts deleted file mode 100644 index b170ef30..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFaceFullScreen.d.ts +++ /dev/null @@ -1,59 +0,0 @@ -export declare const apiName = "internal.ATMBle.detectFaceFullScreen"; -/** - * 唤起蓝牙打卡实人实地全屏界面进行人脸识别 请求参数定义 - * @apiName internal.ATMBle.detectFaceFullScreen - */ -export interface IInternalATMBleDetectFaceFullScreenParams { - /** 企业ID(Mock模式下可不填) */ - corpId?: string; - /** 考勤组ID(Mock模式下可不填)) */ - groupId?: string; - /** 设备ID(Mock模式下可不填) */ - deviceUid?: number; - /** 考勤组内用户ID(Mock模式下可不填) */ - userId?: string; - /** 用户名,对应识别后水印的名字(Mock模式下可不填) */ - userName?: string; - /** 时间戳,对应识别后水印的时间(Mock模式下可不填) */ - timestamp?: number; - /** 当前是否存在已录入的人脸,对应录入/识别模式 */ - hasFace: boolean; - /** 是否需要美颜 */ - needBeauty?: boolean; - /** 设备名,对应识别后水印的设备名(Mock模式下可不填) */ - deviceName?: string; - /** 是否直接做动作活体(Mock模式下及正常模式下均可不填) */ - needFacePose?: boolean; - /** 打卡方式,"auto"或者"manual",此场景下埋点用 */ - checkWay?: string; - /** 弹窗类型,埋点用,如需额外字段,需提前与客户端开发人员确认, 区分 正常("0") 二次确认("1") 人脸识别("2") 二次确认后人脸识别("3") */ - windowType?: string; - /** 是否是Mock模式,此模式下识别/录入不真正进入流程,检测到人脸后即回调,此模式下只需要补充hasFace即可 */ - isMock?: boolean; -} -/** - * 唤起蓝牙打卡实人实地全屏界面进行人脸识别 返回结果定义 - * @apiName internal.ATMBle.detectFaceFullScreen - */ -export interface IInternalATMBleDetectFaceFullScreenResult { - /** - * 人脸识别结果 - * 1:人脸验证/录入成功 - * 2:人脸验证/录入失败 - * 3:动作活体识别成功 - * 4:动作活体识别失败 - * 5:人脸弹窗显示失败,Activity为空/横屏/未登录/Activity指定不能弹出弹窗 - * 6:人脸弹窗显示失败,存在更高优先级的弹窗(打卡结果 - */ - photoStatus: number; - /** 人脸识别成功后带的上传图片的url地址, 人脸录入成功后带的上传图片的带鉴权的url地址 */ - url: string; -} -/** - * 唤起蓝牙打卡实人实地全屏界面进行人脸识别 - * @apiName internal.ATMBle.detectFaceFullScreen - * @supportVersion android: 4.7.24 - * @author Android:序望 - */ -export declare function detectFaceFullScreen$(params: IInternalATMBleDetectFaceFullScreenParams): Promise; -export default detectFaceFullScreen$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFaceFullScreen.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFaceFullScreen.js deleted file mode 100644 index 4c3ceb55..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/detectFaceFullScreen.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectFaceFullScreen$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectFaceFullScreen$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.detectFaceFullScreen",exports.detectFaceFullScreen$=detectFaceFullScreen$,exports.default=detectFaceFullScreen$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/faceManagerResult.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/faceManagerResult.d.ts deleted file mode 100644 index 17e95fcd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/faceManagerResult.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.ATMBle.faceManagerResult"; -/** - * 人脸识别管理组件设置结果,只对一方,通过该接口与对外开放接口进行通信 请求参数定义 - * @apiName internal.ATMBle.faceManagerResult - */ -export interface IInternalATMBleFaceManagerResultParams { - /** 调用biz.ATMBle.punchModePicker时生成的callbackId,用于传递结果 */ - callbackId: string; - settingResult: { - switchValue: boolean; - }; -} -/** - * 人脸识别管理组件设置结果,只对一方,通过该接口与对外开放接口进行通信 返回结果定义 - * @apiName internal.ATMBle.faceManagerResult - */ -export interface IInternalATMBleFaceManagerResultResult { -} -/** - * 人脸识别管理组件设置结果,只对一方,通过该接口与对外开放接口进行通信 - * @apiName internal.ATMBle.faceManagerResult - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function faceManagerResult$(params: IInternalATMBleFaceManagerResultParams): Promise; -export default faceManagerResult$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/faceManagerResult.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/faceManagerResult.js deleted file mode 100644 index b07e1158..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/faceManagerResult.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function faceManagerResult$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.faceManagerResult$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.faceManagerResult",exports.faceManagerResult$=faceManagerResult$,exports.default=faceManagerResult$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getBleLocalDevList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getBleLocalDevList.d.ts deleted file mode 100644 index 9fd280fe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getBleLocalDevList.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "internal.ATMBle.getBleLocalDevList"; -/** - * 获取本地已注册的蓝牙打卡设备列表 请求参数定义 - * @apiName internal.ATMBle.getBleLocalDevList - */ -export interface IInternalATMBleGetBleLocalDevListParams { -} -/** - * 获取本地已注册的蓝牙打卡设备列表 返回结果定义 - * @apiName internal.ATMBle.getBleLocalDevList - */ -export interface IInternalATMBleGetBleLocalDevListResult { - /** 已注册的蓝牙设备列表 */ - localDeviceList: Array<{ - /** 设备ID */ - devId: number; - /** 设备IID */ - deviceUid: number; - corpId?: string; - }>; - /** 蓝牙状态 */ - bleState: string; -} -/** - * 获取本地已注册的蓝牙打卡设备列表 - * @apiName internal.ATMBle.getBleLocalDevList - * @supportVersion ios: 4.7.18 android: 4.7.18 - * @author Android:珑一; iOS:路客 - */ -export declare function getBleLocalDevList$(params: IInternalATMBleGetBleLocalDevListParams): Promise; -export default getBleLocalDevList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getBleLocalDevList.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getBleLocalDevList.js deleted file mode 100644 index 89f197f1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getBleLocalDevList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBleLocalDevList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getBleLocalDevList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.getBleLocalDevList",exports.getBleLocalDevList$=getBleLocalDevList$,exports.default=getBleLocalDevList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getPunchEventClockCheckResult.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getPunchEventClockCheckResult.d.ts deleted file mode 100644 index 5bf69c83..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getPunchEventClockCheckResult.d.ts +++ /dev/null @@ -1,44 +0,0 @@ -export declare const apiName = "internal.ATMBle.getPunchEventClockCheckResult"; -/** - * 获取当前多场景小闹钟的校验结果,频率由前端控制。 请求参数定义 - * @apiName internal.ATMBle.getPunchEventClockCheckResult - */ -export interface IInternalATMBleGetPunchEventClockCheckResultParams { -} -/** - * 获取当前多场景小闹钟的校验结果,频率由前端控制。 返回结果定义 - * @apiName internal.ATMBle.getPunchEventClockCheckResult - */ -export declare type IInternalATMBleGetPunchEventClockCheckResultResult = Array<{ - /** 各场景下事件的唯一ID,与bizCode结合成为复合主键 */ - outerId: string; - /** 事件类型对应业务场景 */ - bizCode: string; - corpId: string; - bizContext: string; - bleCheckResult: { - deviceUid: any; - devId: any; - devServiceId: any; - major: any; - minor: any; - retainData: any; - }; - wifiCheckResult: { - macAddress: any; - ssid: any; - }; - poiCheckResult: { - lat: any; - lon: any; - accuracy: any; - }; -}>; -/** - * 获取当前多场景小闹钟的校验结果,频率由前端控制。 - * @apiName internal.ATMBle.getPunchEventClockCheckResult - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function getPunchEventClockCheckResult$(params: IInternalATMBleGetPunchEventClockCheckResultParams): Promise; -export default getPunchEventClockCheckResult$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getPunchEventClockCheckResult.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getPunchEventClockCheckResult.js deleted file mode 100644 index 89bf4da1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/getPunchEventClockCheckResult.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPunchEventClockCheckResult$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPunchEventClockCheckResult$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.getPunchEventClockCheckResult",exports.getPunchEventClockCheckResult$=getPunchEventClockCheckResult$,exports.default=getPunchEventClockCheckResult$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/punchModePickResult.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/punchModePickResult.d.ts deleted file mode 100644 index b230e84d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/punchModePickResult.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.ATMBle.punchModePickResult"; -/** - * 打卡方式选择器选择结果,只对一方,通过该接口与对外开放接口进行通信 请求参数定义 - * @apiName internal.ATMBle.punchModePickResult - */ -export interface IInternalATMBlePunchModePickResultParams { - /** 调用biz.ATMBle.punchModePicker时生成的callbackId,用于传递结果 */ - callbackId: string; - /** 选择结果,json对象,格式如下: modes:List 打卡方式 json序列化后的格式: [{type: 'location', enable: true, list: []}] 意义待补充 */ - pickResult: any; -} -/** - * 打卡方式选择器选择结果,只对一方,通过该接口与对外开放接口进行通信 返回结果定义 - * @apiName internal.ATMBle.punchModePickResult - */ -export interface IInternalATMBlePunchModePickResultResult { -} -/** - * 打卡方式选择器选择结果,只对一方,通过该接口与对外开放接口进行通信 - * @apiName internal.ATMBle.punchModePickResult - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function punchModePickResult$(params: IInternalATMBlePunchModePickResultParams): Promise; -export default punchModePickResult$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/punchModePickResult.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/punchModePickResult.js deleted file mode 100644 index 86ce5a90..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/punchModePickResult.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function punchModePickResult$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.punchModePickResult$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.punchModePickResult",exports.punchModePickResult$=punchModePickResult$,exports.default=punchModePickResult$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/requestPunchEvents.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/requestPunchEvents.d.ts deleted file mode 100644 index 0a067682..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/requestPunchEvents.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.ATMBle.requestPunchEvents"; -/** - * 提供全量更新多场景任务的接口 请求参数定义 - * @apiName internal.ATMBle.requestPunchEvents - */ -export interface IInternalATMBleRequestPunchEventsParams { -} -/** - * 提供全量更新多场景任务的接口 返回结果定义 - * @apiName internal.ATMBle.requestPunchEvents - */ -export interface IInternalATMBleRequestPunchEventsResult { - /** 有返回值即为接口调用成功。 */ - result: boolean; -} -/** - * 提供全量更新多场景任务的接口 - * @apiName internal.ATMBle.requestPunchEvents - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author Android:序望,iOS:度尽 - */ -export declare function requestPunchEvents$(params: IInternalATMBleRequestPunchEventsParams): Promise; -export default requestPunchEvents$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/requestPunchEvents.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/requestPunchEvents.js deleted file mode 100644 index d1a24134..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/requestPunchEvents.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestPunchEvents$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestPunchEvents$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.requestPunchEvents",exports.requestPunchEvents$=requestPunchEvents$,exports.default=requestPunchEvents$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/scanBleDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/scanBleDevice.d.ts deleted file mode 100644 index 9e2b01e0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/scanBleDevice.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -export declare const apiName = "internal.ATMBle.scanBleDevice"; -/** - * 查询附近的智能硬件设备列表 请求参数定义 - * @apiName internal.ATMBle.scanBleDevice - */ -export interface IInternalATMBleScanBleDeviceParams { -} -/** - * 查询附近的智能硬件设备列表 返回结果定义 - * @apiName internal.ATMBle.scanBleDevice - */ -export interface IInternalATMBleScanBleDeviceResult { - /** 设备列表数据 */ - deviceList: Array<{ - /** 设备绑定的企业 */ - corpId: string; - /** 设备Uid */ - deviceUid: number; - /** 设备名 */ - deviceName: string; - /** 设备id */ - devId: number; - /** 手机与设备的距离,单位cm */ - distance: number; - /** 信号强度 */ - rssi: number; - /** 设备蓝牙功率 */ - txPower: number; - /** 设备绑定状态 0:未绑定 1:已绑定 */ - status: number; - /** 设备服务商Id */ - serId: number; - /** 设备类型 */ - devTypeCode: number; - }>; -} -/** - * 查询附近的智能硬件设备列表 - * @apiName internal.ATMBle.scanBleDevice - * @supportVersion ios: 4.7.6 android: 4.7.6 - */ -export declare function scanBleDevice$(params: IInternalATMBleScanBleDeviceParams): Promise; -export default scanBleDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/scanBleDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/scanBleDevice.js deleted file mode 100644 index 5601bba8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/scanBleDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scanBleDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.scanBleDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.scanBleDevice",exports.scanBleDevice$=scanBleDevice$,exports.default=scanBleDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/showBlePopupWindowMock.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/showBlePopupWindowMock.d.ts deleted file mode 100644 index fadb08f0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/showBlePopupWindowMock.d.ts +++ /dev/null @@ -1,40 +0,0 @@ -export declare const apiName = "internal.ATMBle.showBlePopupWindowMock"; -/** - * 蓝牙打卡弹窗样式显示,只做展示用,会返回各种点击及消失事件。 请求参数定义 - * @apiName internal.ATMBle.showBlePopupWindowMock - */ -export interface IInternalATMBleShowBlePopupWindowMockParams { - /** 目前现有打卡优先级,优先级从低到高 0-普通二次确认弹窗 1-人脸识别二次确认弹窗 2-打卡结果弹窗 因此建议设置为低于上述打卡优先级 */ - priority?: number; - /** 弹窗最上方标题,建议给定值,如“考勤” */ - spaceTitle?: string; - title: string; - content: string; - showTag?: boolean; - /** 标题后的标签内容,可设置如“早退”; 只有当showTag为true时才生效 */ - tagContent?: string; - /** icon,mediaId */ - icon?: string; - /** 是否显示弹窗右上角"X" */ - showCancel?: boolean; - /** 左边幽灵按钮文本,null或者空字符串时不显示按钮 */ - leftButton?: string; - /** 右边填充按钮文本,null或者空字符串时不显示按钮 */ - rightButton?: string; -} -/** - * 蓝牙打卡弹窗样式显示,只做展示用,会返回各种点击及消失事件。 返回结果定义 - * @apiName internal.ATMBle.showBlePopupWindowMock - */ -export interface IInternalATMBleShowBlePopupWindowMockResult { - /** -1 - 未知 0 - 右上角"X"点击 1 - 左边幽灵按钮点击 2 - 右边填充按钮点击 3 - 取消,包含消失与上滑取消 */ - result: number; -} -/** - * 蓝牙打卡弹窗样式显示,只做展示用,会返回各种点击及消失事件。 - * @apiName internal.ATMBle.showBlePopupWindowMock - * @supportVersion android: 4.7.27 - * @author Android:序望 - */ -export declare function showBlePopupWindowMock$(params: IInternalATMBleShowBlePopupWindowMockParams): Promise; -export default showBlePopupWindowMock$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/showBlePopupWindowMock.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/showBlePopupWindowMock.js deleted file mode 100644 index 6430710d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/showBlePopupWindowMock.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showBlePopupWindowMock$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showBlePopupWindowMock$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.showBlePopupWindowMock",exports.showBlePopupWindowMock$=showBlePopupWindowMock$,exports.default=showBlePopupWindowMock$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/startMonitor.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/startMonitor.d.ts deleted file mode 100644 index 6b71b1b1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/startMonitor.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.ATMBle.startMonitor"; -/** - * 考勤蓝牙开始监控 请求参数定义 - * @apiName internal.ATMBle.startMonitor - */ -export interface IInternalATMBleStartMonitorParams { - [key: string]: any; -} -/** - * 考勤蓝牙开始监控 返回结果定义 - * @apiName internal.ATMBle.startMonitor - */ -export interface IInternalATMBleStartMonitorResult { - [key: string]: any; -} -/** - * 考勤蓝牙开始监控 - * @apiName internal.ATMBle.startMonitor - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function startMonitor$(params: IInternalATMBleStartMonitorParams): Promise; -export default startMonitor$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/startMonitor.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/startMonitor.js deleted file mode 100644 index ba452329..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/startMonitor.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startMonitor$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startMonitor$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.startMonitor",exports.startMonitor$=startMonitor$,exports.default=startMonitor$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/stopMonitor.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/stopMonitor.d.ts deleted file mode 100644 index e2e4b4de..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/stopMonitor.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.ATMBle.stopMonitor"; -/** - * 蓝牙停止监控 请求参数定义 - * @apiName internal.ATMBle.stopMonitor - */ -export interface IInternalATMBleStopMonitorParams { - [key: string]: any; -} -/** - * 蓝牙停止监控 返回结果定义 - * @apiName internal.ATMBle.stopMonitor - */ -export interface IInternalATMBleStopMonitorResult { - [key: string]: any; -} -/** - * 蓝牙停止监控 - * @apiName internal.ATMBle.stopMonitor - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function stopMonitor$(params: IInternalATMBleStopMonitorParams): Promise; -export default stopMonitor$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/stopMonitor.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/stopMonitor.js deleted file mode 100644 index a9b50c0b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/stopMonitor.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopMonitor$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopMonitor$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.stopMonitor",exports.stopMonitor$=stopMonitor$,exports.default=stopMonitor$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/updateBluetoothConfig.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/updateBluetoothConfig.d.ts deleted file mode 100644 index 263eb8e2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/updateBluetoothConfig.d.ts +++ /dev/null @@ -1,54 +0,0 @@ -export declare const apiName = "internal.ATMBle.updateBluetoothConfig"; -/** - * 蓝牙打卡各项配置变更同步jsapi 请求参数定义 - * @apiName internal.ATMBle.updateBluetoothConfig - */ -export interface IInternalATMBleUpdateBluetoothConfigParams { - corpId: string; - /** - * 变更类型: - * deviceBind, deviceUnbind, deviceBluetoothValue, deviceBluetoothCheckWithFace, - * userBluetoothValue, userBluetoothCheckWay - */ - updateType: string; - /** - * 变更数据json格式,对应updateType: - * 变更数据json格式,对应updateType: - * deviceBind:无 - * deviceUnbind:无 - * deviceBluetoothValue: - * { - *  "deviceUid":39843143, - *  "bluetoothValue":true/false - * } - * deviceBluetoothCheckWithFace: - * { - * "deviceUid":39843143, - * "checkWithFace":true/false - * } - * userBluetoothValue: - * { - * "bluetoothValue":true/false - * } - * userBluetoothCheckWay: - * { - * "bluetoothWay":"auto"/"manual" - * } - */ - data: string; -} -/** - * 蓝牙打卡各项配置变更同步jsapi 返回结果定义 - * @apiName internal.ATMBle.updateBluetoothConfig - */ -export interface IInternalATMBleUpdateBluetoothConfigResult { - [key: string]: any; -} -/** - * 蓝牙打卡各项配置变更同步jsapi - * @apiName internal.ATMBle.updateBluetoothConfig - * @supportVersion android: 4.7.16 - * @author Android:序望,iOS:路客 - */ -export declare function updateBluetoothConfig$(params: IInternalATMBleUpdateBluetoothConfigParams): Promise; -export default updateBluetoothConfig$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/updateBluetoothConfig.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/updateBluetoothConfig.js deleted file mode 100644 index fbc1c5c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ATMBle/updateBluetoothConfig.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function updateBluetoothConfig$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.updateBluetoothConfig$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ATMBle.updateBluetoothConfig",exports.updateBluetoothConfig$=updateBluetoothConfig$,exports.default=updateBluetoothConfig$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/cancelTask.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/cancelTask.d.ts deleted file mode 100644 index e6b04102..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/cancelTask.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.ai.cancelTask"; -/** - * 取消任务 请求参数定义 - * @apiName internal.ai.cancelTask - */ -export interface IInternalAiCancelTaskParams { - [key: string]: any; -} -/** - * 取消任务 返回结果定义 - * @apiName internal.ai.cancelTask - */ -export interface IInternalAiCancelTaskResult { - [key: string]: any; -} -/** - * 取消任务 - * @apiName internal.ai.cancelTask - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function cancelTask$(params: IInternalAiCancelTaskParams): Promise; -export default cancelTask$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/cancelTask.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/cancelTask.js deleted file mode 100644 index fa7ce635..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/cancelTask.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function cancelTask$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.cancelTask$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ai.cancelTask",exports.cancelTask$=cancelTask$,exports.default=cancelTask$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/createTask.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/createTask.d.ts deleted file mode 100644 index 5f0e05be..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/createTask.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.ai.createTask"; -/** - * 创建 AI 任务 请求参数定义 - * @apiName internal.ai.createTask - */ -export interface IInternalAiCreateTaskParams { - [key: string]: any; -} -/** - * 创建 AI 任务 返回结果定义 - * @apiName internal.ai.createTask - */ -export interface IInternalAiCreateTaskResult { - [key: string]: any; -} -/** - * 创建 AI 任务 - * @apiName internal.ai.createTask - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function createTask$(params: IInternalAiCreateTaskParams): Promise; -export default createTask$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/createTask.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/createTask.js deleted file mode 100644 index e19ddce5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/createTask.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createTask$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createTask$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ai.createTask",exports.createTask$=createTask$,exports.default=createTask$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/frameUpload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/frameUpload.d.ts deleted file mode 100644 index 52ab7ef8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/frameUpload.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.ai.frameUpload"; -/** - * 上传数据 请求参数定义 - * @apiName internal.ai.frameUpload - */ -export interface IInternalAiFrameUploadParams { - [key: string]: any; -} -/** - * 上传数据 返回结果定义 - * @apiName internal.ai.frameUpload - */ -export interface IInternalAiFrameUploadResult { - [key: string]: any; -} -/** - * 上传数据 - * @apiName internal.ai.frameUpload - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function frameUpload$(params: IInternalAiFrameUploadParams): Promise; -export default frameUpload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/frameUpload.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/frameUpload.js deleted file mode 100644 index 40bff3cd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ai/frameUpload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function frameUpload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.frameUpload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ai.frameUpload",exports.frameUpload$=frameUpload$,exports.default=frameUpload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardAccessory.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardAccessory.d.ts deleted file mode 100644 index 0cf23874..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardAccessory.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.alidoc.keyboardAccessory"; -/** - * 隐藏iOS在H5出现编辑状态时键盘上方的默认工具条(仅iOS ) 请求参数定义 - * @apiName internal.alidoc.keyboardAccessory - */ -export interface IInternalAlidocKeyboardAccessoryParams { - /** 是否显示工具条 */ - enable: boolean; -} -/** - * 隐藏iOS在H5出现编辑状态时键盘上方的默认工具条(仅iOS ) 返回结果定义 - * @apiName internal.alidoc.keyboardAccessory - */ -export interface IInternalAlidocKeyboardAccessoryResult { - [key: string]: any; -} -/** - * 隐藏iOS在H5出现编辑状态时键盘上方的默认工具条(仅iOS ) - * @apiName internal.alidoc.keyboardAccessory - * @supportVersion ios: 4.5.12 - */ -export declare function keyboardAccessory$(params: IInternalAlidocKeyboardAccessoryParams): Promise; -export default keyboardAccessory$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardAccessory.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardAccessory.js deleted file mode 100644 index f47edfe2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardAccessory.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function keyboardAccessory$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.keyboardAccessory$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.alidoc.keyboardAccessory",exports.keyboardAccessory$=keyboardAccessory$,exports.default=keyboardAccessory$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardCompression.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardCompression.d.ts deleted file mode 100644 index 93051faa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardCompression.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.alidoc.keyboardCompression"; -/** - * 当H5页面出现键盘时的视图大小和位置都收缩到键盘之上的可见区域(仅iOS) 请求参数定义 - * @apiName internal.alidoc.keyboardCompression - */ -export interface IInternalAlidocKeyboardCompressionParams { - /** 是否开启功能 */ - enable: boolean; -} -/** - * 当H5页面出现键盘时的视图大小和位置都收缩到键盘之上的可见区域(仅iOS) 返回结果定义 - * @apiName internal.alidoc.keyboardCompression - */ -export interface IInternalAlidocKeyboardCompressionResult { - [key: string]: any; -} -/** - * 当H5页面出现键盘时的视图大小和位置都收缩到键盘之上的可见区域(仅iOS) - * @apiName internal.alidoc.keyboardCompression - * @supportVersion ios: 4.5.12 - */ -export declare function keyboardCompression$(params: IInternalAlidocKeyboardCompressionParams): Promise; -export default keyboardCompression$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardCompression.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardCompression.js deleted file mode 100644 index ce10a2d3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alidoc/keyboardCompression.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function keyboardCompression$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.keyboardCompression$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.alidoc.keyboardCompression",exports.keyboardCompression$=keyboardCompression$,exports.default=keyboardCompression$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/addWdsDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/addWdsDevice.d.ts deleted file mode 100644 index aca026ab..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/addWdsDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.alpha.addWdsDevice"; -/** - * 获取设备上网密码 请求参数定义 - * @apiName internal.alpha.addWdsDevice - */ -export interface IInternalAlphaAddWdsDeviceParams { - [key: string]: any; -} -/** - * 获取设备上网密码 返回结果定义 - * @apiName internal.alpha.addWdsDevice - */ -export interface IInternalAlphaAddWdsDeviceResult { - [key: string]: any; -} -/** - * 获取设备上网密码 - * @apiName internal.alpha.addWdsDevice - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function addWdsDevice$(params: IInternalAlphaAddWdsDeviceParams): Promise; -export default addWdsDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/addWdsDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/addWdsDevice.js deleted file mode 100644 index 95cb0aa4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/addWdsDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addWdsDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addWdsDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.alpha.addWdsDevice",exports.addWdsDevice$=addWdsDevice$,exports.default=addWdsDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/connectSecurityWiFi.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/connectSecurityWiFi.d.ts deleted file mode 100644 index 72b34d9a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/connectSecurityWiFi.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.alpha.connectSecurityWiFi"; -/** - * 连接指定的WiFi网络 请求参数定义 - * @apiName internal.alpha.connectSecurityWiFi - */ -export interface IInternalAlphaConnectSecurityWiFiParams { - /** WiFi名称 */ - ssid: string; - /** WiFi密码 */ - password: string; -} -/** - * 连接指定的WiFi网络 返回结果定义 - * @apiName internal.alpha.connectSecurityWiFi - */ -export interface IInternalAlphaConnectSecurityWiFiResult { - /** 连接类型 */ - connectType: string; -} -/** - * 连接指定的WiFi网络 - * @apiName internal.alpha.connectSecurityWiFi - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function connectSecurityWiFi$(params: IInternalAlphaConnectSecurityWiFiParams): Promise; -export default connectSecurityWiFi$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/connectSecurityWiFi.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/connectSecurityWiFi.js deleted file mode 100644 index 56709c69..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/connectSecurityWiFi.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function connectSecurityWiFi$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.connectSecurityWiFi$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.alpha.connectSecurityWiFi",exports.connectSecurityWiFi$=connectSecurityWiFi$,exports.default=connectSecurityWiFi$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/copyPwd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/copyPwd.d.ts deleted file mode 100644 index 81bee2b7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/copyPwd.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.alpha.copyPwd"; -/** - * 显示自己的Alpha上网密码 请求参数定义 - * @apiName internal.alpha.copyPwd - */ -export interface IInternalAlphaCopyPwdParams { - [key: string]: any; -} -/** - * 显示自己的Alpha上网密码 返回结果定义 - * @apiName internal.alpha.copyPwd - */ -export interface IInternalAlphaCopyPwdResult { - [key: string]: any; -} -/** - * 显示自己的Alpha上网密码 - * @apiName internal.alpha.copyPwd - * @supportVersion ios: 4.0 android: 4.0 - */ -export declare function copyPwd$(params: IInternalAlphaCopyPwdParams): Promise; -export default copyPwd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/copyPwd.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/copyPwd.js deleted file mode 100644 index 46e8e317..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/copyPwd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function copyPwd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.copyPwd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.alpha.copyPwd",exports.copyPwd$=copyPwd$,exports.default=copyPwd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/discover.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/discover.d.ts deleted file mode 100644 index 99fe380d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/discover.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.alpha.discover"; -/** - * 开启/关闭发现服务 请求参数定义 - * @apiName internal.alpha.discover - */ -export interface IInternalAlphaDiscoverParams { - /** 开启/关闭功能 boolean 可选(默认false) */ - enable?: boolean; -} -/** - * 开启/关闭发现服务 返回结果定义 - * @apiName internal.alpha.discover - */ -export interface IInternalAlphaDiscoverResult { - [key: string]: any; -} -/** - * 开启/关闭发现服务 - * @apiName internal.alpha.discover - * @supportVersion android: 4.6.9 ios: 4.6.11 - */ -export declare function discover$(params: IInternalAlphaDiscoverParams): Promise; -export default discover$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/discover.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/discover.js deleted file mode 100644 index 53638950..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/discover.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function discover$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.discover$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.alpha.discover",exports.discover$=discover$,exports.default=discover$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/getDevicePwd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/getDevicePwd.d.ts deleted file mode 100644 index 86800a6d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/getDevicePwd.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.alpha.getDevicePwd"; -/** - * 获取设备上网密码 请求参数定义 - * @apiName internal.alpha.getDevicePwd - */ -export interface IInternalAlphaGetDevicePwdParams { - [key: string]: any; -} -/** - * 获取设备上网密码 返回结果定义 - * @apiName internal.alpha.getDevicePwd - */ -export interface IInternalAlphaGetDevicePwdResult { - [key: string]: any; -} -/** - * 获取设备上网密码 - * @apiName internal.alpha.getDevicePwd - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function getDevicePwd$(params: IInternalAlphaGetDevicePwdParams): Promise; -export default getDevicePwd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/getDevicePwd.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/getDevicePwd.js deleted file mode 100644 index 2995994d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/alpha/getDevicePwd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDevicePwd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDevicePwd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.alpha.getDevicePwd",exports.getDevicePwd$=getDevicePwd$,exports.default=getDevicePwd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/assistant.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/assistant.d.ts deleted file mode 100644 index c8be086a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/assistant.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.attend.assistant"; -/** - * 上班助手 请求参数定义 - * @apiName internal.attend.assistant - */ -export interface IInternalAttendAssistantParams { - [key: string]: any; -} -/** - * 上班助手 返回结果定义 - * @apiName internal.attend.assistant - */ -export interface IInternalAttendAssistantResult { - [key: string]: any; -} -/** - * 上班助手 - * @apiName internal.attend.assistant - * @supportVersion ios: 2.11.0 android: 2.11.0 - */ -export declare function assistant$(params: IInternalAttendAssistantParams): Promise; -export default assistant$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/assistant.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/assistant.js deleted file mode 100644 index 64d43968..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/assistant.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function assistant$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.assistant$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.attend.assistant",exports.assistant$=assistant$,exports.default=assistant$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/checkInRecords.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/checkInRecords.d.ts deleted file mode 100644 index a655db9b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/checkInRecords.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.attend.checkInRecords"; -/** - * 供内部页面使用,查询本地极速打卡流水记录 请求参数定义 - * @apiName internal.attend.checkInRecords - */ -export interface IInternalAttendCheckInRecordsParams { - [key: string]: any; -} -/** - * 供内部页面使用,查询本地极速打卡流水记录 返回结果定义 - * @apiName internal.attend.checkInRecords - */ -export interface IInternalAttendCheckInRecordsResult { - [key: string]: any; -} -/** - * 供内部页面使用,查询本地极速打卡流水记录 - * @apiName internal.attend.checkInRecords - * @supportVersion ios: 4.2.8 android: 4.2.8 - */ -export declare function checkInRecords$(params: IInternalAttendCheckInRecordsParams): Promise; -export default checkInRecords$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/checkInRecords.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/checkInRecords.js deleted file mode 100644 index 02331b2c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/checkInRecords.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkInRecords$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkInRecords$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.attend.checkInRecords",exports.checkInRecords$=checkInRecords$,exports.default=checkInRecords$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getAccurateLocatingInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getAccurateLocatingInfo.d.ts deleted file mode 100644 index 26d4cf3e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getAccurateLocatingInfo.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -export declare const apiName = "internal.attend.getAccurateLocatingInfo"; -/** - * 考勤精确定位所需数据采集 请求参数定义 - * @apiName internal.attend.getAccurateLocatingInfo - */ -export interface IInternalAttendGetAccurateLocatingInfoParams { -} -/** - * 考勤精确定位所需数据采集 返回结果定义 - * @apiName internal.attend.getAccurateLocatingInfo - */ -export interface IInternalAttendGetAccurateLocatingInfoResult { - /** - * identifierType=1时,为utdid经过两次md5加密后得到的值 - */ - uniqueIdentifier: string; - /** 目前版本(0106迭代)只存在为1的情况,表示uniqueIdentifier是utdid经过两次md5加密后得到的值 */ - identifierType: number; - /** mac地址 */ - macAddress: string; - /** "2g""3g""4g""wifi""other" */ - netWorkType: string; - /** 经度 */ - longitude: number; - /** 纬度 */ - latitude: number; - /** 基站信息列表转json字符串 */ - baseStationList: string; - /** wifi信息列表转json字符串 */ - wifiSignalModelList: string; -} -/** - * 考勤精确定位所需数据采集 - * @apiName internal.attend.getAccurateLocatingInfo - * @supportVersion android: 4.7.24 - * @author Android:序望 - */ -export declare function getAccurateLocatingInfo$(params: IInternalAttendGetAccurateLocatingInfoParams): Promise; -export default getAccurateLocatingInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getAccurateLocatingInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getAccurateLocatingInfo.js deleted file mode 100644 index 70baa455..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getAccurateLocatingInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAccurateLocatingInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAccurateLocatingInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.attend.getAccurateLocatingInfo",exports.getAccurateLocatingInfo$=getAccurateLocatingInfo$,exports.default=getAccurateLocatingInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getOfflineResource.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getOfflineResource.d.ts deleted file mode 100644 index 8a7689ad..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getOfflineResource.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.attend.getOfflineResource"; -/** - * 获取考勤离线数据 请求参数定义 - * @apiName internal.attend.getOfflineResource - */ -export interface IInternalAttendGetOfflineResourceParams { - corpId: string; -} -/** - * 获取考勤离线数据 返回结果定义 - * @apiName internal.attend.getOfflineResource - */ -export interface IInternalAttendGetOfflineResourceResult { - /** 考勤首页离线数据所包含的所有信息的 JSON */ - atCheckModel: string; -} -/** - * 获取考勤离线数据 - * @apiName internal.attend.getOfflineResource - * @supportVersion ios: 4.7.13 android: 4.7.13 - * @author android:序望 - */ -export declare function getOfflineResource$(params: IInternalAttendGetOfflineResourceParams): Promise; -export default getOfflineResource$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getOfflineResource.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getOfflineResource.js deleted file mode 100644 index 1ef072d1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getOfflineResource.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getOfflineResource$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getOfflineResource$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.attend.getOfflineResource",exports.getOfflineResource$=getOfflineResource$,exports.default=getOfflineResource$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getProloadResource.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getProloadResource.d.ts deleted file mode 100644 index 18801708..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getProloadResource.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.attend.getProloadResource"; -/** - * 获取考勤预加载资源 请求参数定义 - * @apiName internal.attend.getProloadResource - */ -export interface IInternalAttendGetProloadResourceParams { - /** 设置是否允许预加载 */ - enablePreload: boolean; - /** 设置预加载时lwp接口 */ - lwpAccess: string; -} -/** - * 获取考勤预加载资源 返回结果定义 - * @apiName internal.attend.getProloadResource - */ -export interface IInternalAttendGetProloadResourceResult { -} -/** - * 获取考勤预加载资源 - * @apiName internal.attend.getProloadResource - * @supportVersion android: 4.7.9 - * @author android:序望 - */ -export declare function getProloadResource$(params: IInternalAttendGetProloadResourceParams): Promise; -export default getProloadResource$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getProloadResource.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getProloadResource.js deleted file mode 100644 index 656fbfd0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/getProloadResource.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getProloadResource$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getProloadResource$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.attend.getProloadResource",exports.getProloadResource$=getProloadResource$,exports.default=getProloadResource$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/isBetaEnabled.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/isBetaEnabled.d.ts deleted file mode 100644 index 2798bfc1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/isBetaEnabled.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.attend.isBetaEnabled"; -/** - * 按照module、key,查询DTLemon的客户端开关值 请求参数定义 - * @apiName internal.attend.isBetaEnabled - */ -export interface IInternalAttendIsBetaEnabledParams { - /** 开关所属的模块 */ - module: string; - /** 开关的key名 */ - key: string; -} -/** - * 按照module、key,查询DTLemon的客户端开关值 返回结果定义 - * @apiName internal.attend.isBetaEnabled - */ -export interface IInternalAttendIsBetaEnabledResult { - /** 开关开启情况 */ - isBetaEnable: boolean; -} -/** - * 按照module、key,查询DTLemon的客户端开关值 - * @apiName internal.attend.isBetaEnabled - * @supportVersion ios: 4.5.5 android: 4.5.5 - */ -export declare function isBetaEnabled$(params: IInternalAttendIsBetaEnabledParams): Promise; -export default isBetaEnabled$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/isBetaEnabled.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/isBetaEnabled.js deleted file mode 100644 index 8dc91ca9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/isBetaEnabled.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isBetaEnabled$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isBetaEnabled$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.attend.isBetaEnabled",exports.isBetaEnabled$=isBetaEnabled$,exports.default=isBetaEnabled$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/setOfflineResource.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/setOfflineResource.d.ts deleted file mode 100644 index 45f3219c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/setOfflineResource.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.attend.setOfflineResource"; -/** - * 考勤离线数据设置,当获取的考勤离线数据过期时调用,用于更新数据 请求参数定义 - * @apiName internal.attend.setOfflineResource - */ -export interface IInternalAttendSetOfflineResourceParams { - /** 考勤数据设置,Json格式 */ - atCheckModel: string; -} -/** - * 考勤离线数据设置,当获取的考勤离线数据过期时调用,用于更新数据 返回结果定义 - * @apiName internal.attend.setOfflineResource - */ -export interface IInternalAttendSetOfflineResourceResult { - [key: string]: any; -} -/** - * 考勤离线数据设置,当获取的考勤离线数据过期时调用,用于更新数据 - * @apiName internal.attend.setOfflineResource - * @supportVersion ios: 4.7.13 android: 4.7.13 - * @author Android:序望 - */ -export declare function setOfflineResource$(params: IInternalAttendSetOfflineResourceParams): Promise; -export default setOfflineResource$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/setOfflineResource.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/setOfflineResource.js deleted file mode 100644 index eff7ba61..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/setOfflineResource.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setOfflineResource$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setOfflineResource$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.attend.setOfflineResource",exports.setOfflineResource$=setOfflineResource$,exports.default=setOfflineResource$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/updateBluetoothCheckList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/updateBluetoothCheckList.d.ts deleted file mode 100644 index b026014b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/updateBluetoothCheckList.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.attend.updateBluetoothCheckList"; -/** - * 通知客户端拉取蓝牙考勤设备列表并缓存到本地 请求参数定义 - * @apiName internal.attend.updateBluetoothCheckList - */ -export interface IInternalAttendUpdateBluetoothCheckListParams { -} -/** - * 通知客户端拉取蓝牙考勤设备列表并缓存到本地 返回结果定义 - * @apiName internal.attend.updateBluetoothCheckList - */ -export interface IInternalAttendUpdateBluetoothCheckListResult { -} -/** - * 通知客户端拉取蓝牙考勤设备列表并缓存到本地 - * @apiName internal.attend.updateBluetoothCheckList - * @supportVersion android: 4.7.15 ios: 4.7.16 - * @author Android:珑一 ios: 度尽 - */ -export declare function updateBluetoothCheckList$(params: IInternalAttendUpdateBluetoothCheckListParams): Promise; -export default updateBluetoothCheckList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/updateBluetoothCheckList.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/updateBluetoothCheckList.js deleted file mode 100644 index c6fbeda1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/attend/updateBluetoothCheckList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function updateBluetoothCheckList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.updateBluetoothCheckList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.attend.updateBluetoothCheckList",exports.updateBluetoothCheckList$=updateBluetoothCheckList$,exports.default=updateBluetoothCheckList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/getActionTokenByPwd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/getActionTokenByPwd.d.ts deleted file mode 100644 index 8540d0c7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/getActionTokenByPwd.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.auth.getActionTokenByPwd"; -/** - * 使用钉钉密码换取敏感操作token,native输入密码 请求参数定义 - * @apiName internal.auth.getActionTokenByPwd - */ -export interface IInternalAuthGetActionTokenByPwdParams { -} -/** - * 使用钉钉密码换取敏感操作token,native输入密码 返回结果定义 - * @apiName internal.auth.getActionTokenByPwd - */ -export interface IInternalAuthGetActionTokenByPwdResult { - token: string; -} -/** - * 使用钉钉密码换取敏感操作token,native输入密码 - * @apiName internal.auth.getActionTokenByPwd - * @supportVersion ios: 4.6.9 android: 4.6.9 - */ -export declare function getActionTokenByPwd$(params: IInternalAuthGetActionTokenByPwdParams): Promise; -export default getActionTokenByPwd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/getActionTokenByPwd.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/getActionTokenByPwd.js deleted file mode 100644 index b99edadb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/getActionTokenByPwd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getActionTokenByPwd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getActionTokenByPwd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.getActionTokenByPwd",exports.getActionTokenByPwd$=getActionTokenByPwd$,exports.default=getActionTokenByPwd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAlipay.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAlipay.d.ts deleted file mode 100644 index c39ef349..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAlipay.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.auth.identifyByAlipay"; -/** - * 通过支付宝核身 请求参数定义 - * @apiName internal.auth.identifyByAlipay - */ -export interface IInternalAuthIdentifyByAlipayParams { - /** 手机号 例子"+86-xxxxxx" */ - mobile: string; - /** 临时码,作为二次核身因子时必填 */ - tempCode?: string; - /** "login | findPwd" , 目前支持登录与召回密码两种场景使用 */ - action: string; -} -/** - * 通过支付宝核身 返回结果定义 - * @apiName internal.auth.identifyByAlipay - */ -export interface IInternalAuthIdentifyByAlipayResult { - /** "0|2", 0标识完成身份验证,2标识需要使用其他因子再次核身 */ - status: string; - /** 需要再次核身时必须返回,再次核身时使用 */ - tempCode: string; -} -/** - * 通过支付宝核身 - * @apiName internal.auth.identifyByAlipay - * @supportVersion ios: 4.6.18 android: 4.6.18 - */ -export declare function identifyByAlipay$(params: IInternalAuthIdentifyByAlipayParams): Promise; -export default identifyByAlipay$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAlipay.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAlipay.js deleted file mode 100644 index 25e6dc68..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAlipay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function identifyByAlipay$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.identifyByAlipay$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.identifyByAlipay",exports.identifyByAlipay$=identifyByAlipay$,exports.default=identifyByAlipay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAssistantMail.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAssistantMail.d.ts deleted file mode 100644 index 622d6928..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAssistantMail.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.auth.identifyByAssistantMail"; -/** - * 通过辅助邮箱核身 请求参数定义 - * @apiName internal.auth.identifyByAssistantMail - */ -export interface IInternalAuthIdentifyByAssistantMailParams { - /** 手机号 例子"+86-xxxxxx" */ - mobile: string; - /** 临时码,作为二次核身因子时必填 */ - tempCode?: string; - /** "login | findPwd" , 目前支持登录与召回密码两种场景使用 */ - action: string; - /** 用户绑定的辅助邮箱地址 */ - email?: string; -} -/** - * 通过辅助邮箱核身 返回结果定义 - * @apiName internal.auth.identifyByAssistantMail - */ -export interface IInternalAuthIdentifyByAssistantMailResult { - /** "0|2", 0标识完成身份验证,2标识需要使用其他因子再次核身 */ - status: string; - /** 需要再次核身时必须返回,再次核身时使用 */ - tempCode: string; -} -/** - * 通过辅助邮箱核身 - * @apiName internal.auth.identifyByAssistantMail - * @supportVersion ios: 4.6.18 android: 4.6.18 - */ -export declare function identifyByAssistantMail$(params: IInternalAuthIdentifyByAssistantMailParams): Promise; -export default identifyByAssistantMail$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAssistantMail.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAssistantMail.js deleted file mode 100644 index 4a17ef70..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByAssistantMail.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function identifyByAssistantMail$(i){return common_1.ddSdk.invokeAPI(exports.apiName,i)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.identifyByAssistantMail$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.identifyByAssistantMail",exports.identifyByAssistantMail$=identifyByAssistantMail$,exports.default=identifyByAssistantMail$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByContactsVerify.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByContactsVerify.d.ts deleted file mode 100644 index d27322a9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByContactsVerify.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "internal.auth.identifyByContactsVerify"; -/** - * 通过从15个钉钉用户中,选出自己最近联系的2个,来做登录验证 请求参数定义 - * @apiName internal.auth.identifyByContactsVerify - */ -export interface IInternalAuthIdentifyByContactsVerifyParams { - /** 用户手机号(带countryCode,示例:+86-1378276382) */ - mobile: string; - /** 用户上次验证因子code */ - tmpCode: string; - /** 用户当前所在的流程标识(入Login) */ - action: string; - /** 识别当前手机号的是哪个用户 */ - historyId?: number; -} -/** - * 通过从15个钉钉用户中,选出自己最近联系的2个,来做登录验证 返回结果定义 - * @apiName internal.auth.identifyByContactsVerify - */ -export interface IInternalAuthIdentifyByContactsVerifyResult { -} -/** - * 通过从15个钉钉用户中,选出自己最近联系的2个,来做登录验证 - * @apiName internal.auth.identifyByContactsVerify - * @supportVersion ios: 5.1.19 android: 5.1.19 - * @author iOS:姚曦 Android:几米 - */ -export declare function identifyByContactsVerify$(params: IInternalAuthIdentifyByContactsVerifyParams): Promise; -export default identifyByContactsVerify$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByContactsVerify.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByContactsVerify.js deleted file mode 100644 index e98ebe4f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByContactsVerify.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function identifyByContactsVerify$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.identifyByContactsVerify$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.identifyByContactsVerify",exports.identifyByContactsVerify$=identifyByContactsVerify$,exports.default=identifyByContactsVerify$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByFace.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByFace.d.ts deleted file mode 100644 index ccef65ec..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByFace.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.auth.identifyByFace"; -/** - * 通过人脸核身 请求参数定义 - * @apiName internal.auth.identifyByFace - */ -export interface IInternalAuthIdentifyByFaceParams { - /** 手机号 例子"+86-xxxxxx" */ - mobile: string; - /** 临时码,作为二次核身因子时必填 */ - tempCode?: string; - /** "login | findPwd" , 目前支持登录与召回密码两种场景使用 */ - action: string; -} -/** - * 通过人脸核身 返回结果定义 - * @apiName internal.auth.identifyByFace - */ -export interface IInternalAuthIdentifyByFaceResult { - /** "0|2", 0标识完成身份验证,2标识需要使用其他因子再次核身 */ - status: string; - /** 需要再次核身时必须返回,再次核身时使用 */ - tempCode: string; -} -/** - * 通过人脸核身 - * @apiName internal.auth.identifyByFace - * @supportVersion ios: 4.6.18 android: 4.6.18 - */ -export declare function identifyByFace$(params: IInternalAuthIdentifyByFaceParams): Promise; -export default identifyByFace$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByFace.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByFace.js deleted file mode 100644 index 8696fec4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByFace.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function identifyByFace$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.identifyByFace$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.identifyByFace",exports.identifyByFace$=identifyByFace$,exports.default=identifyByFace$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByOIDC.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByOIDC.d.ts deleted file mode 100644 index 5f1476e5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByOIDC.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.auth.identifyByOIDC"; -/** - * SSO专属账号登录 请求参数定义 - * @apiName internal.auth.identifyByOIDC - */ -export interface IInternalAuthIdentifyByOIDCParams { - /** 三方专属账号登录Token */ - idToken: string; -} -/** - * SSO专属账号登录 返回结果定义 - * @apiName internal.auth.identifyByOIDC - */ -export interface IInternalAuthIdentifyByOIDCResult { - /** 0=成功;2=需要二次验证; */ - status: number; -} -/** - * SSO专属账号登录 - * @apiName internal.auth.identifyByOIDC - * @supportVersion ios: 5.1.33 android: 5.1.33 - * @author iOS:姚曦 Android:朴文 - */ -export declare function identifyByOIDC$(params: IInternalAuthIdentifyByOIDCParams): Promise; -export default identifyByOIDC$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByOIDC.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByOIDC.js deleted file mode 100644 index 64e65f75..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/identifyByOIDC.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function identifyByOIDC$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.identifyByOIDC$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.identifyByOIDC",exports.identifyByOIDC$=identifyByOIDC$,exports.default=identifyByOIDC$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/oidcPwdSetted.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/oidcPwdSetted.d.ts deleted file mode 100644 index 4b1e51af..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/oidcPwdSetted.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.auth.oidcPwdSetted"; -/** - * 自建专属账户,设置完密码后,回调到native,继续后续的登录流程; 请求参数定义 - * @apiName internal.auth.oidcPwdSetted - */ -export interface IInternalAuthOidcPwdSettedParams { -} -/** - * 自建专属账户,设置完密码后,回调到native,继续后续的登录流程; 返回结果定义 - * @apiName internal.auth.oidcPwdSetted - */ -export interface IInternalAuthOidcPwdSettedResult { -} -/** - * 自建专属账户,设置完密码后,回调到native,继续后续的登录流程; - * @apiName internal.auth.oidcPwdSetted - * @supportVersion ios: 6.0.11 android: 6.0.11 - * @author iOS:姚曦 Android:几米 - */ -export declare function oidcPwdSetted$(params: IInternalAuthOidcPwdSettedParams): Promise; -export default oidcPwdSetted$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/oidcPwdSetted.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/oidcPwdSetted.js deleted file mode 100644 index 5da083ca..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/oidcPwdSetted.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function oidcPwdSetted$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.oidcPwdSetted$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.oidcPwdSetted",exports.oidcPwdSetted$=oidcPwdSetted$,exports.default=oidcPwdSetted$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/postLoginTempCode.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/postLoginTempCode.d.ts deleted file mode 100644 index 964b090f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/postLoginTempCode.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.auth.postLoginTempCode"; -/** - * 向客户端POST登录临时授权码(灰度) 请求参数定义 - * @apiName internal.auth.postLoginTempCode - */ -export interface IInternalAuthPostLoginTempCodeParams { - [key: string]: any; -} -/** - * 向客户端POST登录临时授权码(灰度) 返回结果定义 - * @apiName internal.auth.postLoginTempCode - */ -export interface IInternalAuthPostLoginTempCodeResult { - [key: string]: any; -} -/** - * 向客户端POST登录临时授权码(灰度) - * @apiName internal.auth.postLoginTempCode - * @supportVersion ios: 3.3.1 android: 3.3.1 - */ -export declare function postLoginTempCode$(params: IInternalAuthPostLoginTempCodeParams): Promise; -export default postLoginTempCode$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/postLoginTempCode.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/postLoginTempCode.js deleted file mode 100644 index 89aa9d80..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/postLoginTempCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function postLoginTempCode$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.postLoginTempCode$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.postLoginTempCode",exports.postLoginTempCode$=postLoginTempCode$,exports.default=postLoginTempCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/reLogin.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/reLogin.d.ts deleted file mode 100644 index 93a7415a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/reLogin.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "internal.auth.reLogin"; -/** - * 跳转到登录页面,支持带参数 请求参数定义 - * @apiName internal.auth.reLogin - */ -export interface IInternalAuthReLoginParams { - /** 账户数据类 */ - accountModel?: { - /** 手机号类型(phone) */ - accountType?: string; - /** 账户详细数据类 */ - account?: { - /** 区号 */ - countryCode: string; - /** 手机号 */ - phone?: string; - }; - }; -} -/** - * 跳转到登录页面,支持带参数 返回结果定义 - * @apiName internal.auth.reLogin - */ -export interface IInternalAuthReLoginResult { -} -/** - * 跳转到登录页面,支持带参数 - * @apiName internal.auth.reLogin - * @supportVersion ios: 5.1.12 android: 5.1.12 - * @author android 几米 iOS 姚曦 - */ -export declare function reLogin$(params: IInternalAuthReLoginParams): Promise; -export default reLogin$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/reLogin.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/reLogin.js deleted file mode 100644 index 3d622e55..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/auth/reLogin.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function reLogin$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.reLogin$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.auth.reLogin",exports.reLogin$=reLogin$,exports.default=reLogin$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/backgroundAudio/setCustomConfig.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/backgroundAudio/setCustomConfig.d.ts deleted file mode 100644 index 35b5391a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/backgroundAudio/setCustomConfig.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.backgroundAudio.setCustomConfig"; -/** - * 设置后台音乐自定义配置,在setSrc之后调用。 请求参数定义 - * @apiName internal.backgroundAudio.setCustomConfig - */ -export interface IInternalBackgroundAudioSetCustomConfigParams { - /** 隐藏首页横条入口 true表示隐藏 false表示不隐藏 */ - hideBanner?: boolean; - /** 是否启用后台播放 true表示启用 iOS版本会出现在锁屏页面,一首歌曲播放完成后应用不会被系统挂起 false表示不启用 */ - enableBackground?: boolean; -} -/** - * 设置后台音乐自定义配置,在setSrc之后调用。 返回结果定义 - * @apiName internal.backgroundAudio.setCustomConfig - */ -export interface IInternalBackgroundAudioSetCustomConfigResult { -} -/** - * 设置后台音乐自定义配置,在setSrc之后调用。 - * @apiName internal.backgroundAudio.setCustomConfig - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author iOS:新鹏 Android:峰砺 - */ -export declare function setCustomConfig$(params: IInternalBackgroundAudioSetCustomConfigParams): Promise; -export default setCustomConfig$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/backgroundAudio/setCustomConfig.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/backgroundAudio/setCustomConfig.js deleted file mode 100644 index c4fbd25a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/backgroundAudio/setCustomConfig.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setCustomConfig$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setCustomConfig$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.backgroundAudio.setCustomConfig",exports.setCustomConfig$=setCustomConfig$,exports.default=setCustomConfig$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/badges/getTabBadgeByKey.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/badges/getTabBadgeByKey.d.ts deleted file mode 100644 index 8ac1b070..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/badges/getTabBadgeByKey.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.badges.getTabBadgeByKey"; -/** - * 获取 tabbar 上某个 tab 的红点未读数 请求参数定义 - * @apiName internal.badges.getTabBadgeByKey - */ -export interface IInternalBadgesGetTabBadgeByKeyParams { - badgeKey: string; -} -/** - * 获取 tabbar 上某个 tab 的红点未读数 返回结果定义 - * @apiName internal.badges.getTabBadgeByKey - */ -export interface IInternalBadgesGetTabBadgeByKeyResult { - /** Badge 对象,内容如下 */ - result: any; -} -/** - * 获取 tabbar 上某个 tab 的红点未读数 - * @apiName internal.badges.getTabBadgeByKey - * @supportVersion ios: 6.0.2 android: 6.0.2 - * @author iOS: 库珀, Android: 龙雀, 悬铃 - */ -export declare function getTabBadgeByKey$(params: IInternalBadgesGetTabBadgeByKeyParams): Promise; -export default getTabBadgeByKey$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/badges/getTabBadgeByKey.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/badges/getTabBadgeByKey.js deleted file mode 100644 index ef55fa53..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/badges/getTabBadgeByKey.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTabBadgeByKey$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTabBadgeByKey$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.badges.getTabBadgeByKey",exports.getTabBadgeByKey$=getTabBadgeByKey$,exports.default=getTabBadgeByKey$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/bind.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/bind.d.ts deleted file mode 100644 index 18c71a9d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/bind.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.beacon.bind"; -/** - * beancon绑定 请求参数定义 - * @apiName internal.beacon.bind - */ -export interface IInternalBeaconBindParams { - [key: string]: any; -} -/** - * beancon绑定 返回结果定义 - * @apiName internal.beacon.bind - */ -export interface IInternalBeaconBindResult { - [key: string]: any; -} -/** - * beancon绑定 - * @apiName internal.beacon.bind - * @supportVersion ios: 3.1.0 android: 3.1.0 - */ -export declare function bind$(params: IInternalBeaconBindParams): Promise; -export default bind$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/bind.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/bind.js deleted file mode 100644 index 5df5b7a2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/bind.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bind$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.bind$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.beacon.bind",exports.bind$=bind$,exports.default=bind$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectBeacons.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectBeacons.d.ts deleted file mode 100644 index 6c10bd32..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectBeacons.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.beacon.detectBeacons"; -/** - * beacon 请求参数定义 - * @apiName internal.beacon.detectBeacons - */ -export interface IInternalBeaconDetectBeaconsParams { - [key: string]: any; -} -/** - * beacon 返回结果定义 - * @apiName internal.beacon.detectBeacons - */ -export interface IInternalBeaconDetectBeaconsResult { - [key: string]: any; -} -/** - * beacon - * @apiName internal.beacon.detectBeacons - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function detectBeacons$(params: IInternalBeaconDetectBeaconsParams): Promise; -export default detectBeacons$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectBeacons.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectBeacons.js deleted file mode 100644 index 9656230b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectBeacons.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectBeacons$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectBeacons$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.beacon.detectBeacons",exports.detectBeacons$=detectBeacons$,exports.default=detectBeacons$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStart.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStart.d.ts deleted file mode 100644 index 2ef70cfe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStart.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.beacon.detectStart"; -/** - * detectStart 请求参数定义 - * @apiName internal.beacon.detectStart - */ -export interface IInternalBeaconDetectStartParams { - [key: string]: any; -} -/** - * detectStart 返回结果定义 - * @apiName internal.beacon.detectStart - */ -export interface IInternalBeaconDetectStartResult { - [key: string]: any; -} -/** - * detectStart - * @apiName internal.beacon.detectStart - * @supportVersion ios: 3.1.0 android: 3.1.0 - */ -export declare function detectStart$(params: IInternalBeaconDetectStartParams): Promise; -export default detectStart$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStart.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStart.js deleted file mode 100644 index 4c756cfc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStart.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectStart$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectStart$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.beacon.detectStart",exports.detectStart$=detectStart$,exports.default=detectStart$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStop.d.ts deleted file mode 100644 index ce8bfe56..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.beacon.detectStop"; -/** - * detectStop 请求参数定义 - * @apiName internal.beacon.detectStop - */ -export interface IInternalBeaconDetectStopParams { - [key: string]: any; -} -/** - * detectStop 返回结果定义 - * @apiName internal.beacon.detectStop - */ -export interface IInternalBeaconDetectStopResult { - [key: string]: any; -} -/** - * detectStop - * @apiName internal.beacon.detectStop - * @supportVersion ios: 3.1.0 android: 3.1.0 - */ -export declare function detectStop$(params: IInternalBeaconDetectStopParams): Promise; -export default detectStop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStop.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStop.js deleted file mode 100644 index 32036ed1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/beacon/detectStop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectStop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectStop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.beacon.detectStop",exports.detectStop$=detectStop$,exports.default=detectStop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/makecall.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/makecall.d.ts deleted file mode 100644 index dbcf555c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/makecall.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "internal.biz.makecall"; -/** - * 拨打voip办公电话等 请求参数定义 - * @apiName internal.biz.makecall - */ -export interface IInternalBizMakecallParams { - /** 调用 api 的业务标识,如天元业务:tianyuan(大小写敏感) */ - bizType: string; - /** 1:VoIP 2:办公电话 */ - callType: string; - /** 例如callType是1,VoIP, 这个字段可选填: voip或者pstn(大小写敏感)目前只支持voip */ - callTypeExtra: string; - /** 被叫的所属企业id */ - corpId: string; - /** 参会人在所属企业中的 staff-id,注意,这里的 staffId 必须归属于上面的 corpId 对应的企业 */ - staffId: string; -} -/** - * 拨打voip办公电话等 返回结果定义 - * @apiName internal.biz.makecall - */ -export interface IInternalBizMakecallResult { - /** 通话的callId,可以通过这个callId去查询这通通话的详细信息,比如接通状态,通话时长等 */ - callId: string; -} -/** - * 拨打voip办公电话等 - * @apiName internal.biz.makecall - * @supportVersion pc: 4.7.12 - * @author windows:楞伽; mac:远觉 - */ -export declare function makecall$(params: IInternalBizMakecallParams): Promise; -export default makecall$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/makecall.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/makecall.js deleted file mode 100644 index 716a4e0e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/makecall.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function makecall$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.makecall$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.biz.makecall",exports.makecall$=makecall$,exports.default=makecall$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/openApp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/openApp.d.ts deleted file mode 100644 index fe33ee9a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/openApp.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.biz.openApp"; -/** - * PC端打开相应app 请求参数定义 - * @apiName internal.biz.openApp - */ -export interface IInternalBizOpenAppParams { - [key: string]: any; -} -/** - * PC端打开相应app 返回结果定义 - * @apiName internal.biz.openApp - */ -export interface IInternalBizOpenAppResult { - [key: string]: any; -} -/** - * PC端打开相应app - * @apiName internal.biz.openApp - * @supportVersion pc: 3.4.0 - */ -export declare function openApp$(params: IInternalBizOpenAppParams): Promise; -export default openApp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/openApp.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/openApp.js deleted file mode 100644 index d028172b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/openApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openApp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openApp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.biz.openApp",exports.openApp$=openApp$,exports.default=openApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/uploadVideo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/uploadVideo.d.ts deleted file mode 100644 index 8312dcdc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/uploadVideo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.biz.uploadVideo"; -/** - * 上传视频文件到cdn暂时只在pc和mac端 请求参数定义 - * @apiName internal.biz.uploadVideo - */ -export interface IInternalBizUploadVideoParams { - [key: string]: any; -} -/** - * 上传视频文件到cdn暂时只在pc和mac端 返回结果定义 - * @apiName internal.biz.uploadVideo - */ -export interface IInternalBizUploadVideoResult { - [key: string]: any; -} -/** - * 上传视频文件到cdn暂时只在pc和mac端 - * @apiName internal.biz.uploadVideo - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function uploadVideo$(params: IInternalBizUploadVideoParams): Promise; -export default uploadVideo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/uploadVideo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/uploadVideo.js deleted file mode 100644 index 5247f58b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/uploadVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadVideo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadVideo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.biz.uploadVideo",exports.uploadVideo$=uploadVideo$,exports.default=uploadVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/webNotify.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/webNotify.d.ts deleted file mode 100644 index 17a277cb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/webNotify.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.biz.webNotify"; -/** - * 通知容器前端页面事件,透传参数 请求参数定义 - * @apiName internal.biz.webNotify - */ -export interface IInternalBizWebNotifyParams { - /** 容器类型 */ - type: string; - /** 透传的json数据 */ - data: string; -} -/** - * 通知容器前端页面事件,透传参数 返回结果定义 - * @apiName internal.biz.webNotify - */ -export interface IInternalBizWebNotifyResult { -} -/** - * 通知容器前端页面事件,透传参数 - * @apiName internal.biz.webNotify - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function webNotify$(params: IInternalBizWebNotifyParams): Promise; -export default webNotify$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/webNotify.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/webNotify.js deleted file mode 100644 index 1e698efe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/biz/webNotify.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function webNotify$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.webNotify$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.biz.webNotify",exports.webNotify$=webNotify$,exports.default=webNotify$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/batchAddExtContacts.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/batchAddExtContacts.d.ts deleted file mode 100644 index 6f4df14d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/batchAddExtContacts.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.bizcard.batchAddExtContacts"; -/** - * 跳转到批量添加外部联系人页面 请求参数定义 - * @apiName internal.bizcard.batchAddExtContacts - */ -export interface IInternalBizcardBatchAddExtContactsParams { - /** ArrayList (必须有手机号,姓名) */ - userList: any[]; - corpId: string; -} -/** - * 跳转到批量添加外部联系人页面 返回结果定义 - * @apiName internal.bizcard.batchAddExtContacts - */ -export interface IInternalBizcardBatchAddExtContactsResult { -} -/** - * 跳转到批量添加外部联系人页面 - * @apiName internal.bizcard.batchAddExtContacts - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function batchAddExtContacts$(params: IInternalBizcardBatchAddExtContactsParams): Promise; -export default batchAddExtContacts$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/batchAddExtContacts.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/batchAddExtContacts.js deleted file mode 100644 index a6da4382..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/batchAddExtContacts.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function batchAddExtContacts$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.batchAddExtContacts$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.batchAddExtContacts",exports.batchAddExtContacts$=batchAddExtContacts$,exports.default=batchAddExtContacts$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/companyPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/companyPicker.d.ts deleted file mode 100644 index 3a839e11..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/companyPicker.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.bizcard.companyPicker"; -/** - * 选择公司列表 请求参数定义 - * @apiName internal.bizcard.companyPicker - */ -export interface IInternalBizcardCompanyPickerParams { -} -/** - * 选择公司列表 返回结果定义 - * @apiName internal.bizcard.companyPicker - */ -export interface IInternalBizcardCompanyPickerResult { - orgName: string; - title: string; - orgId: number; - orgAuthed: boolean; -} -/** - * 选择公司列表 - * @apiName internal.bizcard.companyPicker - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function companyPicker$(params: IInternalBizcardCompanyPickerParams): Promise; -export default companyPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/companyPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/companyPicker.js deleted file mode 100644 index ff7cd23e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/companyPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function companyPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.companyPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.companyPicker",exports.companyPicker$=companyPicker$,exports.default=companyPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCategories.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCategories.d.ts deleted file mode 100644 index 6f0a93a0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCategories.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.bizcard.friendCategories"; -/** - * 根据类型获取该类型的分组信息 请求参数定义 - * @apiName internal.bizcard.friendCategories - */ -export interface IInternalBizcardFriendCategoriesParams { - /** 'tag','org','title' */ - category: string; -} -/** - * 根据类型获取该类型的分组信息 返回结果定义 - * @apiName internal.bizcard.friendCategories - */ -export interface IInternalBizcardFriendCategoriesResult { - data: Array<{ - name: any; - categoryValue: any; - count: any; - }>; -} -/** - * 根据类型获取该类型的分组信息 - * @apiName internal.bizcard.friendCategories - * @supportVersion ios: 4.5.17 android: 4.5.17 - */ -export declare function friendCategories$(params: IInternalBizcardFriendCategoriesParams): Promise; -export default friendCategories$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCategories.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCategories.js deleted file mode 100644 index a4c55b04..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCategories.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function friendCategories$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.friendCategories$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.friendCategories",exports.friendCategories$=friendCategories$,exports.default=friendCategories$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCount.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCount.d.ts deleted file mode 100644 index 7494b74b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCount.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.bizcard.friendCount"; -/** - * 获取好友总数或房间内好友总数 请求参数定义 - * @apiName internal.bizcard.friendCount - */ -export interface IInternalBizcardFriendCountParams { - roomId: number; -} -/** - * 获取好友总数或房间内好友总数 返回结果定义 - * @apiName internal.bizcard.friendCount - */ -export interface IInternalBizcardFriendCountResult { - data: number; -} -/** - * 获取好友总数或房间内好友总数 - * @apiName internal.bizcard.friendCount - * @supportVersion ios: 4.5.17 android: 4.5.17 - */ -export declare function friendCount$(params: IInternalBizcardFriendCountParams): Promise; -export default friendCount$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCount.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCount.js deleted file mode 100644 index 35631127..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function friendCount$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.friendCount$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.friendCount",exports.friendCount$=friendCount$,exports.default=friendCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendPicker.d.ts deleted file mode 100644 index 933d4b15..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendPicker.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -export declare const apiName = "internal.bizcard.friendPicker"; -/** - * 拉起好友选人组件 请求参数定义 - * @apiName internal.bizcard.friendPicker - */ -export interface IInternalBizcardFriendPickerParams { - /** 标题 */ - title: string; - /** 超过限定人数返回提示 */ - limitTips: string; - /** 最大可选人数 */ - maxUsers: number; - /** 已选用户 */ - pickedUsers: string[]; - /** 不可选用户 */ - disabledUsers: string[]; - /** 必选用户(不可取消选中状态) */ - requiredUsers: string[]; - /** 左下角显示的提示语 */ - pickTips: string; -} -/** - * 拉起好友选人组件 返回结果定义 - * @apiName internal.bizcard.friendPicker - */ -export declare type IInternalBizcardFriendPickerResult = Array<{ - uid: number; - name: string; - mediaId: string; -}>; -/** - * 拉起好友选人组件 - * @apiName internal.bizcard.friendPicker - * @supportVersion ios: 4.5.16 android: 4.5.16 - */ -export declare function friendPicker$(params: IInternalBizcardFriendPickerParams): Promise; -export default friendPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendPicker.js deleted file mode 100644 index d9e56bae..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function friendPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.friendPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.friendPicker",exports.friendPicker$=friendPicker$,exports.default=friendPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByCategory.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByCategory.d.ts deleted file mode 100644 index 238d7af6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByCategory.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -export declare const apiName = "internal.bizcard.friendsByCategory"; -/** - * 根据具体分类值获取指定分类好友列表 请求参数定义 - * @apiName internal.bizcard.friendsByCategory - */ -export interface IInternalBizcardFriendsByCategoryParams { - /** '21001' 或 '设计师' 或 '朋友' */ - categoryValue: string; - /** 'tag', 'org', 'title' */ - category: string; - offset: number; - size: number; -} -/** - * 根据具体分类值获取指定分类好友列表 返回结果定义 - * @apiName internal.bizcard.friendsByCategory - */ -export interface IInternalBizcardFriendsByCategoryResult { - data: { - list: Array<{ - uid: any; - avatarMediaId: any; - name: any; - title: any; - orgId: any; - orgName: any; - address: any; - orgAuthed: any; - titleAuthed: any; - nameAuthed: any; - roomId: any; - location: any; - tags: any; - remark: any; - gmtCreate: any; - nickPinyin: any; - }>; - offset: number; - hasMore: boolean; - }; -} -/** - * 根据具体分类值获取指定分类好友列表 - * @apiName internal.bizcard.friendsByCategory - * @supportVersion ios: 4.5.17 android: 4.5.17 - */ -export declare function friendsByCategory$(params: IInternalBizcardFriendsByCategoryParams): Promise; -export default friendsByCategory$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByCategory.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByCategory.js deleted file mode 100644 index d6c44ef5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByCategory.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function friendsByCategory$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.friendsByCategory$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.friendsByCategory",exports.friendsByCategory$=friendsByCategory$,exports.default=friendsByCategory$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByName.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByName.d.ts deleted file mode 100644 index e39efd7b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByName.d.ts +++ /dev/null @@ -1,44 +0,0 @@ -export declare const apiName = "internal.bizcard.friendsByName"; -/** - * 按名字获取好友列表 请求参数定义 - * @apiName internal.bizcard.friendsByName - */ -export interface IInternalBizcardFriendsByNameParams { - offset: number; - size: number; -} -/** - * 按名字获取好友列表 返回结果定义 - * @apiName internal.bizcard.friendsByName - */ -export interface IInternalBizcardFriendsByNameResult { - data: { - list: Array<{ - uid: any; - avatarMediaId: any; - name: any; - title: any; - orgId: any; - orgName: any; - address: any; - orgAuthed: any; - titleAuthed: any; - nameAuthed: any; - roomId: any; - location: any; - tags: any; - remark: any; - gmtCreate: any; - nickPinyin: any; - }>; - offset: number; - hasMore: boolean; - }; -} -/** - * 按名字获取好友列表 - * @apiName internal.bizcard.friendsByName - * @supportVersion ios: 4.5.17 android: 4.5.17 - */ -export declare function friendsByName$(params: IInternalBizcardFriendsByNameParams): Promise; -export default friendsByName$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByName.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByName.js deleted file mode 100644 index 281c1037..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByName.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function friendsByName$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.friendsByName$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.friendsByName",exports.friendsByName$=friendsByName$,exports.default=friendsByName$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByRoom.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByRoom.d.ts deleted file mode 100644 index 4d2a7701..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByRoom.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -export declare const apiName = "internal.bizcard.friendsByRoom"; -/** - * 根据room获取房间内好友列表 请求参数定义 - * @apiName internal.bizcard.friendsByRoom - */ -export interface IInternalBizcardFriendsByRoomParams { - roomId: number; - offset: number; - size: number; -} -/** - * 根据room获取房间内好友列表 返回结果定义 - * @apiName internal.bizcard.friendsByRoom - */ -export interface IInternalBizcardFriendsByRoomResult { - data: { - list: Array<{ - uid: any; - avatarMediaId: any; - name: any; - title: any; - orgId: any; - orgName: any; - address: any; - orgAuthed: any; - titleAuthed: any; - nameAuthed: any; - roomId: any; - location: any; - tags: any; - remark: any; - gmtCreate: any; - nickPinyin: any; - }>; - offset: number; - hasMore: boolean; - }; -} -/** - * 根据room获取房间内好友列表 - * @apiName internal.bizcard.friendsByRoom - * @supportVersion ios: 4.5.17 android: 4.5.17 - */ -export declare function friendsByRoom$(params: IInternalBizcardFriendsByRoomParams): Promise; -export default friendsByRoom$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByRoom.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByRoom.js deleted file mode 100644 index d613d383..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/friendsByRoom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function friendsByRoom$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.friendsByRoom$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.friendsByRoom",exports.friendsByRoom$=friendsByRoom$,exports.default=friendsByRoom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/mobileContactCount.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/mobileContactCount.d.ts deleted file mode 100644 index f3787952..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/mobileContactCount.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.bizcard.mobileContactCount"; -/** - * 获取用户手机联系人人数 请求参数定义 - * @apiName internal.bizcard.mobileContactCount - */ -export interface IInternalBizcardMobileContactCountParams { - [key: string]: any; -} -/** - * 获取用户手机联系人人数 返回结果定义 - * @apiName internal.bizcard.mobileContactCount - * number 人数 - */ -export declare type IInternalBizcardMobileContactCountResult = number; -/** - * 获取用户手机联系人人数 - * @apiName internal.bizcard.mobileContactCount - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function mobileContactCount$(params: IInternalBizcardMobileContactCountParams): Promise; -export default mobileContactCount$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/mobileContactCount.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/mobileContactCount.js deleted file mode 100644 index 45dd0422..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/mobileContactCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function mobileContactCount$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.mobileContactCount$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.mobileContactCount",exports.mobileContactCount$=mobileContactCount$,exports.default=mobileContactCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/roomsByTime.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/roomsByTime.d.ts deleted file mode 100644 index c5d351d5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/roomsByTime.d.ts +++ /dev/null @@ -1,46 +0,0 @@ -export declare const apiName = "internal.bizcard.roomsByTime"; -/** - * 按面对面获取房间列表 请求参数定义 - * @apiName internal.bizcard.roomsByTime - */ -export interface IInternalBizcardRoomsByTimeParams { - [key: string]: any; -} -/** - * 按面对面获取房间列表 返回结果定义 - * @apiName internal.bizcard.roomsByTime - */ -export interface IInternalBizcardRoomsByTimeResult { - data: { - list: Array<{ - uid: any; - avatarMediaId: any; - name: any; - title: any; - orgId: any; - orgName: any; - address: any; - orgAuthed: any; - titleAuthed: any; - nameAuthed: any; - roomId: any; - location: any; - tags: any; - remark: any; - gmtCreate: any; - nickPinyin: any; - }>; - roomId: number; - location: string; - date: string; - time: string; - count: number; - }; -} -/** - * 按面对面获取房间列表 - * @apiName internal.bizcard.roomsByTime - * @supportVersion ios: 4.5.17 android: 4.5.17 - */ -export declare function roomsByTime$(params: IInternalBizcardRoomsByTimeParams): Promise; -export default roomsByTime$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/roomsByTime.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/roomsByTime.js deleted file mode 100644 index 539d6c6b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/roomsByTime.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function roomsByTime$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.roomsByTime$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.roomsByTime",exports.roomsByTime$=roomsByTime$,exports.default=roomsByTime$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/search.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/search.d.ts deleted file mode 100644 index b94622a2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/search.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -export declare const apiName = "internal.bizcard.search"; -/** - * 搜索好友列表 请求参数定义 - * @apiName internal.bizcard.search - */ -export interface IInternalBizcardSearchParams { - key: string; - offset: number; - size: number; -} -/** - * 搜索好友列表 返回结果定义 - * @apiName internal.bizcard.search - */ -export interface IInternalBizcardSearchResult { - data: { - list: Array<{ - uid: any; - avatarMediaId: any; - name: any; - title: any; - orgId: any; - orgName: any; - address: any; - orgAuthed: any; - titleAuthed: any; - nameAuthed: any; - roomId: any; - location: any; - tags: any; - remark: any; - gmtCreate: any; - nickPinyin: any; - }>; - offset: number; - hasMore: boolean; - }; -} -/** - * 搜索好友列表 - * @apiName internal.bizcard.search - * @supportVersion ios: 4.5.17 android: 4.5.17 - */ -export declare function search$(params: IInternalBizcardSearchParams): Promise; -export default search$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/search.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/search.js deleted file mode 100644 index 40e2460f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/search.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function search$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.search$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.search",exports.search$=search$,exports.default=search$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/timeZone.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/timeZone.d.ts deleted file mode 100644 index c7e3b4a2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/timeZone.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.bizcard.timeZone"; -/** - * 获取用户当前时区 请求参数定义 - * @apiName internal.bizcard.timeZone - */ -export interface IInternalBizcardTimeZoneParams { - [key: string]: any; -} -/** - * 获取用户当前时区 返回结果定义 - * @apiName internal.bizcard.timeZone - * String: "GMT-08:00" - */ -export declare type IInternalBizcardTimeZoneResult = string; -/** - * 获取用户当前时区 - * @apiName internal.bizcard.timeZone - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function timeZone$(params: IInternalBizcardTimeZoneParams): Promise; -export default timeZone$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/timeZone.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/timeZone.js deleted file mode 100644 index e33e919e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/timeZone.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function timeZone$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.timeZone$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.timeZone",exports.timeZone$=timeZone$,exports.default=timeZone$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/updateAvatar.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/updateAvatar.d.ts deleted file mode 100644 index 71763b71..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/updateAvatar.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.bizcard.updateAvatar"; -/** - * 前端更新头像,通知客户端 请求参数定义 - * @apiName internal.bizcard.updateAvatar - */ -export interface IInternalBizcardUpdateAvatarParams { - url: string; -} -/** - * 前端更新头像,通知客户端 返回结果定义 - * @apiName internal.bizcard.updateAvatar - */ -export interface IInternalBizcardUpdateAvatarResult { -} -/** - * 前端更新头像,通知客户端 - * @apiName internal.bizcard.updateAvatar - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function updateAvatar$(params: IInternalBizcardUpdateAvatarParams): Promise; -export default updateAvatar$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/updateAvatar.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/updateAvatar.js deleted file mode 100644 index a203380d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bizcard/updateAvatar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function updateAvatar$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.updateAvatar$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bizcard.updateAvatar",exports.updateAvatar$=updateAvatar$,exports.default=updateAvatar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/allOrgs.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/allOrgs.d.ts deleted file mode 100644 index 8eaeabbf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/allOrgs.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.blebusiness.allOrgs"; -/** - * 获取当前用户的所有企业信息 请求参数定义 - * @apiName internal.blebusiness.allOrgs - */ -export interface IInternalBlebusinessAllOrgsParams { -} -/** - * 获取当前用户的所有企业信息 返回结果定义 - * @apiName internal.blebusiness.allOrgs - */ -export interface IInternalBlebusinessAllOrgsResult { - /** DTOrganization数组的JSON字符串 */ - orgInfos: string; -} -/** - * 获取当前用户的所有企业信息 - * @apiName internal.blebusiness.allOrgs - * @supportVersion ios: 4.6.18 - */ -export declare function allOrgs$(params: IInternalBlebusinessAllOrgsParams): Promise; -export default allOrgs$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/allOrgs.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/allOrgs.js deleted file mode 100644 index 0a9c665c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/allOrgs.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function allOrgs$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.allOrgs$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.allOrgs",exports.allOrgs$=allOrgs$,exports.default=allOrgs$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/buildDeviceNick.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/buildDeviceNick.d.ts deleted file mode 100644 index 8671a2ea..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/buildDeviceNick.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.blebusiness.buildDeviceNick"; -/** - * 构建设备名称 请求参数定义 - * @apiName internal.blebusiness.buildDeviceNick - */ -export interface IInternalBlebusinessBuildDeviceNickParams { - /** 设备大类型 */ - devType: number; - /** 设备小类型 */ - devServId: number; - /** 设备序列号 */ - sn?: string; - /** 企业名 */ - orgName?: string; -} -/** - * 构建设备名称 返回结果定义 - * @apiName internal.blebusiness.buildDeviceNick - */ -export interface IInternalBlebusinessBuildDeviceNickResult { - /** 设备名 */ - deviceNick: string; -} -/** - * 构建设备名称 - * @apiName internal.blebusiness.buildDeviceNick - * @supportVersion ios: 4.6.18 - */ -export declare function buildDeviceNick$(params: IInternalBlebusinessBuildDeviceNickParams): Promise; -export default buildDeviceNick$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/buildDeviceNick.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/buildDeviceNick.js deleted file mode 100644 index d579da45..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/buildDeviceNick.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function buildDeviceNick$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.buildDeviceNick$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.buildDeviceNick",exports.buildDeviceNick$=buildDeviceNick$,exports.default=buildDeviceNick$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/currentMainOrgId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/currentMainOrgId.d.ts deleted file mode 100644 index c23a48a9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/currentMainOrgId.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.blebusiness.currentMainOrgId"; -/** - * 获取当前用户的主企业orgId信息 请求参数定义 - * @apiName internal.blebusiness.currentMainOrgId - */ -export interface IInternalBlebusinessCurrentMainOrgIdParams { -} -/** - * 获取当前用户的主企业orgId信息 返回结果定义 - * @apiName internal.blebusiness.currentMainOrgId - */ -export interface IInternalBlebusinessCurrentMainOrgIdResult { - mainOrgId: number; -} -/** - * 获取当前用户的主企业orgId信息 - * @apiName internal.blebusiness.currentMainOrgId - * @supportVersion ios: 4.6.18 - */ -export declare function currentMainOrgId$(params: IInternalBlebusinessCurrentMainOrgIdParams): Promise; -export default currentMainOrgId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/currentMainOrgId.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/currentMainOrgId.js deleted file mode 100644 index df3c70d1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/currentMainOrgId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function currentMainOrgId$(r){return common_1.ddSdk.invokeAPI(exports.apiName,r)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.currentMainOrgId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.currentMainOrgId",exports.currentMainOrgId$=currentMainOrgId$,exports.default=currentMainOrgId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getDeviceInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getDeviceInfo.d.ts deleted file mode 100644 index 89e3247c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getDeviceInfo.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.blebusiness.getDeviceInfo"; -/** - * 读取App端缓存的设备信息(如有必要再向服务端查询) 请求参数定义 - * @apiName internal.blebusiness.getDeviceInfo - */ -export interface IInternalBlebusinessGetDeviceInfoParams { - /** (设备ID) */ - devId: string; - /** 设备大类型 */ - devType: string; - /** 设备小类型 */ - devServId: string; -} -/** - * 读取App端缓存的设备信息(如有必要再向服务端查询) 返回结果定义 - * @apiName internal.blebusiness.getDeviceInfo - */ -export interface IInternalBlebusinessGetDeviceInfoResult { - /** DTBizDeviceModel的JSON字符串 */ - deviceModel: string; -} -/** - * 读取App端缓存的设备信息(如有必要再向服务端查询) - * @apiName internal.blebusiness.getDeviceInfo - * @supportVersion ios: 4.6.18 - */ -export declare function getDeviceInfo$(params: IInternalBlebusinessGetDeviceInfoParams): Promise; -export default getDeviceInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getDeviceInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getDeviceInfo.js deleted file mode 100644 index 0c808dd8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getDeviceInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDeviceInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDeviceInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.getDeviceInfo",exports.getDeviceInfo$=getDeviceInfo$,exports.default=getDeviceInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getEndorseModelWithSecret.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getEndorseModelWithSecret.d.ts deleted file mode 100644 index 79488e32..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getEndorseModelWithSecret.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.blebusiness.getEndorseModelWithSecret"; -/** - * 根据Secret在App端计算加签信息 请求参数定义 - * @apiName internal.blebusiness.getEndorseModelWithSecret - */ -export interface IInternalBlebusinessGetEndorseModelWithSecretParams { - /** 加密信息 */ - secret: string; - /** 蓝牙广播信息major属性 */ - major: number; - /** 蓝牙广播信息minor属性 */ - minor: number; -} -/** - * 根据Secret在App端计算加签信息 返回结果定义 - * @apiName internal.blebusiness.getEndorseModelWithSecret - */ -export interface IInternalBlebusinessGetEndorseModelWithSecretResult { - /** DTEndorseModel的JSON字符串 */ - endorseModel: string; -} -/** - * 根据Secret在App端计算加签信息 - * @apiName internal.blebusiness.getEndorseModelWithSecret - * @supportVersion ios: 4.6.18 android: 4.6.18 - */ -export declare function getEndorseModelWithSecret$(params: IInternalBlebusinessGetEndorseModelWithSecretParams): Promise; -export default getEndorseModelWithSecret$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getEndorseModelWithSecret.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getEndorseModelWithSecret.js deleted file mode 100644 index 197a7426..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getEndorseModelWithSecret.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getEndorseModelWithSecret$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getEndorseModelWithSecret$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.getEndorseModelWithSecret",exports.getEndorseModelWithSecret$=getEndorseModelWithSecret$,exports.default=getEndorseModelWithSecret$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getHandshakeModelFromEndorseModel.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getHandshakeModelFromEndorseModel.d.ts deleted file mode 100644 index bad67175..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getHandshakeModelFromEndorseModel.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.blebusiness.getHandshakeModelFromEndorseModel"; -/** - * 根据加签模型(DTEndorseModel)转换得到握手模型(DTHandshakeModel) 请求参数定义 - * @apiName internal.blebusiness.getHandshakeModelFromEndorseModel - */ -export interface IInternalBlebusinessGetHandshakeModelFromEndorseModelParams { - /** DTEndorseModel的JSON字符串 */ - endorseModel: string; -} -/** - * 根据加签模型(DTEndorseModel)转换得到握手模型(DTHandshakeModel) 返回结果定义 - * @apiName internal.blebusiness.getHandshakeModelFromEndorseModel - */ -export interface IInternalBlebusinessGetHandshakeModelFromEndorseModelResult { - /** DTHandshakeModel的JSON字符串 */ - handshakeModel: string; -} -/** - * 根据加签模型(DTEndorseModel)转换得到握手模型(DTHandshakeModel) - * @apiName internal.blebusiness.getHandshakeModelFromEndorseModel - * @supportVersion ios: 4.6.18 - */ -export declare function getHandshakeModelFromEndorseModel$(params: IInternalBlebusinessGetHandshakeModelFromEndorseModelParams): Promise; -export default getHandshakeModelFromEndorseModel$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getHandshakeModelFromEndorseModel.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getHandshakeModelFromEndorseModel.js deleted file mode 100644 index e6226eeb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/getHandshakeModelFromEndorseModel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getHandshakeModelFromEndorseModel$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getHandshakeModelFromEndorseModel$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.getHandshakeModelFromEndorseModel",exports.getHandshakeModelFromEndorseModel$=getHandshakeModelFromEndorseModel$,exports.default=getHandshakeModelFromEndorseModel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePage.d.ts deleted file mode 100644 index e28c2e21..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePage.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.blebusiness.popOrgCreatePage"; -/** - * 弹出通讯录团队创建组件页 请求参数定义 - * @apiName internal.blebusiness.popOrgCreatePage - */ -export interface IInternalBlebusinessPopOrgCreatePageParams { -} -/** - * 弹出通讯录团队创建组件页 返回结果定义 - * @apiName internal.blebusiness.popOrgCreatePage - */ -export interface IInternalBlebusinessPopOrgCreatePageResult { -} -/** - * 弹出通讯录团队创建组件页 - * @apiName internal.blebusiness.popOrgCreatePage - * @supportVersion ios: 4.6.18 - */ -export declare function popOrgCreatePage$(params: IInternalBlebusinessPopOrgCreatePageParams): Promise; -export default popOrgCreatePage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePage.js deleted file mode 100644 index c3939be7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function popOrgCreatePage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.popOrgCreatePage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.popOrgCreatePage",exports.popOrgCreatePage$=popOrgCreatePage$,exports.default=popOrgCreatePage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePageForProjector.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePageForProjector.d.ts deleted file mode 100644 index e24c9b24..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePageForProjector.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.blebusiness.popOrgCreatePageForProjector"; -/** - * 弹出通讯录团队创建组件页 - F线专用 请求参数定义 - * @apiName internal.blebusiness.popOrgCreatePageForProjector - */ -export interface IInternalBlebusinessPopOrgCreatePageForProjectorParams { -} -/** - * 弹出通讯录团队创建组件页 - F线专用 返回结果定义 - * @apiName internal.blebusiness.popOrgCreatePageForProjector - */ -export interface IInternalBlebusinessPopOrgCreatePageForProjectorResult { -} -/** - * 弹出通讯录团队创建组件页 - F线专用 - * @apiName internal.blebusiness.popOrgCreatePageForProjector - * @supportVersion ios: 4.6.18 - */ -export declare function popOrgCreatePageForProjector$(params: IInternalBlebusinessPopOrgCreatePageForProjectorParams): Promise; -export default popOrgCreatePageForProjector$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePageForProjector.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePageForProjector.js deleted file mode 100644 index 7e1f4461..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/popOrgCreatePageForProjector.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function popOrgCreatePageForProjector$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.popOrgCreatePageForProjector$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.popOrgCreatePageForProjector",exports.popOrgCreatePageForProjector$=popOrgCreatePageForProjector$,exports.default=popOrgCreatePageForProjector$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/queryDingWifiDevicesWithOrg.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/queryDingWifiDevicesWithOrg.d.ts deleted file mode 100644 index 3ab3bb43..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/queryDingWifiDevicesWithOrg.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.blebusiness.queryDingWifiDevicesWithOrg"; -/** - * 查询DING网络设备列表(带企业关系) 请求参数定义 - * @apiName internal.blebusiness.queryDingWifiDevicesWithOrg - */ -export interface IInternalBlebusinessQueryDingWifiDevicesWithOrgParams { - /** 设备小类型 */ - devServId: number; - /** 设备序列号 */ - sn?: string; - /** Mac地址 */ - mac?: string; -} -/** - * 查询DING网络设备列表(带企业关系) 返回结果定义 - * @apiName internal.blebusiness.queryDingWifiDevicesWithOrg - */ -export interface IInternalBlebusinessQueryDingWifiDevicesWithOrgResult { - /** DTAlphaDeviceModel数组的JSON字符串 */ - devices: string; -} -/** - * 查询DING网络设备列表(带企业关系) - * @apiName internal.blebusiness.queryDingWifiDevicesWithOrg - * @supportVersion ios: 4.6.18 - */ -export declare function queryDingWifiDevicesWithOrg$(params: IInternalBlebusinessQueryDingWifiDevicesWithOrgParams): Promise; -export default queryDingWifiDevicesWithOrg$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/queryDingWifiDevicesWithOrg.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/queryDingWifiDevicesWithOrg.js deleted file mode 100644 index 28b7557e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/queryDingWifiDevicesWithOrg.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryDingWifiDevicesWithOrg$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryDingWifiDevicesWithOrg$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.queryDingWifiDevicesWithOrg",exports.queryDingWifiDevicesWithOrg$=queryDingWifiDevicesWithOrg$,exports.default=queryDingWifiDevicesWithOrg$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/reportNetIsolate.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/reportNetIsolate.d.ts deleted file mode 100644 index 7cadd66a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/reportNetIsolate.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.blebusiness.reportNetIsolate"; -/** - * 上报网络隔离情况(F线) 请求参数定义 - * @apiName internal.blebusiness.reportNetIsolate - */ -export interface IInternalBlebusinessReportNetIsolateParams { - /** 当前连接WIFI的SSID */ - ssid: string; - /** 设备大类型 */ - devType: string; - /** IP地址 */ - ip: string; -} -/** - * 上报网络隔离情况(F线) 返回结果定义 - * @apiName internal.blebusiness.reportNetIsolate - */ -export interface IInternalBlebusinessReportNetIsolateResult { -} -/** - * 上报网络隔离情况(F线) - * @apiName internal.blebusiness.reportNetIsolate - * @supportVersion ios: 4.6.18 - */ -export declare function reportNetIsolate$(params: IInternalBlebusinessReportNetIsolateParams): Promise; -export default reportNetIsolate$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/reportNetIsolate.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/reportNetIsolate.js deleted file mode 100644 index 933fc27e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/reportNetIsolate.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function reportNetIsolate$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.reportNetIsolate$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.reportNetIsolate",exports.reportNetIsolate$=reportNetIsolate$,exports.default=reportNetIsolate$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/showNotifyDingCard.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/showNotifyDingCard.d.ts deleted file mode 100644 index 0c14e6d5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/showNotifyDingCard.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.blebusiness.showNotifyDingCard"; -/** - * 弹出DING卡提示框 请求参数定义 - * @apiName internal.blebusiness.showNotifyDingCard - */ -export interface IInternalBlebusinessShowNotifyDingCardParams { - orgId: number; - /** 企业LOGO的mediaId */ - logoMediaId?: string; -} -/** - * 弹出DING卡提示框 返回结果定义 - * @apiName internal.blebusiness.showNotifyDingCard - */ -export interface IInternalBlebusinessShowNotifyDingCardResult { - [key: string]: any; -} -/** - * 弹出DING卡提示框 - * @apiName internal.blebusiness.showNotifyDingCard - * @supportVersion ios: 4.6.18 - */ -export declare function showNotifyDingCard$(params: IInternalBlebusinessShowNotifyDingCardParams): Promise; -export default showNotifyDingCard$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/showNotifyDingCard.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/showNotifyDingCard.js deleted file mode 100644 index 6803b0c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/blebusiness/showNotifyDingCard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showNotifyDingCard$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showNotifyDingCard$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.blebusiness.showNotifyDingCard",exports.showNotifyDingCard$=showNotifyDingCard$,exports.default=showNotifyDingCard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/bluetoothState.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/bluetoothState.d.ts deleted file mode 100644 index 91bbef4e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/bluetoothState.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.bleengine.bluetoothState"; -/** - * 查询操作系统蓝牙状态 请求参数定义 - * @apiName internal.bleengine.bluetoothState - */ -export interface IInternalBleengineBluetoothStateParams { - [key: string]: any; -} -/** - * 查询操作系统蓝牙状态 返回结果定义 - * @apiName internal.bleengine.bluetoothState - */ -export interface IInternalBleengineBluetoothStateResult { - bluetoothState: number; -} -/** - * 查询操作系统蓝牙状态 - * @apiName internal.bleengine.bluetoothState - * @supportVersion ios: 4.6.18 - */ -export declare function bluetoothState$(params: IInternalBleengineBluetoothStateParams): Promise; -export default bluetoothState$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/bluetoothState.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/bluetoothState.js deleted file mode 100644 index 559318fb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/bluetoothState.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bluetoothState$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.bluetoothState$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bleengine.bluetoothState",exports.bluetoothState$=bluetoothState$,exports.default=bluetoothState$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/checkEnv.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/checkEnv.d.ts deleted file mode 100644 index 520fb066..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/checkEnv.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.bleengine.checkEnv"; -/** - * 检查蓝牙引擎环境 请求参数定义 - * @apiName internal.bleengine.checkEnv - */ -export interface IInternalBleengineCheckEnvParams { - [key: string]: any; -} -/** - * 检查蓝牙引擎环境 返回结果定义 - * @apiName internal.bleengine.checkEnv - */ -export interface IInternalBleengineCheckEnvResult { - result: boolean; -} -/** - * 检查蓝牙引擎环境 - * @apiName internal.bleengine.checkEnv - * @supportVersion ios: 4.6.18 - */ -export declare function checkEnv$(params: IInternalBleengineCheckEnvParams): Promise; -export default checkEnv$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/checkEnv.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/checkEnv.js deleted file mode 100644 index c683308e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/checkEnv.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkEnv$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkEnv$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bleengine.checkEnv",exports.checkEnv$=checkEnv$,exports.default=checkEnv$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/connectDevice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/connectDevice.d.ts deleted file mode 100644 index ff31e97a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/connectDevice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.bleengine.connectDevice"; -/** - * 蓝牙直接连接设备 请求参数定义 - * @apiName internal.bleengine.connectDevice - */ -export interface IInternalBleengineConnectDeviceParams { - [key: string]: any; -} -/** - * 蓝牙直接连接设备 返回结果定义 - * @apiName internal.bleengine.connectDevice - */ -export interface IInternalBleengineConnectDeviceResult { - result: boolean; -} -/** - * 蓝牙直接连接设备 - * @apiName internal.bleengine.connectDevice - * @supportVersion ios: 4.6.18 - */ -export declare function connectDevice$(params: IInternalBleengineConnectDeviceParams): Promise; -export default connectDevice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/connectDevice.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/connectDevice.js deleted file mode 100644 index e85f6639..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/connectDevice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function connectDevice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.connectDevice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bleengine.connectDevice",exports.connectDevice$=connectDevice$,exports.default=connectDevice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/request.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/request.d.ts deleted file mode 100644 index 1befa359..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/request.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.bleengine.request"; -/** - * 发送JSON转蓝牙RPC请求 请求参数定义 - * @apiName internal.bleengine.request - */ -export interface IInternalBleengineRequestParams { - /** string型(蓝牙RPC名),必选 */ - method: string; - /** string型(入参实际的Model类型),可选 */ - model?: string; - /** string型(入参实际的Model内容,JSON),可选 */ - inModelContent?: string; - /** 出参实际的Model类型 */ - outModel?: string; - /** 超时时间 */ - timeout?: number; -} -/** - * 发送JSON转蓝牙RPC请求 返回结果定义 - * @apiName internal.bleengine.request - */ -export interface IInternalBleengineRequestResult { - /** 出参实际的Model内容 */ - result: string; -} -/** - * 发送JSON转蓝牙RPC请求 - * @apiName internal.bleengine.request - * @supportVersion ios: 4.6.18 - */ -export declare function request$(params: IInternalBleengineRequestParams): Promise; -export default request$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/request.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/request.js deleted file mode 100644 index 2fb01358..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/request.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function request$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.request$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bleengine.request",exports.request$=request$,exports.default=request$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStart.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStart.d.ts deleted file mode 100644 index 6a67a921..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStart.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.bleengine.scanStart"; -/** - * 启动蓝牙引擎扫描智能硬件 请求参数定义 - * @apiName internal.bleengine.scanStart - */ -export interface IInternalBleengineScanStartParams { - /** (JSON), 必选 */ - queryParams: string; -} -/** - * 启动蓝牙引擎扫描智能硬件 返回结果定义 - * @apiName internal.bleengine.scanStart - */ -export interface IInternalBleengineScanStartResult { - /** 启动成功:true,启动失败:false */ - result: boolean; -} -/** - * 启动蓝牙引擎扫描智能硬件 - * @apiName internal.bleengine.scanStart - * @supportVersion ios: 4.6.18 - */ -export declare function scanStart$(params: IInternalBleengineScanStartParams): Promise; -export default scanStart$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStart.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStart.js deleted file mode 100644 index 0093478c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStart.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scanStart$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.scanStart$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bleengine.scanStart",exports.scanStart$=scanStart$,exports.default=scanStart$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStop.d.ts deleted file mode 100644 index 70939991..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.bleengine.scanStop"; -/** - * 停止蓝牙引擎扫描智能硬件 请求参数定义 - * @apiName internal.bleengine.scanStop - */ -export interface IInternalBleengineScanStopParams { - [key: string]: any; -} -/** - * 停止蓝牙引擎扫描智能硬件 返回结果定义 - * @apiName internal.bleengine.scanStop - */ -export interface IInternalBleengineScanStopResult { - result: boolean; -} -/** - * 停止蓝牙引擎扫描智能硬件 - * @apiName internal.bleengine.scanStop - * @supportVersion ios: 4.6.18 - */ -export declare function scanStop$(params: IInternalBleengineScanStopParams): Promise; -export default scanStop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStop.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStop.js deleted file mode 100644 index ffa924da..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/bleengine/scanStop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scanStop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.scanStop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.bleengine.scanStop",exports.scanStop$=scanStop$,exports.default=scanStop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/restore.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/restore.d.ts deleted file mode 100644 index 972eb397..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/restore.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.cache.restore"; -/** - * 还原javascript环境上下文信息以及客户端crash时保存的上下信息 请求参数定义 - * @apiName internal.cache.restore - */ -export interface IInternalCacheRestoreParams { - /** 类型,比如人脸打卡为:FaceAttendance */ - bizType: string; - /** 企业id */ - corpId: string; -} -/** - * 还原javascript环境上下文信息以及客户端crash时保存的上下信息 返回结果定义 - * @apiName internal.cache.restore - */ -export interface IInternalCacheRestoreResult { - /** 原样返回 */ - data: string; - /** 原样返回 */ - bizType: string; - /** 原样返回 */ - corpId: string; - /** 附加数据 */ - extData: any; -} -/** - * 还原javascript环境上下文信息以及客户端crash时保存的上下信息 - * @apiName internal.cache.restore - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function restore$(params: IInternalCacheRestoreParams): Promise; -export default restore$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/restore.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/restore.js deleted file mode 100644 index f2d22817..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/restore.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function restore$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.restore$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cache.restore",exports.restore$=restore$,exports.default=restore$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/save.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/save.d.ts deleted file mode 100644 index 2497caf2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/save.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.cache.save"; -/** - * 保存javascript环境上下文信息 请求参数定义 - * @apiName internal.cache.save - */ -export interface IInternalCacheSaveParams { - /** 需要存储的数据,数据内容由业务自定义,调用恢复接口(restore)时原样返回 */ - data: any; - /** 企业id */ - corpId: string; - /** 业务类型,比如人脸打卡约定为:FaceAttendance */ - bizType: string; -} -/** - * 保存javascript环境上下文信息 返回结果定义 - * @apiName internal.cache.save - */ -export interface IInternalCacheSaveResult { -} -/** - * 保存javascript环境上下文信息 - * @apiName internal.cache.save - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function save$(params: IInternalCacheSaveParams): Promise; -export default save$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/save.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/save.js deleted file mode 100644 index 8d77f224..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cache/save.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function save$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.save$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cache.save",exports.save$=save$,exports.default=save$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/biometric.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/biometric.d.ts deleted file mode 100644 index 4975306b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/biometric.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.certify.biometric"; -/** - * 调用活体拍照 请求参数定义 - * @apiName internal.certify.biometric - */ -export interface IInternalCertifyBiometricParams { - [key: string]: any; -} -/** - * 调用活体拍照 返回结果定义 - * @apiName internal.certify.biometric - */ -export interface IInternalCertifyBiometricResult { - [key: string]: any; -} -/** - * 调用活体拍照 - * @apiName internal.certify.biometric - * @supportVersion ios: 2.12.0 android: 2.12.0 - */ -export declare function biometric$(params: IInternalCertifyBiometricParams): Promise; -export default biometric$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/biometric.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/biometric.js deleted file mode 100644 index 4f163ba1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/biometric.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function biometric$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.biometric$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.certify.biometric",exports.biometric$=biometric$,exports.default=biometric$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/step.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/step.d.ts deleted file mode 100644 index 1a0ad5c9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/step.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.certify.step"; -/** - * 查询活体认证状态 请求参数定义 - * @apiName internal.certify.step - */ -export interface IInternalCertifyStepParams { - [key: string]: any; -} -/** - * 查询活体认证状态 返回结果定义 - * @apiName internal.certify.step - */ -export interface IInternalCertifyStepResult { - [key: string]: any; -} -/** - * 查询活体认证状态 - * @apiName internal.certify.step - * @supportVersion ios: 2.12.0 android: 2.12.0 - */ -export declare function step$(params: IInternalCertifyStepParams): Promise; -export default step$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/step.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/step.js deleted file mode 100644 index 18ce353a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/step.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function step$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.step$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.certify.step",exports.step$=step$,exports.default=step$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/submit.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/submit.d.ts deleted file mode 100644 index 5fc2e26e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/submit.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.certify.submit"; -/** - * 上班助手 请求参数定义 - * @apiName internal.certify.submit - */ -export interface IInternalCertifySubmitParams { - [key: string]: any; -} -/** - * 上班助手 返回结果定义 - * @apiName internal.certify.submit - */ -export interface IInternalCertifySubmitResult { - [key: string]: any; -} -/** - * 上班助手 - * @apiName internal.certify.submit - * @supportVersion ios: 2.12.0 android: 2.12.0 - */ -export declare function submit$(params: IInternalCertifySubmitParams): Promise; -export default submit$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/submit.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/submit.js deleted file mode 100644 index facfc491..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/submit.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function submit$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.submit$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.certify.submit",exports.submit$=submit$,exports.default=submit$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/takePhoto.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/takePhoto.d.ts deleted file mode 100644 index e520387a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/takePhoto.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.certify.takePhoto"; -/** - * 拍照 请求参数定义 - * @apiName internal.certify.takePhoto - */ -export interface IInternalCertifyTakePhotoParams { - [key: string]: any; -} -/** - * 拍照 返回结果定义 - * @apiName internal.certify.takePhoto - */ -export interface IInternalCertifyTakePhotoResult { - [key: string]: any; -} -/** - * 拍照 - * @apiName internal.certify.takePhoto - * @supportVersion ios: 2.12.0 android: 2.12.0 - */ -export declare function takePhoto$(params: IInternalCertifyTakePhotoParams): Promise; -export default takePhoto$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/takePhoto.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/takePhoto.js deleted file mode 100644 index 7fc68278..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/certify/takePhoto.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function takePhoto$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.takePhoto$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.certify.takePhoto",exports.takePhoto$=takePhoto$,exports.default=takePhoto$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/infoExist.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/infoExist.d.ts deleted file mode 100644 index 6c762902..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/infoExist.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.channel.infoExist"; -/** - * 检查客户端上服务窗是否已开通 请求参数定义 - * @apiName internal.channel.infoExist - */ -export interface IInternalChannelInfoExistParams { - [key: string]: any; -} -/** - * 检查客户端上服务窗是否已开通 返回结果定义 - * @apiName internal.channel.infoExist - */ -export interface IInternalChannelInfoExistResult { - [key: string]: any; -} -/** - * 检查客户端上服务窗是否已开通 - * @apiName internal.channel.infoExist - * @supportVersion ios: 3.2.0 android: 3.2.0 - */ -export declare function infoExist$(params: IInternalChannelInfoExistParams): Promise; -export default infoExist$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/infoExist.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/infoExist.js deleted file mode 100644 index 24d60d4e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/infoExist.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function infoExist$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.infoExist$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.channel.infoExist",exports.infoExist$=infoExist$,exports.default=infoExist$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/openPage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/openPage.d.ts deleted file mode 100644 index ea4019ec..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/openPage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.channel.openPage"; -/** - * 打开指定企业服务窗相关页面 请求参数定义 - * @apiName internal.channel.openPage - */ -export interface IInternalChannelOpenPageParams { - [key: string]: any; -} -/** - * 打开指定企业服务窗相关页面 返回结果定义 - * @apiName internal.channel.openPage - */ -export interface IInternalChannelOpenPageResult { - [key: string]: any; -} -/** - * 打开指定企业服务窗相关页面 - * @apiName internal.channel.openPage - * @supportVersion ios: 3.2.0 android: 3.2.0 - */ -export declare function openPage$(params: IInternalChannelOpenPageParams): Promise; -export default openPage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/openPage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/openPage.js deleted file mode 100644 index 3a1bc819..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/openPage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.channel.openPage",exports.openPage$=openPage$,exports.default=openPage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/publish.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/publish.d.ts deleted file mode 100644 index 3d89d241..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/publish.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "internal.channel.publish"; -/** - * 向统一事件框架发送事件消息 请求参数定义 - * @apiName internal.channel.publish - */ -export interface IInternalChannelPublishParams { - /** 通道名称 */ - namespace: string; - /** 事件名称 */ - eventName: string; - /** 数据,可为空 */ - data?: any; - /** 是需要缓存 */ - shouldUpdateCache: boolean; -} -/** - * 向统一事件框架发送事件消息 返回结果定义 - * @apiName internal.channel.publish - */ -export interface IInternalChannelPublishResult { - [key: string]: any; -} -/** - * 向统一事件框架发送事件消息 - * @apiName internal.channel.publish - * @supportVersion ios: 4.6.1 android: 4.6.1 - */ -export declare function publish$(params: IInternalChannelPublishParams): Promise; -export default publish$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/publish.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/publish.js deleted file mode 100644 index 159f4e49..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/publish.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function publish$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.publish$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.channel.publish",exports.publish$=publish$,exports.default=publish$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/subscribe.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/subscribe.d.ts deleted file mode 100644 index 07260385..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/subscribe.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -export declare const apiName = "internal.channel.subscribe"; -/** - * 向统一事件框架订阅事件监听 请求参数定义 - * @apiName internal.channel.subscribe - */ -export interface IInternalChannelSubscribeParams { - /** 通道名称 */ - namespace: string; - /** 事件名称 */ - eventName: string; -} -/** - * 向统一事件框架订阅事件监听 返回结果定义 - * @apiName internal.channel.subscribe - */ -export declare type IInternalChannelSubscribeResult = { - /** 通道名称 */ - namespace: string; - /** 事件名称 */ - eventName: string; - /** 数据,可为空 */ - data?: any; - /** 是否是缓存数据 */ - isCached: boolean; - /** 缓存时间戳,单位ms */ - cacheTimestamp: number; -} | {}; -/** - * 向统一事件框架订阅事件监听 - * @description 请不要单独使用此接口,而是使用uniEvent plugin来监听 - * @apiName internal.channel.subscribe - * @supportVersion ios: 4.6.1 android: 4.6.1 - */ -export declare function subscribe$(params: IInternalChannelSubscribeParams): Promise; -export default subscribe$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/subscribe.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/subscribe.js deleted file mode 100644 index c70d1fa9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/subscribe.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function subscribe$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.subscribe$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.channel.subscribe",exports.subscribe$=subscribe$,exports.default=subscribe$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/unsubscribe.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/unsubscribe.d.ts deleted file mode 100644 index 25521c07..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/unsubscribe.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.channel.unsubscribe"; -/** - * 向统一事件框架取消订阅事件监听 请求参数定义 - * @apiName internal.channel.unsubscribe - */ -export interface IInternalChannelUnsubscribeParams { - /** 通道名称 */ - namespace: string; - /** 事件名称 */ - eventName: string; -} -/** - * 向统一事件框架取消订阅事件监听 返回结果定义 - * @apiName internal.channel.unsubscribe - */ -export interface IInternalChannelUnsubscribeResult { - [key: string]: any; -} -/** - * 向统一事件框架取消订阅事件监听 - * @description 请不要单独使用此接口,而是使用uniEvent plugin来监听 - * @apiName internal.channel.unsubscribe - * @supportVersion ios: 4.6.1 android: 4.6.1 - */ -export declare function unsubscribe$(params: IInternalChannelUnsubscribeParams): Promise; -export default unsubscribe$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/unsubscribe.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/unsubscribe.js deleted file mode 100644 index 476eeba3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/channel/unsubscribe.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unsubscribe$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unsubscribe$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.channel.unsubscribe",exports.unsubscribe$=unsubscribe$,exports.default=unsubscribe$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/applyJoinGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/applyJoinGroup.d.ts deleted file mode 100644 index 4b416f34..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/applyJoinGroup.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.chat.applyJoinGroup"; -/** - * 在群主需要审核的群,发送请求入群申请 请求参数定义 - * @apiName internal.chat.applyJoinGroup - */ -export interface IInternalChatApplyJoinGroupParams { - /** 群id */ - cid: string; - /** 申请来源 */ - origin: string; -} -/** - * 在群主需要审核的群,发送请求入群申请 返回结果定义 - * @apiName internal.chat.applyJoinGroup - */ -export interface IInternalChatApplyJoinGroupResult { - [key: string]: any; -} -/** - * 在群主需要审核的群,发送请求入群申请 - * @apiName internal.chat.applyJoinGroup - * @supportVersion ios: 4.6.8 android: 4.6.8 - */ -export declare function applyJoinGroup$(params: IInternalChatApplyJoinGroupParams): Promise; -export default applyJoinGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/applyJoinGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/applyJoinGroup.js deleted file mode 100644 index 75137876..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/applyJoinGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function applyJoinGroup$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.applyJoinGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.applyJoinGroup",exports.applyJoinGroup$=applyJoinGroup$,exports.default=applyJoinGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchDisplayNames.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchDisplayNames.d.ts deleted file mode 100644 index f425c69a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchDisplayNames.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.chat.batchDisplayNames"; -/** - * 根据openIds和conversationId批量获取对应的显示名 请求参数定义 - * @apiName internal.chat.batchDisplayNames - */ -export interface IInternalChatBatchDisplayNamesParams { - openIds: number[]; - conversationId: string; -} -/** - * 根据openIds和conversationId批量获取对应的显示名 返回结果定义 - * @apiName internal.chat.batchDisplayNames - */ -export interface IInternalChatBatchDisplayNamesResult { - displayNames: any; -} -/** - * 根据openIds和conversationId批量获取对应的显示名 - * @apiName internal.chat.batchDisplayNames - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function batchDisplayNames$(params: IInternalChatBatchDisplayNamesParams): Promise; -export default batchDisplayNames$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchDisplayNames.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchDisplayNames.js deleted file mode 100644 index efb29ac2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchDisplayNames.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function batchDisplayNames$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.batchDisplayNames$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.batchDisplayNames",exports.batchDisplayNames$=batchDisplayNames$,exports.default=batchDisplayNames$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchUserProfiles.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchUserProfiles.d.ts deleted file mode 100644 index 8976db77..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchUserProfiles.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.batchUserProfiles"; -/** - * 根据openIds批量获取对应的profiles 请求参数定义 - * @apiName internal.chat.batchUserProfiles - */ -export interface IInternalChatBatchUserProfilesParams { - openIds: number[]; -} -/** - * 根据openIds批量获取对应的profiles 返回结果定义 - * @apiName internal.chat.batchUserProfiles - */ -export interface IInternalChatBatchUserProfilesResult { - userProfiles: any; -} -/** - * 根据openIds批量获取对应的profiles - * @apiName internal.chat.batchUserProfiles - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function batchUserProfiles$(params: IInternalChatBatchUserProfilesParams): Promise; -export default batchUserProfiles$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchUserProfiles.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchUserProfiles.js deleted file mode 100644 index ba3b0d95..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/batchUserProfiles.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function batchUserProfiles$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.batchUserProfiles$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.batchUserProfiles",exports.batchUserProfiles$=batchUserProfiles$,exports.default=batchUserProfiles$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/clearDraft.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/clearDraft.d.ts deleted file mode 100644 index 971c64b9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/clearDraft.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.clearDraft"; -/** - * 清空messageVC输入框中的草稿 请求参数定义 - * @apiName internal.chat.clearDraft - */ -export interface IInternalChatClearDraftParams { - /** 会话id */ - cid: string; -} -/** - * 清空messageVC输入框中的草稿 返回结果定义 - * @apiName internal.chat.clearDraft - */ -export interface IInternalChatClearDraftResult { -} -/** - * 清空messageVC输入框中的草稿 - * @apiName internal.chat.clearDraft - * @supportVersion ios: 4.7.7 android: 4.7.7 - */ -export declare function clearDraft$(params: IInternalChatClearDraftParams): Promise; -export default clearDraft$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/clearDraft.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/clearDraft.js deleted file mode 100644 index 23321280..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/clearDraft.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function clearDraft$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.clearDraft$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.clearDraft",exports.clearDraft$=clearDraft$,exports.default=clearDraft$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/closeTopOneBoxCard.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/closeTopOneBoxCard.d.ts deleted file mode 100644 index 5707dd2f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/closeTopOneBoxCard.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.chat.closeTopOneBoxCard"; -/** - * 关闭聊天的OneBox吊顶中的某个吊顶。 请求参数定义 - * @apiName internal.chat.closeTopOneBoxCard - */ -export interface IInternalChatCloseTopOneBoxCardParams { - /** 会话id */ - cid: string; - /** 吊顶id */ - bid: string; -} -/** - * 关闭聊天的OneBox吊顶中的某个吊顶。 返回结果定义 - * @apiName internal.chat.closeTopOneBoxCard - */ -export interface IInternalChatCloseTopOneBoxCardResult { -} -/** - * 关闭聊天的OneBox吊顶中的某个吊顶。 - * @apiName internal.chat.closeTopOneBoxCard - * @supportVersion ios: 4.7.30 android: 4.7.30 - * @author iOS:济凡,Android:彦海 - */ -export declare function closeTopOneBoxCard$(params: IInternalChatCloseTopOneBoxCardParams): Promise; -export default closeTopOneBoxCard$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/closeTopOneBoxCard.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/closeTopOneBoxCard.js deleted file mode 100644 index 12cc3c2a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/closeTopOneBoxCard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closeTopOneBoxCard$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.closeTopOneBoxCard$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.closeTopOneBoxCard",exports.closeTopOneBoxCard$=closeTopOneBoxCard$,exports.default=closeTopOneBoxCard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/createApprovalGroup.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/createApprovalGroup.d.ts deleted file mode 100644 index 4fce2f44..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/createApprovalGroup.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.chat.createApprovalGroup"; -/** - * 创建审批群 请求参数定义 - * @apiName internal.chat.createApprovalGroup - */ -export interface IInternalChatCreateApprovalGroupParams { - /** 已选择staff’s */ - selectedEmployeeIds: string[]; - /** 企业Id */ - corpId: string; - /** 默认群名称 */ - groupName: string; - /** 审批单id */ - processInstanceId: string; -} -/** - * 创建审批群 返回结果定义 - * @apiName internal.chat.createApprovalGroup - */ -export interface IInternalChatCreateApprovalGroupResult { - /** 会话Id */ - cid: string; -} -/** - * 创建审批群 - * @apiName internal.chat.createApprovalGroup - * @supportVersion ios: 4.6.8 android: 4.6.8 - */ -export declare function createApprovalGroup$(params: IInternalChatCreateApprovalGroupParams): Promise; -export default createApprovalGroup$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/createApprovalGroup.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/createApprovalGroup.js deleted file mode 100644 index 57e7a3ef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/createApprovalGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createApprovalGroup$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createApprovalGroup$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.createApprovalGroup",exports.createApprovalGroup$=createApprovalGroup$,exports.default=createApprovalGroup$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/emotionTranslater.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/emotionTranslater.d.ts deleted file mode 100644 index 7f241f03..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/emotionTranslater.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "internal.chat.emotionTranslater"; -/** - * 表情翻译器 请求参数定义 - * @apiName internal.chat.emotionTranslater - */ -export interface IInternalChatEmotionTranslaterParams { - /** 表情的key列表,形如"[鼓掌]",支持中英文两种。如果列表为空,返回所有表情元素 */ - emotionKeys: string[]; -} -/** - * 表情翻译器 返回结果定义 - * @apiName internal.chat.emotionTranslater - */ -export interface IInternalChatEmotionTranslaterResult { - data: Array<{ - /** 表情的key,形如:{"en_US" : "[Smile]", "zh_CN": "[微笑]"} */ - emotionKey: string; - /** 表情的Id,由服务端下发 */ - emotionId: string; - /** 动态表情的Id,由服务端下发 */ - dynamicEmotionId: string; - /** 表情的版本,由服务端下发 */ - emotionVersion: string; - }>; -} -/** - * 表情翻译器 - * @apiName internal.chat.emotionTranslater - * @supportVersion ios: 6.0.10 android: 6.0.10 pc: 6.0.10 - * @author iOS: 鱼非 android: 千凡 windows: 仟晨 mac: 仟晨 - */ -export declare function emotionTranslater$(params: IInternalChatEmotionTranslaterParams): Promise; -export default emotionTranslater$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/emotionTranslater.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/emotionTranslater.js deleted file mode 100644 index e5429555..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/emotionTranslater.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function emotionTranslater$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.emotionTranslater$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.emotionTranslater",exports.emotionTranslater$=emotionTranslater$,exports.default=emotionTranslater$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/encryptOpenId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/encryptOpenId.d.ts deleted file mode 100644 index 32cc22e3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/encryptOpenId.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.encryptOpenId"; -/** - * 把普通的uid转换成加密的uid 请求参数定义 - * @apiName internal.chat.encryptOpenId - */ -export interface IInternalChatEncryptOpenIdParams { - openId: number; -} -/** - * 把普通的uid转换成加密的uid 返回结果定义 - * @apiName internal.chat.encryptOpenId - */ -export interface IInternalChatEncryptOpenIdResult { - encryptOpenId: any; -} -/** - * 把普通的uid转换成加密的uid - * @apiName internal.chat.encryptOpenId - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function encryptOpenId$(params: IInternalChatEncryptOpenIdParams): Promise; -export default encryptOpenId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/encryptOpenId.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/encryptOpenId.js deleted file mode 100644 index 292ba07b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/encryptOpenId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function encryptOpenId$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.encryptOpenId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.encryptOpenId",exports.encryptOpenId$=encryptOpenId$,exports.default=encryptOpenId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/focusMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/focusMessage.d.ts deleted file mode 100644 index 71abe79d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/focusMessage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.focusMessage"; -/** - * 根据messageId在会话页面跳转到对应的位置 请求参数定义 - * @apiName internal.chat.focusMessage - */ -export interface IInternalChatFocusMessageParams { - messageId: number; - conversationId: string; -} -/** - * 根据messageId在会话页面跳转到对应的位置 返回结果定义 - * @apiName internal.chat.focusMessage - */ -export interface IInternalChatFocusMessageResult { -} -/** - * 根据messageId在会话页面跳转到对应的位置 - * @apiName internal.chat.focusMessage - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function focusMessage$(params: IInternalChatFocusMessageParams): Promise; -export default focusMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/focusMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/focusMessage.js deleted file mode 100644 index 7bea0fd4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/focusMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function focusMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.focusMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.focusMessage",exports.focusMessage$=focusMessage$,exports.default=focusMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/generateUrl.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/generateUrl.d.ts deleted file mode 100644 index c1f5674a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/generateUrl.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.chat.generateUrl"; -/** - * 通过mediaId换取缩略图,大图,原图url 请求参数定义 - * @apiName internal.chat.generateUrl - */ -export interface IInternalChatGenerateUrlParams { - /** mediaId列表 */ - mediaIds: string[]; -} -/** - * 通过mediaId换取缩略图,大图,原图url 返回结果定义 - * @apiName internal.chat.generateUrl - */ -export interface IInternalChatGenerateUrlResult { - [mediaId: string]: { - originalUrl: string; - bigUrl: string; - thumbUrl: string; - }; -} -/** - * 通过mediaId换取缩略图,大图,原图url - * @apiName internal.chat.generateUrl - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function generateUrl$(params: IInternalChatGenerateUrlParams): Promise; -export default generateUrl$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/generateUrl.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/generateUrl.js deleted file mode 100644 index 98ffb584..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/generateUrl.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function generateUrl$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.generateUrl$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.generateUrl",exports.generateUrl$=generateUrl$,exports.default=generateUrl$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvInfo.d.ts deleted file mode 100644 index 81577ee8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvInfo.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.chat.getConvInfo"; -/** - * 获取指定会话信息 请求参数定义 - * @apiName internal.chat.getConvInfo - */ -export interface IInternalChatGetConvInfoParams { - cid: string; -} -/** - * 获取指定会话信息 返回结果定义 - * @apiName internal.chat.getConvInfo - */ -export interface IInternalChatGetConvInfoResult { - chatLabelType: number; - type: number; - companyGroupInfo?: { - orgId: string; - orgName: string; - }; - tag?: string; -} -/** - * 获取指定会话信息 - * @apiName internal.chat.getConvInfo - * @supportVersion pc: 4.6.42 - */ -export declare function getConvInfo$(params: IInternalChatGetConvInfoParams): Promise; -export default getConvInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvInfo.js deleted file mode 100644 index 5aa1420c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getConvInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getConvInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getConvInfo",exports.getConvInfo$=getConvInfo$,exports.default=getConvInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvUnreadMsgCount.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvUnreadMsgCount.d.ts deleted file mode 100644 index c3442d50..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvUnreadMsgCount.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.getConvUnreadMsgCount"; -/** - * 功能描述获取对应会话的未读消息数量 请求参数定义 - * @apiName internal.chat.getConvUnreadMsgCount - */ -export interface IInternalChatGetConvUnreadMsgCountParams { - cid: string; -} -/** - * 功能描述获取对应会话的未读消息数量 返回结果定义 - * @apiName internal.chat.getConvUnreadMsgCount - */ -export interface IInternalChatGetConvUnreadMsgCountResult { - count: number; -} -/** - * 功能描述获取对应会话的未读消息数量 - * @apiName internal.chat.getConvUnreadMsgCount - * @supportVersion ios: 4.6.27 android: 4.6.27 - */ -export declare function getConvUnreadMsgCount$(params: IInternalChatGetConvUnreadMsgCountParams): Promise; -export default getConvUnreadMsgCount$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvUnreadMsgCount.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvUnreadMsgCount.js deleted file mode 100644 index cb6356fc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConvUnreadMsgCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getConvUnreadMsgCount$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getConvUnreadMsgCount$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getConvUnreadMsgCount",exports.getConvUnreadMsgCount$=getConvUnreadMsgCount$,exports.default=getConvUnreadMsgCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConversations.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConversations.d.ts deleted file mode 100644 index 41608acd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConversations.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.chat.getConversations"; -/** - * 获取会话的详细信息 请求参数定义 - * @apiName internal.chat.getConversations - */ -export interface IInternalChatGetConversationsParams { - cids: string[]; -} -/** - * 获取会话的详细信息 返回结果定义 - * @apiName internal.chat.getConversations - */ -export declare type IInternalChatGetConversationsResult = any[]; -/** - * 获取会话的详细信息 - * @apiName internal.chat.getConversations - * @supportVersion ios: 5.1.26 android: 5.1.26 - * @author Android:辰煦 iOS:世离 - */ -export declare function getConversations$(params: IInternalChatGetConversationsParams): Promise; -export default getConversations$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConversations.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConversations.js deleted file mode 100644 index ad4e8203..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getConversations.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getConversations$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getConversations$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getConversations",exports.getConversations$=getConversations$,exports.default=getConversations$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getCurrentOpenId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getCurrentOpenId.d.ts deleted file mode 100644 index 81a54e60..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getCurrentOpenId.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.chat.getCurrentOpenId"; -/** - * 获取当前登陆用户的openId 请求参数定义 - * @apiName internal.chat.getCurrentOpenId - */ -export interface IInternalChatGetCurrentOpenIdParams { -} -/** - * 获取当前登陆用户的openId 返回结果定义 - * @apiName internal.chat.getCurrentOpenId - */ -export interface IInternalChatGetCurrentOpenIdResult { - openId: number; -} -/** - * 获取当前登陆用户的openId - * @apiName internal.chat.getCurrentOpenId - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function getCurrentOpenId$(params: IInternalChatGetCurrentOpenIdParams): Promise; -export default getCurrentOpenId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getCurrentOpenId.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getCurrentOpenId.js deleted file mode 100644 index b4c3cf85..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getCurrentOpenId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentOpenId$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentOpenId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getCurrentOpenId",exports.getCurrentOpenId$=getCurrentOpenId$,exports.default=getCurrentOpenId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDisplayName.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDisplayName.d.ts deleted file mode 100644 index c774ea04..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDisplayName.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.chat.getDisplayName"; -/** - * 根据openId和conversationId获取对应的显示名 请求参数定义 - * @apiName internal.chat.getDisplayName - */ -export interface IInternalChatGetDisplayNameParams { - openId: number; - conversationId: string; -} -/** - * 根据openId和conversationId获取对应的显示名 返回结果定义 - * @apiName internal.chat.getDisplayName - */ -export interface IInternalChatGetDisplayNameResult { - displayName: string; -} -/** - * 根据openId和conversationId获取对应的显示名 - * @apiName internal.chat.getDisplayName - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function getDisplayName$(params: IInternalChatGetDisplayNameParams): Promise; -export default getDisplayName$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDisplayName.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDisplayName.js deleted file mode 100644 index 7375501e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDisplayName.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDisplayName$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDisplayName$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getDisplayName",exports.getDisplayName$=getDisplayName$,exports.default=getDisplayName$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraft.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraft.d.ts deleted file mode 100644 index 5b6631d3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraft.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.chat.getDraft"; -/** - * 获取messageVC输入框中的草稿 请求参数定义 - * @apiName internal.chat.getDraft - */ -export interface IInternalChatGetDraftParams { - /** 会话id */ - cid: string; -} -/** - * 获取messageVC输入框中的草稿 返回结果定义 - * @apiName internal.chat.getDraft - */ -export interface IInternalChatGetDraftResult { - /** 输入框内的草稿 */ - draft: string; - /** at人的列表,{"uid":"nick"}对象 */ - atList: { - [uid: string]: string; - }; -} -/** - * 获取messageVC输入框中的草稿 - * @apiName internal.chat.getDraft - * @supportVersion ios: 4.7.7 android: 4.7.7 - */ -export declare function getDraft$(params: IInternalChatGetDraftParams): Promise; -export default getDraft$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraft.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraft.js deleted file mode 100644 index d95f65d7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraft.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDraft$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDraft$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getDraft",exports.getDraft$=getDraft$,exports.default=getDraft$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraftAndClear.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraftAndClear.d.ts deleted file mode 100644 index a39b198d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraftAndClear.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.chat.getDraftAndClear"; -/** - * 获取messageVC输入框中的草稿,并且清空草稿 请求参数定义 - * @apiName internal.chat.getDraftAndClear - */ -export interface IInternalChatGetDraftAndClearParams { - /** 会话id */ - cid: string; -} -/** - * 获取messageVC输入框中的草稿,并且清空草稿 返回结果定义 - * @apiName internal.chat.getDraftAndClear - */ -export interface IInternalChatGetDraftAndClearResult { - /** 输入框内的草稿 */ - draft: string; - /** at人的列表,{"uid":"nick"}对象 */ - atList?: { - [uid: string]: string; - }; -} -/** - * 获取messageVC输入框中的草稿,并且清空草稿 - * @apiName internal.chat.getDraftAndClear - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function getDraftAndClear$(params: IInternalChatGetDraftAndClearParams): Promise; -export default getDraftAndClear$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraftAndClear.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraftAndClear.js deleted file mode 100644 index 78dd5813..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getDraftAndClear.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDraftAndClear$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDraftAndClear$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getDraftAndClear",exports.getDraftAndClear$=getDraftAndClear$,exports.default=getDraftAndClear$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getEncryptImageThumb.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getEncryptImageThumb.d.ts deleted file mode 100644 index 34d9cdff..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getEncryptImageThumb.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.chat.getEncryptImageThumb"; -/** - * 三方加密图片解密 请求参数定义 - * @apiName internal.chat.getEncryptImageThumb - */ -export interface IInternalChatGetEncryptImageThumbParams { - /** 消息所在会话的id */ - cid: string; - /** 对应的消息id */ - mid: number; -} -/** - * 三方加密图片解密 返回结果定义 - * @apiName internal.chat.getEncryptImageThumb - */ -export interface IInternalChatGetEncryptImageThumbResult { - /** 图片缓存的key */ - data: string; -} -/** - * 三方加密图片解密 - * @apiName internal.chat.getEncryptImageThumb - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function getEncryptImageThumb$(params: IInternalChatGetEncryptImageThumbParams): Promise; -export default getEncryptImageThumb$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getEncryptImageThumb.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getEncryptImageThumb.js deleted file mode 100644 index d0ec74ff..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getEncryptImageThumb.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getEncryptImageThumb$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getEncryptImageThumb$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getEncryptImageThumb",exports.getEncryptImageThumb$=getEncryptImageThumb$,exports.default=getEncryptImageThumb$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getPickedImageThumbData.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getPickedImageThumbData.d.ts deleted file mode 100644 index 67b4d3fc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getPickedImageThumbData.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.chat.getPickedImageThumbData"; -/** - * 由于移动端H5还不能通过loc.dingtalk.com拦截请求,所以增加一个jsapi获取base64(thumbData) 请求参数定义 - * @apiName internal.chat.getPickedImageThumbData - */ -export interface IInternalChatGetPickedImageThumbDataParams { - /** localMediaId, pickImage接口里返回 */ - localMediaId: string; -} -/** - * 由于移动端H5还不能通过loc.dingtalk.com拦截请求,所以增加一个jsapi获取base64(thumbData) 返回结果定义 - * @apiName internal.chat.getPickedImageThumbData - */ -export declare type IInternalChatGetPickedImageThumbDataResult = string; -/** - * 由于移动端H5还不能通过loc.dingtalk.com拦截请求,所以增加一个jsapi获取base64(thumbData) - * @apiName internal.chat.getPickedImageThumbData - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function getPickedImageThumbData$(params: IInternalChatGetPickedImageThumbDataParams): Promise; -export default getPickedImageThumbData$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getPickedImageThumbData.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getPickedImageThumbData.js deleted file mode 100644 index fd247133..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getPickedImageThumbData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getPickedImageThumbData$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getPickedImageThumbData$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getPickedImageThumbData",exports.getPickedImageThumbData$=getPickedImageThumbData$,exports.default=getPickedImageThumbData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getRichTextPayload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getRichTextPayload.d.ts deleted file mode 100644 index 533293f0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getRichTextPayload.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.chat.getRichTextPayload"; -/** - * 获取被撤回的富文本消息的payload 请求参数定义 - * @apiName internal.chat.getRichTextPayload - */ -export interface IInternalChatGetRichTextPayloadParams { - /** 消息所属的会话id */ - cid: string; - /** 消息id */ - mid: number; -} -/** - * 获取被撤回的富文本消息的payload 返回结果定义 - * @apiName internal.chat.getRichTextPayload - */ -export interface IInternalChatGetRichTextPayloadResult { - payload: string; -} -/** - * 获取被撤回的富文本消息的payload - * @apiName internal.chat.getRichTextPayload - * @supportVersion ios: 4.7.10 android: 4.7.10 - * @author Android:卧岩; iOS: 新鹏 - */ -export declare function getRichTextPayload$(params: IInternalChatGetRichTextPayloadParams): Promise; -export default getRichTextPayload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getRichTextPayload.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getRichTextPayload.js deleted file mode 100644 index 90c8fca1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getRichTextPayload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getRichTextPayload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getRichTextPayload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getRichTextPayload",exports.getRichTextPayload$=getRichTextPayload$,exports.default=getRichTextPayload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopic.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopic.d.ts deleted file mode 100644 index dbae8193..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopic.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "internal.chat.getTopic"; -/** - * 根据话题id获取对用的话题 请求参数定义 - * @apiName internal.chat.getTopic - */ -export interface IInternalChatGetTopicParams { - /** 话题ID (必传,无topicId时传空字符串) */ - topicId: string; - /** 源消息ID (无topicId时必传) */ - sourceMessageId?: string; - /** 源消息发送者ID (无topicId时必传) */ - sourceSenderId?: string; - /** 表情排序类型,1-时间倒序 2-时间顺序 */ - stickerSortType: any; - /** 回复排序类型,1-时间倒序 2-时间顺序 */ - replySortType: any; -} -/** - * 根据话题id获取对用的话题 返回结果定义 - * @apiName internal.chat.getTopic - */ -export interface IInternalChatGetTopicResult { - topicModel: any; -} -/** - * 根据话题id获取对用的话题 - * @apiName internal.chat.getTopic - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function getTopic$(params: IInternalChatGetTopicParams): Promise; -export default getTopic$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopic.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopic.js deleted file mode 100644 index 4d972295..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopic.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTopic$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTopic$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getTopic",exports.getTopic$=getTopic$,exports.default=getTopic$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicReplys.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicReplys.d.ts deleted file mode 100644 index e490651c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicReplys.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "internal.chat.getTopicReplys"; -/** - * 获取话题的回复列表 请求参数定义 - * @apiName internal.chat.getTopicReplys - */ -export interface IInternalChatGetTopicReplysParams { - /** 话题id */ - topicId: any; - /** 每页大小 */ - pageSize: any; - /** 最后一条记录的时间 */ - lastCreateAt: any; - /** 排序类型 */ - sortType: any; -} -/** - * 获取话题的回复列表 返回结果定义 - * @apiName internal.chat.getTopicReplys - */ -export interface IInternalChatGetTopicReplysResult { - topicReplyListModel: any; -} -/** - * 获取话题的回复列表 - * @apiName internal.chat.getTopicReplys - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function getTopicReplys$(params: IInternalChatGetTopicReplysParams): Promise; -export default getTopicReplys$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicReplys.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicReplys.js deleted file mode 100644 index f5bd474e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicReplys.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTopicReplys$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTopicReplys$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getTopicReplys",exports.getTopicReplys$=getTopicReplys$,exports.default=getTopicReplys$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicStickers.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicStickers.d.ts deleted file mode 100644 index c04d3bb7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicStickers.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.chat.getTopicStickers"; -/** - * 获取话题回复的表情列表 请求参数定义 - * @apiName internal.chat.getTopicStickers - */ -export interface IInternalChatGetTopicStickersParams { - /** 话题id */ - topicId: any; - /** 表情类型 */ - stickerType: any; - /** 每页大小 */ - pageSize: any; - /** 最后一条记录的时间 */ - lastCreateAt: any; - /** 排序类型 */ - sortType: any; -} -/** - * 获取话题回复的表情列表 返回结果定义 - * @apiName internal.chat.getTopicStickers - */ -export interface IInternalChatGetTopicStickersResult { - /** 话题回复表情list对应的数据 */ - topicStickerListModel: any; -} -/** - * 获取话题回复的表情列表 - * @apiName internal.chat.getTopicStickers - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function getTopicStickers$(params: IInternalChatGetTopicStickersParams): Promise; -export default getTopicStickers$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicStickers.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicStickers.js deleted file mode 100644 index c072ad02..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getTopicStickers.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTopicStickers$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTopicStickers$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getTopicStickers",exports.getTopicStickers$=getTopicStickers$,exports.default=getTopicStickers$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getUserProfile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getUserProfile.d.ts deleted file mode 100644 index 503a5f3e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getUserProfile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.getUserProfile"; -/** - * 根据openId获取对应的profile 请求参数定义 - * @apiName internal.chat.getUserProfile - */ -export interface IInternalChatGetUserProfileParams { - openId: number; -} -/** - * 根据openId获取对应的profile 返回结果定义 - * @apiName internal.chat.getUserProfile - */ -export interface IInternalChatGetUserProfileResult { - userProfile: any; -} -/** - * 根据openId获取对应的profile - * @apiName internal.chat.getUserProfile - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function getUserProfile$(params: IInternalChatGetUserProfileParams): Promise; -export default getUserProfile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getUserProfile.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getUserProfile.js deleted file mode 100644 index ee336c7c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/getUserProfile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getUserProfile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUserProfile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.getUserProfile",exports.getUserProfile$=getUserProfile$,exports.default=getUserProfile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/joinGroupByBizType.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/joinGroupByBizType.d.ts deleted file mode 100644 index 2e801d03..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/joinGroupByBizType.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.chat.joinGroupByBizType"; -/** - * 不需要申请直接加入进群 请求参数定义 - * @apiName internal.chat.joinGroupByBizType - */ -export interface IInternalChatJoinGroupByBizTypeParams { - /** 群id */ - cid: string; - /** 邀请者uid */ - inviterUid: string; - /** 业务type */ - bizType: number; - /** 来源 */ - dest?: string; - /** 是否开启了群主验证(移动端 only) */ - validationType?: number; -} -/** - * 不需要申请直接加入进群 返回结果定义 - * @apiName internal.chat.joinGroupByBizType - */ -export interface IInternalChatJoinGroupByBizTypeResult { -} -/** - * 不需要申请直接加入进群 - * @apiName internal.chat.joinGroupByBizType - * @supportVersion ios: 4.6.8 android: 4.6.8 - */ -export declare function joinGroupByBizType$(params: IInternalChatJoinGroupByBizTypeParams): Promise; -export default joinGroupByBizType$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/joinGroupByBizType.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/joinGroupByBizType.js deleted file mode 100644 index 83597751..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/joinGroupByBizType.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function joinGroupByBizType$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.joinGroupByBizType$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.joinGroupByBizType",exports.joinGroupByBizType$=joinGroupByBizType$,exports.default=joinGroupByBizType$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/markSettingsReddot.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/markSettingsReddot.d.ts deleted file mode 100644 index 1922b699..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/markSettingsReddot.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.markSettingsReddot"; -/** - * 标记群设置入口处key对应的红点已消费掉 请求参数定义 - * @apiName internal.chat.markSettingsReddot - */ -export interface IInternalChatMarkSettingsReddotParams { - key: string; -} -/** - * 标记群设置入口处key对应的红点已消费掉 返回结果定义 - * @apiName internal.chat.markSettingsReddot - */ -export interface IInternalChatMarkSettingsReddotResult { -} -/** - * 标记群设置入口处key对应的红点已消费掉 - * @apiName internal.chat.markSettingsReddot - * @supportVersion ios: 5.0.6 android: 5.0.6 - * @author iOS:济凡;Android:风沂 - */ -export declare function markSettingsReddot$(params: IInternalChatMarkSettingsReddotParams): Promise; -export default markSettingsReddot$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/markSettingsReddot.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/markSettingsReddot.js deleted file mode 100644 index 8e227cc5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/markSettingsReddot.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function markSettingsReddot$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.markSettingsReddot$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.markSettingsReddot",exports.markSettingsReddot$=markSettingsReddot$,exports.default=markSettingsReddot$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/openConversation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/openConversation.d.ts deleted file mode 100644 index fdc32e21..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/openConversation.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.openConversation"; -/** - * 内部H5打开指定的单聊会话,并可以附带一条消息 请求参数定义 - * @apiName internal.chat.openConversation - */ -export interface IInternalChatOpenConversationParams { - [key: string]: any; -} -/** - * 内部H5打开指定的单聊会话,并可以附带一条消息 返回结果定义 - * @apiName internal.chat.openConversation - */ -export interface IInternalChatOpenConversationResult { - [key: string]: any; -} -/** - * 内部H5打开指定的单聊会话,并可以附带一条消息 - * @apiName internal.chat.openConversation - * @supportVersion ios: 3.4.1 android: 3.4.1 - */ -export declare function openConversation$(params: IInternalChatOpenConversationParams): Promise; -export default openConversation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/openConversation.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/openConversation.js deleted file mode 100644 index 0086adca..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/openConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openConversation$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openConversation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.openConversation",exports.openConversation$=openConversation$,exports.default=openConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickAtList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickAtList.d.ts deleted file mode 100644 index 36094461..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickAtList.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.chat.pickAtList"; -/** - * @人弹出选人组件 请求参数定义 - * @apiName internal.chat.pickAtList - */ -export interface IInternalChatPickAtListParams { - cid: string; -} -/** - * @人弹出选人组件 返回结果定义 - * @apiName internal.chat.pickAtList - * at人的列表,{"uid":"nick"}对象 - */ -export interface IInternalChatPickAtListResult { - [uid: string]: string; -} -/** - * @人弹出选人组件 - * @apiName internal.chat.pickAtList - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function pickAtList$(params: IInternalChatPickAtListParams): Promise; -export default pickAtList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickAtList.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickAtList.js deleted file mode 100644 index 240e5293..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickAtList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pickAtList$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pickAtList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.pickAtList",exports.pickAtList$=pickAtList$,exports.default=pickAtList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickGroupConversation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickGroupConversation.d.ts deleted file mode 100644 index 1792566e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickGroupConversation.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "internal.chat.pickGroupConversation"; -/** - * 获取群会话 请求参数定义 - * @apiName internal.chat.pickGroupConversation - */ -export interface IInternalChatPickGroupConversationParams { - /** (default:-1)业务类型 1: 普通选群组 2: 添加机器人选群组 */ - bizType: number; - /** (default:0)机器人模板 */ - templateId?: number; - /** 是否只展示企业群 */ - enterprise?: boolean; - /** 是否只展示自己创建的企业群 针对Android:当enterprise为true时有效。默认true,所以需要前端按需传参。 */ - owner?: boolean; -} -/** - * 获取群会话 返回结果定义 - * @apiName internal.chat.pickGroupConversation - */ -export interface IInternalChatPickGroupConversationResult { - /** 会话id */ - cid: string; - /** 会话名 */ - conversationName: string; -} -/** - * 获取群会话 - * @apiName internal.chat.pickGroupConversation - * @supportVersion ios: 3.3.3 android: 3.3.3 pc: 4.6.1 - * @author ios: 慕桥, android: 峰砺 - */ -export declare function pickGroupConversation$(params: IInternalChatPickGroupConversationParams): Promise; -export default pickGroupConversation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickGroupConversation.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickGroupConversation.js deleted file mode 100644 index 657856a6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickGroupConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pickGroupConversation$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pickGroupConversation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.pickGroupConversation",exports.pickGroupConversation$=pickGroupConversation$,exports.default=pickGroupConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickImage.d.ts deleted file mode 100644 index 19667d0d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickImage.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.chat.pickImage"; -/** - * 选图组件,选图和上传分开,可以让前端选完图然后再异步上传, 由于移动端H5还不能通过loc.dingtalk.com拦截请求, 所以增加一个jsapi获取base64(thumbData) 请求参数定义 - * @apiName internal.chat.pickImage - */ -export interface IInternalChatPickImageParams { - maxCnt: number; -} -/** - * 选图组件,选图和上传分开,可以让前端选完图然后再异步上传, 由于移动端H5还不能通过loc.dingtalk.com拦截请求, 所以增加一个jsapi获取base64(thumbData) 返回结果定义 - * @apiName internal.chat.pickImage - */ -export declare type IInternalChatPickImageResult = Array<{ - localMediaId: string; - width: number; - height: number; - picType: number; - orientation: number; -}>; -/** - * 选图组件,选图和上传分开,可以让前端选完图然后再异步上传, 由于移动端H5还不能通过loc.dingtalk.com拦截请求, 所以增加一个jsapi获取base64(thumbData) - * @apiName internal.chat.pickImage - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function pickImage$(params: IInternalChatPickImageParams): Promise; -export default pickImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickImage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickImage.js deleted file mode 100644 index bc47d3c5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/pickImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pickImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pickImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.pickImage",exports.pickImage$=pickImage$,exports.default=pickImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/previewMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/previewMessage.d.ts deleted file mode 100644 index 9d6059a7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/previewMessage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.previewMessage"; -/** - * 根据messageId跳转消息详情页 请求参数定义 - * @apiName internal.chat.previewMessage - */ -export interface IInternalChatPreviewMessageParams { - messageId: number; - conversationId: string; -} -/** - * 根据messageId跳转消息详情页 返回结果定义 - * @apiName internal.chat.previewMessage - */ -export interface IInternalChatPreviewMessageResult { -} -/** - * 根据messageId跳转消息详情页 - * @apiName internal.chat.previewMessage - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function previewMessage$(params: IInternalChatPreviewMessageParams): Promise; -export default previewMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/previewMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/previewMessage.js deleted file mode 100644 index e5df56b1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/previewMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function previewMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.previewMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.previewMessage",exports.previewMessage$=previewMessage$,exports.default=previewMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/recallMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/recallMessage.d.ts deleted file mode 100644 index 8daf6923..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/recallMessage.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.recallMessage"; -/** - * 根据messageId撤回对应的消息 请求参数定义 - * @apiName internal.chat.recallMessage - */ -export interface IInternalChatRecallMessageParams { - messageId: number; - conversationId: string; -} -/** - * 根据messageId撤回对应的消息 返回结果定义 - * @apiName internal.chat.recallMessage - */ -export interface IInternalChatRecallMessageResult { -} -/** - * 根据messageId撤回对应的消息 - * @apiName internal.chat.recallMessage - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function recallMessage$(params: IInternalChatRecallMessageParams): Promise; -export default recallMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/recallMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/recallMessage.js deleted file mode 100644 index 4fabdfe7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/recallMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function recallMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.recallMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.recallMessage",exports.recallMessage$=recallMessage$,exports.default=recallMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/registTopicMessageListener.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/registTopicMessageListener.d.ts deleted file mode 100644 index d036bbcf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/registTopicMessageListener.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.registTopicMessageListener"; -/** - * 注册话题相关的消息变更通知 请求参数定义 - * @apiName internal.chat.registTopicMessageListener - */ -export interface IInternalChatRegistTopicMessageListenerParams { - /** 话题id */ - topicId: number; -} -/** - * 注册话题相关的消息变更通知 返回结果定义 - * @apiName internal.chat.registTopicMessageListener - */ -export interface IInternalChatRegistTopicMessageListenerResult { -} -/** - * 注册话题相关的消息变更通知 - * @apiName internal.chat.registTopicMessageListener - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function registTopicMessageListener$(params: IInternalChatRegistTopicMessageListenerParams): Promise; -export default registTopicMessageListener$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/registTopicMessageListener.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/registTopicMessageListener.js deleted file mode 100644 index 7b20f8b1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/registTopicMessageListener.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function registTopicMessageListener$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.registTopicMessageListener$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.registTopicMessageListener",exports.registTopicMessageListener$=registTopicMessageListener$,exports.default=registTopicMessageListener$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/selectAndSendText.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/selectAndSendText.d.ts deleted file mode 100644 index 6ae23612..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/selectAndSendText.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.selectAndSendText"; -/** - * 调用选会话组件并发送@人文字消息 请求参数定义 - * @apiName internal.chat.selectAndSendText - */ -export interface IInternalChatSelectAndSendTextParams { - [key: string]: any; -} -/** - * 调用选会话组件并发送@人文字消息 返回结果定义 - * @apiName internal.chat.selectAndSendText - */ -export interface IInternalChatSelectAndSendTextResult { - [key: string]: any; -} -/** - * 调用选会话组件并发送@人文字消息 - * @apiName internal.chat.selectAndSendText - * @supportVersion ios: 3.4.6 android: 3.4.6 - */ -export declare function selectAndSendText$(params: IInternalChatSelectAndSendTextParams): Promise; -export default selectAndSendText$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/selectAndSendText.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/selectAndSendText.js deleted file mode 100644 index b7f3bbcd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/selectAndSendText.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function selectAndSendText$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.selectAndSendText$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.selectAndSendText",exports.selectAndSendText$=selectAndSendText$,exports.default=selectAndSendText$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendBizMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendBizMessage.d.ts deleted file mode 100644 index 4f44c674..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendBizMessage.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.chat.sendBizMessage"; -/** - * 开放平台内部调用,发送自定义业务类型消息 请求参数定义 - * @apiName internal.chat.sendBizMessage - */ -export interface IInternalChatSendBizMessageParams { - cid: string; - bizType: number; - bizArgs: string; -} -/** - * 开放平台内部调用,发送自定义业务类型消息 返回结果定义 - * @apiName internal.chat.sendBizMessage - */ -export interface IInternalChatSendBizMessageResult { -} -/** - * 开放平台内部调用,发送自定义业务类型消息 - * @apiName internal.chat.sendBizMessage - * @supportVersion ios: 5.1.6 android: 5.1.6 pc: 5.1.6 - * @author windows:仟晨 iOS:鱼非 Android:风沂 Mac:舒绎 - */ -export declare function sendBizMessage$(params: IInternalChatSendBizMessageParams): Promise; -export default sendBizMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendBizMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendBizMessage.js deleted file mode 100644 index ff81513b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendBizMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendBizMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendBizMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.sendBizMessage",exports.sendBizMessage$=sendBizMessage$,exports.default=sendBizMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendCustomMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendCustomMessage.d.ts deleted file mode 100644 index 0ed458dc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendCustomMessage.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.chat.sendCustomMessage"; -/** - * 发送定制消息到某个会话聊天 请求参数定义 - * @apiName internal.chat.sendCustomMessage - */ -export interface IInternalChatSendCustomMessageParams { - /** 会话id */ - cid: string; - /** 定制文本 */ - text: string; - /** @人员列表 格式: {"uid":"nickname", "xxx":"xxx"} */ - atOpenIds?: { - [uid: string]: string; - }; -} -/** - * 发送定制消息到某个会话聊天 返回结果定义 - * @apiName internal.chat.sendCustomMessage - */ -export interface IInternalChatSendCustomMessageResult { -} -/** - * 发送定制消息到某个会话聊天 - * @apiName internal.chat.sendCustomMessage - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function sendCustomMessage$(params: IInternalChatSendCustomMessageParams): Promise; -export default sendCustomMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendCustomMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendCustomMessage.js deleted file mode 100644 index 9f3d4d7a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendCustomMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendCustomMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendCustomMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.sendCustomMessage",exports.sendCustomMessage$=sendCustomMessage$,exports.default=sendCustomMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendMultiMsges.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendMultiMsges.d.ts deleted file mode 100644 index 09a9af26..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendMultiMsges.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.chat.sendMultiMsges"; -/** - * 供钉钉自有H5业务批量发送消息 请求参数定义 - * @apiName internal.chat.sendMultiMsges - */ -export interface IInternalChatSendMultiMsgesParams { - [key: string]: any; -} -/** - * 供钉钉自有H5业务批量发送消息 返回结果定义 - * @apiName internal.chat.sendMultiMsges - */ -export interface IInternalChatSendMultiMsgesResult { - [key: string]: any; -} -/** - * 供钉钉自有H5业务批量发送消息 - * @apiName internal.chat.sendMultiMsges - * @supportVersion ios: 3.5.1 android: 3.5.1 pc: 5.1.30 - * @author windows: 修心 mac: 修心 - */ -export declare function sendMultiMsges$(params: IInternalChatSendMultiMsgesParams): Promise; -export default sendMultiMsges$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendMultiMsges.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendMultiMsges.js deleted file mode 100644 index 96d8c760..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendMultiMsges.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMultiMsges$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMultiMsges$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.sendMultiMsges",exports.sendMultiMsges$=sendMultiMsges$,exports.default=sendMultiMsges$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendReplyMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendReplyMessage.d.ts deleted file mode 100644 index ef88e7ca..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendReplyMessage.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.chat.sendReplyMessage"; -/** - * 发送文本回复消息 请求参数定义 - * @apiName internal.chat.sendReplyMessage - */ -export interface IInternalChatSendReplyMessageParams { - /** 会话id, */ - conversationId: string; - /** 引文的消息id */ - sourceMessageId: number; - /** 发送的文本内容 */ - messageContent: string; - /** at选人集合,map类型 < uid,昵称 > */ - at: { - [uid: number]: string; - }; -} -/** - * 发送文本回复消息 返回结果定义 - * @apiName internal.chat.sendReplyMessage - */ -export interface IInternalChatSendReplyMessageResult { -} -/** - * 发送文本回复消息 - * @apiName internal.chat.sendReplyMessage - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function sendReplyMessage$(params: IInternalChatSendReplyMessageParams): Promise; -export default sendReplyMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendReplyMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendReplyMessage.js deleted file mode 100644 index d142b9c1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendReplyMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendReplyMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendReplyMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.sendReplyMessage",exports.sendReplyMessage$=sendReplyMessage$,exports.default=sendReplyMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendRichTextMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendRichTextMessage.d.ts deleted file mode 100644 index d2d6aa49..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendRichTextMessage.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -export declare const apiName = "internal.chat.sendRichTextMessage"; -/** - * 发送富文本消息 请求参数定义 - * @apiName internal.chat.sendRichTextMessage - */ -export interface IInternalChatSendRichTextMessageParams { - /** 会话id */ - cid: string; - /** at人的列表,{"uid":"nick"}对象 */ - atList?: { - [uid: string]: string; - }; - /** 富文本协议数据 */ - payload: string; - /** 富文本摘要数据 */ - desc: string; - /** 富文本里图片信息,"[{"mediaId":"xxx", "picType":1, "orientation":1}]",picType 1为原图,原图需带上Exif格式方向信息 */ - images?: string; - /** 富文本渲染小程序id */ - miniAppId: string; - /** 富文本渲染小程序小组件名 */ - widgetName: string; - /** 富文本预估高度信息,"[{"type":"txt", "width":200}, {"type":"img", "width":200, "height":100}]",文字为一行预估宽度,图片为显示宽高 */ - estimateAreas?: string; -} -/** - * 发送富文本消息 返回结果定义 - * @apiName internal.chat.sendRichTextMessage - */ -export interface IInternalChatSendRichTextMessageResult { - [key: string]: any; -} -/** - * 发送富文本消息 - * @apiName internal.chat.sendRichTextMessage - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function sendRichTextMessage$(params: IInternalChatSendRichTextMessageParams): Promise; -export default sendRichTextMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendRichTextMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendRichTextMessage.js deleted file mode 100644 index 3f0c1840..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/sendRichTextMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendRichTextMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendRichTextMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.sendRichTextMessage",exports.sendRichTextMessage$=sendRichTextMessage$,exports.default=sendRichTextMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/setHasRichTextDraft.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/setHasRichTextDraft.d.ts deleted file mode 100644 index 63ec6012..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/setHasRichTextDraft.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.chat.setHasRichTextDraft"; -/** - * 设置是否富文本有富文本草稿,用于显示红点 请求参数定义 - * @apiName internal.chat.setHasRichTextDraft - */ -export interface IInternalChatSetHasRichTextDraftParams { - /** 会话id */ - cid: string; - /** 是否有富文本草稿,默认否 */ - hasRichTextDraft?: boolean; -} -/** - * 设置是否富文本有富文本草稿,用于显示红点 返回结果定义 - * @apiName internal.chat.setHasRichTextDraft - */ -export interface IInternalChatSetHasRichTextDraftResult { -} -/** - * 设置是否富文本有富文本草稿,用于显示红点 - * @apiName internal.chat.setHasRichTextDraft - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function setHasRichTextDraft$(params: IInternalChatSetHasRichTextDraftParams): Promise; -export default setHasRichTextDraft$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/setHasRichTextDraft.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/setHasRichTextDraft.js deleted file mode 100644 index 56096c11..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/setHasRichTextDraft.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setHasRichTextDraft$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setHasRichTextDraft$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.setHasRichTextDraft",exports.setHasRichTextDraft$=setHasRichTextDraft$,exports.default=setHasRichTextDraft$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showMessageMenu.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showMessageMenu.d.ts deleted file mode 100644 index 6c3c0ce8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showMessageMenu.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -export declare const apiName = "internal.chat.showMessageMenu"; -/** - * 弹出消息菜单 请求参数定义 - * @apiName internal.chat.showMessageMenu - */ -export interface IInternalChatShowMessageMenuParams { - /** 所在的会话id */ - cid: string; - /** 对应的消息id */ - mid: number; - /** 消息按钮相对屏幕x轴偏移 */ - xoffset: number; - /** 消息组件y轴偏移 */ - yoffset: number; - /** 消息组件按钮宽度 */ - width: number; - /** 消息组件按钮高度 */ - height: number; - /** 白名单,如果传了值,个数>0,则只考虑白名单内的选项 */ - whiteList?: number; - /** 禁掉表情,true则不显示表情,false则显示 */ - disableEmotion?: boolean; -} -/** - * 弹出消息菜单 返回结果定义 - * @apiName internal.chat.showMessageMenu - */ -export interface IInternalChatShowMessageMenuResult { -} -/** - * 弹出消息菜单 - * @apiName internal.chat.showMessageMenu - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function showMessageMenu$(params: IInternalChatShowMessageMenuParams): Promise; -export default showMessageMenu$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showMessageMenu.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showMessageMenu.js deleted file mode 100644 index 15d302cd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showMessageMenu.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showMessageMenu$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showMessageMenu$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.showMessageMenu",exports.showMessageMenu$=showMessageMenu$,exports.default=showMessageMenu$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showTopicEmotionBar.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showTopicEmotionBar.d.ts deleted file mode 100644 index f7c52e70..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showTopicEmotionBar.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.chat.showTopicEmotionBar"; -/** - * 打开群话题点赞弹窗 请求参数定义 - * @apiName internal.chat.showTopicEmotionBar - */ -export interface IInternalChatShowTopicEmotionBarParams { - /** 话题所在的会话id */ - cid: string; - /** 话题对应的消息id */ - mid: number; - /** 弹窗相对屏幕左上角的y轴偏移 */ - yoffset?: number; -} -/** - * 打开群话题点赞弹窗 返回结果定义 - * @apiName internal.chat.showTopicEmotionBar - */ -export interface IInternalChatShowTopicEmotionBarResult { -} -/** - * 打开群话题点赞弹窗 - * @apiName internal.chat.showTopicEmotionBar - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function showTopicEmotionBar$(params: IInternalChatShowTopicEmotionBarParams): Promise; -export default showTopicEmotionBar$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showTopicEmotionBar.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showTopicEmotionBar.js deleted file mode 100644 index ecb0ede6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/showTopicEmotionBar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showTopicEmotionBar$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showTopicEmotionBar$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.showTopicEmotionBar",exports.showTopicEmotionBar$=showTopicEmotionBar$,exports.default=showTopicEmotionBar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/stickerReply.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/stickerReply.d.ts deleted file mode 100644 index 793702c2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/stickerReply.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.chat.stickerReply"; -/** - * 表情回复接口 请求参数定义 - * @apiName internal.chat.stickerReply - */ -export interface IInternalChatStickerReplyParams { - /** 话题消息id */ - sourceMessageId: any; - /** 话题消息发送者id */ - sourceSenderId: any; - /** 表情类型 */ - stickerType: any; - /** 是否为取消点赞 */ - isRecall?: boolean; -} -/** - * 表情回复接口 返回结果定义 - * @apiName internal.chat.stickerReply - */ -export interface IInternalChatStickerReplyResult { -} -/** - * 表情回复接口 - * @apiName internal.chat.stickerReply - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function stickerReply$(params: IInternalChatStickerReplyParams): Promise; -export default stickerReply$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/stickerReply.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/stickerReply.js deleted file mode 100644 index d6c1fedc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/stickerReply.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stickerReply$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stickerReply$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.stickerReply",exports.stickerReply$=stickerReply$,exports.default=stickerReply$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/toConversation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/toConversation.d.ts deleted file mode 100644 index 6fda5455..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/toConversation.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.chat.toConversation"; -/** - * 跳转到会话 请求参数定义 - * @apiName internal.chat.toConversation - */ -export interface IInternalChatToConversationParams { - cid: string; -} -/** - * 跳转到会话 返回结果定义 - * @apiName internal.chat.toConversation - */ -export interface IInternalChatToConversationResult { -} -/** - * 跳转到会话 - * @apiName internal.chat.toConversation - * @supportVersion ios: 4.6.8 android: 4.6.8 - */ -export declare function toConversation$(params: IInternalChatToConversationParams): Promise; -export default toConversation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/toConversation.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/toConversation.js deleted file mode 100644 index 3a323b9d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/toConversation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function toConversation$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.toConversation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.toConversation",exports.toConversation$=toConversation$,exports.default=toConversation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/transmitMsg.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/transmitMsg.d.ts deleted file mode 100644 index 868f988a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/transmitMsg.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.chat.transmitMsg"; -/** - * 将部分信息传递到IM会话,以link类型消息发送 请求参数定义 - * @apiName internal.chat.transmitMsg - */ -export interface IInternalChatTransmitMsgParams { - [key: string]: any; -} -/** - * 将部分信息传递到IM会话,以link类型消息发送 返回结果定义 - * @apiName internal.chat.transmitMsg - */ -export interface IInternalChatTransmitMsgResult { - [key: string]: any; -} -/** - * 将部分信息传递到IM会话,以link类型消息发送 - * @apiName internal.chat.transmitMsg - * @supportVersion ios: 3.4.10 android: 3.4.10 - */ -export declare function transmitMsg$(params: IInternalChatTransmitMsgParams): Promise; -export default transmitMsg$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/transmitMsg.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/transmitMsg.js deleted file mode 100644 index de6b6599..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/transmitMsg.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function transmitMsg$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.transmitMsg$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.transmitMsg",exports.transmitMsg$=transmitMsg$,exports.default=transmitMsg$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/unregistTopicMessageListener.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/unregistTopicMessageListener.d.ts deleted file mode 100644 index 894c8208..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/unregistTopicMessageListener.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.chat.unregistTopicMessageListener"; -/** - * 反注册话题消息变更通知 请求参数定义 - * @apiName internal.chat.unregistTopicMessageListener - */ -export interface IInternalChatUnregistTopicMessageListenerParams { -} -/** - * 反注册话题消息变更通知 返回结果定义 - * @apiName internal.chat.unregistTopicMessageListener - */ -export interface IInternalChatUnregistTopicMessageListenerResult { -} -/** - * 反注册话题消息变更通知 - * @apiName internal.chat.unregistTopicMessageListener - * @supportVersion ios: 4.6.25 android: 4.6.25 - */ -export declare function unregistTopicMessageListener$(params: IInternalChatUnregistTopicMessageListenerParams): Promise; -export default unregistTopicMessageListener$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/unregistTopicMessageListener.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/unregistTopicMessageListener.js deleted file mode 100644 index ab022d86..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/unregistTopicMessageListener.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unregistTopicMessageListener$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unregistTopicMessageListener$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.unregistTopicMessageListener",exports.unregistTopicMessageListener$=unregistTopicMessageListener$,exports.default=unregistTopicMessageListener$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/uploadPickedImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/uploadPickedImage.d.ts deleted file mode 100644 index 59806c6d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/uploadPickedImage.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.chat.uploadPickedImage"; -/** - * 上传图片 请求参数定义 - * @apiName internal.chat.uploadPickedImage - */ -export interface IInternalChatUploadPickedImageParams { - /** localMediaId, pickImage接口里返回 */ - localMediaId: string; -} -/** - * 上传图片 返回结果定义 - * @apiName internal.chat.uploadPickedImage - */ -export declare type IInternalChatUploadPickedImageResult = string; -/** - * 上传图片 - * @apiName internal.chat.uploadPickedImage - * @supportVersion ios: 4.7.5 android: 4.7.5 - */ -export declare function uploadPickedImage$(params: IInternalChatUploadPickedImageParams): Promise; -export default uploadPickedImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/uploadPickedImage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/uploadPickedImage.js deleted file mode 100644 index 6cec9214..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/chat/uploadPickedImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadPickedImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadPickedImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.chat.uploadPickedImage",exports.uploadPickedImage$=uploadPickedImage$,exports.default=uploadPickedImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/getStorage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/getStorage.d.ts deleted file mode 100644 index 93c0acf3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/getStorage.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.circle.getStorage"; -/** - * 删除圈子native-获取圈子业务缓存 请求参数定义 - * @apiName internal.circle.getStorage - */ -export interface IInternalCircleGetStorageParams { - /** 缓存业务类型 */ - bizType: string; - /** 缓存数据的key */ - key: string; -} -/** - * 删除圈子native-获取圈子业务缓存 返回结果定义 - * @apiName internal.circle.getStorage - */ -export declare type IInternalCircleGetStorageResult = string; -/** - * 删除圈子native-获取圈子业务缓存 - * @apiName internal.circle.getStorage - * @supportVersion ios: 6.0.12 android: 6.0.12 - * @author android:千下;ios:子理 - */ -export declare function getStorage$(params: IInternalCircleGetStorageParams): Promise; -export default getStorage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/getStorage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/getStorage.js deleted file mode 100644 index 6f64437d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/getStorage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getStorage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getStorage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.circle.getStorage",exports.getStorage$=getStorage$,exports.default=getStorage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/removeStorage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/removeStorage.d.ts deleted file mode 100644 index 9fb4dc55..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/removeStorage.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.circle.removeStorage"; -/** - * 删除圈子native-小程序共享业务缓存 请求参数定义 - * @apiName internal.circle.removeStorage - */ -export interface IInternalCircleRemoveStorageParams { - /** 缓存业务类型 */ - bizType: string; - /** 缓存数据的key */ - key: string; -} -/** - * 删除圈子native-小程序共享业务缓存 返回结果定义 - * @apiName internal.circle.removeStorage - */ -export interface IInternalCircleRemoveStorageResult { -} -/** - * 删除圈子native-小程序共享业务缓存 - * @apiName internal.circle.removeStorage - * @supportVersion ios: 6.0.12 android: 6.0.12 - * @author android:千下;ios:子理 - */ -export declare function removeStorage$(params: IInternalCircleRemoveStorageParams): Promise; -export default removeStorage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/removeStorage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/removeStorage.js deleted file mode 100644 index 9a6c2618..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/removeStorage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeStorage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeStorage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.circle.removeStorage",exports.removeStorage$=removeStorage$,exports.default=removeStorage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/setStorage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/setStorage.d.ts deleted file mode 100644 index c4d18c20..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/setStorage.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.circle.setStorage"; -/** - * 设置圈子native-小程序共享业务缓存 请求参数定义 - * @apiName internal.circle.setStorage - */ -export interface IInternalCircleSetStorageParams { - /** 缓存业务类型 */ - bizType: string; - /** 缓存数据的key */ - key: string; - /** 缓存的数据 */ - data: string; -} -/** - * 设置圈子native-小程序共享业务缓存 返回结果定义 - * @apiName internal.circle.setStorage - */ -export interface IInternalCircleSetStorageResult { -} -/** - * 设置圈子native-小程序共享业务缓存 - * @apiName internal.circle.setStorage - * @supportVersion ios: 6.0.12 android: 6.0.12 - * @author android:千下;ios:子理 - */ -export declare function setStorage$(params: IInternalCircleSetStorageParams): Promise; -export default setStorage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/setStorage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/setStorage.js deleted file mode 100644 index eef5d4ea..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/circle/setStorage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setStorage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setStorage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.circle.setStorage",exports.setStorage$=setStorage$,exports.default=setStorage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/clipboardData/getData.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/clipboardData/getData.d.ts deleted file mode 100644 index c857739b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/clipboardData/getData.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.clipboardData.getData"; -/** - * 获取剪切板内容 请求参数定义 - * @apiName internal.clipboardData.getData - */ -export interface IInternalClipboardDataGetDataParams { - [key: string]: any; -} -/** - * 获取剪切板内容 返回结果定义 - * @apiName internal.clipboardData.getData - */ -export interface IInternalClipboardDataGetDataResult { - text: string; -} -/** - * 获取剪切板内容 - * @apiName internal.clipboardData.getData - * @supportVersion ios: 4.6.9 android: 4.6.9 - */ -export declare function getData$(params: IInternalClipboardDataGetDataParams): Promise; -export default getData$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/clipboardData/getData.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/clipboardData/getData.js deleted file mode 100644 index 08559005..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/clipboardData/getData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getData$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getData$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.clipboardData.getData",exports.getData$=getData$,exports.default=getData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/coap/sendMessage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/coap/sendMessage.d.ts deleted file mode 100644 index 8891db5a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/coap/sendMessage.d.ts +++ /dev/null @@ -1,47 +0,0 @@ -export declare const apiName = "internal.coap.sendMessage"; -/** - * 局域网传输coap包 请求参数定义 - * @apiName internal.coap.sendMessage - */ -export interface IInternalCoapSendMessageParams { - /** 和设备端约定的id */ - id: number; - /** 和设备端约定的method */ - method: string; - /** 约定的coap协议版本号 */ - version: string; - params: { - /** 给设备配置的WiFi */ - ssid: string; - /** ssid的密码,可选,开放网络不需要密码,不传该字段 */ - passwd?: string; - /** 加密因子 */ - random: string; - /** 静态ip信息,可选,不需要配置静态ip时不传,需要配置静态ip */ - ipInfo?: { - /** 静态ip地址 */ - ip: string; - /** 子网掩码 */ - subnetMask: string; - /** 网关地址 */ - gateway: string; - /** 首选dns */ - preferredDNS: string; - /** 备选dns */ - optionalDNS: string; - }; - }; -} -/** - * 局域网传输coap包 返回结果定义 - * @apiName internal.coap.sendMessage - */ -export interface IInternalCoapSendMessageResult { -} -/** - * 局域网传输coap包 - * @apiName internal.coap.sendMessage - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function sendMessage$(params: IInternalCoapSendMessageParams): Promise; -export default sendMessage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/coap/sendMessage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/coap/sendMessage.js deleted file mode 100644 index 69d24177..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/coap/sendMessage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMessage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMessage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.coap.sendMessage",exports.sendMessage$=sendMessage$,exports.default=sendMessage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseEnterpriseUser.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseEnterpriseUser.d.ts deleted file mode 100644 index 9cb2ad61..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseEnterpriseUser.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "internal.contact.chooseEnterpriseUser"; -/** - * 选择企业用户 请求参数定义 - * @apiName internal.contact.chooseEnterpriseUser - */ -export interface IInternalContactChooseEnterpriseUserParams { - /** 企业id */ - corpId: string; - /** 选人界面标题 */ - title: string; - /** 最大可选人数 */ - max?: number; - /** 默认选中的用户 JSONArray 可选 */ - users?: string[]; - /** 必须选择的用户 */ - required?: string[]; -} -/** - * 选择企业用户 返回结果定义 - * @apiName internal.contact.chooseEnterpriseUser - */ -export declare type IInternalContactChooseEnterpriseUserResult = Array<{ - name: string; - encryptionUid: string; - avatar: string; - emplId: string; -}>; -/** - * 选择企业用户 - * @apiName internal.contact.chooseEnterpriseUser - * @supportVersion ios: 4.6.8 android: 4.6.8 - */ -export declare function chooseEnterpriseUser$(params: IInternalContactChooseEnterpriseUserParams): Promise; -export default chooseEnterpriseUser$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseEnterpriseUser.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseEnterpriseUser.js deleted file mode 100644 index 70516e79..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseEnterpriseUser.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseEnterpriseUser$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseEnterpriseUser$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.chooseEnterpriseUser",exports.chooseEnterpriseUser$=chooseEnterpriseUser$,exports.default=chooseEnterpriseUser$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseMobileContact.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseMobileContact.d.ts deleted file mode 100644 index b94680e1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseMobileContact.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.contact.chooseMobileContact"; -/** - * 手机通讯录选人(单选) 请求参数定义 - * @apiName internal.contact.chooseMobileContact - */ -export interface IInternalContactChooseMobileContactParams { - [key: string]: any; -} -/** - * 手机通讯录选人(单选) 返回结果定义 - * @apiName internal.contact.chooseMobileContact - */ -export interface IInternalContactChooseMobileContactResult { - [key: string]: any; -} -/** - * 手机通讯录选人(单选) - * @apiName internal.contact.chooseMobileContact - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function chooseMobileContact$(params: IInternalContactChooseMobileContactParams): Promise; -export default chooseMobileContact$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseMobileContact.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseMobileContact.js deleted file mode 100644 index 2583529a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseMobileContact.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseMobileContact$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseMobileContact$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.chooseMobileContact",exports.chooseMobileContact$=chooseMobileContact$,exports.default=chooseMobileContact$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseOrgAddress.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseOrgAddress.d.ts deleted file mode 100644 index a1565bb5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseOrgAddress.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.contact.chooseOrgAddress"; -/** - * 打开对应企业的位置列表,提供位置选择的功能 请求参数定义 - * @apiName internal.contact.chooseOrgAddress - */ -export interface IInternalContactChooseOrgAddressParams { - [key: string]: any; -} -/** - * 打开对应企业的位置列表,提供位置选择的功能 返回结果定义 - * @apiName internal.contact.chooseOrgAddress - */ -export interface IInternalContactChooseOrgAddressResult { - [key: string]: any; -} -/** - * 打开对应企业的位置列表,提供位置选择的功能 - * @apiName internal.contact.chooseOrgAddress - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function chooseOrgAddress$(params: IInternalContactChooseOrgAddressParams): Promise; -export default chooseOrgAddress$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseOrgAddress.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseOrgAddress.js deleted file mode 100644 index 37cae388..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/chooseOrgAddress.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseOrgAddress$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseOrgAddress$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.chooseOrgAddress",exports.chooseOrgAddress$=chooseOrgAddress$,exports.default=chooseOrgAddress$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/commonPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/commonPicker.d.ts deleted file mode 100644 index 8c4f894c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/commonPicker.d.ts +++ /dev/null @@ -1,60 +0,0 @@ -export declare const apiName = "internal.contact.commonPicker"; -/** - * 唤起picker,可选各组织部门/群组/联系人 请求参数定义 - * @apiName internal.contact.commonPicker - */ -export interface IInternalContactCommonPickerParams { - /** 标题 */ - title?: string; - /** 已选用户 UID列表,long类型 */ - pickedUsers?: number[]; - /** 已选部门,dict包含 id与orgId,long类型 */ - pickedDepartments?: Array<{ - id: number; - orgId: number; - }>; - /** 已选群组,dict包含id,string类型 */ - pickedGroups?: Array<{ - id: string; - }>; - /** 是否展示我的好友,默认YES */ - showFriendPick?: boolean; - /** 是否展示常用联系人,默认YES */ - showUsualContactPick?: boolean; - /** 是否展示我的群组,默认YES */ - showGroupPick?: boolean; - /** 是否多选 */ - multiple?: boolean; -} -/** - * 唤起picker,可选各组织部门/群组/联系人 返回结果定义 - * @apiName internal.contact.commonPicker - */ -export interface IInternalContactCommonPickerResult { - selectedCount: number; - users: Array<{ - name: string; - avatar: string; - uid: number; - }>; - departments?: Array<{ - id: number; - name: string; - number: number; - orgId: number; - }>; - groups?: Array<{ - cid: string; - number: number; - name: string; - avatar: string; - }>; -} -/** - * 唤起picker,可选各组织部门/群组/联系人 - * @apiName internal.contact.commonPicker - * @supportVersion ios: 5.1.15 android: 5.1.15 - * @author iOS:壹原;Android:几米 - */ -export declare function commonPicker$(params: IInternalContactCommonPickerParams): Promise; -export default commonPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/commonPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/commonPicker.js deleted file mode 100644 index 93e3d73f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/commonPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function commonPicker$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.commonPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.commonPicker",exports.commonPicker$=commonPicker$,exports.default=commonPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPicker.d.ts deleted file mode 100644 index d9620f53..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPicker.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.contact.internalComplexPicker"; -/** - * 企业主页选人组件 请求参数定义 - * @apiName internal.contact.internalComplexPicker - */ -export interface IInternalContactInternalComplexPickerParams { - [key: string]: any; -} -/** - * 企业主页选人组件 返回结果定义 - * @apiName internal.contact.internalComplexPicker - */ -export interface IInternalContactInternalComplexPickerResult { - [key: string]: any; -} -/** - * 企业主页选人组件 - * @apiName internal.contact.internalComplexPicker - * @supportVersion ios: 4.2.8 android: 4.2.8 - */ -export declare function internalComplexPicker$(params: IInternalContactInternalComplexPickerParams): Promise; -export default internalComplexPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPicker.js deleted file mode 100644 index dc99b67f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function internalComplexPicker$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.internalComplexPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.internalComplexPicker",exports.internalComplexPicker$=internalComplexPicker$,exports.default=internalComplexPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPickerWithUid.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPickerWithUid.d.ts deleted file mode 100644 index bf9aee58..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPickerWithUid.d.ts +++ /dev/null @@ -1,80 +0,0 @@ -export declare const apiName = "internal.contact.internalComplexPickerWithUid"; -/** - * 区别于internalComplexPicker,支持使用UID 进行选人中的勾选禁用需要 请求参数定义 - * @apiName internal.contact.internalComplexPickerWithUid - */ -export interface IInternalContactInternalComplexPickerWithUidParams { - /** 标题 */ - title?: string; - /** 企业的corpId */ - corpId: string; - /** 企业的corpId */ - multiple?: boolean; - /** 企业的corpId */ - limitTips?: string; - /** 最大可选人数 */ - maxUsers?: number; - /** 已选用户 UID列表 */ - pickedUsers?: number[]; - /** 已选部门 */ - pickedDepartments?: string[]; - /** 不可选用户UID列表 */ - disabledUsers?: number[]; - /** 不可选部门 */ - disabledDepartments?: string[]; - /** 必选用户(不可取消选中状态)UID列表 */ - requiredUsers: number[]; - /** 必选部门(不可取消选中状态) */ - requiredDepartments: string[]; - /** 微应用的Id */ - appId?: number; - /** 可添加权限校验,选人权限,目前只有GLOBAL这个参数 */ - permissionType?: string; - /** true:返回人员信息;false:返回人员和部门信息 */ - responseUserOnly?: boolean; - /** 未选人时,底部提示文案 */ - showFriendPick?: string; - /** 手机通讯录 */ - showMobileContactPick?: boolean; - /** 组织架构选择 */ - showOrgRelationPick?: boolean; - /** 按角色选择 */ - showLabelPick?: boolean; - /** 外部联系人 */ - showExtContactPick?: boolean; - /** -1表示从自己所在部门开始, 0表示从企业最上层开始,其他数字表示从该部门开始 */ - startWithDepartmentId?: string; - showRootOrg?: boolean; - limit?: number; - canChooseCurrentUser?: boolean; -} -/** - * 区别于internalComplexPicker,支持使用UID 进行选人中的勾选禁用需要 返回结果定义 - * @apiName internal.contact.internalComplexPickerWithUid - */ -export interface IInternalContactInternalComplexPickerWithUidResult { - /** 选择人数 */ - selectedCount: number; - /** 返回选人的列表 */ - users?: Array<{ - name: string; - avatar?: string; - uid: number; - encryptionUid: any; - emplId: any; - }>; - /** 返回已选部门列表 */ - departments?: Array<{ - id: any; - name: string; - number: number; - }>; -} -/** - * 区别于internalComplexPicker,支持使用UID 进行选人中的勾选禁用需要 - * @apiName internal.contact.internalComplexPickerWithUid - * @supportVersion ios: 4.6.41; android: 4.6.41 - * @author ios: 云信; android: 长岚 - */ -export declare function internalComplexPickerWithUid$(params: IInternalContactInternalComplexPickerWithUidParams): Promise; -export default internalComplexPickerWithUid$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPickerWithUid.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPickerWithUid.js deleted file mode 100644 index b50af93f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/internalComplexPickerWithUid.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function internalComplexPickerWithUid$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.internalComplexPickerWithUid$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.internalComplexPickerWithUid",exports.internalComplexPickerWithUid$=internalComplexPickerWithUid$,exports.default=internalComplexPickerWithUid$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/openSelectUserWnd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/openSelectUserWnd.d.ts deleted file mode 100644 index 4f6ce64d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/openSelectUserWnd.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.contact.openSelectUserWnd"; -/** - * 调起通用选人组件(PC) 请求参数定义 - * @apiName internal.contact.openSelectUserWnd - */ -export interface IInternalContactOpenSelectUserWndParams { - title: string; - param: any; -} -/** - * 调起通用选人组件(PC) 返回结果定义 - * @apiName internal.contact.openSelectUserWnd - */ -export interface IInternalContactOpenSelectUserWndResult { - [key: string]: any; -} -/** - * 调起通用选人组件(PC) - * @apiName internal.contact.openSelectUserWnd - * @supportVersion pc: 4.6.18 - */ -export declare function openSelectUserWnd$(params: IInternalContactOpenSelectUserWndParams): Promise; -export default openSelectUserWnd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/openSelectUserWnd.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/openSelectUserWnd.js deleted file mode 100644 index d2a2a5c3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/openSelectUserWnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openSelectUserWnd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openSelectUserWnd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.openSelectUserWnd",exports.openSelectUserWnd$=openSelectUserWnd$,exports.default=openSelectUserWnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/queryPickedResult.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/queryPickedResult.d.ts deleted file mode 100644 index 490155ff..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/queryPickedResult.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.contact.queryPickedResult"; -/** - * 从选人组件缓存中获取已选择的成员列表 请求参数定义 - * @apiName internal.contact.queryPickedResult - */ -export interface IInternalContactQueryPickedResultParams { - /** 从选人组件已选缓存中获取结果的key (此token由选人组件产生,通过url参数等方式提前传递到小程序) */ - token: string; -} -/** - * 从选人组件缓存中获取已选择的成员列表 返回结果定义 - * @apiName internal.contact.queryPickedResult - */ -export interface IInternalContactQueryPickedResultResult { - selectedCount: number; - users: Array<{ - name: string; - avatar: string; - uid: string; - encryptionUid: string; - emplId: string; - }>; - token: string; -} -/** - * 从选人组件缓存中获取已选择的成员列表 - * @apiName internal.contact.queryPickedResult - * @supportVersion ios: 5.0.2 android: 5.0.2 - * @author android:宇睿,ios:鱼非 - */ -export declare function queryPickedResult$(params: IInternalContactQueryPickedResultParams): Promise; -export default queryPickedResult$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/queryPickedResult.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/queryPickedResult.js deleted file mode 100644 index 9d827f12..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/queryPickedResult.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryPickedResult$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryPickedResult$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.queryPickedResult",exports.queryPickedResult$=queryPickedResult$,exports.default=queryPickedResult$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/removePickedResult.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/removePickedResult.d.ts deleted file mode 100644 index 7a064d8a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/removePickedResult.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.contact.removePickedResult"; -/** - * 删除选人组件已选缓存 请求参数定义 - * @apiName internal.contact.removePickedResult - */ -export interface IInternalContactRemovePickedResultParams { - /** 从选人组件已选缓存中获取结果的key (此token由选人组件产生,通过url参数等方式提前传递到小程序) */ - token: string; -} -/** - * 删除选人组件已选缓存 返回结果定义 - * @apiName internal.contact.removePickedResult - */ -export interface IInternalContactRemovePickedResultResult { -} -/** - * 删除选人组件已选缓存 - * @apiName internal.contact.removePickedResult - * @supportVersion ios: 5.0.2 android: 5.0.2 - * @author android:宇睿,ios:鱼非 - */ -export declare function removePickedResult$(params: IInternalContactRemovePickedResultParams): Promise; -export default removePickedResult$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/removePickedResult.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/removePickedResult.js deleted file mode 100644 index 2caf4a12..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/contact/removePickedResult.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removePickedResult$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.removePickedResult$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.contact.removePickedResult",exports.removePickedResult$=removePickedResult$,exports.default=removePickedResult$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/conversation/switchEffectiveMode.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/conversation/switchEffectiveMode.d.ts deleted file mode 100644 index fcb8c8cc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/conversation/switchEffectiveMode.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.conversation.switchEffectiveMode"; -/** - * 切换到专注模式开关 请求参数定义 - * @apiName internal.conversation.switchEffectiveMode - */ -export interface IInternalConversationSwitchEffectiveModeParams { - /** 是否打开专注模式 */ - isOn?: boolean; -} -/** - * 切换到专注模式开关 返回结果定义 - * @apiName internal.conversation.switchEffectiveMode - */ -export interface IInternalConversationSwitchEffectiveModeResult { -} -/** - * 切换到专注模式开关 - * @apiName internal.conversation.switchEffectiveMode - * @supportVersion ios: 5.1.41 android: 5.1.41 - * @author Android:彦海, iOS:济凡 - */ -export declare function switchEffectiveMode$(params: IInternalConversationSwitchEffectiveModeParams): Promise; -export default switchEffectiveMode$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/conversation/switchEffectiveMode.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/conversation/switchEffectiveMode.js deleted file mode 100644 index 5355b0f1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/conversation/switchEffectiveMode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function switchEffectiveMode$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.switchEffectiveMode$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.conversation.switchEffectiveMode",exports.switchEffectiveMode$=switchEffectiveMode$,exports.default=switchEffectiveMode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/corps/listCorpInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/corps/listCorpInfo.d.ts deleted file mode 100644 index 15b8de46..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/corps/listCorpInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.corps.listCorpInfo"; -/** - * 钉钉内部页面使用,获取当前用户本地企业OA数据列表,包含企业名称、别名等 请求参数定义 - * @apiName internal.corps.listCorpInfo - */ -export interface IInternalCorpsListCorpInfoParams { - [key: string]: any; -} -/** - * 钉钉内部页面使用,获取当前用户本地企业OA数据列表,包含企业名称、别名等 返回结果定义 - * @apiName internal.corps.listCorpInfo - */ -export interface IInternalCorpsListCorpInfoResult { - [key: string]: any; -} -/** - * 钉钉内部页面使用,获取当前用户本地企业OA数据列表,包含企业名称、别名等 - * @apiName internal.corps.listCorpInfo - * @supportVersion ios: 4.2.8 android: 4.2.8 - */ -export declare function listCorpInfo$(params: IInternalCorpsListCorpInfoParams): Promise; -export default listCorpInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/corps/listCorpInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/corps/listCorpInfo.js deleted file mode 100644 index dc46b59d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/corps/listCorpInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function listCorpInfo$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.listCorpInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.corps.listCorpInfo",exports.listCorpInfo$=listCorpInfo$,exports.default=listCorpInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/industryInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/industryInfo.d.ts deleted file mode 100644 index 99d454b5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/industryInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.createOrg.industryInfo"; -/** - * 获取创建团队之后的行业信息 请求参数定义 - * @apiName internal.createOrg.industryInfo - */ -export interface IInternalCreateOrgIndustryInfoParams { - [key: string]: any; -} -/** - * 获取创建团队之后的行业信息 返回结果定义 - * @apiName internal.createOrg.industryInfo - */ -export interface IInternalCreateOrgIndustryInfoResult { - [key: string]: any; -} -/** - * 获取创建团队之后的行业信息 - * @apiName internal.createOrg.industryInfo - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function industryInfo$(params: IInternalCreateOrgIndustryInfoParams): Promise; -export default industryInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/industryInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/industryInfo.js deleted file mode 100644 index 520fdc58..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/industryInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function industryInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.industryInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.createOrg.industryInfo",exports.industryInfo$=industryInfo$,exports.default=industryInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/lastCreateOrgInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/lastCreateOrgInfo.d.ts deleted file mode 100644 index 3517a920..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/lastCreateOrgInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.createOrg.lastCreateOrgInfo"; -/** - * 获取最近创建的团队信息 请求参数定义 - * @apiName internal.createOrg.lastCreateOrgInfo - */ -export interface IInternalCreateOrgLastCreateOrgInfoParams { - [key: string]: any; -} -/** - * 获取最近创建的团队信息 返回结果定义 - * @apiName internal.createOrg.lastCreateOrgInfo - */ -export interface IInternalCreateOrgLastCreateOrgInfoResult { - [key: string]: any; -} -/** - * 获取最近创建的团队信息 - * @apiName internal.createOrg.lastCreateOrgInfo - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function lastCreateOrgInfo$(params: IInternalCreateOrgLastCreateOrgInfoParams): Promise; -export default lastCreateOrgInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/lastCreateOrgInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/lastCreateOrgInfo.js deleted file mode 100644 index e0f63baf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/lastCreateOrgInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function lastCreateOrgInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.lastCreateOrgInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.createOrg.lastCreateOrgInfo",exports.lastCreateOrgInfo$=lastCreateOrgInfo$,exports.default=lastCreateOrgInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/successJump.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/successJump.d.ts deleted file mode 100644 index 2f31e679..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/successJump.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.createOrg.successJump"; -/** - * 创建团队之后跳转 请求参数定义 - * @apiName internal.createOrg.successJump - */ -export interface IInternalCreateOrgSuccessJumpParams { - [key: string]: any; -} -/** - * 创建团队之后跳转 返回结果定义 - * @apiName internal.createOrg.successJump - */ -export interface IInternalCreateOrgSuccessJumpResult { - [key: string]: any; -} -/** - * 创建团队之后跳转 - * @apiName internal.createOrg.successJump - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function successJump$(params: IInternalCreateOrgSuccessJumpParams): Promise; -export default successJump$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/successJump.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/successJump.js deleted file mode 100644 index 07886df1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/createOrg/successJump.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function successJump$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.successJump$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.createOrg.successJump",exports.successJump$=successJump$,exports.default=successJump$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelDecryptAndUpload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelDecryptAndUpload.d.ts deleted file mode 100644 index e1193857..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelDecryptAndUpload.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.cspace.cancelDecryptAndUpload"; -/** - * 取消(下载、解密、上传)的过程 请求参数定义 - * @apiName internal.cspace.cancelDecryptAndUpload - */ -export interface IInternalCspaceCancelDecryptAndUploadParams { - [key: string]: any; -} -/** - * 取消(下载、解密、上传)的过程 返回结果定义 - * @apiName internal.cspace.cancelDecryptAndUpload - */ -export interface IInternalCspaceCancelDecryptAndUploadResult { - [key: string]: any; -} -/** - * 取消(下载、解密、上传)的过程 - * @apiName internal.cspace.cancelDecryptAndUpload - * @supportVersion pc: 4.2.5 ios: 4.2.5 android: 4.2.5 - */ -export declare function cancelDecryptAndUpload$(params: IInternalCspaceCancelDecryptAndUploadParams): Promise; -export default cancelDecryptAndUpload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelDecryptAndUpload.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelDecryptAndUpload.js deleted file mode 100644 index f37bd970..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelDecryptAndUpload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function cancelDecryptAndUpload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.cancelDecryptAndUpload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.cancelDecryptAndUpload",exports.cancelDecryptAndUpload$=cancelDecryptAndUpload$,exports.default=cancelDecryptAndUpload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelFileUpload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelFileUpload.d.ts deleted file mode 100644 index fd676ae4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelFileUpload.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.cspace.cancelFileUpload"; -/** - * 取消上传文件到钉盘临时空间 请求参数定义 - * @apiName internal.cspace.cancelFileUpload - */ -export interface IInternalCspaceCancelFileUploadParams { - opeId: string; -} -/** - * 取消上传文件到钉盘临时空间 返回结果定义 - * @apiName internal.cspace.cancelFileUpload - */ -export interface IInternalCspaceCancelFileUploadResult { - opeId: string; -} -/** - * 取消上传文件到钉盘临时空间 - * @apiName internal.cspace.cancelFileUpload - * @supportVersion ios: 4.3.5 android: 4.3.5 - */ -export declare function cancelFileUpload$(params: IInternalCspaceCancelFileUploadParams): Promise; -export default cancelFileUpload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelFileUpload.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelFileUpload.js deleted file mode 100644 index db180fcd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/cancelFileUpload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function cancelFileUpload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.cancelFileUpload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.cancelFileUpload",exports.cancelFileUpload$=cancelFileUpload$,exports.default=cancelFileUpload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/decryptAndUpload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/decryptAndUpload.d.ts deleted file mode 100644 index 03e4f145..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/decryptAndUpload.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.cspace.decryptAndUpload"; -/** - * 客户端下载钉盘文件,本地解密,并上传到个人临时空间 请求参数定义 - * @apiName internal.cspace.decryptAndUpload - */ -export interface IInternalCspaceDecryptAndUploadParams { - [key: string]: any; -} -/** - * 客户端下载钉盘文件,本地解密,并上传到个人临时空间 返回结果定义 - * @apiName internal.cspace.decryptAndUpload - */ -export interface IInternalCspaceDecryptAndUploadResult { - [key: string]: any; -} -/** - * 客户端下载钉盘文件,本地解密,并上传到个人临时空间 - * @apiName internal.cspace.decryptAndUpload - * @supportVersion pc: 4.2.5 ios: 4.2.5 android: 4.2.5 - */ -export declare function decryptAndUpload$(params: IInternalCspaceDecryptAndUploadParams): Promise; -export default decryptAndUpload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/decryptAndUpload.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/decryptAndUpload.js deleted file mode 100644 index 6ede7907..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/decryptAndUpload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function decryptAndUpload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.decryptAndUpload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.decryptAndUpload",exports.decryptAndUpload$=decryptAndUpload$,exports.default=decryptAndUpload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/downloadFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/downloadFile.d.ts deleted file mode 100644 index 07532b81..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/downloadFile.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "internal.cspace.downloadFile"; -/** - * 下载钉盘文件并且返回H5可访问的url 请求参数定义 - * @apiName internal.cspace.downloadFile - */ -export interface IInternalCspaceDownloadFileParams { - spaceId: string; - fileId: string; - /** 文件版本 */ - dentryVersion?: number; - /** 默认用缓存 */ - useCacheIfAny?: boolean; -} -/** - * 下载钉盘文件并且返回H5可访问的url 返回结果定义 - * @apiName internal.cspace.downloadFile - */ -export interface IInternalCspaceDownloadFileResult { - /** 一个可访问本地文件的url 如:http://loc.dingtalk.com/QzpcVXNlcnNcQWRtaW5pc3RyYXRvclxBcHBEYXRhXExvY2FsXFRlbXBcNjVBQi50bXA= */ - resource_url: string; -} -/** - * 下载钉盘文件并且返回H5可访问的url - * @apiName internal.cspace.downloadFile - * @supportVersion ios: 5.1.9 android: 5.1.9 ios: 5.1.14 - * @author windows: 伏檀 mac:口合 iOS: 星楼 - */ -export declare function downloadFile$(params: IInternalCspaceDownloadFileParams): Promise; -export default downloadFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/downloadFile.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/downloadFile.js deleted file mode 100644 index 919b8fe7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/downloadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function downloadFile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.downloadFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.downloadFile",exports.downloadFile$=downloadFile$,exports.default=downloadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/edit.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/edit.d.ts deleted file mode 100644 index 2a9a2838..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/edit.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.cspace.edit"; -/** - * 钉盘文件编辑功能 请求参数定义 - * @apiName internal.cspace.edit - */ -export interface IInternalCspaceEditParams { - /** 钉盘空间Id 必选 */ - spaceId: string; - /** 钉盘文件Id 必选 */ - fileId: string; -} -/** - * 钉盘文件编辑功能 返回结果定义 - * @apiName internal.cspace.edit - */ -export interface IInternalCspaceEditResult { -} -/** - * 钉盘文件编辑功能 - * @apiName internal.cspace.edit - * @supportVersion ios: 4.6.1 android: 4.6.1 - */ -export declare function edit$(params: IInternalCspaceEditParams): Promise; -export default edit$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/edit.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/edit.js deleted file mode 100644 index 87bc94f5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/edit.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function edit$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.edit$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.edit",exports.edit$=edit$,exports.default=edit$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/fileUpload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/fileUpload.d.ts deleted file mode 100644 index 903be4a2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/fileUpload.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "internal.cspace.fileUpload"; -/** - * 上传文件到钉盘临时空间 请求参数定义 - * @apiName internal.cspace.fileUpload - */ -export interface IInternalCspaceFileUploadParams { - /** 企业id */ - cropId: string; - opeId: string; - /** 文件路径 */ - filePath: string; - /** 文件名称 */ - fileName: string; -} -/** - * 上传文件到钉盘临时空间 返回结果定义 - * @apiName internal.cspace.fileUpload - */ -export interface IInternalCspaceFileUploadResult { - opeId: string; - opeStatus: number; - spaceId: string; - fileId: string; -} -/** - * 上传文件到钉盘临时空间 - * @apiName internal.cspace.fileUpload - * @supportVersion ios: 4.3.5 android: 4.3.5 - */ -export declare function fileUpload$(params: IInternalCspaceFileUploadParams): Promise; -export default fileUpload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/fileUpload.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/fileUpload.js deleted file mode 100644 index a38bce37..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/fileUpload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fileUpload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fileUpload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.fileUpload",exports.fileUpload$=fileUpload$,exports.default=fileUpload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/getMediaInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/getMediaInfo.d.ts deleted file mode 100644 index 75ae6260..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/getMediaInfo.d.ts +++ /dev/null @@ -1,44 +0,0 @@ -export declare const apiName = "internal.cspace.getMediaInfo"; -/** - * 获取钉盘内媒体文件信息,例如视频的封面、时长,音频的时长,图片的缩略图等 请求参数定义 - * @apiName internal.cspace.getMediaInfo - */ -export interface IInternalCspaceGetMediaInfoParams { - /** 文件所在的钉盘Space的ID */ - spaceId: string; - /** 文件对应的钉盘Dentry的ID */ - fileId: string; -} -/** - * 获取钉盘内媒体文件信息,例如视频的封面、时长,音频的时长,图片的缩略图等 返回结果定义 - * @apiName internal.cspace.getMediaInfo - */ -export interface IInternalCspaceGetMediaInfoResult { - /** 文件所在的钉盘Space的ID */ - spaceId: string; - /** 文件对应的钉盘Dentry的ID */ - fileId: string; - /** 缩略图的MediaId */ - thumbnailMediaId: string; - /** 缩略图的AuthMediaId */ - thumbnailAuthMediaId: string; - /** 缩略图的AuthCode */ - thumbnailAuthCode: string; - /** 缩略图的宽度(像素), */ - thumbnailWidth: number; - /** 缩略图的高度(像素) */ - thumbnailHeight: number; - /** 缩略图的方向(顺时针旋转角度) 0, 90, 180, 270 */ - thumbnailRotation: number; - /** 缩略图的大小(字节) */ - thumbnailDataSize: number; - /** 时长(秒) */ - duration: number; -} -/** - * 获取钉盘内媒体文件信息,例如视频的封面、时长,音频的时长,图片的缩略图等 - * @apiName internal.cspace.getMediaInfo - * @supportVersion ios: 4.5.13 android: 4.5.13 - */ -export declare function getMediaInfo$(params: IInternalCspaceGetMediaInfoParams): Promise; -export default getMediaInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/getMediaInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/getMediaInfo.js deleted file mode 100644 index 48de57a6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/getMediaInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getMediaInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getMediaInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.getMediaInfo",exports.getMediaInfo$=getMediaInfo$,exports.default=getMediaInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintPluginWnd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintPluginWnd.d.ts deleted file mode 100644 index 91c6c483..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintPluginWnd.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.cspace.openCloudPrintPluginWnd"; -/** - * 跳转到安装本地虚拟驱动云打印插件窗口 请求参数定义 - * @apiName internal.cspace.openCloudPrintPluginWnd - */ -export interface IInternalCspaceOpenCloudPrintPluginWndParams { - /** 企业id */ - cropId: string; - /** 下载插件的url */ - downLoadPluginUrl: string; - /** 插件的版本 */ - pluginVersion: string; -} -/** - * 跳转到安装本地虚拟驱动云打印插件窗口 返回结果定义 - * @apiName internal.cspace.openCloudPrintPluginWnd - */ -export interface IInternalCspaceOpenCloudPrintPluginWndResult { -} -/** - * 跳转到安装本地虚拟驱动云打印插件窗口 - * @apiName internal.cspace.openCloudPrintPluginWnd - * @supportVersion ios: 4.3.5 android: 4.3.5 - */ -export declare function openCloudPrintPluginWnd$(params: IInternalCspaceOpenCloudPrintPluginWndParams): Promise; -export default openCloudPrintPluginWnd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintPluginWnd.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintPluginWnd.js deleted file mode 100644 index 40f43a66..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintPluginWnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openCloudPrintPluginWnd$(n){return common_1.ddSdk.invokeAPI(exports.apiName,n)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openCloudPrintPluginWnd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.openCloudPrintPluginWnd",exports.openCloudPrintPluginWnd$=openCloudPrintPluginWnd$,exports.default=openCloudPrintPluginWnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintWnd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintWnd.d.ts deleted file mode 100644 index f625dfc1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintWnd.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "internal.cspace.openCloudPrintWnd"; -/** - * 打开云打印窗口(效果与从钉盘点击云打印一样) 请求参数定义 - * @apiName internal.cspace.openCloudPrintWnd - */ -export interface IInternalCspaceOpenCloudPrintWndParams { - /** 1: 钉盘文件 2:mediaid */ - fileType: number; - /** fileType为1时有效 */ - spaceId?: string; - /** fileType为1时有效 */ - fileId?: string; - /** fileType为1时有效 */ - encrypt?: any; - /** fileType为2时有效 */ - mediaId?: string; -} -/** - * 打开云打印窗口(效果与从钉盘点击云打印一样) 返回结果定义 - * @apiName internal.cspace.openCloudPrintWnd - */ -export interface IInternalCspaceOpenCloudPrintWndResult { - [key: string]: any; -} -/** - * 打开云打印窗口(效果与从钉盘点击云打印一样) - * @apiName internal.cspace.openCloudPrintWnd - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function openCloudPrintWnd$(params: IInternalCspaceOpenCloudPrintWndParams): Promise; -export default openCloudPrintWnd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintWnd.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintWnd.js deleted file mode 100644 index 39d1cdb0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openCloudPrintWnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openCloudPrintWnd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openCloudPrintWnd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.openCloudPrintWnd",exports.openCloudPrintWnd$=openCloudPrintWnd$,exports.default=openCloudPrintWnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openEditInviteWnd.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openEditInviteWnd.d.ts deleted file mode 100644 index e9351dd8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openEditInviteWnd.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.cspace.openEditInviteWnd"; -/** - * 打开在线编辑邀请窗口 请求参数定义 - * @apiName internal.cspace.openEditInviteWnd - */ -export interface IInternalCspaceOpenEditInviteWndParams { - spaceId: string; - fileId: string; - extra: any; -} -/** - * 打开在线编辑邀请窗口 返回结果定义 - * @apiName internal.cspace.openEditInviteWnd - */ -export interface IInternalCspaceOpenEditInviteWndResult { -} -/** - * 打开在线编辑邀请窗口 - * @apiName internal.cspace.openEditInviteWnd - * @supportVersion ios: 4.5.1 android: 4.5.1 - */ -export declare function openEditInviteWnd$(params: IInternalCspaceOpenEditInviteWndParams): Promise; -export default openEditInviteWnd$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openEditInviteWnd.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openEditInviteWnd.js deleted file mode 100644 index 64667ce3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openEditInviteWnd.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openEditInviteWnd$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openEditInviteWnd$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.openEditInviteWnd",exports.openEditInviteWnd$=openEditInviteWnd$,exports.default=openEditInviteWnd$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openFolder.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openFolder.d.ts deleted file mode 100644 index 5fd36f66..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openFolder.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.cspace.openFolder"; -/** - * 进入钉盘指定目录 请求参数定义 - * @apiName internal.cspace.openFolder - */ -export interface IInternalCspaceOpenFolderParams { - [key: string]: any; -} -/** - * 进入钉盘指定目录 返回结果定义 - * @apiName internal.cspace.openFolder - */ -export interface IInternalCspaceOpenFolderResult { - [key: string]: any; -} -/** - * 进入钉盘指定目录 - * @apiName internal.cspace.openFolder - * @supportVersion pc: 4.2.5 ios: 4.2.5 android: 4.2.5 - */ -export declare function openFolder$(params: IInternalCspaceOpenFolderParams): Promise; -export default openFolder$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openFolder.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openFolder.js deleted file mode 100644 index 662a6788..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/openFolder.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openFolder$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openFolder$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.openFolder",exports.openFolder$=openFolder$,exports.default=openFolder$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/requestDentryUrl.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/requestDentryUrl.d.ts deleted file mode 100644 index 39d8bd59..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/requestDentryUrl.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.cspace.requestDentryUrl"; -/** - * 通过spaceId和fileId获取文件的下载UR 请求参数定义 - * @apiName internal.cspace.requestDentryUrl - */ -export interface IInternalCspaceRequestDentryUrlParams { - /** 钉盘空间ID */ - spaceId: string; - /** 钉盘文件ID */ - fileId: string; - /** 过期时间(单位:秒),目前服务端规则:默认30分钟,范围控制在0 - 3600秒 */ - expireSeconds?: number; -} -/** - * 通过spaceId和fileId获取文件的下载UR 返回结果定义 - * @apiName internal.cspace.requestDentryUrl - */ -export interface IInternalCspaceRequestDentryUrlResult { - /** 文件的Url */ - fileUrl: string; - /** 随机签名盐值 */ - code: string; -} -/** - * 通过spaceId和fileId获取文件的下载UR - * @apiName internal.cspace.requestDentryUrl - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function requestDentryUrl$(params: IInternalCspaceRequestDentryUrlParams): Promise; -export default requestDentryUrl$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/requestDentryUrl.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/requestDentryUrl.js deleted file mode 100644 index 3aa8da93..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/requestDentryUrl.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestDentryUrl$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestDentryUrl$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.requestDentryUrl",exports.requestDentryUrl$=requestDentryUrl$,exports.default=requestDentryUrl$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/sendMsgToRequestPermission.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/sendMsgToRequestPermission.d.ts deleted file mode 100644 index e9d05daa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/sendMsgToRequestPermission.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "internal.cspace.sendMsgToRequestPermission"; -/** - * 发送消息用于申请文档权限 请求参数定义 - * @apiName internal.cspace.sendMsgToRequestPermission - */ -export interface IInternalCspaceSendMsgToRequestPermissionParams { - /** 文档的空间id */ - spaceId: string; - /** 文档的id */ - dentryId: string; - /** 文档名 */ - dentryName: string; - /** 加密的uid */ - encryptionUid: string; - message?: string; -} -/** - * 发送消息用于申请文档权限 返回结果定义 - * @apiName internal.cspace.sendMsgToRequestPermission - */ -export interface IInternalCspaceSendMsgToRequestPermissionResult { -} -/** - * 发送消息用于申请文档权限 - * @apiName internal.cspace.sendMsgToRequestPermission - * @supportVersion ios: 4.5.21 android: 4.5.21 - */ -export declare function sendMsgToRequestPermission$(params: IInternalCspaceSendMsgToRequestPermissionParams): Promise; -export default sendMsgToRequestPermission$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/sendMsgToRequestPermission.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/sendMsgToRequestPermission.js deleted file mode 100644 index 2bcbc060..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/sendMsgToRequestPermission.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMsgToRequestPermission$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMsgToRequestPermission$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.sendMsgToRequestPermission",exports.sendMsgToRequestPermission$=sendMsgToRequestPermission$,exports.default=sendMsgToRequestPermission$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/uploadFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/uploadFile.d.ts deleted file mode 100644 index 54f8af6b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/uploadFile.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -export declare const apiName = "internal.cspace.uploadFile"; -/** - * 将给出路径的本地文件上传保存到钉盘 请求参数定义 - * @apiName internal.cspace.uploadFile - */ -export interface IInternalCspaceUploadFileParams { - /** 文件路径:使用其他JSAPI返回的APFilePath。 */ - path: string; - /** 文件名 */ - name?: string; - /** 钉盘空间ID */ - spaceId: string; - /** 钉盘目录ID */ - folderId?: string; - /** 操作ID */ - opeId: string; -} -/** - * 将给出路径的本地文件上传保存到钉盘 返回结果定义 - * @apiName internal.cspace.uploadFile - */ -export interface IInternalCspaceUploadFileResult { - data: { - /** 文件所在钉盘空间的ID */ - spaceId: string; - /** 钉盘文件ID */ - fileId: string; - /** 文件的名称 */ - fileName: string; - /** 文件大小,单位:byte(字节) */ - fileSize: number; - /** 文件扩展名 */ - fileType: string; - }; -} -/** - * 将给出路径的本地文件上传保存到钉盘 - * @apiName internal.cspace.uploadFile - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function uploadFile$(params: IInternalCspaceUploadFileParams): Promise; -export default uploadFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/uploadFile.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/uploadFile.js deleted file mode 100644 index 845f5386..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/cspace/uploadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadFile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.cspace.uploadFile",exports.uploadFile$=uploadFile$,exports.default=uploadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/hideQuickEntrance.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/hideQuickEntrance.d.ts deleted file mode 100644 index 5c518ef5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/hideQuickEntrance.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.customerService.hideQuickEntrance"; -/** - * 隐藏首页顶部的快速入口 请求参数定义 - * @apiName internal.customerService.hideQuickEntrance - */ -export interface IInternalCustomerServiceHideQuickEntranceParams { -} -/** - * 隐藏首页顶部的快速入口 返回结果定义 - * @apiName internal.customerService.hideQuickEntrance - */ -export interface IInternalCustomerServiceHideQuickEntranceResult { -} -/** - * 隐藏首页顶部的快速入口 - * @apiName internal.customerService.hideQuickEntrance - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function hideQuickEntrance$(params: IInternalCustomerServiceHideQuickEntranceParams): Promise; -export default hideQuickEntrance$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/hideQuickEntrance.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/hideQuickEntrance.js deleted file mode 100644 index 25424d21..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/hideQuickEntrance.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hideQuickEntrance$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.hideQuickEntrance$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.customerService.hideQuickEntrance",exports.hideQuickEntrance$=hideQuickEntrance$,exports.default=hideQuickEntrance$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/isRecording.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/isRecording.d.ts deleted file mode 100644 index 19c4bfc8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/isRecording.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.customerService.isRecording"; -/** - * 检查当前是否在录音 请求参数定义 - * @apiName internal.customerService.isRecording - */ -export interface IInternalCustomerServiceIsRecordingParams { - orderID?: string; -} -/** - * 检查当前是否在录音 返回结果定义 - * @apiName internal.customerService.isRecording - */ -export interface IInternalCustomerServiceIsRecordingResult { - isRecording: boolean; -} -/** - * 检查当前是否在录音 - * @apiName internal.customerService.isRecording - * @supportVersion ios: 4.3.9 android: 4.3.9 - */ -export declare function isRecording$(params: IInternalCustomerServiceIsRecordingParams): Promise; -export default isRecording$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/isRecording.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/isRecording.js deleted file mode 100644 index fe14f9b3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/isRecording.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isRecording$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isRecording$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.customerService.isRecording",exports.isRecording$=isRecording$,exports.default=isRecording$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/showQuickEntrance.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/showQuickEntrance.d.ts deleted file mode 100644 index 48a9f093..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/showQuickEntrance.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.customerService.showQuickEntrance"; -/** - * 在首页顶部展示快速入口 请求参数定义 - * @apiName internal.customerService.showQuickEntrance - */ -export interface IInternalCustomerServiceShowQuickEntranceParams { - /** 快速入口标题 */ - title: string; - /** 快速入口左侧 icon 的 mediaId,不传显示默认 */ - icon?: string; - /** 快速入口的点击地址,支持统一跳转协议 */ - url: string; -} -/** - * 在首页顶部展示快速入口 返回结果定义 - * @apiName internal.customerService.showQuickEntrance - */ -export interface IInternalCustomerServiceShowQuickEntranceResult { -} -/** - * 在首页顶部展示快速入口 - * @apiName internal.customerService.showQuickEntrance - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function showQuickEntrance$(params: IInternalCustomerServiceShowQuickEntranceParams): Promise; -export default showQuickEntrance$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/showQuickEntrance.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/showQuickEntrance.js deleted file mode 100644 index 54d75998..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/showQuickEntrance.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showQuickEntrance$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showQuickEntrance$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.customerService.showQuickEntrance",exports.showQuickEntrance$=showQuickEntrance$,exports.default=showQuickEntrance$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/startRecord.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/startRecord.d.ts deleted file mode 100644 index 2cf3c58b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/startRecord.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.customerService.startRecord"; -/** - * 主要给企业服务部署订单使用 请求参数定义 - * @apiName internal.customerService.startRecord - */ -export interface IInternalCustomerServiceStartRecordParams { - /** 订单ID */ - orderId: string; - /** 页面 url */ - url: string; -} -/** - * 主要给企业服务部署订单使用 返回结果定义 - * @apiName internal.customerService.startRecord - */ -export interface IInternalCustomerServiceStartRecordResult { -} -/** - * 主要给企业服务部署订单使用 - * @apiName internal.customerService.startRecord - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function startRecord$(params: IInternalCustomerServiceStartRecordParams): Promise; -export default startRecord$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/startRecord.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/startRecord.js deleted file mode 100644 index 81a8547d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/startRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startRecord$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startRecord$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.customerService.startRecord",exports.startRecord$=startRecord$,exports.default=startRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/stopRecord.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/stopRecord.d.ts deleted file mode 100644 index 8371182b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/stopRecord.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.customerService.stopRecord"; -/** - * app录音,主要给企业服务部署订单使用 请求参数定义 - * @apiName internal.customerService.stopRecord - */ -export interface IInternalCustomerServiceStopRecordParams { -} -/** - * app录音,主要给企业服务部署订单使用 返回结果定义 - * @apiName internal.customerService.stopRecord - */ -export interface IInternalCustomerServiceStopRecordResult { -} -/** - * app录音,主要给企业服务部署订单使用 - * @apiName internal.customerService.stopRecord - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function stopRecord$(params: IInternalCustomerServiceStopRecordParams): Promise; -export default stopRecord$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/stopRecord.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/stopRecord.js deleted file mode 100644 index 9589580f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/stopRecord.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopRecord$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopRecord$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.customerService.stopRecord",exports.stopRecord$=stopRecord$,exports.default=stopRecord$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/tryUploadRecords.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/tryUploadRecords.d.ts deleted file mode 100644 index e75ab618..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/tryUploadRecords.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.customerService.tryUploadRecords"; -/** - * 部署专家完成服务,录音全部结束,尝试上传录音文件 请求参数定义 - * @apiName internal.customerService.tryUploadRecords - */ -export interface IInternalCustomerServiceTryUploadRecordsParams { - /** 订单ID; */ - orderId: string; - /** 是否强制上传 */ - force: boolean; -} -/** - * 部署专家完成服务,录音全部结束,尝试上传录音文件 返回结果定义 - * @apiName internal.customerService.tryUploadRecords - */ -export interface IInternalCustomerServiceTryUploadRecordsResult { - [key: string]: any; -} -/** - * 部署专家完成服务,录音全部结束,尝试上传录音文件 - * @apiName internal.customerService.tryUploadRecords - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function tryUploadRecords$(params: IInternalCustomerServiceTryUploadRecordsParams): Promise; -export default tryUploadRecords$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/tryUploadRecords.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/tryUploadRecords.js deleted file mode 100644 index a238cfb7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/customerService/tryUploadRecords.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function tryUploadRecords$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.tryUploadRecords$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.customerService.tryUploadRecords",exports.tryUploadRecords$=tryUploadRecords$,exports.default=tryUploadRecords$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getFastCheckInInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getFastCheckInInfo.d.ts deleted file mode 100644 index 57a9f703..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getFastCheckInInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.diagnostic.getFastCheckInInfo"; -/** - * 获取最近三天极速打卡排班信息 请求参数定义 - * @apiName internal.diagnostic.getFastCheckInInfo - */ -export interface IInternalDiagnosticGetFastCheckInInfoParams { -} -/** - * 获取最近三天极速打卡排班信息 返回结果定义 - * @apiName internal.diagnostic.getFastCheckInInfo - */ -export interface IInternalDiagnosticGetFastCheckInInfoResult { - data: any; -} -/** - * 获取最近三天极速打卡排班信息 - * @apiName internal.diagnostic.getFastCheckInInfo - * @supportVersion android: 4.7.19 - * @author Android: 序望 - */ -export declare function getFastCheckInInfo$(params: IInternalDiagnosticGetFastCheckInInfoParams): Promise; -export default getFastCheckInInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getFastCheckInInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getFastCheckInInfo.js deleted file mode 100644 index 20417e0d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getFastCheckInInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getFastCheckInInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getFastCheckInInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.diagnostic.getFastCheckInInfo",exports.getFastCheckInInfo$=getFastCheckInInfo$,exports.default=getFastCheckInInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getLocalErrorMsg.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getLocalErrorMsg.d.ts deleted file mode 100644 index 6fe63c13..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getLocalErrorMsg.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.diagnostic.getLocalErrorMsg"; -/** - * 获得最近三天极速打卡错误码信息 请求参数定义 - * @apiName internal.diagnostic.getLocalErrorMsg - */ -export interface IInternalDiagnosticGetLocalErrorMsgParams { -} -/** - * 获得最近三天极速打卡错误码信息 返回结果定义 - * @apiName internal.diagnostic.getLocalErrorMsg - */ -export interface IInternalDiagnosticGetLocalErrorMsgResult { - data: any; -} -/** - * 获得最近三天极速打卡错误码信息 - * @apiName internal.diagnostic.getLocalErrorMsg - * @supportVersion android: 4.7.19 - * @author Android: 序望 - */ -export declare function getLocalErrorMsg$(params: IInternalDiagnosticGetLocalErrorMsgParams): Promise; -export default getLocalErrorMsg$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getLocalErrorMsg.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getLocalErrorMsg.js deleted file mode 100644 index 4a9c77c1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/diagnostic/getLocalErrorMsg.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLocalErrorMsg$(r){return common_1.ddSdk.invokeAPI(exports.apiName,r)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLocalErrorMsg$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.diagnostic.getLocalErrorMsg",exports.getLocalErrorMsg$=getLocalErrorMsg$,exports.default=getLocalErrorMsg$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/bindWorkMobile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/bindWorkMobile.d.ts deleted file mode 100644 index 3110fd6e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/bindWorkMobile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.dingCard.bindWorkMobile"; -/** - * 绑定工作号 请求参数定义 - * @apiName internal.dingCard.bindWorkMobile - */ -export interface IInternalDingCardBindWorkMobileParams { - [key: string]: any; -} -/** - * 绑定工作号 返回结果定义 - * @apiName internal.dingCard.bindWorkMobile - */ -export interface IInternalDingCardBindWorkMobileResult { - [key: string]: any; -} -/** - * 绑定工作号 - * @apiName internal.dingCard.bindWorkMobile - * @supportVersion ios: 3.4.10 android: 3.4.10 - */ -export declare function bindWorkMobile$(params: IInternalDingCardBindWorkMobileParams): Promise; -export default bindWorkMobile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/bindWorkMobile.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/bindWorkMobile.js deleted file mode 100644 index 81d841d0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/bindWorkMobile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bindWorkMobile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.bindWorkMobile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.dingCard.bindWorkMobile",exports.bindWorkMobile$=bindWorkMobile$,exports.default=bindWorkMobile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/unbindWorkMobile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/unbindWorkMobile.d.ts deleted file mode 100644 index 685bdeaf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/unbindWorkMobile.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.dingCard.unbindWorkMobile"; -/** - * 解绑工作号 请求参数定义 - * @apiName internal.dingCard.unbindWorkMobile - */ -export interface IInternalDingCardUnbindWorkMobileParams { - [key: string]: any; -} -/** - * 解绑工作号 返回结果定义 - * @apiName internal.dingCard.unbindWorkMobile - */ -export interface IInternalDingCardUnbindWorkMobileResult { - [key: string]: any; -} -/** - * 解绑工作号 - * @apiName internal.dingCard.unbindWorkMobile - * @supportVersion ios: 3.4.10 android: 3.4.10 - */ -export declare function unbindWorkMobile$(params: IInternalDingCardUnbindWorkMobileParams): Promise; -export default unbindWorkMobile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/unbindWorkMobile.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/unbindWorkMobile.js deleted file mode 100644 index b0a570d5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingCard/unbindWorkMobile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unbindWorkMobile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unbindWorkMobile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.dingCard.unbindWorkMobile",exports.unbindWorkMobile$=unbindWorkMobile$,exports.default=unbindWorkMobile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/bindAlipay.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/bindAlipay.d.ts deleted file mode 100644 index 4fc63533..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/bindAlipay.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.dingpay.bindAlipay"; -/** - * 绑定支付宝 请求参数定义 - * @apiName internal.dingpay.bindAlipay - */ -export interface IInternalDingpayBindAlipayParams { - /** 请和服务端约定好, 绑定支付宝所在的业务场景 */ - bizType: string; - /** 是否显示支付宝授权协议弹框 */ - showLicense?: boolean; -} -/** - * 绑定支付宝 返回结果定义 - * @apiName internal.dingpay.bindAlipay - */ -export interface IInternalDingpayBindAlipayResult { -} -/** - * 绑定支付宝 - * @apiName internal.dingpay.bindAlipay - * @supportVersion ios: 6.0.3 android: 6.0.3 - * @author Android:千凡, iOS: 济凡 - */ -export declare function bindAlipay$(params: IInternalDingpayBindAlipayParams): Promise; -export default bindAlipay$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/bindAlipay.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/bindAlipay.js deleted file mode 100644 index 2e0d37ef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/bindAlipay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bindAlipay$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.bindAlipay$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.dingpay.bindAlipay",exports.bindAlipay$=bindAlipay$,exports.default=bindAlipay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/unbindAlipay.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/unbindAlipay.d.ts deleted file mode 100644 index 2f907640..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/unbindAlipay.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.dingpay.unbindAlipay"; -/** - * 解绑支付宝 请求参数定义 - * @apiName internal.dingpay.unbindAlipay - */ -export interface IInternalDingpayUnbindAlipayParams { -} -/** - * 解绑支付宝 返回结果定义 - * @apiName internal.dingpay.unbindAlipay - */ -export interface IInternalDingpayUnbindAlipayResult { -} -/** - * 解绑支付宝 - * @apiName internal.dingpay.unbindAlipay - * @supportVersion ios: 6.0.14 android: 6.0.14 - * @author Android:峰砺, iOS: 木锤 - */ -export declare function unbindAlipay$(params: IInternalDingpayUnbindAlipayParams): Promise; -export default unbindAlipay$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/unbindAlipay.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/unbindAlipay.js deleted file mode 100644 index f56524e4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/dingpay/unbindAlipay.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unbindAlipay$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unbindAlipay$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.dingpay.unbindAlipay",exports.unbindAlipay$=unbindAlipay$,exports.default=unbindAlipay$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/info.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/info.d.ts deleted file mode 100644 index 155e5b82..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/info.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.enterpriseEncryption.info"; -/** - * 企业密钥说明页面获取企业信息 请求参数定义 - * @apiName internal.enterpriseEncryption.info - */ -export interface IInternalEnterpriseEncryptionInfoParams { - [key: string]: any; -} -/** - * 企业密钥说明页面获取企业信息 返回结果定义 - * @apiName internal.enterpriseEncryption.info - */ -export interface IInternalEnterpriseEncryptionInfoResult { - [key: string]: any; -} -/** - * 企业密钥说明页面获取企业信息 - * @apiName internal.enterpriseEncryption.info - * @supportVersion ios: 3.4.6 android: 3.4.6 - */ -export declare function info$(params: IInternalEnterpriseEncryptionInfoParams): Promise; -export default info$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/info.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/info.js deleted file mode 100644 index c65eede0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/info.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function info$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.info$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.enterpriseEncryption.info",exports.info$=info$,exports.default=info$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/sendMessageToMaster.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/sendMessageToMaster.d.ts deleted file mode 100644 index 0cd7f7bf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/sendMessageToMaster.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.enterpriseEncryption.sendMessageToMaster"; -/** - * 企业密钥说明页面通知主管理员 请求参数定义 - * @apiName internal.enterpriseEncryption.sendMessageToMaster - */ -export interface IInternalEnterpriseEncryptionSendMessageToMasterParams { - [key: string]: any; -} -/** - * 企业密钥说明页面通知主管理员 返回结果定义 - * @apiName internal.enterpriseEncryption.sendMessageToMaster - */ -export interface IInternalEnterpriseEncryptionSendMessageToMasterResult { - [key: string]: any; -} -/** - * 企业密钥说明页面通知主管理员 - * @apiName internal.enterpriseEncryption.sendMessageToMaster - * @supportVersion ios: 3.4.6 android: 3.4.6 - */ -export declare function sendMessageToMaster$(params: IInternalEnterpriseEncryptionSendMessageToMasterParams): Promise; -export default sendMessageToMaster$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/sendMessageToMaster.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/sendMessageToMaster.js deleted file mode 100644 index 55f5ef9f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/sendMessageToMaster.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMessageToMaster$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMessageToMaster$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.enterpriseEncryption.sendMessageToMaster",exports.sendMessageToMaster$=sendMessageToMaster$,exports.default=sendMessageToMaster$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/turnOnWithAnimation.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/turnOnWithAnimation.d.ts deleted file mode 100644 index 15f55afe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/turnOnWithAnimation.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.enterpriseEncryption.turnOnWithAnimation"; -/** - * 企业密钥开通并展示开通动画 请求参数定义 - * @apiName internal.enterpriseEncryption.turnOnWithAnimation - */ -export interface IInternalEnterpriseEncryptionTurnOnWithAnimationParams { - [key: string]: any; -} -/** - * 企业密钥开通并展示开通动画 返回结果定义 - * @apiName internal.enterpriseEncryption.turnOnWithAnimation - */ -export interface IInternalEnterpriseEncryptionTurnOnWithAnimationResult { - [key: string]: any; -} -/** - * 企业密钥开通并展示开通动画 - * @apiName internal.enterpriseEncryption.turnOnWithAnimation - * @supportVersion ios: 3.4.6 android: 3.4.6 - */ -export declare function turnOnWithAnimation$(params: IInternalEnterpriseEncryptionTurnOnWithAnimationParams): Promise; -export default turnOnWithAnimation$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/turnOnWithAnimation.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/turnOnWithAnimation.js deleted file mode 100644 index 3884fc2d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/enterpriseEncryption/turnOnWithAnimation.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function turnOnWithAnimation$(n){return common_1.ddSdk.invokeAPI(exports.apiName,n)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.turnOnWithAnimation$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.enterpriseEncryption.turnOnWithAnimation",exports.turnOnWithAnimation$=turnOnWithAnimation$,exports.default=turnOnWithAnimation$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/prepareScan.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/prepareScan.d.ts deleted file mode 100644 index 645a5ad3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/prepareScan.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.faceScan.prepareScan"; -/** - * 人脸识别准备,成功后再调用scan 请求参数定义 - * @apiName internal.faceScan.prepareScan - */ -export interface IInternalFaceScanPrepareScanParams { - [key: string]: any; -} -/** - * 人脸识别准备,成功后再调用scan 返回结果定义 - * @apiName internal.faceScan.prepareScan - */ -export interface IInternalFaceScanPrepareScanResult { - [key: string]: any; -} -/** - * 人脸识别准备,成功后再调用scan - * @apiName internal.faceScan.prepareScan - * @supportVersion ios: 3.4.6 android: 3.4.6 - */ -export declare function prepareScan$(params: IInternalFaceScanPrepareScanParams): Promise; -export default prepareScan$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/prepareScan.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/prepareScan.js deleted file mode 100644 index c887d6a8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/prepareScan.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function prepareScan$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.prepareScan$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.faceScan.prepareScan",exports.prepareScan$=prepareScan$,exports.default=prepareScan$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/scan.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/scan.d.ts deleted file mode 100644 index 855eebdc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/scan.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.faceScan.scan"; -/** - * 人脸识别 请求参数定义 - * @apiName internal.faceScan.scan - */ -export interface IInternalFaceScanScanParams { - [key: string]: any; -} -/** - * 人脸识别 返回结果定义 - * @apiName internal.faceScan.scan - */ -export interface IInternalFaceScanScanResult { - [key: string]: any; -} -/** - * 人脸识别 - * @apiName internal.faceScan.scan - * @supportVersion ios: 3.4.6 android: 3.4.6 - */ -export declare function scan$(params: IInternalFaceScanScanParams): Promise; -export default scan$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/scan.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/scan.js deleted file mode 100644 index 768cc499..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/faceScan/scan.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scan$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.scan$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.faceScan.scan",exports.scan$=scan$,exports.default=scan$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/detectFace.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/detectFace.d.ts deleted file mode 100644 index 9b996d1f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/detectFace.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.facialRecognition.detectFace"; -/** - * 人脸的识别 请求参数定义 - * @apiName internal.facialRecognition.detectFace - */ -export interface IInternalFacialRecognitionDetectFaceParams { - [key: string]: any; -} -/** - * 人脸的识别 返回结果定义 - * @apiName internal.facialRecognition.detectFace - */ -export interface IInternalFacialRecognitionDetectFaceResult { - [key: string]: any; -} -/** - * 人脸的识别 - * @apiName internal.facialRecognition.detectFace - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function detectFace$(params: IInternalFacialRecognitionDetectFaceParams): Promise; -export default detectFace$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/detectFace.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/detectFace.js deleted file mode 100644 index d56ac197..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/detectFace.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detectFace$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detectFace$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.facialRecognition.detectFace",exports.detectFace$=detectFace$,exports.default=detectFace$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/init.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/init.d.ts deleted file mode 100644 index 792fcfcf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/init.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.facialRecognition.init"; -/** - * 初始化FacialRecognition 请求参数定义 - * @apiName internal.facialRecognition.init - */ -export interface IInternalFacialRecognitionInitParams { - [key: string]: any; -} -/** - * 初始化FacialRecognition 返回结果定义 - * @apiName internal.facialRecognition.init - */ -export interface IInternalFacialRecognitionInitResult { - [key: string]: any; -} -/** - * 初始化FacialRecognition - * @apiName internal.facialRecognition.init - * @supportVersion ios: 4.5.8 android: 4.5.8 - */ -export declare function init$(params: IInternalFacialRecognitionInitParams): Promise; -export default init$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/init.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/init.js deleted file mode 100644 index 61f156d6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/facialRecognition/init.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function init$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.init$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.facialRecognition.init",exports.init$=init$,exports.default=init$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/checkEnvironment.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/checkEnvironment.d.ts deleted file mode 100644 index 4485710b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/checkEnvironment.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.focus.checkEnvironment"; -/** - * 检测投屏环境 请求参数定义 - * @apiName internal.focus.checkEnvironment - */ -export interface IInternalFocusCheckEnvironmentParams { - [key: string]: any; -} -/** - * 检测投屏环境 返回结果定义 - * @apiName internal.focus.checkEnvironment - */ -export interface IInternalFocusCheckEnvironmentResult { - /** 是否支持本地投屏 */ - focusEnable: boolean; - /** 当前网络类型 */ - networkType: string; - /** 当前是否联网 */ - networkEnable: boolean; -} -/** - * 检测投屏环境 - * @apiName internal.focus.checkEnvironment - * @supportVersion android: 4.7.23 - * @author 安卓:柳樵,战杭, ios:见招 - */ -export declare function checkEnvironment$(params: IInternalFocusCheckEnvironmentParams): Promise; -export default checkEnvironment$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/checkEnvironment.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/checkEnvironment.js deleted file mode 100644 index 810b484d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/checkEnvironment.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkEnvironment$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkEnvironment$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.focus.checkEnvironment",exports.checkEnvironment$=checkEnvironment$,exports.default=checkEnvironment$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/closeFocusFloatingView.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/closeFocusFloatingView.d.ts deleted file mode 100644 index f98a778a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/closeFocusFloatingView.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.focus.closeFocusFloatingView"; -/** - * 关闭投屏悬浮窗 请求参数定义 - * @apiName internal.focus.closeFocusFloatingView - */ -export interface IInternalFocusCloseFocusFloatingViewParams { -} -/** - * 关闭投屏悬浮窗 返回结果定义 - * @apiName internal.focus.closeFocusFloatingView - */ -export interface IInternalFocusCloseFocusFloatingViewResult { -} -/** - * 关闭投屏悬浮窗 - * @apiName internal.focus.closeFocusFloatingView - * @supportVersion android: 4.7.23 - * @author android: 柳樵, ios: 见招 - */ -export declare function closeFocusFloatingView$(params: IInternalFocusCloseFocusFloatingViewParams): Promise; -export default closeFocusFloatingView$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/closeFocusFloatingView.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/closeFocusFloatingView.js deleted file mode 100644 index bf2d2096..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/closeFocusFloatingView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closeFocusFloatingView$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.closeFocusFloatingView$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.focus.closeFocusFloatingView",exports.closeFocusFloatingView$=closeFocusFloatingView$,exports.default=closeFocusFloatingView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/getCurrentProjectionData.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/getCurrentProjectionData.d.ts deleted file mode 100644 index e20e873c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/getCurrentProjectionData.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -export declare const apiName = "internal.focus.getCurrentProjectionData"; -/** - * 获取当前投屏状态 请求参数定义 - * @apiName internal.focus.getCurrentProjectionData - */ -export interface IInternalFocusGetCurrentProjectionDataParams { -} -interface IMember { - name: string; - uid: string; - avatar?: string; -} -interface IProjectionStatus { - currentType: 'local' | 'meeting'; - localStatus: 'idle' | 'processing' | 'started'; - meetingStatus: 'idle' | 'processing' | 'started'; -} -/** - * 获取当前投屏状态 返回结果定义 - * @apiName internal.focus.getCurrentProjectionData - */ -export interface IInternalFocusGetCurrentProjectionDataResult { - /** 投屏状态数据 */ - status: IProjectionStatus; - /** 投屏码 */ - code?: string; - /** 当前用户信息 */ - currentUser?: IMember; - /** 投屏成员信息 */ - memberInfo?: { - users: IMember[]; - devices: IMember[]; - }; -} -/** - * 获取当前投屏状态 - * @apiName internal.focus.getCurrentProjectionData - * @supportVersion android: 4.7.23 - * @author 安卓:柳樵,战杭, ios:见招 - */ -export declare function getCurrentProjectionData$(params: IInternalFocusGetCurrentProjectionDataParams): Promise; -export default getCurrentProjectionData$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/getCurrentProjectionData.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/getCurrentProjectionData.js deleted file mode 100644 index 997a4a80..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/getCurrentProjectionData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentProjectionData$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentProjectionData$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.focus.getCurrentProjectionData",exports.getCurrentProjectionData$=getCurrentProjectionData$,exports.default=getCurrentProjectionData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/openFocusFloatingView.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/openFocusFloatingView.d.ts deleted file mode 100644 index 581e9eee..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/openFocusFloatingView.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.focus.openFocusFloatingView"; -/** - * 开启投屏悬浮窗 请求参数定义 - * @apiName internal.focus.openFocusFloatingView - */ -export interface IInternalFocusOpenFocusFloatingViewParams { - /** 点击悬浮窗后跳转的地址 */ - href: string; -} -/** - * 开启投屏悬浮窗 返回结果定义 - * @apiName internal.focus.openFocusFloatingView - */ -export interface IInternalFocusOpenFocusFloatingViewResult { - [key: string]: any; -} -/** - * 开启投屏悬浮窗 - * @apiName internal.focus.openFocusFloatingView - * @supportVersion android: 4.7.23 - * @author android: 柳樵, ios: 见招 - */ -export declare function openFocusFloatingView$(params: IInternalFocusOpenFocusFloatingViewParams): Promise; -export default openFocusFloatingView$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/openFocusFloatingView.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/openFocusFloatingView.js deleted file mode 100644 index a72321e1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/openFocusFloatingView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openFocusFloatingView$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openFocusFloatingView$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.focus.openFocusFloatingView",exports.openFocusFloatingView$=openFocusFloatingView$,exports.default=openFocusFloatingView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/register.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/register.d.ts deleted file mode 100644 index aa1466aa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/register.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.focus.register"; -/** - * 投屏事件注册 请求参数定义 - * @apiName internal.focus.register - */ -export interface IInternalFocusRegisterParams { -} -/** - * 投屏事件注册 返回结果定义 - * @apiName internal.focus.register - */ -export interface IInternalFocusRegisterResult { -} -/** - * 投屏事件注册 - * @apiName internal.focus.register - * @supportVersion android: 4.7.23 - * @author android: 柳樵, ios: 见招 - */ -export declare function register$(params: IInternalFocusRegisterParams): Promise; -export default register$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/register.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/register.js deleted file mode 100644 index 0dd756c2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/register.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function register$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.register$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.focus.register",exports.register$=register$,exports.default=register$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/startProjection.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/startProjection.d.ts deleted file mode 100644 index 077d9312..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/startProjection.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.focus.startProjection"; -/** - * 开始投屏 请求参数定义 - * @apiName internal.focus.startProjection - */ -export interface IInternalFocusStartProjectionParams { - /** 'local' | 'meeting' */ - type: string; - /** '720p' | '1080p' */ - clarity: string; - code?: string; - uids?: { - users: string[]; - devices: string[]; - }; -} -/** - * 开始投屏 返回结果定义 - * @apiName internal.focus.startProjection - */ -export interface IInternalFocusStartProjectionResult { -} -/** - * 开始投屏 - * @apiName internal.focus.startProjection - * @supportVersion android: 4.7.23 - * @author android: 柳樵, ios: 见招 - */ -export declare function startProjection$(params: IInternalFocusStartProjectionParams): Promise; -export default startProjection$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/startProjection.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/startProjection.js deleted file mode 100644 index 75079bca..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/startProjection.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startProjection$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startProjection$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.focus.startProjection",exports.startProjection$=startProjection$,exports.default=startProjection$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/stopProjection.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/stopProjection.d.ts deleted file mode 100644 index c472d089..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/stopProjection.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.focus.stopProjection"; -/** - * 停止投屏 请求参数定义 - * @apiName internal.focus.stopProjection - */ -export interface IInternalFocusStopProjectionParams { -} -/** - * 停止投屏 返回结果定义 - * @apiName internal.focus.stopProjection - */ -export interface IInternalFocusStopProjectionResult { -} -/** - * 停止投屏 - * @apiName internal.focus.stopProjection - * @supportVersion android: 4.7.23 - * @author android: 柳樵, ios: 见招 - */ -export declare function stopProjection$(params: IInternalFocusStopProjectionParams): Promise; -export default stopProjection$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/stopProjection.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/stopProjection.js deleted file mode 100644 index 9e6b4365..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/stopProjection.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stopProjection$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopProjection$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.focus.stopProjection",exports.stopProjection$=stopProjection$,exports.default=stopProjection$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/unRegister.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/unRegister.d.ts deleted file mode 100644 index f72a3adb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/unRegister.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.focus.unRegister"; -/** - * 投屏事件取消注册 请求参数定义 - * @apiName internal.focus.unRegister - */ -export interface IInternalFocusUnRegisterParams { -} -/** - * 投屏事件取消注册 返回结果定义 - * @apiName internal.focus.unRegister - */ -export interface IInternalFocusUnRegisterResult { -} -/** - * 投屏事件取消注册 - * @apiName internal.focus.unRegister - * @supportVersion android: 4.7.23 - * @author android: 柳樵, ios: 见招 - */ -export declare function unRegister$(params: IInternalFocusUnRegisterParams): Promise; -export default unRegister$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/unRegister.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/unRegister.js deleted file mode 100644 index df93e5cb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/focus/unRegister.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unRegister$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unRegister$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.focus.unRegister",exports.unRegister$=unRegister$,exports.default=unRegister$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/googlePlayService/getGoogleServiceInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/googlePlayService/getGoogleServiceInfo.d.ts deleted file mode 100644 index 57226fc8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/googlePlayService/getGoogleServiceInfo.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.googlePlayService.getGoogleServiceInfo"; -/** - * 获取手机上是否有googleplay服务 请求参数定义 - * @apiName internal.googlePlayService.getGoogleServiceInfo - */ -export interface IInternalGooglePlayServiceGetGoogleServiceInfoParams { -} -/** - * 获取手机上是否有googleplay服务 返回结果定义 - * @apiName internal.googlePlayService.getGoogleServiceInfo - */ -export interface IInternalGooglePlayServiceGetGoogleServiceInfoResult { - hasGoogleService: boolean; -} -/** - * 获取手机上是否有googleplay服务 - * @apiName internal.googlePlayService.getGoogleServiceInfo - * @supportVersion android: 4.5.6 - */ -export declare function getGoogleServiceInfo$(params: IInternalGooglePlayServiceGetGoogleServiceInfoParams): Promise; -export default getGoogleServiceInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/googlePlayService/getGoogleServiceInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/googlePlayService/getGoogleServiceInfo.js deleted file mode 100644 index 74b643bb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/googlePlayService/getGoogleServiceInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getGoogleServiceInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getGoogleServiceInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.googlePlayService.getGoogleServiceInfo",exports.getGoogleServiceInfo$=getGoogleServiceInfo$,exports.default=getGoogleServiceInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/auth.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/auth.d.ts deleted file mode 100644 index 0355e345..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/auth.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.groupapp.auth"; -/** - * 群应用授权 请求参数定义 - * @apiName internal.groupapp.auth - */ -export interface IInternalGroupappAuthParams { - /** 开放平台用户授权之后的返回 */ - authCode: string; - /** 开放cid(群插件打开链接参数中获取) */ - openConversationId: string; -} -/** - * 群应用授权 返回结果定义 - * @apiName internal.groupapp.auth - */ -export interface IInternalGroupappAuthResult { -} -/** - * 群应用授权 - * @apiName internal.groupapp.auth - * @supportVersion ios: 5.1.6 android: 5.1.6 - * @author Android:峰砺 iOS:木锤 - */ -export declare function auth$(params: IInternalGroupappAuthParams): Promise; -export default auth$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/auth.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/auth.js deleted file mode 100644 index 351978aa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/auth.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function auth$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.auth$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.groupapp.auth",exports.auth$=auth$,exports.default=auth$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/sendMsgAsUser.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/sendMsgAsUser.d.ts deleted file mode 100644 index 93b38d0f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/sendMsgAsUser.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "internal.groupapp.sendMsgAsUser"; -/** - * 群应用以用户身份发消息 请求参数定义 - * @apiName internal.groupapp.sendMsgAsUser - */ -export interface IInternalGroupappSendMsgAsUserParams { - /** 开放平台用户授权之后的返回 */ - authCode: string; - /** 开放cid(群插件打开链接参数中获取) */ - openConversationId: string; - /** 预展示文案 */ - previewText?: string; - /** 消息模板key */ - messageKey: string; - /** 息模板中的参数变量值,JSON串 */ - messageParam: string; -} -/** - * 群应用以用户身份发消息 返回结果定义 - * @apiName internal.groupapp.sendMsgAsUser - */ -export interface IInternalGroupappSendMsgAsUserResult { -} -/** - * 群应用以用户身份发消息 - * @apiName internal.groupapp.sendMsgAsUser - * @supportVersion ios: 5.1.6 android: 5.1.6 - * @author Android:峰砺 iOS:木锤 - */ -export declare function sendMsgAsUser$(params: IInternalGroupappSendMsgAsUserParams): Promise; -export default sendMsgAsUser$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/sendMsgAsUser.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/sendMsgAsUser.js deleted file mode 100644 index 85de6fdc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupapp/sendMsgAsUser.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMsgAsUser$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMsgAsUser$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.groupapp.sendMsgAsUser",exports.sendMsgAsUser$=sendMsgAsUser$,exports.default=sendMsgAsUser$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/detail.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/detail.d.ts deleted file mode 100644 index 4c02fde4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/detail.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.groupbill.detail"; -/** - * 跳转钉钉群收款详情小程序页面 请求参数定义 - * @apiName internal.groupbill.detail - */ -export interface IInternalGroupbillDetailParams { - /** 群收款创建者unionId */ - creatorUnionId: string; - /** 订单号 */ - orderNo: string; -} -/** - * 跳转钉钉群收款详情小程序页面 返回结果定义 - * @apiName internal.groupbill.detail - */ -export interface IInternalGroupbillDetailResult { - [key: string]: any; -} -/** - * 跳转钉钉群收款详情小程序页面 - * @apiName internal.groupbill.detail - * @supportVersion ios: 5.1.6 android: 5.1.6 - * @author Android:峰砺 iOS:木锤 - */ -export declare function detail$(params: IInternalGroupbillDetailParams): Promise; -export default detail$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/detail.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/detail.js deleted file mode 100644 index 71a5b42f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/detail.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function detail$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.detail$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.groupbill.detail",exports.detail$=detail$,exports.default=detail$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/query.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/query.d.ts deleted file mode 100644 index 41b57b23..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/query.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.groupbill.query"; -/** - * 查询群收款是否存在 请求参数定义 - * @apiName internal.groupbill.query - */ -export interface IInternalGroupbillQueryParams { - /** 群收款创建者unionId */ - creatorUnionId: string; - /** 订单号 */ - orderNo: string; -} -/** - * 查询群收款是否存在 返回结果定义 - * @apiName internal.groupbill.query - */ -export interface IInternalGroupbillQueryResult { - /** 0:不存在 1:已存在 */ - exist: number; -} -/** - * 查询群收款是否存在 - * @apiName internal.groupbill.query - * @supportVersion ios: 5.1.6 android: 5.1.6 - * @author Android:峰砺 iOS:木锤 - */ -export declare function query$(params: IInternalGroupbillQueryParams): Promise; -export default query$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/query.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/query.js deleted file mode 100644 index 7e24e52b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/query.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function query$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.query$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.groupbill.query",exports.query$=query$,exports.default=query$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/send.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/send.d.ts deleted file mode 100644 index ef030323..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/send.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "internal.groupbill.send"; -/** - * 发送群收款 请求参数定义 - * @apiName internal.groupbill.send - */ -export interface IInternalGroupbillSendParams { - /** 开放cid(群插件打开链接参数中获取) */ - openConversationId: string; - /** 订单号 */ - orderNo: string; - /** 0:平摊费用,1:按每人应付金额 */ - distributeType?: number; - /** 总金额 */ - totalAmount: string; - /** [{"unionId":"xxx", "amount":"xxx"}, {xxx}] 全部(如果有自己,则包含自己) */ - detail: any; - /** 总人数 */ - totalCount?: number; -} -/** - * 发送群收款 返回结果定义 - * @apiName internal.groupbill.send - */ -export interface IInternalGroupbillSendResult { -} -/** - * 发送群收款 - * @apiName internal.groupbill.send - * @supportVersion ios: 5.1.6 android: 5.1.6 - * @author Android:峰砺 iOS:木锤 - */ -export declare function send$(params: IInternalGroupbillSendParams): Promise; -export default send$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/send.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/send.js deleted file mode 100644 index 436eb5d0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/groupbill/send.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function send$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.send$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.groupbill.send",exports.send$=send$,exports.default=send$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/guide/closeGuideBanner.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/guide/closeGuideBanner.d.ts deleted file mode 100644 index 686a7324..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/guide/closeGuideBanner.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.guide.closeGuideBanner"; -/** - * 获取App列表 请求参数定义 - * @apiName internal.guide.closeGuideBanner - */ -export interface IInternalGuideCloseGuideBannerParams { - [key: string]: any; -} -/** - * 获取App列表 返回结果定义 - * @apiName internal.guide.closeGuideBanner - */ -export interface IInternalGuideCloseGuideBannerResult { - [key: string]: any; -} -/** - * 获取App列表 - * @apiName internal.guide.closeGuideBanner - * @supportVersion ios: 4.2.0 android: 4.2.0 - */ -export declare function closeGuideBanner$(params: IInternalGuideCloseGuideBannerParams): Promise; -export default closeGuideBanner$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/guide/closeGuideBanner.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/guide/closeGuideBanner.js deleted file mode 100644 index 1f3b5e4a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/guide/closeGuideBanner.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closeGuideBanner$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.closeGuideBanner$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.guide.closeGuideBanner",exports.closeGuideBanner$=closeGuideBanner$,exports.default=closeGuideBanner$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/disableStepCountSync.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/disableStepCountSync.d.ts deleted file mode 100644 index 168b4bf9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/disableStepCountSync.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.health.disableStepCountSync"; -/** - * 关闭 步数同步功能 请求参数定义 - * @apiName internal.health.disableStepCountSync - */ -export interface IInternalHealthDisableStepCountSyncParams { - [key: string]: any; -} -/** - * 关闭 步数同步功能 返回结果定义 - * @apiName internal.health.disableStepCountSync - */ -export interface IInternalHealthDisableStepCountSyncResult { - [key: string]: any; -} -/** - * 关闭 步数同步功能 - * @apiName internal.health.disableStepCountSync - * @supportVersion ios: 3.4.1 android: 3.4.1 - */ -export declare function disableStepCountSync$(params: IInternalHealthDisableStepCountSyncParams): Promise; -export default disableStepCountSync$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/disableStepCountSync.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/disableStepCountSync.js deleted file mode 100644 index 6a118162..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/disableStepCountSync.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disableStepCountSync$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.disableStepCountSync$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.health.disableStepCountSync",exports.disableStepCountSync$=disableStepCountSync$,exports.default=disableStepCountSync$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/enableStepCountSync.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/enableStepCountSync.d.ts deleted file mode 100644 index 2d4a5345..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/enableStepCountSync.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.health.enableStepCountSync"; -/** - * 开启步数同步功能(步数:用户当天0:00至当前时间的总步数),并立即上传一次 请求参数定义 - * @apiName internal.health.enableStepCountSync - */ -export interface IInternalHealthEnableStepCountSyncParams { - [key: string]: any; -} -/** - * 开启步数同步功能(步数:用户当天0:00至当前时间的总步数),并立即上传一次 返回结果定义 - * @apiName internal.health.enableStepCountSync - */ -export interface IInternalHealthEnableStepCountSyncResult { - [key: string]: any; -} -/** - * 开启步数同步功能(步数:用户当天0:00至当前时间的总步数),并立即上传一次 - * @apiName internal.health.enableStepCountSync - * @supportVersion ios: 3.4.1 android: 3.4.1 - */ -export declare function enableStepCountSync$(params: IInternalHealthEnableStepCountSyncParams): Promise; -export default enableStepCountSync$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/enableStepCountSync.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/enableStepCountSync.js deleted file mode 100644 index bc14febd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/enableStepCountSync.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enableStepCountSync$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enableStepCountSync$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.health.enableStepCountSync",exports.enableStepCountSync$=enableStepCountSync$,exports.default=enableStepCountSync$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStep.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStep.d.ts deleted file mode 100644 index cddea0fe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStep.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.health.getTodaysStep"; -/** - * 获取步数 同步本地和华为数据对比 获取步数 请求参数定义 - * @apiName internal.health.getTodaysStep - */ -export interface IInternalHealthGetTodaysStepParams { -} -/** - * 获取步数 同步本地和华为数据对比 获取步数 返回结果定义 - * @apiName internal.health.getTodaysStep - */ -export interface IInternalHealthGetTodaysStepResult { - support: boolean; - stepCount: number; - lastUploadCount: number; - lastUploadTime: number; - countingStarted: boolean; - sensorinitialized: boolean; - uploadInterval: number; - saveInterval: number; - lastStepsInvalid: boolean; -} -/** - * 获取步数 同步本地和华为数据对比 获取步数 - * @apiName internal.health.getTodaysStep - * @supportVersion android: 4.7.27 - * @author android: 南洲 - */ -export declare function getTodaysStep$(params: IInternalHealthGetTodaysStepParams): Promise; -export default getTodaysStep$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStep.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStep.js deleted file mode 100644 index b496cf67..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStep.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTodaysStep$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTodaysStep$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.health.getTodaysStep",exports.getTodaysStep$=getTodaysStep$,exports.default=getTodaysStep$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStepCount.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStepCount.d.ts deleted file mode 100644 index 530a051c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStepCount.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.health.getTodaysStepCount"; -/** - * 获取用户当天0:00至当前时间的总步数 请求参数定义 - * @apiName internal.health.getTodaysStepCount - */ -export interface IInternalHealthGetTodaysStepCountParams { - [key: string]: any; -} -/** - * 获取用户当天0:00至当前时间的总步数 返回结果定义 - * @apiName internal.health.getTodaysStepCount - */ -export interface IInternalHealthGetTodaysStepCountResult { - [key: string]: any; -} -/** - * 获取用户当天0:00至当前时间的总步数 - * @apiName internal.health.getTodaysStepCount - * @supportVersion ios: 3.4.1 android: 3.4.1 - */ -export declare function getTodaysStepCount$(params: IInternalHealthGetTodaysStepCountParams): Promise; -export default getTodaysStepCount$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStepCount.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStepCount.js deleted file mode 100644 index 0d27ffe4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/getTodaysStepCount.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTodaysStepCount$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getTodaysStepCount$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.health.getTodaysStepCount",exports.getTodaysStepCount$=getTodaysStepCount$,exports.default=getTodaysStepCount$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/isShowPermissionTip.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/isShowPermissionTip.d.ts deleted file mode 100644 index d7a65a80..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/isShowPermissionTip.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.health.isShowPermissionTip"; -/** - * 判断是否显示开启华为健康权限tip 请求参数定义 - * @apiName internal.health.isShowPermissionTip - */ -export interface IInternalHealthIsShowPermissionTipParams { -} -/** - * 判断是否显示开启华为健康权限tip 返回结果定义 - * @apiName internal.health.isShowPermissionTip - */ -export interface IInternalHealthIsShowPermissionTipResult { - isshowtip: boolean; -} -/** - * 判断是否显示开启华为健康权限tip - * @apiName internal.health.isShowPermissionTip - * @supportVersion android: 4.7.27 - * @author android: 南洲 - */ -export declare function isShowPermissionTip$(params: IInternalHealthIsShowPermissionTipParams): Promise; -export default isShowPermissionTip$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/isShowPermissionTip.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/isShowPermissionTip.js deleted file mode 100644 index d5fd78c3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/isShowPermissionTip.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isShowPermissionTip$(i){return common_1.ddSdk.invokeAPI(exports.apiName,i)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isShowPermissionTip$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.health.isShowPermissionTip",exports.isShowPermissionTip$=isShowPermissionTip$,exports.default=isShowPermissionTip$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/openAISport.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/openAISport.d.ts deleted file mode 100644 index a2c5f2d2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/openAISport.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.health.openAISport"; -/** - * 打开AI跳绳 请求参数定义 - * @apiName internal.health.openAISport - */ -export interface IInternalHealthOpenAISportParams { - /** AI 运动类型 Code,跳绳:A007 */ - code: number; - /** 来源,dingding/taobao/ledongli */ - source: string; -} -/** - * 打开AI跳绳 返回结果定义 - * @apiName internal.health.openAISport - */ -export interface IInternalHealthOpenAISportResult { -} -/** - * 打开AI跳绳 - * @apiName internal.health.openAISport - * @supportVersion ios: 5.1.34 android: 5.1.34 - * @author Android:铠甲 iOS:邓颖 - */ -export declare function openAISport$(params: IInternalHealthOpenAISportParams): Promise; -export default openAISport$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/openAISport.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/openAISport.js deleted file mode 100644 index 3d51d583..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/openAISport.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openAISport$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openAISport$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.health.openAISport",exports.openAISport$=openAISport$,exports.default=openAISport$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/pedometerStatus.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/pedometerStatus.d.ts deleted file mode 100644 index 79425f8c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/pedometerStatus.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.health.pedometerStatus"; -/** - * 获取 Pedometer (运动与健身)权限状态 请求参数定义 - * @apiName internal.health.pedometerStatus - */ -export interface IInternalHealthPedometerStatusParams { -} -/** - * 获取 Pedometer (运动与健身)权限状态 返回结果定义 - * @apiName internal.health.pedometerStatus - */ -export interface IInternalHealthPedometerStatusResult { - /** 0: 未申请 1: 系统限制 2: 用户拒绝 3: 已授权 */ - status: number; -} -/** - * 获取 Pedometer (运动与健身)权限状态 - * @apiName internal.health.pedometerStatus - * @supportVersion ios: 4.6.21 android: 4.6.21 - */ -export declare function pedometerStatus$(params: IInternalHealthPedometerStatusParams): Promise; -export default pedometerStatus$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/pedometerStatus.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/pedometerStatus.js deleted file mode 100644 index 79060317..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/pedometerStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pedometerStatus$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pedometerStatus$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.health.pedometerStatus",exports.pedometerStatus$=pedometerStatus$,exports.default=pedometerStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/queryHealthPermission.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/queryHealthPermission.d.ts deleted file mode 100644 index a861a635..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/queryHealthPermission.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.health.queryHealthPermission"; -/** - * 本地跳转华为健康权限申请页面 请求参数定义 - * @apiName internal.health.queryHealthPermission - */ -export interface IInternalHealthQueryHealthPermissionParams { -} -/** - * 本地跳转华为健康权限申请页面 返回结果定义 - * @apiName internal.health.queryHealthPermission - */ -export interface IInternalHealthQueryHealthPermissionResult { -} -/** - * 本地跳转华为健康权限申请页面 - * @apiName internal.health.queryHealthPermission - * @supportVersion android: 4.7.27 - * @author android: 南洲 - */ -export declare function queryHealthPermission$(params: IInternalHealthQueryHealthPermissionParams): Promise; -export default queryHealthPermission$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/queryHealthPermission.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/health/queryHealthPermission.js deleted file mode 100644 index 69d24287..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/health/queryHealthPermission.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryHealthPermission$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryHealthPermission$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.health.queryHealthPermission",exports.queryHealthPermission$=queryHealthPermission$,exports.default=queryHealthPermission$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/cancel.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/host/cancel.d.ts deleted file mode 100644 index ccc3cf9f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/cancel.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.host.cancel"; -/** - * 取消离线托管任务 请求参数定义 - * @apiName internal.host.cancel - */ -export interface IInternalHostCancelParams { - [key: string]: any; -} -/** - * 取消离线托管任务 返回结果定义 - * @apiName internal.host.cancel - */ -export interface IInternalHostCancelResult { - [key: string]: any; -} -/** - * 取消离线托管任务 - * @apiName internal.host.cancel - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function cancel$(params: IInternalHostCancelParams): Promise; -export default cancel$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/cancel.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/host/cancel.js deleted file mode 100644 index c390bcfd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/cancel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function cancel$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.cancel$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.host.cancel",exports.cancel$=cancel$,exports.default=cancel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/lwp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/host/lwp.d.ts deleted file mode 100644 index c7b63071..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/lwp.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.host.lwp"; -/** - * 离线托管的lwp请求 请求参数定义 - * @apiName internal.host.lwp - */ -export interface IInternalHostLwpParams { - [key: string]: any; -} -/** - * 离线托管的lwp请求 返回结果定义 - * @apiName internal.host.lwp - */ -export interface IInternalHostLwpResult { - [key: string]: any; -} -/** - * 离线托管的lwp请求 - * @apiName internal.host.lwp - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function lwp$(params: IInternalHostLwpParams): Promise; -export default lwp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/lwp.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/host/lwp.js deleted file mode 100644 index 8142c792..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/lwp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function lwp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.lwp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.host.lwp",exports.lwp$=lwp$,exports.default=lwp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/query.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/host/query.d.ts deleted file mode 100644 index 91894f25..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/query.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.host.query"; -/** - * 查询离线托管任务 请求参数定义 - * @apiName internal.host.query - */ -export interface IInternalHostQueryParams { - [key: string]: any; -} -/** - * 查询离线托管任务 返回结果定义 - * @apiName internal.host.query - */ -export interface IInternalHostQueryResult { - [key: string]: any; -} -/** - * 查询离线托管任务 - * @apiName internal.host.query - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function query$(params: IInternalHostQueryParams): Promise; -export default query$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/query.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/host/query.js deleted file mode 100644 index 83f2b4a0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/host/query.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function query$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.query$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.host.query",exports.query$=query$,exports.default=query$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/delete.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/delete.d.ts deleted file mode 100644 index d74b6e29..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/delete.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.hpm.delete"; -/** - * hpm删除 请求参数定义 - * @apiName internal.hpm.delete - */ -export interface IInternalHpmDeleteParams { - [key: string]: any; -} -/** - * hpm删除 返回结果定义 - * @apiName internal.hpm.delete - */ -export interface IInternalHpmDeleteResult { - [key: string]: any; -} -/** - * hpm删除 - * @apiName internal.hpm.delete - * @supportVersion ios: 2.15.0 android: 2.15.0 - */ -export declare function delete$(params: IInternalHpmDeleteParams): Promise; -export default delete$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/delete.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/delete.js deleted file mode 100644 index 3f0f9f1e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/delete.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function delete$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.delete$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.hpm.delete",exports.delete$=delete$,exports.default=delete$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/get.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/get.d.ts deleted file mode 100644 index e717c048..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/get.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.hpm.get"; -/** - * 获取hpm配置信息(暂未开发) 请求参数定义 - * @apiName internal.hpm.get - */ -export interface IInternalHpmGetParams { - [key: string]: any; -} -/** - * 获取hpm配置信息(暂未开发) 返回结果定义 - * @apiName internal.hpm.get - */ -export interface IInternalHpmGetResult { - [key: string]: any; -} -/** - * 获取hpm配置信息(暂未开发) - * @apiName internal.hpm.get - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function get$(params: IInternalHpmGetParams): Promise; -export default get$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/get.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/get.js deleted file mode 100644 index 874e1870..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/get.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function get$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.get$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.hpm.get",exports.get$=get$,exports.default=get$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/queryInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/queryInfo.d.ts deleted file mode 100644 index 4a5dcb4a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/queryInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.hpm.queryInfo"; -/** - * hpm查询 请求参数定义 - * @apiName internal.hpm.queryInfo - */ -export interface IInternalHpmQueryInfoParams { - [key: string]: any; -} -/** - * hpm查询 返回结果定义 - * @apiName internal.hpm.queryInfo - */ -export interface IInternalHpmQueryInfoResult { - [key: string]: any; -} -/** - * hpm查询 - * @apiName internal.hpm.queryInfo - * @supportVersion ios: 2.15.0 android: 2.15.0 - */ -export declare function queryInfo$(params: IInternalHpmQueryInfoParams): Promise; -export default queryInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/queryInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/queryInfo.js deleted file mode 100644 index d25cd5e4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/queryInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.hpm.queryInfo",exports.queryInfo$=queryInfo$,exports.default=queryInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/update.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/update.d.ts deleted file mode 100644 index aeeed4fc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/update.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.hpm.update"; -/** - * 更新hpm 请求参数定义 - * @apiName internal.hpm.update - */ -export interface IInternalHpmUpdateParams { - [key: string]: any; -} -/** - * 更新hpm 返回结果定义 - * @apiName internal.hpm.update - */ -export interface IInternalHpmUpdateResult { - [key: string]: any; -} -/** - * 更新hpm - * @apiName internal.hpm.update - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function update$(params: IInternalHpmUpdateParams): Promise; -export default update$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/update.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/update.js deleted file mode 100644 index 80338292..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/hpm/update.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function update$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.update$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.hpm.update",exports.update$=update$,exports.default=update$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/getMsgFilterConfigDetail.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/getMsgFilterConfigDetail.d.ts deleted file mode 100644 index 28931a93..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/getMsgFilterConfigDetail.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -export declare const apiName = "internal.imshortcut.getMsgFilterConfigDetail"; -/** - * 拉取消息捷径设置页列表数据 请求参数定义 - * @apiName internal.imshortcut.getMsgFilterConfigDetail - */ -export interface IInternalImshortcutGetMsgFilterConfigDetailParams { -} -/** - * 拉取消息捷径设置页列表数据 返回结果定义 - * @apiName internal.imshortcut.getMsgFilterConfigDetail - */ -export interface IInternalImshortcutGetMsgFilterConfigDetailResult { - /** 更新后的配置 */ - configs: Array<{ - /** 设置项id */ - itemId: number; - /** 设置项icon */ - iconFont: string; - /** 设置项前景颜色 */ - iconColor: string; - /** 设置项背景颜色 */ - iconBgColor: string; - /** 标题 */ - title: string; - /** 数据版本 */ - syncVersion: number; - /** 开关状态 */ - status: number; - /** 提示文案 */ - tooltip: string; - }>; -} -/** - * 拉取消息捷径设置页列表数据 - * @apiName internal.imshortcut.getMsgFilterConfigDetail - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function getMsgFilterConfigDetail$(params: IInternalImshortcutGetMsgFilterConfigDetailParams): Promise; -export default getMsgFilterConfigDetail$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/getMsgFilterConfigDetail.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/getMsgFilterConfigDetail.js deleted file mode 100644 index e8fdaf75..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/getMsgFilterConfigDetail.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getMsgFilterConfigDetail$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getMsgFilterConfigDetail$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.imshortcut.getMsgFilterConfigDetail",exports.getMsgFilterConfigDetail$=getMsgFilterConfigDetail$,exports.default=getMsgFilterConfigDetail$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/initEventChannel.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/initEventChannel.d.ts deleted file mode 100644 index c6f18ae6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/initEventChannel.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.imshortcut.initEventChannel"; -/** - * 初始化消息捷径事件通道,事件通道初始化之后,才会收到后续的各种消息/群状态的变更。 请求参数定义 - * @apiName internal.imshortcut.initEventChannel - */ -export interface IInternalImshortcutInitEventChannelParams { - /** 消息过滤器类型 102 红包 103 @我 104 特别关注 105 链接 */ - filterType: number; -} -/** - * 初始化消息捷径事件通道,事件通道初始化之后,才会收到后续的各种消息/群状态的变更。 返回结果定义 - * @apiName internal.imshortcut.initEventChannel - */ -export interface IInternalImshortcutInitEventChannelResult { -} -/** - * 初始化消息捷径事件通道,事件通道初始化之后,才会收到后续的各种消息/群状态的变更。 - * @apiName internal.imshortcut.initEventChannel - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function initEventChannel$(params: IInternalImshortcutInitEventChannelParams): Promise; -export default initEventChannel$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/initEventChannel.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/initEventChannel.js deleted file mode 100644 index 76d0229b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/initEventChannel.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function initEventChannel$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.initEventChannel$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.imshortcut.initEventChannel",exports.initEventChannel$=initEventChannel$,exports.default=initEventChannel$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/listFilterMsg.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/listFilterMsg.d.ts deleted file mode 100644 index 2b211264..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/listFilterMsg.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "internal.imshortcut.listFilterMsg"; -/** - * 拉取过滤消息列表 请求参数定义 - * @apiName internal.imshortcut.listFilterMsg - */ -export interface IInternalImshortcutListFilterMsgParams { - /** 必选 消息过滤器类型 102 红包 103 @我 104 特别关注 105 链接 */ - filterType: number; - /** 可选 游标 */ - cursor?: string; - /** 可选 请求个数,不填默认20 */ - count?: number; -} -/** - * 拉取过滤消息列表 返回结果定义 - * @apiName internal.imshortcut.listFilterMsg - */ -export interface IInternalImshortcutListFilterMsgResult { - /** 消息的数组,IMJSMessageModel是前端标准消息模型 同动态化IM,细节可找 @龙允(yaohui.lyh) 咨询 */ - msgs: any[]; - /** 下一页的游标 */ - cursor: string; - /** 是否有下一页数据 */ - hasMore: boolean; - /** 上次查看时间,单位ms */ - lastViewTime: number; -} -/** - * 拉取过滤消息列表 - * @apiName internal.imshortcut.listFilterMsg - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function listFilterMsg$(params: IInternalImshortcutListFilterMsgParams): Promise; -export default listFilterMsg$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/listFilterMsg.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/listFilterMsg.js deleted file mode 100644 index addb2471..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/listFilterMsg.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function listFilterMsg$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.listFilterMsg$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.imshortcut.listFilterMsg",exports.listFilterMsg$=listFilterMsg$,exports.default=listFilterMsg$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/updateMsgFilterStatus.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/updateMsgFilterStatus.d.ts deleted file mode 100644 index f19d12bb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/updateMsgFilterStatus.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -export declare const apiName = "internal.imshortcut.updateMsgFilterStatus"; -/** - * 更新消息捷径设置项开关状态 请求参数定义 - * @apiName internal.imshortcut.updateMsgFilterStatus - */ -export interface IInternalImshortcutUpdateMsgFilterStatusParams { - /** 设置项id */ - itemId: number; - /** 开关状态 */ - status: number; - syncVersion?: number; -} -/** - * 更新消息捷径设置项开关状态 返回结果定义 - * @apiName internal.imshortcut.updateMsgFilterStatus - */ -export interface IInternalImshortcutUpdateMsgFilterStatusResult { - /** 状态码,0表示成功,其他是失败 */ - retCode: number; - /** 失败原因 */ - errorMsg: string; - /** 更新后的配置 */ - configs: Array<{ - /** 设置项id */ - itemId: number; - /** 设置项icon */ - iconFont: string; - /** 设置项前景颜色 */ - iconColor: string; - /** 设置项背景颜色 */ - iconBgColor: string; - /** 标题 */ - title: string; - /** 数据版本 */ - syncVersion: number; - /** 开关状态 */ - status: number; - /** 提示文案 */ - tooltip: string; - }>; -} -/** - * 更新消息捷径设置项开关状态 - * @apiName internal.imshortcut.updateMsgFilterStatus - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function updateMsgFilterStatus$(params: IInternalImshortcutUpdateMsgFilterStatusParams): Promise; -export default updateMsgFilterStatus$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/updateMsgFilterStatus.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/updateMsgFilterStatus.js deleted file mode 100644 index 6662a6fb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/imshortcut/updateMsgFilterStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function updateMsgFilterStatus$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.updateMsgFilterStatus$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.imshortcut.updateMsgFilterStatus",exports.updateMsgFilterStatus$=updateMsgFilterStatus$,exports.default=updateMsgFilterStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/add.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/add.d.ts deleted file mode 100644 index b643cc55..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/add.d.ts +++ /dev/null @@ -1,52 +0,0 @@ -export declare const apiName = "internal.inputPanel.add"; -/** - * 初始化输入组件并上屏 请求参数定义 - * @apiName internal.inputPanel.add - */ -export interface IInternalInputPanelAddParams { - /** 这是占位符 */ - placeholder?: string; - /** 默认填充文本 */ - text?: string; - /** 非必选:确认按钮文案 */ - returnKey?: number; - /** 开启At功能 */ - enableAt?: { - uids: number[]; - /** 会话id,@时打开群成员列表, V=(4.6.21,∞] */ - cid?: string; - }; - /** 开启加号入口 */ - enablePlus?: { - items: Array<{ - title: string; - iconUrl: string; - }>; - }; - /** 开启表情 */ - enableEmotion?: any; - /** 添加键盘后获取焦点,显示键盘 */ - focus?: boolean; - /** 提交文字后,保持focus(键盘不管闭) */ - enableKeepFocus?: boolean; - /** (>= 4.7.8) 指定通知事件通道名称,如不指定,默认为channel.inputPanel 强烈建议指定,避免多个业务同时使用该组件时,错误处理其他业务输入事件 */ - channelNamespace?: string; - /** (>= 4.6.27) 扩展面板信息 panels: [{panelType:'',panelData:{}}] */ - extension?: any; - /** (>= 4.7.32) 添加输入框时,是否强制设置键盘支持换行。1表示键盘支持换行,0表示不强制开启,与钉钉设置保持一致。 */ - supportNewLine?: number; -} -/** - * 初始化输入组件并上屏 返回结果定义 - * @apiName internal.inputPanel.add - */ -export interface IInternalInputPanelAddResult { -} -/** - * 初始化输入组件并上屏 - * @apiName internal.inputPanel.add - * @supportVersion ios: 4.6.18 android: 4.6.18 - * @author ios:云信; android:朴文 - */ -export declare function add$(params: IInternalInputPanelAddParams): Promise; -export default add$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/add.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/add.js deleted file mode 100644 index 7d0639a6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/add.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function add$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.add$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.add",exports.add$=add$,exports.default=add$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/addToolBar.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/addToolBar.d.ts deleted file mode 100644 index 8d5555ae..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/addToolBar.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "internal.inputPanel.addToolBar"; -/** - * 输入组件支持工具栏, 工具栏可定制 请求参数定义 - * @apiName internal.inputPanel.addToolBar - */ -export interface IInternalInputPanelAddToolBarParams { - toolbarConfig: { - items: Array<{ - /** -1 默认id,标识表情 */ - id?: number; - /** iconfont枚举,目前仅支持emotion, camera, pic, cspace, 优先级高于iconUrl */ - iconName?: string; - /** 自定义icon */ - iconUrl?: string; - /** 工具名称 */ - name?: string; - }>; - }; -} -/** - * 输入组件支持工具栏, 工具栏可定制 返回结果定义 - * @apiName internal.inputPanel.addToolBar - */ -export interface IInternalInputPanelAddToolBarResult { -} -/** - * 输入组件支持工具栏, 工具栏可定制 - * @apiName internal.inputPanel.addToolBar - * @supportVersion ios: 5.0.8 android: 5.0.8 - * @author Android:朴文, iOS: 文算 - */ -export declare function addToolBar$(params: IInternalInputPanelAddToolBarParams): Promise; -export default addToolBar$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/addToolBar.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/addToolBar.js deleted file mode 100644 index 2e1a05be..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/addToolBar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addToolBar$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addToolBar$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.addToolBar",exports.addToolBar$=addToolBar$,exports.default=addToolBar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/atPick.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/atPick.d.ts deleted file mode 100644 index 8f0cf1d2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/atPick.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.inputPanel.atPick"; -/** - * 获取At可选人员uid列表后,弹出At选人界面。 请求参数定义 - * @apiName internal.inputPanel.atPick - */ -export interface IInternalInputPanelAtPickParams { - /** 必选: @可选人列表 */ - uids: number[]; -} -/** - * 获取At可选人员uid列表后,弹出At选人界面。 返回结果定义 - * @apiName internal.inputPanel.atPick - */ -export interface IInternalInputPanelAtPickResult { -} -/** - * 获取At可选人员uid列表后,弹出At选人界面。 - * @apiName internal.inputPanel.atPick - * @supportVersion ios: 4.6.18 android: 4.6.18 - */ -export declare function atPick$(params: IInternalInputPanelAtPickParams): Promise; -export default atPick$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/atPick.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/atPick.js deleted file mode 100644 index 525f4ea6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/atPick.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function atPick$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.atPick$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.atPick",exports.atPick$=atPick$,exports.default=atPick$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/changeMode.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/changeMode.d.ts deleted file mode 100644 index ddbd8130..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/changeMode.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "internal.inputPanel.changeMode"; -/** - * 切换输入模式,文本模式支持拉起键盘。 请求参数定义 - * @apiName internal.inputPanel.changeMode - */ -export interface IInternalInputPanelChangeModeParams { - /** 必选:使用文本输入模式 */ - text: { - /** 必选:是否获取焦点,拉起键盘。 */ - focus?: 1 | 0; - /** 文本At某人 V=(4.6.21,∞] */ - atUsers?: { - [key: number]: string; - }; - /** 文本占位符 V=(4.6.21,∞] */ - placeholder?: string; - /** 文本内容 V=(4.6.21,∞] */ - text: string; - }; -} -/** - * 切换输入模式,文本模式支持拉起键盘。 返回结果定义 - * @apiName internal.inputPanel.changeMode - */ -export interface IInternalInputPanelChangeModeResult { - [key: string]: any; -} -/** - * 切换输入模式,文本模式支持拉起键盘。 - * @apiName internal.inputPanel.changeMode - * @supportVersion ios: 4.6.18 android: 4.6.18 - */ -export declare function changeMode$(params: IInternalInputPanelChangeModeParams): Promise; -export default changeMode$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/changeMode.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/changeMode.js deleted file mode 100644 index c6b9c067..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/changeMode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function changeMode$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.changeMode$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.changeMode",exports.changeMode$=changeMode$,exports.default=changeMode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/getCurrentInput.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/getCurrentInput.d.ts deleted file mode 100644 index 0a1e50db..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/getCurrentInput.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.inputPanel.getCurrentInput"; -/** - * 获取native输入面板当前的输入内容 请求参数定义 - * @apiName internal.inputPanel.getCurrentInput - */ -export interface IInternalInputPanelGetCurrentInputParams { -} -/** - * 获取native输入面板当前的输入内容 返回结果定义 - * @apiName internal.inputPanel.getCurrentInput - */ -export interface IInternalInputPanelGetCurrentInputResult { - text: string; - at: { - [uid: string]: string; - }; -} -/** - * 获取native输入面板当前的输入内容 - * @apiName internal.inputPanel.getCurrentInput - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function getCurrentInput$(params: IInternalInputPanelGetCurrentInputParams): Promise; -export default getCurrentInput$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/getCurrentInput.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/getCurrentInput.js deleted file mode 100644 index 2e2546a3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/getCurrentInput.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentInput$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentInput$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.getCurrentInput",exports.getCurrentInput$=getCurrentInput$,exports.default=getCurrentInput$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/refreshInputExtendView.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/refreshInputExtendView.d.ts deleted file mode 100644 index 5014d0fe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/refreshInputExtendView.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.inputPanel.refreshInputExtendView"; -/** - * 刷新输入法扩展面板界面 请求参数定义 - * @apiName internal.inputPanel.refreshInputExtendView - */ -export interface IInternalInputPanelRefreshInputExtendViewParams { - panels: Array<{ - /** 定义native 扩展面板的类型 */ - panelType: string; - /** 定义绑定到面板的数据 */ - panelData: any; - }>; -} -/** - * 刷新输入法扩展面板界面 返回结果定义 - * @apiName internal.inputPanel.refreshInputExtendView - */ -export interface IInternalInputPanelRefreshInputExtendViewResult { -} -/** - * 刷新输入法扩展面板界面 - * @apiName internal.inputPanel.refreshInputExtendView - * @supportVersion ios: 4.7.27 android: 4.7.27 - * @author ios: 文算, android: 长岚 - */ -export declare function refreshInputExtendView$(params: IInternalInputPanelRefreshInputExtendViewParams): Promise; -export default refreshInputExtendView$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/refreshInputExtendView.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/refreshInputExtendView.js deleted file mode 100644 index 6aee4cd9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/refreshInputExtendView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function refreshInputExtendView$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.refreshInputExtendView$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.refreshInputExtendView",exports.refreshInputExtendView$=refreshInputExtendView$,exports.default=refreshInputExtendView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/remove.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/remove.d.ts deleted file mode 100644 index ba9247e4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/remove.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.inputPanel.remove"; -/** - * 销毁并移除输入组件 请求参数定义 - * @apiName internal.inputPanel.remove - */ -export interface IInternalInputPanelRemoveParams { -} -/** - * 销毁并移除输入组件 返回结果定义 - * @apiName internal.inputPanel.remove - */ -export interface IInternalInputPanelRemoveResult { -} -/** - * 销毁并移除输入组件 - * @apiName internal.inputPanel.remove - * @supportVersion ios: 4.6.18 android: 4.6.18 - */ -export declare function remove$(params: IInternalInputPanelRemoveParams): Promise; -export default remove$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/remove.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/remove.js deleted file mode 100644 index 652c95ef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/remove.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function remove$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.remove$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.remove",exports.remove$=remove$,exports.default=remove$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/removeToolbar.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/removeToolbar.d.ts deleted file mode 100644 index 7f34d330..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/removeToolbar.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.inputPanel.removeToolbar"; -/** - * 移除输入工具条 请求参数定义 - * @apiName internal.inputPanel.removeToolbar - */ -export interface IInternalInputPanelRemoveToolbarParams { -} -/** - * 移除输入工具条 返回结果定义 - * @apiName internal.inputPanel.removeToolbar - */ -export interface IInternalInputPanelRemoveToolbarResult { -} -/** - * 移除输入工具条 - * @apiName internal.inputPanel.removeToolbar - * @supportVersion ios: 5.0.8 android: 5.0.8 - * @author Android:朴文, iOS: 文算 - */ -export declare function removeToolbar$(params: IInternalInputPanelRemoveToolbarParams): Promise; -export default removeToolbar$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/removeToolbar.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/removeToolbar.js deleted file mode 100644 index da104818..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/removeToolbar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeToolbar$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeToolbar$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.removeToolbar",exports.removeToolbar$=removeToolbar$,exports.default=removeToolbar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/resignInput.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/resignInput.d.ts deleted file mode 100644 index 5a9f5343..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/resignInput.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.inputPanel.resignInput"; -/** - * 结束当前输入状态,恢复输入框。 请求参数定义 - * @apiName internal.inputPanel.resignInput - */ -export interface IInternalInputPanelResignInputParams { -} -/** - * 结束当前输入状态,恢复输入框。 返回结果定义 - * @apiName internal.inputPanel.resignInput - */ -export interface IInternalInputPanelResignInputResult { -} -/** - * 结束当前输入状态,恢复输入框。 - * @apiName internal.inputPanel.resignInput - * @supportVersion ios: 4.6.18 android: 4.6.18 - */ -export declare function resignInput$(params: IInternalInputPanelResignInputParams): Promise; -export default resignInput$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/resignInput.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/resignInput.js deleted file mode 100644 index d5fc8942..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/inputPanel/resignInput.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resignInput$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.resignInput$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.inputPanel.resignInput",exports.resignInput$=resignInput$,exports.default=resignInput$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/batchDisposeCard.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/batchDisposeCard.d.ts deleted file mode 100644 index 5e645332..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/batchDisposeCard.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.interactiveCard.batchDisposeCard"; -/** - * 批量销毁交互动态卡片 请求参数定义 - * @apiName internal.interactiveCard.batchDisposeCard - */ -export interface IInternalInteractiveCardBatchDisposeCardParams { - /** 交互动态卡片Id列表 */ - cardInstanceIds: number[]; -} -/** - * 批量销毁交互动态卡片 返回结果定义 - * @apiName internal.interactiveCard.batchDisposeCard - */ -export interface IInternalInteractiveCardBatchDisposeCardResult { -} -/** - * 批量销毁交互动态卡片 - * @apiName internal.interactiveCard.batchDisposeCard - * @supportVersion ios: 4.7.8 android: 4.7.8 - * @author android: 卧岩, iOS: 鱼非 - */ -export declare function batchDisposeCard$(params: IInternalInteractiveCardBatchDisposeCardParams): Promise; -export default batchDisposeCard$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/batchDisposeCard.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/batchDisposeCard.js deleted file mode 100644 index d64ccd8c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/batchDisposeCard.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function batchDisposeCard$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.batchDisposeCard$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.interactiveCard.batchDisposeCard",exports.batchDisposeCard$=batchDisposeCard$,exports.default=batchDisposeCard$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/getCardInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/getCardInfo.d.ts deleted file mode 100644 index dafa0b37..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/getCardInfo.d.ts +++ /dev/null @@ -1,47 +0,0 @@ -export declare const apiName = "internal.interactiveCard.getCardInfo"; -/** - * 获取交互动态卡片信息 请求参数定义 - * @apiName internal.interactiveCard.getCardInfo - */ -export interface IInternalInteractiveCardGetCardInfoParams { - /** 交互动态卡片Id */ - cardInstanceId: number; - /** 业务平台,0: IM (4.7.16以上版本支持) */ - platform: number; - /** 业务Id,用来鉴权,当平台是IM的时候,platformBizId设置为messageId (4.7.16以上版本支持) */ - platformBizId: string; -} -/** - * 获取交互动态卡片信息 返回结果定义 - * @apiName internal.interactiveCard.getCardInfo - */ -export interface IInternalInteractiveCardGetCardInfoResult { - cardInfo: { - /** 卡片Id */ - cardInstanceId: number; - /** 小程序Id */ - miniAppId: string; - /** 卡片数据 */ - cardData: string; - /** 卡片私有数据 */ - privateCardData: string; - /** 卡片版本 */ - version: number; - /** 投放平台 */ - distPlatform: string; - /** 平台Id */ - platformBizId: string; - /** 小程序组件名 */ - widgetName: string; - /** 卡片本地数据 */ - localData: string; - }; -} -/** - * 获取交互动态卡片信息 - * @apiName internal.interactiveCard.getCardInfo - * @supportVersion ios: 4.7.8 android: 4.7.8 - * @author android: 卧岩, iOS: 鱼非 - */ -export declare function getCardInfo$(params: IInternalInteractiveCardGetCardInfoParams): Promise; -export default getCardInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/getCardInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/getCardInfo.js deleted file mode 100644 index cd0d7971..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/getCardInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCardInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCardInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.interactiveCard.getCardInfo",exports.getCardInfo$=getCardInfo$,exports.default=getCardInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/sendAction.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/sendAction.d.ts deleted file mode 100644 index 316323a8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/sendAction.d.ts +++ /dev/null @@ -1,58 +0,0 @@ -export declare const apiName = "internal.interactiveCard.sendAction"; -/** - * 动态卡片发送交互事件 请求参数定义 - * @apiName internal.interactiveCard.sendAction - */ -export interface IInternalInteractiveCardSendActionParams { - cardInstanceId: number; - cardAction: { - /** 交互Id */ - actionId: string; - /** 交互类型 0:同步; 1:异步 */ - actionType?: number; - /** 交互内容 */ - actionData?: string; - /** 加载文案 */ - beginActionText?: string; - /** 成功文案 */ - successActionText?: string; - /** 本地缓存数据 */ - localData?: string; - /** 本地缓存数据类型 0:内存; 1:DB */ - localDataCacheType?: string; - }; -} -/** - * 动态卡片发送交互事件 返回结果定义 - * @apiName internal.interactiveCard.sendAction - */ -export interface IInternalInteractiveCardSendActionResult { - cardInfo: { - /** 卡片Id */ - cardInstanceId: number; - /** 小程序Id */ - miniAppId: string; - /** 卡片数据 */ - cardData: string; - /** 卡片私有数据 */ - privateCardData: string; - /** 卡片版本 */ - version: number; - /** 投放平台 */ - distPlatform: string; - /** 平台Id */ - platformBizId: string; - /** 小程序组件名 */ - widgetName: string; - /** 卡片本地数据 */ - localData: string; - }; -} -/** - * 动态卡片发送交互事件 - * @apiName internal.interactiveCard.sendAction - * @supportVersion ios: 4.7.8 android: 4.7.8 - * @author android: 卧岩, iOS: 鱼非 - */ -export declare function sendAction$(params: IInternalInteractiveCardSendActionParams): Promise; -export default sendAction$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/sendAction.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/sendAction.js deleted file mode 100644 index 15f47ba9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/interactiveCard/sendAction.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendAction$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendAction$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.interactiveCard.sendAction",exports.sendAction$=sendAction$,exports.default=sendAction$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/invoice/chooseInvoice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/invoice/chooseInvoice.d.ts deleted file mode 100644 index 6fca14c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/invoice/chooseInvoice.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.invoice.chooseInvoice"; -/** - * 获取本地微信客户端的电子发票列表数据 请求参数定义 - * @apiName internal.invoice.chooseInvoice - */ -export interface IInternalInvoiceChooseInvoiceParams { -} -/** - * 获取本地微信客户端的电子发票列表数据 返回结果定义 - * @apiName internal.invoice.chooseInvoice - */ -export interface IInternalInvoiceChooseInvoiceResult { - /** 用户在wx发票列表页选择的发票 */ - cardInfo: Array<{ - /** 发票Id */ - cardId: string; - /** 换取明文信息所需加密code */ - encryptCode: string; - }>; -} -/** - * 获取本地微信客户端的电子发票列表数据 - * @apiName internal.invoice.chooseInvoice - * @supportVersion ios: 4.7.9 android: 4.7.9 - * @author Android: 泽乾; iOS: 姚曦 - */ -export declare function chooseInvoice$(params: IInternalInvoiceChooseInvoiceParams): Promise; -export default chooseInvoice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/invoice/chooseInvoice.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/invoice/chooseInvoice.js deleted file mode 100644 index 23dd07de..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/invoice/chooseInvoice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseInvoice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseInvoice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.invoice.chooseInvoice",exports.chooseInvoice$=chooseInvoice$,exports.default=chooseInvoice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startLive.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startLive.d.ts deleted file mode 100644 index 6d81f6d8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startLive.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.live.startLive"; -/** - * 发起直播, 支持传入多个cid,端上选择第一个创建直播,之后将其他群关联到该直播 请求参数定义 - * @apiName internal.live.startLive - */ -export interface IInternalLiveStartLiveParams { - /** 将要发起直播的群 */ - cidList: string[]; -} -/** - * 发起直播, 支持传入多个cid,端上选择第一个创建直播,之后将其他群关联到该直播 返回结果定义 - * @apiName internal.live.startLive - */ -export interface IInternalLiveStartLiveResult { - [key: string]: any; -} -/** - * 发起直播, 支持传入多个cid,端上选择第一个创建直播,之后将其他群关联到该直播 - * @apiName internal.live.startLive - * @supportVersion ios: 4.7.13 android: 4.7.13 - * @author Android: 朴文; IOS: 云信 - */ -export declare function startLive$(params: IInternalLiveStartLiveParams): Promise; -export default startLive$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startLive.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startLive.js deleted file mode 100644 index a2760ed8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startLive.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startLive$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startLive$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.live.startLive",exports.startLive$=startLive$,exports.default=startLive$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startUnifiedLive.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startUnifiedLive.d.ts deleted file mode 100644 index a21e312e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startUnifiedLive.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.live.startUnifiedLive"; -/** - * 直播机构后台微应用唤起主播端接口 请求参数定义 - * @apiName internal.live.startUnifiedLive - */ -export interface IInternalLiveStartUnifiedLiveParams { - /** 包含直播类型,以及直播的uuid */ - startParam: { - unifyLiveType: number; - liveUuid: string; - }; -} -/** - * 直播机构后台微应用唤起主播端接口 返回结果定义 - * @apiName internal.live.startUnifiedLive - */ -export interface IInternalLiveStartUnifiedLiveResult { -} -/** - * 直播机构后台微应用唤起主播端接口 - * @apiName internal.live.startUnifiedLive - * @supportVersion ios: 4.7.1 android: 4.7.1 - */ -export declare function startUnifiedLive$(params: IInternalLiveStartUnifiedLiveParams): Promise; -export default startUnifiedLive$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startUnifiedLive.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startUnifiedLive.js deleted file mode 100644 index 99533f99..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/live/startUnifiedLive.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startUnifiedLive$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startUnifiedLive$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.live.startUnifiedLive",exports.startUnifiedLive$=startUnifiedLive$,exports.default=startUnifiedLive$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/add.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/add.d.ts deleted file mode 100644 index 7d1d286e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/add.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.log.add"; -/** - * 日志写入到客户端 请求参数定义 - * @apiName internal.log.add - */ -export interface IInternalLogAddParams { - text: string; - /** type用来做业务标识,可为空 */ - type?: string; -} -/** - * 日志写入到客户端 返回结果定义 - * @apiName internal.log.add - */ -export interface IInternalLogAddResult { - [key: string]: any; -} -/** - * 日志写入到客户端 - * @apiName internal.log.add - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function add$(params: IInternalLogAddParams): Promise; -export default add$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/add.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/add.js deleted file mode 100644 index e34da203..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/add.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function add$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.add$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.log.add",exports.add$=add$,exports.default=add$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/printUnifyLog.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/printUnifyLog.d.ts deleted file mode 100644 index bd0b08f2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/printUnifyLog.d.ts +++ /dev/null @@ -1,66 +0,0 @@ -export declare const apiName = "internal.log.printUnifyLog"; -/** - * 打印通用日志 请求参数定义 - * dp前缀的入参只支持4.6.9以上 - * @apiName internal.log.printUnifyLog - */ -export interface IInternalLogPrintUnifyLogParams { - /** 版本,默认1.0 string 非必选 */ - dp_ver?: string; - /** 业务类型,内容以js_开头 string 非必选 */ - dp_biztype?: string; - /** 业务子类型,默认空字符串 string 非必选 */ - dp_subtype?: string; - /** 文件mime,默认空字符串 string 非必选 */ - dp_mime?: string; - /** 通道,默认空字符串 string 非必选 */ - dp_channel?: string; - /** 结果,成功:Y,失败:N string 非必选 */ - dp_result?: string; - /** 错误码,默认空字符串,失败的时候必选 string 非必选 */ - dp_err_code?: string; - /** 状态码,默认空字符串 string 非必选 */ - dp_stat_code?: string; - /** 保留1,默认空字符串 string 非必选 */ - dp_res1?: string; - /** 保留2,默认空字符串 string 非必选 */ - dp_res2?: string; - /** 保留3,默认空字符串 string 非必选 */ - dp_res3?: string; - /** 保留4,默认空字符串 string 非必选 */ - dp_res4?: string; - /** 速度,默认0 number 非必选 */ - dp_rate?: number; - /** 总大小,默认0 number 非必选 */ - dp_total_size?: number; - /** 传输大小,默认0 number 非必选 */ - dp_xfer_size?: number; - /** 耗时,默认0 double 非必选 */ - dp_cost?: number; - /** 值:如”cspace_preview”; */ - bizType?: string; - /** 成功时:"{"success":true, "errorCode":"0","rt":xxx,"errorMessage":"", respond:""}" - * 失败时:"{"success":false, "errorCode":"2003","rt":xxx,"errorMessage":"lwpTimeout", respond:""}" - */ - data?: { - success: boolean; - errorCode: string; - rt: number; - errorMessage: string; - respond: string; - }; -} -/** - * 打印通用日志 返回结果定义 - * @apiName internal.log.printUnifyLog - */ -export interface IInternalLogPrintUnifyLogResult { - [key: string]: any; -} -/** - * 打印通用日志 - * @apiName internal.log.printUnifyLog - * @supportVersion ios: 4.5.10 android: 4.5.10 pc: 4.5.10 - */ -export declare function printUnifyLog$(params: IInternalLogPrintUnifyLogParams): Promise; -export default printUnifyLog$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/printUnifyLog.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/printUnifyLog.js deleted file mode 100644 index ace7ddea..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/printUnifyLog.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function printUnifyLog$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.printUnifyLog$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.log.printUnifyLog",exports.printUnifyLog$=printUnifyLog$,exports.default=printUnifyLog$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchClickLog.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchClickLog.d.ts deleted file mode 100644 index e2c8ca91..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchClickLog.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -export declare const apiName = "internal.log.searchClickLog"; -/** - * 搜索Clicklog通过魔兔上传 请求参数定义 - * @apiName internal.log.searchClickLog - */ -export interface IInternalLogSearchClickLogParams { - /** 埋点版本号(version) */ - vs: number; - /** UUID,64位log唯一标识 */ - uuid: string; - /** Tab编号 */ - tab?: number; - /** 点击区域编号(position_code) */ - p_c: number; - /** 点击数据类型(type) */ - t?: number; - /** 点击数据值(value),记录被点击项的唯一ID,如果是通讯录就是uid,聊天记录就是msgid */ - v?: string; - /** 点击区域的位置值(position_value),例如2,如果点击类型是联系人,则表示点击了联系人 */ - p_v?: number; -} -/** - * 搜索Clicklog通过魔兔上传 返回结果定义 - * @apiName internal.log.searchClickLog - */ -export interface IInternalLogSearchClickLogResult { -} -/** - * 搜索Clicklog通过魔兔上传 - * @apiName internal.log.searchClickLog - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function searchClickLog$(params: IInternalLogSearchClickLogParams): Promise; -export default searchClickLog$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchClickLog.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchClickLog.js deleted file mode 100644 index 94afee9d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchClickLog.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function searchClickLog$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.searchClickLog$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.log.searchClickLog",exports.searchClickLog$=searchClickLog$,exports.default=searchClickLog$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchQueryLog.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchQueryLog.d.ts deleted file mode 100644 index 7c9809f7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchQueryLog.d.ts +++ /dev/null @@ -1,44 +0,0 @@ -export declare const apiName = "internal.log.searchQueryLog"; -/** - * 搜索Querylog通过魔兔上传 请求参数定义 - * @apiName internal.log.searchQueryLog - */ -export interface IInternalLogSearchQueryLogParams { - /** 埋点版本号(version) */ - vs: number; - /** UUID,64位log唯一标识 */ - uuid: string; - /** 搜索入口(entry) */ - e: number; - /** Tab编号 */ - tab: number; - /** 结果来源(source) */ - s: number; - /** 关键词(keyword) */ - kw: string; - /** 搜索发起时间戳(query_time) */ - q_t: number; - /** 过滤条件(filter) */ - f?: string; - /** 搜索类型(item_type) */ - i_t: number; - /** Rank标识串(item_rank) */ - i_b?: string; - /** 单次搜索结果数(item_count) */ - i_c: number; - /** 单次搜索耗时(item_duration) */ - i_d: number; -} -/** - * 搜索Querylog通过魔兔上传 返回结果定义 - * @apiName internal.log.searchQueryLog - */ -export interface IInternalLogSearchQueryLogResult { -} -/** - * 搜索Querylog通过魔兔上传 - * @apiName internal.log.searchQueryLog - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function searchQueryLog$(params: IInternalLogSearchQueryLogParams): Promise; -export default searchQueryLog$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchQueryLog.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchQueryLog.js deleted file mode 100644 index 082d3c6f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/searchQueryLog.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function searchQueryLog$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.searchQueryLog$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.log.searchQueryLog",exports.searchQueryLog$=searchQueryLog$,exports.default=searchQueryLog$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/upload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/upload.d.ts deleted file mode 100644 index 1f60584a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/upload.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.log.upload"; -/** - * 上报日志到服务端 请求参数定义 - * @apiName internal.log.upload - */ -export interface IInternalLogUploadParams { - [key: string]: any; -} -/** - * 上报日志到服务端 返回结果定义 - * @apiName internal.log.upload - */ -export interface IInternalLogUploadResult { - [key: string]: any; -} -/** - * 上报日志到服务端 - * @apiName internal.log.upload - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function upload$(params: IInternalLogUploadParams): Promise; -export default upload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/upload.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/upload.js deleted file mode 100644 index ea14c5b7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/upload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function upload$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.upload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.log.upload",exports.upload$=upload$,exports.default=upload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/uploadException.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/uploadException.d.ts deleted file mode 100644 index dacc7b66..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/uploadException.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.log.uploadException"; -/** - * 上报异常日志到服务端 请求参数定义 - * @apiName internal.log.uploadException - */ -export interface IInternalLogUploadExceptionParams { - [key: string]: any; -} -/** - * 上报异常日志到服务端 返回结果定义 - * @apiName internal.log.uploadException - */ -export interface IInternalLogUploadExceptionResult { - [key: string]: any; -} -/** - * 上报异常日志到服务端 - * @apiName internal.log.uploadException - * @supportVersion ios: 3.4.8 android: 3.4.8 - */ -export declare function uploadException$(params: IInternalLogUploadExceptionParams): Promise; -export default uploadException$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/uploadException.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/log/uploadException.js deleted file mode 100644 index 702b0a8e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/log/uploadException.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadException$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadException$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.log.uploadException",exports.uploadException$=uploadException$,exports.default=uploadException$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/call.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/call.d.ts deleted file mode 100644 index 25632547..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/call.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.lwp.call"; -/** - * lwp接口(目前只有套件使用) 请求参数定义 - * @apiName internal.lwp.call - */ -export interface IInternalLwpCallParams { - [key: string]: any; -} -/** - * lwp接口(目前只有套件使用) 返回结果定义 - * @apiName internal.lwp.call - */ -export interface IInternalLwpCallResult { - [key: string]: any; -} -/** - * lwp接口(目前只有套件使用) - * @apiName internal.lwp.call - * @supportVersion ios: 2.5.0 android: 2.5.0 - */ -export declare function call$(params: IInternalLwpCallParams): Promise; -export default call$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/call.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/call.js deleted file mode 100644 index 391684b4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/call.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function call$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.call$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.lwp.call",exports.call$=call$,exports.default=call$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/setSessionIdCookie.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/setSessionIdCookie.d.ts deleted file mode 100644 index 7d006285..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/setSessionIdCookie.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.lwp.setSessionIdCookie"; -/** - * 将lwp sessionId种到cookie 请求参数定义 - * @apiName internal.lwp.setSessionIdCookie - */ -export interface IInternalLwpSetSessionIdCookieParams { - [key: string]: any; -} -/** - * 将lwp sessionId种到cookie 返回结果定义 - * @apiName internal.lwp.setSessionIdCookie - */ -export interface IInternalLwpSetSessionIdCookieResult { - [key: string]: any; -} -/** - * 将lwp sessionId种到cookie - * @apiName internal.lwp.setSessionIdCookie - * @supportVersion ios: 3.5.2 android: 3.5.2 - */ -export declare function setSessionIdCookie$(params: IInternalLwpSetSessionIdCookieParams): Promise; -export default setSessionIdCookie$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/setSessionIdCookie.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/setSessionIdCookie.js deleted file mode 100644 index 6fde5c20..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/lwp/setSessionIdCookie.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setSessionIdCookie$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setSessionIdCookie$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.lwp.setSessionIdCookie",exports.setSessionIdCookie$=setSessionIdCookie$,exports.default=setSessionIdCookie$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/checkInstalled.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/checkInstalled.d.ts deleted file mode 100644 index 1a1d99dd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/checkInstalled.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.microapp.checkInstalled"; -/** - * 检测微应用是否安装 请求参数定义 - * @apiName internal.microapp.checkInstalled - */ -export interface IInternalMicroappCheckInstalledParams { - [key: string]: any; -} -/** - * 检测微应用是否安装 返回结果定义 - * @apiName internal.microapp.checkInstalled - */ -export interface IInternalMicroappCheckInstalledResult { - [key: string]: any; -} -/** - * 检测微应用是否安装 - * @apiName internal.microapp.checkInstalled - * @supportVersion ios: 2.5.0 android: 2.5.0 - */ -export declare function checkInstalled$(params: IInternalMicroappCheckInstalledParams): Promise; -export default checkInstalled$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/checkInstalled.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/checkInstalled.js deleted file mode 100644 index 80d42ea4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/checkInstalled.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkInstalled$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkInstalled$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.microapp.checkInstalled",exports.checkInstalled$=checkInstalled$,exports.default=checkInstalled$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/queryInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/queryInfo.d.ts deleted file mode 100644 index 2c593dc2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/queryInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.microapp.queryInfo"; -/** - * 批量获取微应用信息 请求参数定义 - * @apiName internal.microapp.queryInfo - */ -export interface IInternalMicroappQueryInfoParams { - [key: string]: any; -} -/** - * 批量获取微应用信息 返回结果定义 - * @apiName internal.microapp.queryInfo - */ -export interface IInternalMicroappQueryInfoResult { - [key: string]: any; -} -/** - * 批量获取微应用信息 - * @apiName internal.microapp.queryInfo - * @supportVersion ios: 3.4.1 android: 3.4.1 - */ -export declare function queryInfo$(params: IInternalMicroappQueryInfoParams): Promise; -export default queryInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/queryInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/queryInfo.js deleted file mode 100644 index d9cf7186..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/queryInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function queryInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.queryInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.microapp.queryInfo",exports.queryInfo$=queryInfo$,exports.default=queryInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/triggerSync.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/triggerSync.d.ts deleted file mode 100644 index 9a4545cb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/triggerSync.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.microapp.triggerSync"; -/** - * 触发cloudsetting数据同步,进而更新配置中心(oa_user)数据 请求参数定义 - * @apiName internal.microapp.triggerSync - */ -export interface IInternalMicroappTriggerSyncParams { - [key: string]: any; -} -/** - * 触发cloudsetting数据同步,进而更新配置中心(oa_user)数据 返回结果定义 - * @apiName internal.microapp.triggerSync - */ -export interface IInternalMicroappTriggerSyncResult { - [key: string]: any; -} -/** - * 触发cloudsetting数据同步,进而更新配置中心(oa_user)数据 - * @apiName internal.microapp.triggerSync - * @supportVersion ios: 3.5.6 android: 3.5.6 - */ -export declare function triggerSync$(params: IInternalMicroappTriggerSyncParams): Promise; -export default triggerSync$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/triggerSync.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/triggerSync.js deleted file mode 100644 index 08312a4d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/microapp/triggerSync.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function triggerSync$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.triggerSync$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.microapp.triggerSync",exports.triggerSync$=triggerSync$,exports.default=triggerSync$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/navigation/setIcon.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/navigation/setIcon.d.ts deleted file mode 100644 index 4e919261..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/navigation/setIcon.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.navigation.setIcon"; -/** - * 设置容器标签页前方的icon 请求参数定义 - * @apiName internal.navigation.setIcon - */ -export interface IInternalNavigationSetIconParams { - /** icon图标的mediaid */ - icon: string; -} -/** - * 设置容器标签页前方的icon 返回结果定义 - * @apiName internal.navigation.setIcon - */ -export interface IInternalNavigationSetIconResult { -} -/** - * 设置容器标签页前方的icon - * @apiName internal.navigation.setIcon - * @supportVersion pc: 4.7.19 - * @author pc: 法真 - */ -export declare function setIcon$(params: IInternalNavigationSetIconParams): Promise; -export default setIcon$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/navigation/setIcon.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/navigation/setIcon.js deleted file mode 100644 index 157f9948..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/navigation/setIcon.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setIcon$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setIcon$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.navigation.setIcon",exports.setIcon$=setIcon$,exports.default=setIcon$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/add.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/add.d.ts deleted file mode 100644 index c197e2a3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/add.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.notify.add"; -/** - * 添加消息 请求参数定义 - * @apiName internal.notify.add - */ -export interface IInternalNotifyAddParams { - [key: string]: any; -} -/** - * 添加消息 返回结果定义 - * @apiName internal.notify.add - */ -export interface IInternalNotifyAddResult { - [key: string]: any; -} -/** - * 添加消息 - * @apiName internal.notify.add - * @supportVersion ios: 3.3.0 android: 3.3.0 - */ -export declare function add$(params: IInternalNotifyAddParams): Promise; -export default add$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/add.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/add.js deleted file mode 100644 index e767ce5e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/add.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function add$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.add$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.notify.add",exports.add$=add$,exports.default=add$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/closeModal.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/closeModal.d.ts deleted file mode 100644 index 56f9d531..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/closeModal.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.notify.closeModal"; -/** - * 关闭全屏浮层弹框,全屏遮罩 请求参数定义 - * @apiName internal.notify.closeModal - */ -export interface IInternalNotifyCloseModalParams { - [key: string]: any; -} -/** - * 关闭全屏浮层弹框,全屏遮罩 返回结果定义 - * @apiName internal.notify.closeModal - */ -export interface IInternalNotifyCloseModalResult { - [key: string]: any; -} -/** - * 关闭全屏浮层弹框,全屏遮罩 - * @apiName internal.notify.closeModal - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function closeModal$(params: IInternalNotifyCloseModalParams): Promise; -export default closeModal$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/closeModal.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/closeModal.js deleted file mode 100644 index 57317472..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/closeModal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function closeModal$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.closeModal$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.notify.closeModal",exports.closeModal$=closeModal$,exports.default=closeModal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/send.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/send.d.ts deleted file mode 100644 index 6884500a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/send.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.notify.send"; -/** - * 消息通知H5到Native 请求参数定义 - * @apiName internal.notify.send - */ -export interface IInternalNotifySendParams { - [key: string]: any; -} -/** - * 消息通知H5到Native 返回结果定义 - * @apiName internal.notify.send - */ -export interface IInternalNotifySendResult { - [key: string]: any; -} -/** - * 消息通知H5到Native - * @apiName internal.notify.send - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function send$(params: IInternalNotifySendParams): Promise; -export default send$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/send.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/send.js deleted file mode 100644 index acaf4b09..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/send.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function send$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.send$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.notify.send",exports.send$=send$,exports.default=send$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/showModal.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/showModal.d.ts deleted file mode 100644 index 59e5d189..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/showModal.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.notify.showModal"; -/** - * 全屏浮层弹框,全屏遮罩 请求参数定义 - * @apiName internal.notify.showModal - */ -export interface IInternalNotifyShowModalParams { - [key: string]: any; -} -/** - * 全屏浮层弹框,全屏遮罩 返回结果定义 - * @apiName internal.notify.showModal - */ -export interface IInternalNotifyShowModalResult { - [key: string]: any; -} -/** - * 全屏浮层弹框,全屏遮罩 - * @apiName internal.notify.showModal - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function showModal$(params: IInternalNotifyShowModalParams): Promise; -export default showModal$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/showModal.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/showModal.js deleted file mode 100644 index 07c47c85..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/notify/showModal.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showModal$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showModal$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.notify.showModal",exports.showModal$=showModal$,exports.default=showModal$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/fetch.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/fetch.d.ts deleted file mode 100644 index c505b2f2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/fetch.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.pageLink.fetch"; -/** - * 获取请求页面(sourceApp)的数据 请求参数定义 - * @apiName internal.pageLink.fetch - */ -export interface IInternalPageLinkFetchParams { - [key: string]: any; -} -/** - * 获取请求页面(sourceApp)的数据 返回结果定义 - * @apiName internal.pageLink.fetch - */ -export interface IInternalPageLinkFetchResult { - [key: string]: any; -} -/** - * 获取请求页面(sourceApp)的数据 - * @apiName internal.pageLink.fetch - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function fetch$(params: IInternalPageLinkFetchParams): Promise; -export default fetch$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/fetch.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/fetch.js deleted file mode 100644 index 766d345b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/fetch.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetch$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetch$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.pageLink.fetch",exports.fetch$=fetch$,exports.default=fetch$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/request.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/request.d.ts deleted file mode 100644 index 28c4b282..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/request.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.pageLink.request"; -/** - * 发送消息 请求参数定义 - * @apiName internal.pageLink.request - */ -export interface IInternalPageLinkRequestParams { - [key: string]: any; -} -/** - * 发送消息 返回结果定义 - * @apiName internal.pageLink.request - */ -export interface IInternalPageLinkRequestResult { - [key: string]: any; -} -/** - * 发送消息 - * @apiName internal.pageLink.request - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function request$(params: IInternalPageLinkRequestParams): Promise; -export default request$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/request.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/request.js deleted file mode 100644 index b28af53c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/request.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function request$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.request$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.pageLink.request",exports.request$=request$,exports.default=request$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/response.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/response.d.ts deleted file mode 100644 index 66d9f928..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/response.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.pageLink.response"; -/** - * 返回消息 请求参数定义 - * @apiName internal.pageLink.response - */ -export interface IInternalPageLinkResponseParams { - [key: string]: any; -} -/** - * 返回消息 返回结果定义 - * @apiName internal.pageLink.response - */ -export interface IInternalPageLinkResponseResult { - [key: string]: any; -} -/** - * 返回消息 - * @apiName internal.pageLink.response - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function response$(params: IInternalPageLinkResponseParams): Promise; -export default response$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/response.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/response.js deleted file mode 100644 index 902d5432..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/pageLink/response.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function response$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.response$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.pageLink.response",exports.response$=response$,exports.default=response$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/payment/requestForInAppPurchase.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/payment/requestForInAppPurchase.d.ts deleted file mode 100644 index eaa68f58..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/payment/requestForInAppPurchase.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.payment.requestForInAppPurchase"; -/** - * 前端用户创建iOS应用内支付的请求 请求参数定义 - * @apiName internal.payment.requestForInAppPurchase - */ -export interface IInternalPaymentRequestForInAppPurchaseParams { - /** 商品id,对应录入苹果 itunesconnect 后台的商品 id */ - productId: string; - /** 数量,默认为1 */ - quantity?: number; - /** 购买主体的类型 1:组织购买,objId为corpId 2:个人购买,objId为uid 默认值是2,个人购买 详见https://yuque.antfin-inc.com/docs/share/c0147cfc-3292-4c16-9cc4-264a413d50bf?# */ - objType?: number; - /** 购买主体id 个人则是uid,组织则是corpId。 注意:购买主体不一定是登录人,端上可在发起支付的时候,存储该字段 详见 https://yuque.antfin-inc.com/docs/share/c0147cfc-3292-4c16-9cc4-264a413d50bf?# */ - objId?: string; -} -/** - * 前端用户创建iOS应用内支付的请求 返回结果定义 - * @apiName internal.payment.requestForInAppPurchase - */ -export interface IInternalPaymentRequestForInAppPurchaseResult { - [key: string]: any; -} -/** - * 前端用户创建iOS应用内支付的请求 - * @apiName internal.payment.requestForInAppPurchase - * @supportVersion ios: 5.1.9 android: 5.1.9 - * @author iOS: 库珀 - */ -export declare function requestForInAppPurchase$(params: IInternalPaymentRequestForInAppPurchaseParams): Promise; -export default requestForInAppPurchase$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/payment/requestForInAppPurchase.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/payment/requestForInAppPurchase.js deleted file mode 100644 index f529acbc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/payment/requestForInAppPurchase.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestForInAppPurchase$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestForInAppPurchase$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.payment.requestForInAppPurchase",exports.requestForInAppPurchase$=requestForInAppPurchase$,exports.default=requestForInAppPurchase$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/hasSelfPermissions.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/hasSelfPermissions.d.ts deleted file mode 100644 index 600bfa27..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/hasSelfPermissions.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.permission.hasSelfPermissions"; -/** - * 查询Android系统权限 请求参数定义 - * @apiName internal.permission.hasSelfPermissions - */ -export interface IInternalPermissionHasSelfPermissionsParams { - /** string数组,权限列表,必要 */ - permissions: string[]; -} -/** - * 查询Android系统权限 返回结果定义 - * @apiName internal.permission.hasSelfPermissions - */ -export interface IInternalPermissionHasSelfPermissionsResult { - [key: string]: any; -} -/** - * 查询Android系统权限 - * @apiName internal.permission.hasSelfPermissions - * @supportVersion ios: 4.5.0 android: 4.5.0 - */ -export declare function hasSelfPermissions$(params: IInternalPermissionHasSelfPermissionsParams): Promise; -export default hasSelfPermissions$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/hasSelfPermissions.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/hasSelfPermissions.js deleted file mode 100644 index 419a5cc6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/hasSelfPermissions.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hasSelfPermissions$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.hasSelfPermissions$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.permission.hasSelfPermissions",exports.hasSelfPermissions$=hasSelfPermissions$,exports.default=hasSelfPermissions$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/requestPermissions.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/requestPermissions.d.ts deleted file mode 100644 index 0123f408..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/requestPermissions.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.permission.requestPermissions"; -/** - * 查询申请Android系统权限 请求参数定义 - * @apiName internal.permission.requestPermissions - */ -export interface IInternalPermissionRequestPermissionsParams { - permissions: string[]; -} -/** - * 查询申请Android系统权限 返回结果定义 - * @apiName internal.permission.requestPermissions - */ -export interface IInternalPermissionRequestPermissionsResult { - [key: string]: any; -} -/** - * 查询申请Android系统权限 - * @apiName internal.permission.requestPermissions - * @supportVersion ios: 4.3.9 android: 4.3.9 - */ -export declare function requestPermissions$(params: IInternalPermissionRequestPermissionsParams): Promise; -export default requestPermissions$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/requestPermissions.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/requestPermissions.js deleted file mode 100644 index 048d5448..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/permission/requestPermissions.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestPermissions$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestPermissions$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.permission.requestPermissions",exports.requestPermissions$=requestPermissions$,exports.default=requestPermissions$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/add.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/add.d.ts deleted file mode 100644 index 86c87305..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/add.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.phoneContact.add"; -/** - * 添加号码到手机通信录 请求参数定义 - * @apiName internal.phoneContact.add - */ -export interface IInternalPhoneContactAddParams { - [key: string]: any; -} -/** - * 添加号码到手机通信录 返回结果定义 - * @apiName internal.phoneContact.add - */ -export interface IInternalPhoneContactAddResult { - [key: string]: any; -} -/** - * 添加号码到手机通信录 - * @apiName internal.phoneContact.add - * @supportVersion ios: 2.7.6 android: 2.7.6 - */ -export declare function add$(params: IInternalPhoneContactAddParams): Promise; -export default add$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/add.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/add.js deleted file mode 100644 index 1f7912b8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/add.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function add$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.add$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.phoneContact.add",exports.add$=add$,exports.default=add$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/checkPermissionAndUpload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/checkPermissionAndUpload.d.ts deleted file mode 100644 index 902616b8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/checkPermissionAndUpload.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.phoneContact.checkPermissionAndUpload"; -/** - * 校验客户端读取手机通讯录权限,当已有权限或新授予权限时,触发一次上传 请求参数定义 - * @apiName internal.phoneContact.checkPermissionAndUpload - */ -export interface IInternalPhoneContactCheckPermissionAndUploadParams { - [key: string]: any; -} -/** - * 校验客户端读取手机通讯录权限,当已有权限或新授予权限时,触发一次上传 返回结果定义 - * "1" ---表示已有权限 - * "2" ---表示新授予权限 - * "3" ---表示拒绝授予权限 - * "4" ---表示不再询问 - * @apiName internal.phoneContact.checkPermissionAndUpload - */ -export declare type IInternalPhoneContactCheckPermissionAndUploadResult = string; -/** - * 校验客户端读取手机通讯录权限,当已有权限或新授予权限时,触发一次上传 - * @apiName internal.phoneContact.checkPermissionAndUpload - * @supportVersion ios: 4.5.16 android: 4.5.16 - */ -export declare function checkPermissionAndUpload$(params: IInternalPhoneContactCheckPermissionAndUploadParams): Promise; -export default checkPermissionAndUpload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/checkPermissionAndUpload.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/checkPermissionAndUpload.js deleted file mode 100644 index 6034e793..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/checkPermissionAndUpload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkPermissionAndUpload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkPermissionAndUpload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.phoneContact.checkPermissionAndUpload",exports.checkPermissionAndUpload$=checkPermissionAndUpload$,exports.default=checkPermissionAndUpload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/requestPermissionAndUploadWhenAuthed.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/requestPermissionAndUploadWhenAuthed.d.ts deleted file mode 100644 index f245893f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/requestPermissionAndUploadWhenAuthed.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.phoneContact.requestPermissionAndUploadWhenAuthed"; -/** - * 请求通讯录权限(如果还未授权过),并且在用户同意授权的情况下,上传通讯录 请求参数定义 - * @apiName internal.phoneContact.requestPermissionAndUploadWhenAuthed - */ -export interface IInternalPhoneContactRequestPermissionAndUploadWhenAuthedParams { -} -/** - * 请求通讯录权限(如果还未授权过),并且在用户同意授权的情况下,上传通讯录 返回结果定义 - * @apiName internal.phoneContact.requestPermissionAndUploadWhenAuthed - */ -export interface IInternalPhoneContactRequestPermissionAndUploadWhenAuthedResult { - /** - * 用户授权结果 - * result取值: - * "1" ---表示已有权限 - * "2" ---表示新授予权限 - * "3" ---表示拒绝授予权限 - * "4" ---表示不再询问 - */ - result: string; -} -/** - * 请求通讯录权限(如果还未授权过),并且在用户同意授权的情况下,上传通讯录 - * @apiName internal.phoneContact.requestPermissionAndUploadWhenAuthed - * @supportVersion ios: 5.1.19 android: 5.1.19 - * @author iOS:姚曦 Android:几米 - */ -export declare function requestPermissionAndUploadWhenAuthed$(params: IInternalPhoneContactRequestPermissionAndUploadWhenAuthedParams): Promise; -export default requestPermissionAndUploadWhenAuthed$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/requestPermissionAndUploadWhenAuthed.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/requestPermissionAndUploadWhenAuthed.js deleted file mode 100644 index 28d7beb9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/phoneContact/requestPermissionAndUploadWhenAuthed.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestPermissionAndUploadWhenAuthed$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestPermissionAndUploadWhenAuthed$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.phoneContact.requestPermissionAndUploadWhenAuthed",exports.requestPermissionAndUploadWhenAuthed$=requestPermissionAndUploadWhenAuthed$,exports.default=requestPermissionAndUploadWhenAuthed$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/getUserExclusiveInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/getUserExclusiveInfo.d.ts deleted file mode 100644 index fa7f1527..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/getUserExclusiveInfo.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.realm.getUserExclusiveInfo"; -/** - * 专属钉钉版本及身份信息获取 请求参数定义 - * @apiName internal.realm.getUserExclusiveInfo - */ -export interface IInternalRealmGetUserExclusiveInfoParams { -} -/** - * 专属钉钉版本及身份信息获取 返回结果定义 - * @apiName internal.realm.getUserExclusiveInfo - */ -export interface IInternalRealmGetUserExclusiveInfoResult { - /** 是否专属打包 */ - isExclusiveApp: boolean; - /** 生效的域组织ID -1: 无域组织生效 */ - mainRealmOrgId: number; - /** 专属设计生效组织列表 */ - exclusiveOrgList: number[]; -} -/** - * 专属钉钉版本及身份信息获取 - * @apiName internal.realm.getUserExclusiveInfo - * @supportVersion ios: 5.1.10 android: 5.1.10 pc: 5.1.10 - * @author Android: 晤歌 iOS: 路客 Windows: 秋酷 Mac: 凉糕 - */ -export declare function getUserExclusiveInfo$(params: IInternalRealmGetUserExclusiveInfoParams): Promise; -export default getUserExclusiveInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/getUserExclusiveInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/getUserExclusiveInfo.js deleted file mode 100644 index 60d86980..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/getUserExclusiveInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getUserExclusiveInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUserExclusiveInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.realm.getUserExclusiveInfo",exports.getUserExclusiveInfo$=getUserExclusiveInfo$,exports.default=getUserExclusiveInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/updateExclusiveConfig.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/updateExclusiveConfig.d.ts deleted file mode 100644 index c05565d3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/updateExclusiveConfig.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.realm.updateExclusiveConfig"; -/** - * 专属钉钉试用开启/结束后通知native更新界面 请求参数定义 - * @apiName internal.realm.updateExclusiveConfig - */ -export interface IInternalRealmUpdateExclusiveConfigParams { - /** 发生变更的orgId */ - orgId: string; - /** 是否回到首页 */ - shouldPopToRoot?: boolean; -} -/** - * 专属钉钉试用开启/结束后通知native更新界面 返回结果定义 - * @apiName internal.realm.updateExclusiveConfig - */ -export interface IInternalRealmUpdateExclusiveConfigResult { - [key: string]: any; -} -/** - * 专属钉钉试用开启/结束后通知native更新界面 - * @apiName internal.realm.updateExclusiveConfig - * @supportVersion ios: 4.7.31 android: 5.0.0 - * @author android:笔哥, iOS: 路客 - */ -export declare function updateExclusiveConfig$(params: IInternalRealmUpdateExclusiveConfigParams): Promise; -export default updateExclusiveConfig$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/updateExclusiveConfig.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/updateExclusiveConfig.js deleted file mode 100644 index 96a9885e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/realm/updateExclusiveConfig.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function updateExclusiveConfig$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.updateExclusiveConfig$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.realm.updateExclusiveConfig",exports.updateExclusiveConfig$=updateExclusiveConfig$,exports.default=updateExclusiveConfig$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/redenvelop/sendRandomRedEnvelop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/redenvelop/sendRandomRedEnvelop.d.ts deleted file mode 100644 index ca4aad7d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/redenvelop/sendRandomRedEnvelop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.redenvelop.sendRandomRedEnvelop"; -/** - * 发送拼手气红包 请求参数定义 - * @apiName internal.redenvelop.sendRandomRedEnvelop - */ -export interface IInternalRedenvelopSendRandomRedEnvelopParams { - [key: string]: any; -} -/** - * 发送拼手气红包 返回结果定义 - * @apiName internal.redenvelop.sendRandomRedEnvelop - */ -export interface IInternalRedenvelopSendRandomRedEnvelopResult { - [key: string]: any; -} -/** - * 发送拼手气红包 - * @apiName internal.redenvelop.sendRandomRedEnvelop - * @supportVersion ios: 5.1.40 android: 5.1.40 - */ -export declare function sendRandomRedEnvelop$(params: IInternalRedenvelopSendRandomRedEnvelopParams): Promise; -export default sendRandomRedEnvelop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/redenvelop/sendRandomRedEnvelop.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/redenvelop/sendRandomRedEnvelop.js deleted file mode 100644 index 727de4cf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/redenvelop/sendRandomRedEnvelop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendRandomRedEnvelop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendRandomRedEnvelop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.redenvelop.sendRandomRedEnvelop",exports.sendRandomRedEnvelop$=sendRandomRedEnvelop$,exports.default=sendRandomRedEnvelop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/redpacket/nav2RedPacket.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/redpacket/nav2RedPacket.d.ts deleted file mode 100644 index ef9f5e6f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/redpacket/nav2RedPacket.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.redpacket.nav2RedPacket"; -/** - * 红包组件 请求参数定义 - * @apiName internal.redpacket.nav2RedPacket - */ -export interface IInternalRedpacketNav2RedPacketParams { - [key: string]: any; -} -/** - * 红包组件 返回结果定义 - * @apiName internal.redpacket.nav2RedPacket - */ -export interface IInternalRedpacketNav2RedPacketResult { - [key: string]: any; -} -/** - * 红包组件 - * @apiName internal.redpacket.nav2RedPacket - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function nav2RedPacket$(params: IInternalRedpacketNav2RedPacketParams): Promise; -export default nav2RedPacket$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/redpacket/nav2RedPacket.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/redpacket/nav2RedPacket.js deleted file mode 100644 index b518fd3f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/redpacket/nav2RedPacket.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function nav2RedPacket$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.nav2RedPacket$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.redpacket.nav2RedPacket",exports.nav2RedPacket$=nav2RedPacket$,exports.default=nav2RedPacket$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getOrgFeatureByKey.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getOrgFeatureByKey.d.ts deleted file mode 100644 index 8b0924d8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getOrgFeatureByKey.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.request.getOrgFeatureByKey"; -/** - * corpId换orgId 请求参数定义 - * @apiName internal.request.getOrgFeatureByKey - */ -export interface IInternalRequestGetOrgFeatureByKeyParams { - [key: string]: any; -} -/** - * corpId换orgId 返回结果定义 - * @apiName internal.request.getOrgFeatureByKey - */ -export interface IInternalRequestGetOrgFeatureByKeyResult { - [key: string]: any; -} -/** - * corpId换orgId - * @apiName internal.request.getOrgFeatureByKey - * @supportVersion pc: 3.4.0 - */ -export declare function getOrgFeatureByKey$(params: IInternalRequestGetOrgFeatureByKeyParams): Promise; -export default getOrgFeatureByKey$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getOrgFeatureByKey.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getOrgFeatureByKey.js deleted file mode 100644 index 7b72513f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getOrgFeatureByKey.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getOrgFeatureByKey$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getOrgFeatureByKey$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.request.getOrgFeatureByKey",exports.getOrgFeatureByKey$=getOrgFeatureByKey$,exports.default=getOrgFeatureByKey$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getSecurityToken.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getSecurityToken.d.ts deleted file mode 100644 index b29a34a9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getSecurityToken.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.request.getSecurityToken"; -/** - * 获取securityToken 请求参数定义 - * @apiName internal.request.getSecurityToken - */ -export interface IInternalRequestGetSecurityTokenParams { - [key: string]: any; -} -/** - * 获取securityToken 返回结果定义 - * @apiName internal.request.getSecurityToken - */ -export interface IInternalRequestGetSecurityTokenResult { - [key: string]: any; -} -/** - * 获取securityToken - * @apiName internal.request.getSecurityToken - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function getSecurityToken$(params: IInternalRequestGetSecurityTokenParams): Promise; -export default getSecurityToken$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getSecurityToken.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getSecurityToken.js deleted file mode 100644 index 0762381c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/getSecurityToken.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getSecurityToken$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getSecurityToken$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.request.getSecurityToken",exports.getSecurityToken$=getSecurityToken$,exports.default=getSecurityToken$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/httpOverLWP.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/httpOverLWP.d.ts deleted file mode 100644 index cf0b36c3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/httpOverLWP.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.request.httpOverLWP"; -/** - * http转lwp 请求参数定义 - * @apiName internal.request.httpOverLWP - */ -export interface IInternalRequestHttpOverLWPParams { - [key: string]: any; -} -/** - * http转lwp 返回结果定义 - * @apiName internal.request.httpOverLWP - */ -export interface IInternalRequestHttpOverLWPResult { - [key: string]: any; -} -/** - * http转lwp - * @apiName internal.request.httpOverLWP - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function httpOverLWP$(params: IInternalRequestHttpOverLWPParams): Promise; -export default httpOverLWP$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/httpOverLWP.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/httpOverLWP.js deleted file mode 100644 index 560778a8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/httpOverLWP.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function httpOverLWP$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.httpOverLWP$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.request.httpOverLWP",exports.httpOverLWP$=httpOverLWP$,exports.default=httpOverLWP$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/lwp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/lwp.d.ts deleted file mode 100644 index d6a455f0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/lwp.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -export declare const apiName = "internal.request.lwp"; -export declare const mobileParamsDeal: (params: any) => any; -export declare const ERROR_ANDROID_DEAL_ERROR = "\u8B66\u544A\uFF0C\u5B58\u5728 lwp \u63A5\u53E3\u8FD4\u56DE\u57FA\u7840\u6570\u636E\u7C7B\u578B\uFF0C\u5728\u5B89\u5353\u4E0B\u65E0\u6CD5\u6B63\u5E38\u7684\u5904\u7406\uFF0C\u6613\u51FA\u73B0\u5F02\u5E38\u60C5\u51B5\uFF0C\u8BF7\u8BA9\u670D\u52A1\u7AEF\u540C\u5B66\u4FEE\u6539\u6B64 lwp \u63A5\u53E3\uFF0C\u6539\u4E3A\u8FD4\u56DE object\uFF0C\u4E0D\u8FD4\u56DE\u57FA\u7840\u6570\u636E\u7C7B\u578B"; -/** - * lwp通道 请求参数定义 - * @apiName internal.request.lwp - */ -export interface IInternalRequestLwpParams { - /** lwp接口请求路径 */ - uri: string; - /** 请求头 */ - headers: { - [key: string]: any; - }; - /** 请求数据 */ - body: any[]; -} -/** - * lwp通道 返回结果定义 - * @apiName internal.request.lwp - */ -export interface IInternalRequestLwpResult { - /** lwp接口返回状态码 */ - code: number; - /** lwp接口返回业务数据 */ - body: any | { - code: number | string; - reason: string; - }; -} -/** - * lwp通道 - * @apiName internal.request.lwp - * @supportVersion pc: 3.0.0 ios: 2.5.1 android: 2.5.1 - */ -export declare function lwp$(params: IInternalRequestLwpParams): Promise; -export default lwp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/lwp.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/lwp.js deleted file mode 100644 index a022ff61..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/lwp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function lwp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.lwp$=exports.ERROR_ANDROID_DEAL_ERROR=exports.mobileParamsDeal=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.request.lwp",exports.mobileParamsDeal=function(e){var o=Object.assign({},e);return o.body=JSON.stringify(e.body),"undefined"!=typeof location&&(o.headers=Object.assign({referer:location.origin+location.pathname},o.headers||{})),e.url&&(o.uri=e.url),o},exports.ERROR_ANDROID_DEAL_ERROR="警告,存在 lwp 接口返回基础数据类型,在安卓下无法正常的处理,易出现异常情况,请让服务端同学修改此 lwp 接口,改为返回 object,不返回基础数据类型",exports.lwp$=lwp$,exports.default=lwp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/sendHeadRequest.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/sendHeadRequest.d.ts deleted file mode 100644 index 532de1ae..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/sendHeadRequest.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.request.sendHeadRequest"; -/** - * 发送http head请求 请求参数定义 - * @apiName internal.request.sendHeadRequest - */ -export interface IInternalRequestSendHeadRequestParams { - url: string; - headers: any; -} -/** - * 发送http head请求 返回结果定义 - * @apiName internal.request.sendHeadRequest - */ -export interface IInternalRequestSendHeadRequestResult { - statusCode: string; - headers: any; -} -/** - * 发送http head请求 - * @apiName internal.request.sendHeadRequest - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function sendHeadRequest$(params: IInternalRequestSendHeadRequestParams): Promise; -export default sendHeadRequest$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/sendHeadRequest.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/request/sendHeadRequest.js deleted file mode 100644 index 66172494..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/request/sendHeadRequest.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendHeadRequest$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendHeadRequest$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.request.sendHeadRequest",exports.sendHeadRequest$=sendHeadRequest$,exports.default=sendHeadRequest$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/contactswithUids.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/contactswithUids.d.ts deleted file mode 100644 index ee7a2381..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/contactswithUids.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.requestmoney.contactswithUids"; -/** - * 批量获取联系人信息 请求参数定义 - * @apiName internal.requestmoney.contactswithUids - */ -export interface IInternalRequestmoneyContactswithUidsParams { - [key: string]: any; -} -/** - * 批量获取联系人信息 返回结果定义 - * @apiName internal.requestmoney.contactswithUids - */ -export interface IInternalRequestmoneyContactswithUidsResult { - users?: Array<{ - uid: number; - nick: string; - avatarURL: string; - }>; -} -/** - * 批量获取联系人信息 - * @apiName internal.requestmoney.contactswithUids - * @supportVersion ios: 4.5.8 android: 4.5.8 - */ -export declare function contactswithUids$(params: IInternalRequestmoneyContactswithUidsParams): Promise; -export default contactswithUids$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/contactswithUids.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/contactswithUids.js deleted file mode 100644 index e5c7d092..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/contactswithUids.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function contactswithUids$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.contactswithUids$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.contactswithUids",exports.contactswithUids$=contactswithUids$,exports.default=contactswithUids$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/currentUid.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/currentUid.d.ts deleted file mode 100644 index a9e13c23..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/currentUid.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.requestmoney.currentUid"; -/** - * 获取当前用户uid 请求参数定义 - * @apiName internal.requestmoney.currentUid - */ -export interface IInternalRequestmoneyCurrentUidParams { - [key: string]: any; -} -/** - * 获取当前用户uid 返回结果定义 - * @apiName internal.requestmoney.currentUid - */ -export interface IInternalRequestmoneyCurrentUidResult { - /** 当前用户uid */ - result: number; -} -/** - * 获取当前用户uid - * @apiName internal.requestmoney.currentUid - * @supportVersion ios: 4.5.9 android: 4.5.9 - */ -export declare function currentUid$(params: IInternalRequestmoneyCurrentUidParams): Promise; -export default currentUid$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/currentUid.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/currentUid.js deleted file mode 100644 index f5bdc274..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/currentUid.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function currentUid$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.currentUid$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.currentUid",exports.currentUid$=currentUid$,exports.default=currentUid$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/dingRemind.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/dingRemind.d.ts deleted file mode 100644 index a53fbf56..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/dingRemind.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.requestmoney.dingRemind"; -/** - * 收款详情页DING一下 请求参数定义 - * @apiName internal.requestmoney.dingRemind - */ -export interface IInternalRequestmoneyDingRemindParams { - /** 提醒类型,1 应用内,2 短信,3 电话 */ - remindType: number; - /** 接收人列表 */ - receiverUIds: number[]; - /** 收款发起人 */ - creatorUid: number; - /** 收款id */ - groupBillId: string; - /** 收款名称 */ - groupBillName: string; - /** 收款账单,jsonstring,"[{"uid":12345,"amount":"12.34"},{"uid":67890,"amount":"43.21"}]" */ - bill: string; -} -/** - * 收款详情页DING一下 返回结果定义 无需返回结果 - * @apiName internal.requestmoney.dingRemind - */ -export interface IInternalRequestmoneyDingRemindResult { -} -/** - * 收款详情页DING一下 - * @apiName internal.requestmoney.dingRemind - * @supportVersion ios: 4.5.6 android: 4.5.6 - */ -export declare function dingRemind$(params: IInternalRequestmoneyDingRemindParams): Promise; -export default dingRemind$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/dingRemind.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/dingRemind.js deleted file mode 100644 index c150f6f5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/dingRemind.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function dingRemind$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.dingRemind$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.dingRemind",exports.dingRemind$=dingRemind$,exports.default=dingRemind$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/generateBizId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/generateBizId.d.ts deleted file mode 100644 index a441f602..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/generateBizId.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.requestmoney.generateBizId"; -/** - * 生成群收款的bizId 请求参数定义 - * @apiName internal.requestmoney.generateBizId - */ -export interface IInternalRequestmoneyGenerateBizIdParams { - [key: string]: any; -} -/** - * 生成群收款的bizId 返回结果定义 - * @apiName internal.requestmoney.generateBizId - */ -export interface IInternalRequestmoneyGenerateBizIdResult { - /** 群收款bizId */ - result: string; -} -/** - * 生成群收款的bizId - * @apiName internal.requestmoney.generateBizId - * @supportVersion ios: 4.5.13 android: 4.5.13 - */ -export declare function generateBizId$(params: IInternalRequestmoneyGenerateBizIdParams): Promise; -export default generateBizId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/generateBizId.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/generateBizId.js deleted file mode 100644 index 5d309ee1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/generateBizId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function generateBizId$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.generateBizId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.generateBizId",exports.generateBizId$=generateBizId$,exports.default=generateBizId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/loadConversations.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/loadConversations.d.ts deleted file mode 100644 index d2df65ac..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/loadConversations.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.requestmoney.loadConversations"; -/** - * 批量获取会话的头像和名称 请求参数定义 - * @apiName internal.requestmoney.loadConversations - */ -export interface IInternalRequestmoneyLoadConversationsParams { - /** 会话id数组 */ - cIds: string[]; -} -/** - * 批量获取会话的头像和名称 返回结果定义 - * @apiName internal.requestmoney.loadConversations - */ -export interface IInternalRequestmoneyLoadConversationsResult { - conversations: Array<{ - cId: string; - title: string; - icon: string; - }>; -} -/** - * 批量获取会话的头像和名称 - * @apiName internal.requestmoney.loadConversations - * @supportVersion ios: 4.5.8 android: 4.5.8 - */ -export declare function loadConversations$(params: IInternalRequestmoneyLoadConversationsParams): Promise; -export default loadConversations$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/loadConversations.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/loadConversations.js deleted file mode 100644 index 34211a20..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/loadConversations.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function loadConversations$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.loadConversations$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.loadConversations",exports.loadConversations$=loadConversations$,exports.default=loadConversations$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/notifyAlipayResult.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/notifyAlipayResult.d.ts deleted file mode 100644 index 329f350d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/notifyAlipayResult.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.requestmoney.notifyAlipayResult"; -/** - * 支付结果同步 请求参数定义 - * @apiName internal.requestmoney.notifyAlipayResult - */ -export interface IInternalRequestmoneyNotifyAlipayResultParams { - /** 消息id */ - msgId: string; - /** 会话id */ - cId: string; -} -/** - * 支付结果同步 返回结果定义 - * @apiName internal.requestmoney.notifyAlipayResult - */ -export interface IInternalRequestmoneyNotifyAlipayResultResult { - [key: string]: any; -} -/** - * 支付结果同步 - * @apiName internal.requestmoney.notifyAlipayResult - * @supportVersion ios: 4.5.6 android: 4.5.6 - */ -export declare function notifyAlipayResult$(params: IInternalRequestmoneyNotifyAlipayResultParams): Promise; -export default notifyAlipayResult$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/notifyAlipayResult.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/notifyAlipayResult.js deleted file mode 100644 index 98b39f39..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/notifyAlipayResult.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function notifyAlipayResult$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.notifyAlipayResult$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.notifyAlipayResult",exports.notifyAlipayResult$=notifyAlipayResult$,exports.default=notifyAlipayResult$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showContactAndGroupPick.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showContactAndGroupPick.d.ts deleted file mode 100644 index eb0ea590..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showContactAndGroupPick.d.ts +++ /dev/null @@ -1,52 +0,0 @@ -export declare const apiName = "internal.requestmoney.showContactAndGroupPick"; -/** - * 调起选人组件 请求参数定义 - * @apiName internal.requestmoney.showContactAndGroupPick - */ -export interface IInternalRequestmoneyShowContactAndGroupPickParams { - /** 选人组件标题 */ - title?: string; - /** 人数上限,传0表示不限制 */ - maxUsers?: number; - /** 不可选的人 */ - disabledUIds?: number[]; - /** 已选的人 */ - pickedUIds?: number[]; - /** 必选的人 */ - requiredUIds?: number[]; - /** 超过人数提示 */ - limitTips?: string; - /** 是否显示好友,默认不显示 */ - showFriendPick?: boolean; - /** 是否显示手机联系人,默认不显示 */ - showMobileContactPick?: boolean; - /** 是否显示已有的群,默认不显示 */ - showExistingGroupPick?: boolean; - /** 是否显示常用联系人,默认不显示 */ - showUsualContactPick?: boolean; -} -/** - * 调起选人组件 返回结果定义 - * @apiName internal.requestmoney.showContactAndGroupPick - */ -export interface IInternalRequestmoneyShowContactAndGroupPickResult { - /** 会话Id */ - cId?: string; - /** 群名称 */ - cName?: string; - /** 群成员人数 */ - memberCount?: number; - /** 选人的是人 */ - users?: Array<{ - uid?: number; - nick?: string; - avatarURL?: string; - }>; -} -/** - * 调起选人组件 - * @apiName internal.requestmoney.showContactAndGroupPick - * @supportVersion ios: 4.5.6 android: 4.5.6 - */ -export declare function showContactAndGroupPick$(params: IInternalRequestmoneyShowContactAndGroupPickParams): Promise; -export default showContactAndGroupPick$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showContactAndGroupPick.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showContactAndGroupPick.js deleted file mode 100644 index ecc90a7d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showContactAndGroupPick.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showContactAndGroupPick$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showContactAndGroupPick$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.showContactAndGroupPick",exports.showContactAndGroupPick$=showContactAndGroupPick$,exports.default=showContactAndGroupPick$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showGroupMemberPick.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showGroupMemberPick.d.ts deleted file mode 100644 index 9d4e34df..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showGroupMemberPick.d.ts +++ /dev/null @@ -1,40 +0,0 @@ -export declare const apiName = "internal.requestmoney.showGroupMemberPick"; -/** - * 调起群成员选人组件 请求参数定义 - * @apiName internal.requestmoney.showGroupMemberPick - */ -export interface IInternalRequestmoneyShowGroupMemberPickParams { - /** 选人组件标题 */ - title?: string; - /** 人数上限,传0表示不限制 */ - maxUsers?: number; - /** 不可选的人 */ - disabledUIds?: number[]; - /** 已选的人 */ - pickedUIds?: number[]; - /** 必选的人 */ - requiredUIds?: number[]; - /** 超过人数提示 */ - limitTips?: string; - /** 指定会话 */ - cId?: string; -} -/** - * 调起群成员选人组件 返回结果定义 - * @apiName internal.requestmoney.showGroupMemberPick - */ -export interface IInternalRequestmoneyShowGroupMemberPickResult { - /** 选人的是人 */ - users?: Array<{ - uid: number; - nick: string; - avatarURL: string; - }>; -} -/** - * 调起群成员选人组件 - * @apiName internal.requestmoney.showGroupMemberPick - * @supportVersion ios: 4.5.6 android: 4.5.6 - */ -export declare function showGroupMemberPick$(params: IInternalRequestmoneyShowGroupMemberPickParams): Promise; -export default showGroupMemberPick$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showGroupMemberPick.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showGroupMemberPick.js deleted file mode 100644 index d867b7e1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/showGroupMemberPick.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showGroupMemberPick$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showGroupMemberPick$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.showGroupMemberPick",exports.showGroupMemberPick$=showGroupMemberPick$,exports.default=showGroupMemberPick$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/updateCardStatus.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/updateCardStatus.d.ts deleted file mode 100644 index 80dc37f7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/updateCardStatus.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.requestmoney.updateCardStatus"; -/** - * 更新群收款气泡卡片状态,如已收齐、已支付、已过期…… 请求参数定义 - * @apiName internal.requestmoney.updateCardStatus - */ -export interface IInternalRequestmoneyUpdateCardStatusParams { - ext: { - group_bill_paid_count: any; - group_bill_paystatus: any; - group_bill_status: any; - }; - /** 字符串,加密后的消息id */ - mid: string; - /** 字符串,加密后的会话id */ - cid: string; -} -/** - * 更新群收款气泡卡片状态,如已收齐、已支付、已过期…… 返回结果定义 - * @apiName internal.requestmoney.updateCardStatus - */ -export interface IInternalRequestmoneyUpdateCardStatusResult { - [key: string]: any; -} -/** - * 更新群收款气泡卡片状态,如已收齐、已支付、已过期…… - * @apiName internal.requestmoney.updateCardStatus - * @supportVersion ios: 4.5.19 android: 4.5.19 - */ -export declare function updateCardStatus$(params: IInternalRequestmoneyUpdateCardStatusParams): Promise; -export default updateCardStatus$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/updateCardStatus.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/updateCardStatus.js deleted file mode 100644 index 21102cc4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/requestmoney/updateCardStatus.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function updateCardStatus$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.updateCardStatus$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.requestmoney.updateCardStatus",exports.updateCardStatus$=updateCardStatus$,exports.default=updateCardStatus$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getAppInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getAppInfo.d.ts deleted file mode 100644 index 827ce5e3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getAppInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.safe.getAppInfo"; -/** - * 获取App信息 请求参数定义 - * @apiName internal.safe.getAppInfo - */ -export interface IInternalSafeGetAppInfoParams { - [key: string]: any; -} -/** - * 获取App信息 返回结果定义 - * @apiName internal.safe.getAppInfo - */ -export interface IInternalSafeGetAppInfoResult { - [key: string]: any; -} -/** - * 获取App信息 - * @apiName internal.safe.getAppInfo - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function getAppInfo$(params: IInternalSafeGetAppInfoParams): Promise; -export default getAppInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getAppInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getAppInfo.js deleted file mode 100644 index a5b472bf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getAppInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getAppInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getAppInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.safe.getAppInfo",exports.getAppInfo$=getAppInfo$,exports.default=getAppInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getDeviceInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getDeviceInfo.d.ts deleted file mode 100644 index a55aa049..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getDeviceInfo.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.safe.getDeviceInfo"; -/** - * 获取设备相关信息 请求参数定义 - * @apiName internal.safe.getDeviceInfo - */ -export interface IInternalSafeGetDeviceInfoParams { - [key: string]: any; -} -/** - * 获取设备相关信息 返回结果定义 - * @apiName internal.safe.getDeviceInfo - */ -export interface IInternalSafeGetDeviceInfoResult { - [key: string]: any; -} -/** - * 获取设备相关信息 - * @apiName internal.safe.getDeviceInfo - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function getDeviceInfo$(params: IInternalSafeGetDeviceInfoParams): Promise; -export default getDeviceInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getDeviceInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getDeviceInfo.js deleted file mode 100644 index 84a1c0f9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/getDeviceInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getDeviceInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDeviceInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.safe.getDeviceInfo",exports.getDeviceInfo$=getDeviceInfo$,exports.default=getDeviceInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/scanPlugin.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/scanPlugin.d.ts deleted file mode 100644 index a6309e06..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/scanPlugin.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.safe.scanPlugin"; -/** - * iOS 越狱插件行为扫描 请求参数定义 - * @apiName internal.safe.scanPlugin - */ -export interface IInternalSafeScanPluginParams { - [key: string]: any; -} -/** - * iOS 越狱插件行为扫描 返回结果定义 - * @apiName internal.safe.scanPlugin - */ -export interface IInternalSafeScanPluginResult { - [key: string]: any; -} -/** - * iOS 越狱插件行为扫描 - * @apiName internal.safe.scanPlugin - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function scanPlugin$(params: IInternalSafeScanPluginParams): Promise; -export default scanPlugin$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/scanPlugin.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/scanPlugin.js deleted file mode 100644 index df90a177..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/safe/scanPlugin.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function scanPlugin$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.scanPlugin$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.safe.scanPlugin",exports.scanPlugin$=scanPlugin$,exports.default=scanPlugin$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/schedule/update.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/schedule/update.d.ts deleted file mode 100644 index 7614f422..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/schedule/update.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.schedule.update"; -/** - * 打开日程编辑窗口 请求参数定义 - * @apiName internal.schedule.update - */ -export interface IInternalScheduleUpdateParams { - /** 日程目录id */ - folderId: string; - /** 日程唯一id */ - uniqueId: string; -} -/** - * 打开日程编辑窗口 返回结果定义 - * @apiName internal.schedule.update - */ -export interface IInternalScheduleUpdateResult { -} -/** - * 打开日程编辑窗口 - * @apiName internal.schedule.update - * @supportVersion ios: 4.7.8 android: 4.7.8 - */ -export declare function update$(params: IInternalScheduleUpdateParams): Promise; -export default update$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/schedule/update.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/schedule/update.js deleted file mode 100644 index 6827f00c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/schedule/update.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function update$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.update$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.schedule.update",exports.update$=update$,exports.default=update$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/open.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/open.d.ts deleted file mode 100644 index 73a58934..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/open.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.schema.open"; -/** - * 内部页面跳转 请求参数定义 - * @apiName internal.schema.open - */ -export interface IInternalSchemaOpenParams { - [key: string]: any; -} -/** - * 内部页面跳转 返回结果定义 - * @apiName internal.schema.open - */ -export interface IInternalSchemaOpenResult { - [key: string]: any; -} -/** - * 内部页面跳转 - * @apiName internal.schema.open - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function open$(params: IInternalSchemaOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/open.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/open.js deleted file mode 100644 index 07d45c29..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.schema.open",exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openPermissionSetting.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openPermissionSetting.d.ts deleted file mode 100644 index d2dacbe5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openPermissionSetting.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.schema.openPermissionSetting"; -/** - * 打开钉钉权限设置页面 请求参数定义 - * @apiName internal.schema.openPermissionSetting - */ -export interface IInternalSchemaOpenPermissionSettingParams { -} -/** - * 打开钉钉权限设置页面 返回结果定义 - * @apiName internal.schema.openPermissionSetting - */ -export interface IInternalSchemaOpenPermissionSettingResult { -} -/** - * 打开钉钉权限设置页面 - * @apiName internal.schema.openPermissionSetting - * @supportVersion android: 4.6.11 - */ -export declare function openPermissionSetting$(params: IInternalSchemaOpenPermissionSettingParams): Promise; -export default openPermissionSetting$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openPermissionSetting.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openPermissionSetting.js deleted file mode 100644 index a61f867c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openPermissionSetting.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openPermissionSetting$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openPermissionSetting$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.schema.openPermissionSetting",exports.openPermissionSetting$=openPermissionSetting$,exports.default=openPermissionSetting$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openWifiSetting.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openWifiSetting.d.ts deleted file mode 100644 index e9761bc2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openWifiSetting.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.schema.openWifiSetting"; -/** - * 跳转到wifi设置(Android) 请求参数定义 - * @apiName internal.schema.openWifiSetting - */ -export interface IInternalSchemaOpenWifiSettingParams { - [key: string]: any; -} -/** - * 跳转到wifi设置(Android) 返回结果定义 - * @apiName internal.schema.openWifiSetting - */ -export interface IInternalSchemaOpenWifiSettingResult { - [key: string]: any; -} -/** - * 跳转到wifi设置(Android) - * @apiName internal.schema.openWifiSetting - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function openWifiSetting$(params: IInternalSchemaOpenWifiSettingParams): Promise; -export default openWifiSetting$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openWifiSetting.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openWifiSetting.js deleted file mode 100644 index eba5b68a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/schema/openWifiSetting.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openWifiSetting$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openWifiSetting$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.schema.openWifiSetting",exports.openWifiSetting$=openWifiSetting$,exports.default=openWifiSetting$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/search/debug.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/search/debug.d.ts deleted file mode 100644 index 30107b00..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/search/debug.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.search.debug"; -/** - * 搜索调试 请求参数定义 - * @apiName internal.search.debug - */ -export interface IInternalSearchDebugParams { - [key: string]: any; -} -/** - * 搜索调试 返回结果定义 - * @apiName internal.search.debug - */ -export interface IInternalSearchDebugResult { - [key: string]: any; -} -/** - * 搜索调试 - * @apiName internal.search.debug - * @supportVersion pc: 4.1.0 ios: 4.1.0 android: 4.1.0 - */ -export declare function debug$(params: IInternalSearchDebugParams): Promise; -export default debug$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/search/debug.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/search/debug.js deleted file mode 100644 index 287bb17d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/search/debug.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function debug$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.debug$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.search.debug",exports.debug$=debug$,exports.default=debug$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/security/asgCheck.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/security/asgCheck.d.ts deleted file mode 100644 index c1160b45..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/security/asgCheck.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export declare const apiName = "internal.security.asgCheck"; -/** - * internal.security.asgCheck 请求参数定义 - * @apiName internal.security.asgCheck - */ -export interface IInternalSecurityAsgCheckParams { -} -/** - * internal.security.asgCheck 返回结果定义 - * @apiName internal.security.asgCheck - */ -export interface IInternalSecurityAsgCheckResult { - /** 检测设备环境 */ - methodDE: string; - /** 检测应用运行环境 */ - methodDM: string; - /** 检测是否存在模拟点击service */ - methodDAType0: string; - /** 检测是否存在模拟输入法 */ - methodDAType1: string; - /** 检测是否存在模拟地理位置篡改app */ - methodDL: string; -} -/** - * internal.security.asgCheck - * @apiName internal.security.asgCheck - * @supportVersion android: 4.3.7 - */ -export declare function asgCheck$(params: IInternalSecurityAsgCheckParams): Promise; -export default asgCheck$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/security/asgCheck.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/security/asgCheck.js deleted file mode 100644 index 57d37a1f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/security/asgCheck.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function asgCheck$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.asgCheck$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.security.asgCheck",exports.asgCheck$=asgCheck$,exports.default=asgCheck$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/executeSql.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/executeSql.d.ts deleted file mode 100644 index dee65e3f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/executeSql.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.sqlite.executeSql"; -/** - * 执行SQLite SQL语句 请求参数定义 - * @apiName internal.sqlite.executeSql - */ -export interface IInternalSqliteExecuteSqlParams { - /** 数据库名 */ - db: string; - sqlStmts: Array<{ - sql: string; - args: any[]; - }>; -} -/** - * 执行SQLite SQL语句 返回结果定义 - * @apiName internal.sqlite.executeSql - */ -export interface IInternalSqliteExecuteSqlResult { - result: any; -} -/** - * 执行SQLite SQL语句 - * @apiName internal.sqlite.executeSql - * @supportVersion ios: 5.1.15 android: 5.1.18 pc: 5.1.17 - * @author ios: 冬翔 android: 步定 Windows:平戈(Backup: 秋酷) Mac:北塔 - */ -export declare function executeSql$(params: IInternalSqliteExecuteSqlParams): Promise; -export default executeSql$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/executeSql.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/executeSql.js deleted file mode 100644 index cb218da7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/executeSql.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function executeSql$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.executeSql$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.sqlite.executeSql",exports.executeSql$=executeSql$,exports.default=executeSql$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/open.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/open.d.ts deleted file mode 100644 index d3081b7e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/open.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "internal.sqlite.open"; -/** - * 打开SQLite数据库 请求参数定义 - * @apiName internal.sqlite.open - */ -export interface IInternalSqliteOpenParams { - /** 数据库名 */ - db: string; - /** db版本号 */ - version: number; - /** 是否加密 */ - isCrypto?: boolean; - /** 初次创建表的sql列表 */ - createSqls: string[]; - upgradeSqls?: any; -} -/** - * 打开SQLite数据库 返回结果定义 - * @apiName internal.sqlite.open - */ -export interface IInternalSqliteOpenResult { - dbSize: number; -} -/** - * 打开SQLite数据库 - * @apiName internal.sqlite.open - * @supportVersion ios: 5.1.15 android: 5.1.18 pc: 5.1.17 - * @author ios: 冬翔 android: 步定 Windows:平戈(Backup: 秋酷) Mac:北塔 - */ -export declare function open$(params: IInternalSqliteOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/open.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/open.js deleted file mode 100644 index 4bcc3f49..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/sqlite/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.sqlite.open",exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/initRoom.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/initRoom.d.ts deleted file mode 100644 index a87ac657..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/initRoom.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.studyroom.initRoom"; -/** - * 初始化学习房间 请求参数定义 - * @apiName internal.studyroom.initRoom - */ -export interface IInternalStudyroomInitRoomParams { - /** 会话id */ - cid: string; - /** 前端获取服务端的互动房间模型 */ - room: any; -} -/** - * 初始化学习房间 返回结果定义 - * @apiName internal.studyroom.initRoom - */ -export interface IInternalStudyroomInitRoomResult { - /** 客户端进行中的房间模型 */ - room: any; -} -/** - * 初始化学习房间 - * @apiName internal.studyroom.initRoom - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author iOS:新鹏 Android:峰砺 - */ -export declare function initRoom$(params: IInternalStudyroomInitRoomParams): Promise; -export default initRoom$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/initRoom.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/initRoom.js deleted file mode 100644 index 17c3d2d9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/initRoom.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function initRoom$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.initRoom$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.studyroom.initRoom",exports.initRoom$=initRoom$,exports.default=initRoom$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/operateMusic.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/operateMusic.d.ts deleted file mode 100644 index 13f50e85..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/operateMusic.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.studyroom.operateMusic"; -/** - * 学习室同步音乐状态 请求参数定义 - * @apiName internal.studyroom.operateMusic - */ -export interface IInternalStudyroomOperateMusicParams { - request: any; -} -/** - * 学习室同步音乐状态 返回结果定义 - * @apiName internal.studyroom.operateMusic - */ -export interface IInternalStudyroomOperateMusicResult { -} -/** - * 学习室同步音乐状态 - * @apiName internal.studyroom.operateMusic - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author iOS:新鹏 Android:峰砺 - */ -export declare function operateMusic$(params: IInternalStudyroomOperateMusicParams): Promise; -export default operateMusic$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/operateMusic.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/operateMusic.js deleted file mode 100644 index 566216f2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/operateMusic.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function operateMusic$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.operateMusic$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.studyroom.operateMusic",exports.operateMusic$=operateMusic$,exports.default=operateMusic$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/reportMemberState.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/reportMemberState.d.ts deleted file mode 100644 index 20f57110..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/reportMemberState.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "internal.studyroom.reportMemberState"; -/** - * 同步学习室成员状态 请求参数定义 - * @apiName internal.studyroom.reportMemberState - */ -export interface IInternalStudyroomReportMemberStateParams { - /** 房间id */ - roomId: string; - /** 房间关联实体id,这里是会话id */ - entityId: string; - /** 房主id */ - ownerId: number; - /** 成员列表 */ - members: any[]; -} -/** - * 同步学习室成员状态 返回结果定义 - * @apiName internal.studyroom.reportMemberState - */ -export interface IInternalStudyroomReportMemberStateResult { -} -/** - * 同步学习室成员状态 - * @apiName internal.studyroom.reportMemberState - * @supportVersion ios: 5.1.18 android: 5.1.18 - * @author iOS:新鹏 Android:峰砺 - */ -export declare function reportMemberState$(params: IInternalStudyroomReportMemberStateParams): Promise; -export default reportMemberState$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/reportMemberState.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/reportMemberState.js deleted file mode 100644 index 55a55457..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/studyroom/reportMemberState.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function reportMemberState$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.reportMemberState$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.studyroom.reportMemberState",exports.reportMemberState$=reportMemberState$,exports.default=reportMemberState$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/addMember.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/addMember.d.ts deleted file mode 100644 index 94ce9691..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/addMember.d.ts +++ /dev/null @@ -1,52 +0,0 @@ -export declare const apiName = "internal.teleVideo.addMember"; -/** - * 打开全局选人组件 请求参数定义 - * @apiName internal.teleVideo.addMember - */ -export interface IInternalTeleVideoAddMemberParams { - /** 标题 */ - title: string; - /** 是否多选 */ - multiple: boolean; - /** 超过限定人数返回提示 */ - limitTips: string; - /** 最大可选人数 */ - maxUsers: number; - /** 已选用户 */ - pickedUsers: string[]; - /** 不可选用户 */ - disabledUsers: string[]; - /** 必选用户 (不可取消选中状态) */ - requiredUsers: string[]; - /** 是否显示手机通讯录 */ - isShowLocal: boolean; - /** (>= 4.7.6) 是否显示群组 */ - isShowGroup: boolean; - /** (>= 4.7.6) 是否直接打开群组 */ - isDirect2Group: boolean; - /** (>= 4.7.19) 是否选设备 */ - isShowRoom: boolean; -} -/** - * 打开全局选人组件 返回结果定义 - * @apiName internal.teleVideo.addMember - */ -export interface IInternalTeleVideoAddMemberResult { - /** 选择人数 */ - selectedCount: number; - /** 返回选人的列表,列表中的对象包含name (用户名)、avatar (用户头像)、uid (员工userid),offline(是否离线,仅视频设备返回)四个字段 */ - users: Array<{ - name: string; - avatar: string; - uid: string; - offline: boolean; - }>; -} -/** - * 打开全局选人组件 - * @apiName internal.teleVideo.addMember - * @supportVersion ios: 4.6.34 android: 4.6.34 - * @author android:柳樵; ios:钧鸿 - */ -export declare function addMember$(params: IInternalTeleVideoAddMemberParams): Promise; -export default addMember$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/addMember.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/addMember.js deleted file mode 100644 index 20a8689d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/addMember.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addMember$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addMember$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.teleVideo.addMember",exports.addMember$=addMember$,exports.default=addMember$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/creatConf.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/creatConf.d.ts deleted file mode 100644 index c3ccae70..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/creatConf.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export declare const apiName = "internal.teleVideo.creatConf"; -/** - * 发起视频会议 请求参数定义 - * @apiName internal.teleVideo.creatConf - */ -export interface IInternalTeleVideoCreatConfParams { - /** 视频会议类型 */ - bizType: string; - /** 最大支持人数 */ - maxUsers: number; - /** 呼叫用户 */ - calleeUsers: string[]; - /** 本地设备uid */ - localDevice: number; -} -/** - * 发起视频会议 返回结果定义 - * @apiName internal.teleVideo.creatConf - */ -export interface IInternalTeleVideoCreatConfResult { -} -/** - * 发起视频会议 - * @apiName internal.teleVideo.creatConf - * @supportVersion ios: 4.6.34 android: 4.6.34 - */ -export declare function creatConf$(params: IInternalTeleVideoCreatConfParams): Promise; -export default creatConf$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/creatConf.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/creatConf.js deleted file mode 100644 index a8802e24..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/creatConf.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function creatConf$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.creatConf$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.teleVideo.creatConf",exports.creatConf$=creatConf$,exports.default=creatConf$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/dismissMeetingFloatingView.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/dismissMeetingFloatingView.d.ts deleted file mode 100644 index 4710f12a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/dismissMeetingFloatingView.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.teleVideo.dismissMeetingFloatingView"; -/** - * 消失本地悬浮窗 请求参数定义 - * @apiName internal.teleVideo.dismissMeetingFloatingView - */ -export interface IInternalTeleVideoDismissMeetingFloatingViewParams { -} -/** - * 消失本地悬浮窗 返回结果定义 - * @apiName internal.teleVideo.dismissMeetingFloatingView - */ -export interface IInternalTeleVideoDismissMeetingFloatingViewResult { -} -/** - * 消失本地悬浮窗 - * @apiName internal.teleVideo.dismissMeetingFloatingView - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function dismissMeetingFloatingView$(params: IInternalTeleVideoDismissMeetingFloatingViewParams): Promise; -export default dismissMeetingFloatingView$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/dismissMeetingFloatingView.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/dismissMeetingFloatingView.js deleted file mode 100644 index 78b21f12..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/dismissMeetingFloatingView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function dismissMeetingFloatingView$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.dismissMeetingFloatingView$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.teleVideo.dismissMeetingFloatingView",exports.dismissMeetingFloatingView$=dismissMeetingFloatingView$,exports.default=dismissMeetingFloatingView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/registPushHandler.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/registPushHandler.d.ts deleted file mode 100644 index 1e68ac56..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/registPushHandler.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.teleVideo.registPushHandler"; -/** - * 注册推送监听 请求参数定义 - * @apiName internal.teleVideo.registPushHandler - */ -export interface IInternalTeleVideoRegistPushHandlerParams { -} -/** - * 注册推送监听 返回结果定义 - * @apiName internal.teleVideo.registPushHandler - */ -export interface IInternalTeleVideoRegistPushHandlerResult { -} -/** - * 注册推送监听 - * @apiName internal.teleVideo.registPushHandler - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function registPushHandler$(params: IInternalTeleVideoRegistPushHandlerParams): Promise; -export default registPushHandler$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/registPushHandler.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/registPushHandler.js deleted file mode 100644 index ba17d0e5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/registPushHandler.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function registPushHandler$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.registPushHandler$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.teleVideo.registPushHandler",exports.registPushHandler$=registPushHandler$,exports.default=registPushHandler$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/shareInvite.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/shareInvite.d.ts deleted file mode 100644 index 0a39bc76..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/shareInvite.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "internal.teleVideo.shareInvite"; -/** - * 视频会议 邀请入会 请求参数定义 - * @apiName internal.teleVideo.shareInvite - */ -export interface IInternalTeleVideoShareInviteParams { - [key: string]: any; -} -/** - * 视频会议 邀请入会 返回结果定义 - * @apiName internal.teleVideo.shareInvite - */ -export interface IInternalTeleVideoShareInviteResult { - [key: string]: any; -} -/** - * 视频会议 邀请入会 - * @apiName internal.teleVideo.shareInvite - * @supportVersion ios: 5.0.15 android: 5.0.15 - * @author Android: 峰砺, iOS: 怒龙 - */ -export declare function shareInvite$(params: IInternalTeleVideoShareInviteParams): Promise; -export default shareInvite$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/shareInvite.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/shareInvite.js deleted file mode 100644 index 605ead93..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/shareInvite.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function shareInvite$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.shareInvite$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.teleVideo.shareInvite",exports.shareInvite$=shareInvite$,exports.default=shareInvite$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/showMeetingFloatingView.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/showMeetingFloatingView.d.ts deleted file mode 100644 index 9ec938f7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/showMeetingFloatingView.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.teleVideo.showMeetingFloatingView"; -/** - * 显示本地悬浮窗 请求参数定义 - * @apiName internal.teleVideo.showMeetingFloatingView - */ -export interface IInternalTeleVideoShowMeetingFloatingViewParams { - /** 点击悬浮窗打开的页面地址 */ - href: string; -} -/** - * 显示本地悬浮窗 返回结果定义 - * @apiName internal.teleVideo.showMeetingFloatingView - */ -export interface IInternalTeleVideoShowMeetingFloatingViewResult { -} -/** - * 显示本地悬浮窗 - * @apiName internal.teleVideo.showMeetingFloatingView - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function showMeetingFloatingView$(params: IInternalTeleVideoShowMeetingFloatingViewParams): Promise; -export default showMeetingFloatingView$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/showMeetingFloatingView.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/showMeetingFloatingView.js deleted file mode 100644 index 27da14f3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/showMeetingFloatingView.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showMeetingFloatingView$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showMeetingFloatingView$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.teleVideo.showMeetingFloatingView",exports.showMeetingFloatingView$=showMeetingFloatingView$,exports.default=showMeetingFloatingView$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/unregistPushHandler.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/unregistPushHandler.d.ts deleted file mode 100644 index 0a64adb8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/unregistPushHandler.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.teleVideo.unregistPushHandler"; -/** - * 取消注册推送监听 请求参数定义 - * @apiName internal.teleVideo.unregistPushHandler - */ -export interface IInternalTeleVideoUnregistPushHandlerParams { -} -/** - * 取消注册推送监听 返回结果定义 - * @apiName internal.teleVideo.unregistPushHandler - */ -export interface IInternalTeleVideoUnregistPushHandlerResult { -} -/** - * 取消注册推送监听 - * @apiName internal.teleVideo.unregistPushHandler - * @supportVersion ios: 4.6.42 android: 4.6.42 - */ -export declare function unregistPushHandler$(params: IInternalTeleVideoUnregistPushHandlerParams): Promise; -export default unregistPushHandler$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/unregistPushHandler.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/unregistPushHandler.js deleted file mode 100644 index 8984d66a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/teleVideo/unregistPushHandler.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unregistPushHandler$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unregistPushHandler$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.teleVideo.unregistPushHandler",exports.unregistPushHandler$=unregistPushHandler$,exports.default=unregistPushHandler$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ui/getCurrentUIEnvironment.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/ui/getCurrentUIEnvironment.d.ts deleted file mode 100644 index 595f9f8e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ui/getCurrentUIEnvironment.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.ui.getCurrentUIEnvironment"; -/** - * 获取当前小程序在native客户端相关的UI环境特征集合,如displayScale,iPad分屏状态等。未来native的UI相关的通用内容扩展此接口回参来暴露 请求参数定义 - * @apiName internal.ui.getCurrentUIEnvironment - */ -export interface IInternalUiGetCurrentUIEnvironmentParams { -} -/** - * 获取当前小程序在native客户端相关的UI环境特征集合,如displayScale,iPad分屏状态等。未来native的UI相关的通用内容扩展此接口回参来暴露 返回结果定义 - * @apiName internal.ui.getCurrentUIEnvironment - */ -export interface IInternalUiGetCurrentUIEnvironmentResult { - /** - * 当前页面在设备上的缩放值 - * 1.0: iPhone 3gs及以下设备;初代iPad/2/初代Mini - * 2.0: iPhone 4 ~ 8/SE/Xr/11;iPad Mini/Air/Pro - * 3.0: iPhone 6p/6sp/7p/8p/X/Xs/11 Pro等 - */ - displayScale: number; - /** 当前页面是否处于iPad 分屏容器中。 true: 当前页面在分屏容器中 false: 当前页面不在分屏容器中 */ - inSplitView: boolean; - /** 当前页面所属的分屏容器是否处于非分屏状态。true为非分屏状态, false为分屏状态 */ - splitViewCollapsed: boolean; -} -/** - * 获取当前小程序在native客户端相关的UI环境特征集合,如displayScale,iPad分屏状态等。未来native的UI相关的通用内容扩展此接口回参来暴露 - * @apiName internal.ui.getCurrentUIEnvironment - * @supportVersion ios: 5.0.0 - * @author iOS: 库珀 - */ -export declare function getCurrentUIEnvironment$(params: IInternalUiGetCurrentUIEnvironmentParams): Promise; -export default getCurrentUIEnvironment$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/ui/getCurrentUIEnvironment.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/ui/getCurrentUIEnvironment.js deleted file mode 100644 index c44e7b06..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/ui/getCurrentUIEnvironment.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentUIEnvironment$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentUIEnvironment$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.ui.getCurrentUIEnvironment",exports.getCurrentUIEnvironment$=getCurrentUIEnvironment$,exports.default=getCurrentUIEnvironment$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/allOrganizations.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/allOrganizations.d.ts deleted file mode 100644 index 4d46151a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/allOrganizations.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.user.allOrganizations"; -/** - * 获取自己所在的所有企业基本信息 请求参数定义 - * @apiName internal.user.allOrganizations - */ -export interface IInternalUserAllOrganizationsParams { - [key: string]: any; -} -/** - * 获取自己所在的所有企业基本信息 返回结果定义 - * @apiName internal.user.allOrganizations - */ -export interface IInternalUserAllOrganizationsResult { - [key: string]: any; -} -/** - * 获取自己所在的所有企业基本信息 - * @apiName internal.user.allOrganizations - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function allOrganizations$(params: IInternalUserAllOrganizationsParams): Promise; -export default allOrganizations$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/allOrganizations.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/allOrganizations.js deleted file mode 100644 index 9037fdc8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/allOrganizations.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function allOrganizations$(a){return common_1.ddSdk.invokeAPI(exports.apiName,a)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.allOrganizations$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.allOrganizations",exports.allOrganizations$=allOrganizations$,exports.default=allOrganizations$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/bindTaobao.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/bindTaobao.d.ts deleted file mode 100644 index 18b4b318..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/bindTaobao.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.user.bindTaobao"; -/** - * 唤起淘宝登录界面,将当前钉钉账号和淘宝账号绑定 请求参数定义 - * @apiName internal.user.bindTaobao - */ -export interface IInternalUserBindTaobaoParams { - [key: string]: any; -} -/** - * 唤起淘宝登录界面,将当前钉钉账号和淘宝账号绑定 返回结果定义 - * @apiName internal.user.bindTaobao - */ -export interface IInternalUserBindTaobaoResult { - [key: string]: any; -} -/** - * 唤起淘宝登录界面,将当前钉钉账号和淘宝账号绑定 - * @apiName internal.user.bindTaobao - * @supportVersion ios: 4.5.13 android: 4.5.13 - */ -export declare function bindTaobao$(params: IInternalUserBindTaobaoParams): Promise; -export default bindTaobao$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/bindTaobao.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/bindTaobao.js deleted file mode 100644 index 7c014b70..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/bindTaobao.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bindTaobao$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.bindTaobao$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.bindTaobao",exports.bindTaobao$=bindTaobao$,exports.default=bindTaobao$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getClaimEnergyEntryVisibility.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getClaimEnergyEntryVisibility.d.ts deleted file mode 100644 index a7810fbc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getClaimEnergyEntryVisibility.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.user.getClaimEnergyEntryVisibility"; -/** - * 获取是否在首页显示领取钉能量的入口 请求参数定义 - * @apiName internal.user.getClaimEnergyEntryVisibility - */ -export interface IInternalUserGetClaimEnergyEntryVisibilityParams { - [key: string]: any; -} -/** - * 获取是否在首页显示领取钉能量的入口 返回结果定义 - * @apiName internal.user.getClaimEnergyEntryVisibility - */ -export interface IInternalUserGetClaimEnergyEntryVisibilityResult { - [key: string]: any; -} -/** - * 获取是否在首页显示领取钉能量的入口 - * @apiName internal.user.getClaimEnergyEntryVisibility - * @supportVersion ios: 4.3.1 android: 4.3.1 - */ -export declare function getClaimEnergyEntryVisibility$(params: IInternalUserGetClaimEnergyEntryVisibilityParams): Promise; -export default getClaimEnergyEntryVisibility$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getClaimEnergyEntryVisibility.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getClaimEnergyEntryVisibility.js deleted file mode 100644 index 895eb220..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getClaimEnergyEntryVisibility.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getClaimEnergyEntryVisibility$(i){return common_1.ddSdk.invokeAPI(exports.apiName,i)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getClaimEnergyEntryVisibility$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.getClaimEnergyEntryVisibility",exports.getClaimEnergyEntryVisibility$=getClaimEnergyEntryVisibility$,exports.default=getClaimEnergyEntryVisibility$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getCurrentUserInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getCurrentUserInfo.d.ts deleted file mode 100644 index 7185669f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getCurrentUserInfo.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.user.getCurrentUserInfo"; -/** - * 获取当前用户的信息 请求参数定义 - * @apiName internal.user.getCurrentUserInfo - */ -export interface IInternalUserGetCurrentUserInfoParams { -} -/** - * 获取当前用户的信息 返回结果定义 - * @apiName internal.user.getCurrentUserInfo - */ -export interface IInternalUserGetCurrentUserInfoResult { - uid: number; - name: string; - avatar: string; -} -/** - * 获取当前用户的信息 - * @apiName internal.user.getCurrentUserInfo - * @supportVersion ios: 4.6.13 android: 4.6.13 pc: 6.0.12 - * @supportVersion pc: 法真 - */ -export declare function getCurrentUserInfo$(params: IInternalUserGetCurrentUserInfoParams): Promise; -export default getCurrentUserInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getCurrentUserInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getCurrentUserInfo.js deleted file mode 100644 index 1b1a0284..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getCurrentUserInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentUserInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentUserInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.getCurrentUserInfo",exports.getCurrentUserInfo$=getCurrentUserInfo$,exports.default=getCurrentUserInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRealmInfo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRealmInfo.d.ts deleted file mode 100644 index 9aea1418..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRealmInfo.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "internal.user.getRealmInfo"; -/** - * 获取当前登录账号的域相关信息 请求参数定义 - * @apiName internal.user.getRealmInfo - */ -export interface IInternalUserGetRealmInfoParams { -} -/** - * 获取当前登录账号的域相关信息 返回结果定义 - * @apiName internal.user.getRealmInfo - */ -export interface IInternalUserGetRealmInfoResult { - /** 返回当前登录用户是否是大客户域账号 */ - isRealm: boolean; - /** >= 4.7.6; 反应当前登录用户的域打标组织 */ - realmFlagOrgId: string; - /** >= 4.7.6; 返回当前登录用户域组织列表 */ - realmOrgList: string[]; -} -/** - * 获取当前登录账号的域相关信息 - * @apiName internal.user.getRealmInfo - * @supportVersion ios: 4.7.1 android: 4.7.1 pc: 4.7.1 - * @author ios:怒龙; android:笔歌; windows:秋酷; mac:凉糕 - */ -export declare function getRealmInfo$(params: IInternalUserGetRealmInfoParams): Promise; -export default getRealmInfo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRealmInfo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRealmInfo.js deleted file mode 100644 index 4181b8cb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRealmInfo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getRealmInfo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getRealmInfo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.getRealmInfo",exports.getRealmInfo$=getRealmInfo$,exports.default=getRealmInfo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRole.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRole.d.ts deleted file mode 100644 index 458c7bbb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRole.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.user.getRole"; -/** - * 获取角色 请求参数定义 - * @apiName internal.user.getRole - */ -export interface IInternalUserGetRoleParams { - [key: string]: any; -} -/** - * 获取角色 返回结果定义 - * @apiName internal.user.getRole - */ -export interface IInternalUserGetRoleResult { - [key: string]: any; -} -/** - * 获取角色 - * @apiName internal.user.getRole - * @supportVersion ios: 2.5.0 android: 2.5.0 - */ -export declare function getRole$(params: IInternalUserGetRoleParams): Promise; -export default getRole$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRole.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRole.js deleted file mode 100644 index 3dc70d88..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/getRole.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getRole$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getRole$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.getRole",exports.getRole$=getRole$,exports.default=getRole$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/isNewUser.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/isNewUser.d.ts deleted file mode 100644 index 8d43c2f2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/isNewUser.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.user.isNewUser"; -/** - * 是否是新用户 请求参数定义 - * @apiName internal.user.isNewUser - */ -export interface IInternalUserIsNewUserParams { - [key: string]: any; -} -/** - * 是否是新用户 返回结果定义 - * @apiName internal.user.isNewUser - */ -export interface IInternalUserIsNewUserResult { - [key: string]: any; -} -/** - * 是否是新用户 - * @apiName internal.user.isNewUser - * @supportVersion ios: 3.4.0 android: 3.4.0 - */ -export declare function isNewUser$(params: IInternalUserIsNewUserParams): Promise; -export default isNewUser$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/isNewUser.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/isNewUser.js deleted file mode 100644 index fcbf8925..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/isNewUser.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isNewUser$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isNewUser$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.isNewUser",exports.isNewUser$=isNewUser$,exports.default=isNewUser$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/setClaimEnergyEntryVisibility.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/setClaimEnergyEntryVisibility.d.ts deleted file mode 100644 index 36d2f69f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/setClaimEnergyEntryVisibility.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.user.setClaimEnergyEntryVisibility"; -/** - * 设置是否在首页显示领取钉能量的入口 请求参数定义 - * @apiName internal.user.setClaimEnergyEntryVisibility - */ -export interface IInternalUserSetClaimEnergyEntryVisibilityParams { - [key: string]: any; -} -/** - * 设置是否在首页显示领取钉能量的入口 返回结果定义 - * @apiName internal.user.setClaimEnergyEntryVisibility - */ -export interface IInternalUserSetClaimEnergyEntryVisibilityResult { - [key: string]: any; -} -/** - * 设置是否在首页显示领取钉能量的入口 - * @apiName internal.user.setClaimEnergyEntryVisibility - * @supportVersion ios: 4.3.1 android: 4.3.1 - */ -export declare function setClaimEnergyEntryVisibility$(params: IInternalUserSetClaimEnergyEntryVisibilityParams): Promise; -export default setClaimEnergyEntryVisibility$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/setClaimEnergyEntryVisibility.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/setClaimEnergyEntryVisibility.js deleted file mode 100644 index a75d857c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/setClaimEnergyEntryVisibility.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setClaimEnergyEntryVisibility$(i){return common_1.ddSdk.invokeAPI(exports.apiName,i)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setClaimEnergyEntryVisibility$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.setClaimEnergyEntryVisibility",exports.setClaimEnergyEntryVisibility$=setClaimEnergyEntryVisibility$,exports.default=setClaimEnergyEntryVisibility$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/showMedalEntry.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/showMedalEntry.d.ts deleted file mode 100644 index 4efbc2ab..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/showMedalEntry.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.user.showMedalEntry"; -/** - * 是否显示勋章入口 请求参数定义 - * @apiName internal.user.showMedalEntry - */ -export interface IInternalUserShowMedalEntryParams { - [key: string]: any; -} -/** - * 是否显示勋章入口 返回结果定义 - * @apiName internal.user.showMedalEntry - */ -export interface IInternalUserShowMedalEntryResult { - [key: string]: any; -} -/** - * 是否显示勋章入口 - * @apiName internal.user.showMedalEntry - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function showMedalEntry$(params: IInternalUserShowMedalEntryParams): Promise; -export default showMedalEntry$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/showMedalEntry.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/showMedalEntry.js deleted file mode 100644 index 9cdc6860..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/showMedalEntry.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showMedalEntry$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showMedalEntry$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.showMedalEntry",exports.showMedalEntry$=showMedalEntry$,exports.default=showMedalEntry$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/uids2UserInfos.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/uids2UserInfos.d.ts deleted file mode 100644 index b7101854..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/uids2UserInfos.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.user.uids2UserInfos"; -/** - * uid列表批量换取用户信息 请求参数定义 - * @apiName internal.user.uids2UserInfos - */ -export interface IInternalUserUids2UserInfosParams { - uids: number[]; -} -/** - * uid列表批量换取用户信息 返回结果定义 - * @apiName internal.user.uids2UserInfos - */ -export declare type IInternalUserUids2UserInfosResult = Array<{ - uid: number; - name: number; - avatar: string; -}>; -/** - * uid列表批量换取用户信息 - * @apiName internal.user.uids2UserInfos - * @supportVersion ios: 4.6.13 android: 4.6.13 - */ -export declare function uids2UserInfos$(params: IInternalUserUids2UserInfosParams): Promise; -export default uids2UserInfos$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/uids2UserInfos.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/uids2UserInfos.js deleted file mode 100644 index b7a29a3f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/uids2UserInfos.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uids2UserInfos$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uids2UserInfos$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.uids2UserInfos",exports.uids2UserInfos$=uids2UserInfos$,exports.default=uids2UserInfos$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/unbindTaobao.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/unbindTaobao.d.ts deleted file mode 100644 index 103c6af4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/unbindTaobao.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.user.unbindTaobao"; -/** - * 钉钉用户手动解除钉钉账号与淘宝账号的绑定 请求参数定义 - * @apiName internal.user.unbindTaobao - */ -export interface IInternalUserUnbindTaobaoParams { -} -/** - * 钉钉用户手动解除钉钉账号与淘宝账号的绑定 返回结果定义 - * @apiName internal.user.unbindTaobao - */ -export interface IInternalUserUnbindTaobaoResult { -} -/** - * 钉钉用户手动解除钉钉账号与淘宝账号的绑定 - * @apiName internal.user.unbindTaobao - * @supportVersion ios: 4.7.16 android: 4.7.16 - * @author iOS:姚曦 , Android:几米 - */ -export declare function unbindTaobao$(params: IInternalUserUnbindTaobaoParams): Promise; -export default unbindTaobao$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/unbindTaobao.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/user/unbindTaobao.js deleted file mode 100644 index 10339e43..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/user/unbindTaobao.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function unbindTaobao$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unbindTaobao$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.user.unbindTaobao",exports.unbindTaobao$=unbindTaobao$,exports.default=unbindTaobao$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/authAlipayInvoice.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/authAlipayInvoice.d.ts deleted file mode 100644 index 4dcc795f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/authAlipayInvoice.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.authAlipayInvoice"; -/** - * 唤起支付宝, 获取授权auto_code 请求参数定义 - * @apiName internal.util.authAlipayInvoice - */ -export interface IInternalUtilAuthAlipayInvoiceParams { - [key: string]: any; -} -/** - * 唤起支付宝, 获取授权auto_code 返回结果定义 - * @apiName internal.util.authAlipayInvoice - */ -export interface IInternalUtilAuthAlipayInvoiceResult { - [key: string]: any; -} -/** - * 唤起支付宝, 获取授权auto_code - * @apiName internal.util.authAlipayInvoice - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function authAlipayInvoice$(params: IInternalUtilAuthAlipayInvoiceParams): Promise; -export default authAlipayInvoice$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/authAlipayInvoice.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/authAlipayInvoice.js deleted file mode 100644 index d75de60e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/authAlipayInvoice.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function authAlipayInvoice$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.authAlipayInvoice$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.authAlipayInvoice",exports.authAlipayInvoice$=authAlipayInvoice$,exports.default=authAlipayInvoice$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseFile.d.ts deleted file mode 100644 index ce7a5b8d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseFile.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.util.chooseFile"; -/** - * 选择本地文件,返回其虚拟路径 请求参数定义 - * @apiName internal.util.chooseFile - */ -export interface IInternalUtilChooseFileParams { - /** - * 最多可以选择的文件个数,取值范围[1,9] - * multiSelection 专有钉独有 是否多选,默认单选,iOS11及以上才支持多选 - */ - count: number; - multiSelection?: boolean; -} -/** - * 选择本地文件,返回其虚拟路径 返回结果定义 - * @apiName internal.util.chooseFile - */ -export interface IInternalUtilChooseFileResult { - files: Array<{ - path: string; - size: number; - name: string; - }>; -} -/** - * 选择本地文件,返回其虚拟路径 - * @apiName internal.util.chooseFile - * @supportVersion ios: 4.7.12 android: 4.7.12 - * @author Android:泠轩 ; iOS: 贾逵 - */ -export declare function chooseFile$(params: IInternalUtilChooseFileParams): Promise; -export default chooseFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseFile.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseFile.js deleted file mode 100644 index 2ad0337d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseFile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.chooseFile",exports.chooseFile$=chooseFile$,exports.default=chooseFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseIndustry.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseIndustry.d.ts deleted file mode 100644 index 6d15c702..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseIndustry.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.chooseIndustry"; -/** - * 选择行业组件 请求参数定义 - * @apiName internal.util.chooseIndustry - */ -export interface IInternalUtilChooseIndustryParams { - [key: string]: any; -} -/** - * 选择行业组件 返回结果定义 - * @apiName internal.util.chooseIndustry - */ -export interface IInternalUtilChooseIndustryResult { - [key: string]: any; -} -/** - * 选择行业组件 - * @apiName internal.util.chooseIndustry - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseIndustry$(params: IInternalUtilChooseIndustryParams): Promise; -export default chooseIndustry$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseIndustry.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseIndustry.js deleted file mode 100644 index 2eeeb211..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseIndustry.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseIndustry$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseIndustry$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.chooseIndustry",exports.chooseIndustry$=chooseIndustry$,exports.default=chooseIndustry$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseRegion.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseRegion.d.ts deleted file mode 100644 index 4e4ee1f6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseRegion.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.util.chooseRegion"; -/** - * 选择地区 请求参数定义 - * @apiName internal.util.chooseRegion - */ -export interface IInternalUtilChooseRegionParams { - /** 是否需要返回区信息 (4.6.37 新增) */ - needDistrict?: boolean; - /** 区域信息 */ - region: string; - [key: string]: any; -} -/** - * 选择地区 返回结果定义 - * @apiName internal.util.chooseRegion - */ -export interface IInternalUtilChooseRegionResult { - [key: string]: any; -} -/** - * 选择地区 - * @apiName internal.util.chooseRegion - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function chooseRegion$(params: IInternalUtilChooseRegionParams): Promise; -export default chooseRegion$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseRegion.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseRegion.js deleted file mode 100644 index d4b594aa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/chooseRegion.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseRegion$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseRegion$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.chooseRegion",exports.chooseRegion$=chooseRegion$,exports.default=chooseRegion$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/collectCell.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/collectCell.d.ts deleted file mode 100644 index bdc97532..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/collectCell.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.collectCell"; -/** - * 安卓收集打卡瞬间用户周围的基站情况 请求参数定义 - * @apiName internal.util.collectCell - */ -export interface IInternalUtilCollectCellParams { - [key: string]: any; -} -/** - * 安卓收集打卡瞬间用户周围的基站情况 返回结果定义 - * @apiName internal.util.collectCell - */ -export interface IInternalUtilCollectCellResult { - [key: string]: any; -} -/** - * 安卓收集打卡瞬间用户周围的基站情况 - * @apiName internal.util.collectCell - * @supportVersion android: 3.5.1 - */ -export declare function collectCell$(params: IInternalUtilCollectCellParams): Promise; -export default collectCell$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/collectCell.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/collectCell.js deleted file mode 100644 index 2aafc921..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/collectCell.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function collectCell$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.collectCell$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.collectCell",exports.collectCell$=collectCell$,exports.default=collectCell$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/dns.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/dns.d.ts deleted file mode 100644 index 8ee7af03..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/dns.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.util.dns"; -/** - * dns解析 请求参数定义 - * @apiName internal.util.dns - */ -export interface IInternalUtilDnsParams { - host: string; -} -/** - * dns解析 返回结果定义 - * @apiName internal.util.dns - */ -export declare type IInternalUtilDnsResult = string[]; -/** - * dns解析 - * @apiName internal.util.dns - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function dns$(params: IInternalUtilDnsParams): Promise; -export default dns$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/dns.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/dns.js deleted file mode 100644 index 398f30ab..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/dns.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function dns$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.dns$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.dns",exports.dns$=dns$,exports.default=dns$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encryData.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encryData.d.ts deleted file mode 100644 index 5bd87de6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encryData.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.encryData"; -/** - * 参数加密生成key 请求参数定义 - * @apiName internal.util.encryData - */ -export interface IInternalUtilEncryDataParams { - [key: string]: any; -} -/** - * 参数加密生成key 返回结果定义 - * @apiName internal.util.encryData - */ -export interface IInternalUtilEncryDataResult { - [key: string]: any; -} -/** - * 参数加密生成key - * @apiName internal.util.encryData - * @supportVersion ios: 2.5.2 android: 2.5.2 - */ -export declare function encryData$(params: IInternalUtilEncryDataParams): Promise; -export default encryData$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encryData.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encryData.js deleted file mode 100644 index d8fd761e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encryData.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function encryData$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.encryData$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.encryData",exports.encryData$=encryData$,exports.default=encryData$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encrySHA1Data.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encrySHA1Data.d.ts deleted file mode 100644 index 8b3513c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encrySHA1Data.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.util.encrySHA1Data"; -/** - * 针对入参字符串,加密 请求参数定义 - * @apiName internal.util.encrySHA1Data - */ -export interface IInternalUtilEncrySHA1DataParams { - /** 要加密的字符串 */ - data: string; -} -/** - * 针对入参字符串,加密 返回结果定义 - * @apiName internal.util.encrySHA1Data - */ -export interface IInternalUtilEncrySHA1DataResult { - /** 加密后的字符串 */ - encryStr: string; -} -/** - * 针对入参字符串,加密 - * @apiName internal.util.encrySHA1Data - * @supportVersion ios: 4.6.41 android: 4.6.41 - */ -export declare function encrySHA1Data$(params: IInternalUtilEncrySHA1DataParams): Promise; -export default encrySHA1Data$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encrySHA1Data.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encrySHA1Data.js deleted file mode 100644 index edb03586..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/encrySHA1Data.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function encrySHA1Data$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.encrySHA1Data$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.encrySHA1Data",exports.encrySHA1Data$=encrySHA1Data$,exports.default=encrySHA1Data$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getBindSmartDeviceOrgList.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getBindSmartDeviceOrgList.d.ts deleted file mode 100644 index 72b0d7e0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getBindSmartDeviceOrgList.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.getBindSmartDeviceOrgList"; -/** - * 获取绑定了智能设备的企业列表 请求参数定义 - * @apiName internal.util.getBindSmartDeviceOrgList - */ -export interface IInternalUtilGetBindSmartDeviceOrgListParams { - [key: string]: any; -} -/** - * 获取绑定了智能设备的企业列表 返回结果定义 - * @apiName internal.util.getBindSmartDeviceOrgList - */ -export interface IInternalUtilGetBindSmartDeviceOrgListResult { - [key: string]: any; -} -/** - * 获取绑定了智能设备的企业列表 - * @apiName internal.util.getBindSmartDeviceOrgList - * @supportVersion ios: 4.0 android: 4.0 - */ -export declare function getBindSmartDeviceOrgList$(params: IInternalUtilGetBindSmartDeviceOrgListParams): Promise; -export default getBindSmartDeviceOrgList$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getBindSmartDeviceOrgList.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getBindSmartDeviceOrgList.js deleted file mode 100644 index d15c0c98..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getBindSmartDeviceOrgList.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getBindSmartDeviceOrgList$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getBindSmartDeviceOrgList$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getBindSmartDeviceOrgList",exports.getBindSmartDeviceOrgList$=getBindSmartDeviceOrgList$,exports.default=getBindSmartDeviceOrgList$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCloudSetting.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCloudSetting.d.ts deleted file mode 100644 index 4100bafe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCloudSetting.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.util.getCloudSetting"; -/** - * 获取 cloud setting 的值 请求参数定义 - * @apiName internal.util.getCloudSetting - */ -export interface IInternalUtilGetCloudSettingParams { - /** module 名称 */ - module: string; - /** key 名称 */ - key: string; -} -/** - * 获取 cloud setting 的值 返回结果定义 - * @apiName internal.util.getCloudSetting - */ -export interface IInternalUtilGetCloudSettingResult { - settingValue: string; -} -/** - * 获取 cloud setting 的值 - * @apiName internal.util.getCloudSetting - * @supportVersion ios: 4.6.12 android: 4.6.12 - */ -export declare function getCloudSetting$(params: IInternalUtilGetCloudSettingParams): Promise; -export default getCloudSetting$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCloudSetting.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCloudSetting.js deleted file mode 100644 index 96c8996c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCloudSetting.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCloudSetting$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCloudSetting$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getCloudSetting",exports.getCloudSetting$=getCloudSetting$,exports.default=getCloudSetting$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCorpIdByOrgId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCorpIdByOrgId.d.ts deleted file mode 100644 index df64d80f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCorpIdByOrgId.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.util.getCorpIdByOrgId"; -/** - * orgId换corpId 请求参数定义 - * @apiName internal.util.getCorpIdByOrgId - */ -export interface IInternalUtilGetCorpIdByOrgIdParams { - orgId: string; -} -/** - * orgId换corpId 返回结果定义 - * @apiName internal.util.getCorpIdByOrgId - */ -export declare type IInternalUtilGetCorpIdByOrgIdResult = string; -/** - * orgId换corpId - * @apiName internal.util.getCorpIdByOrgId - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function getCorpIdByOrgId$(params: IInternalUtilGetCorpIdByOrgIdParams): Promise; -export default getCorpIdByOrgId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCorpIdByOrgId.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCorpIdByOrgId.js deleted file mode 100644 index a2a496a3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCorpIdByOrgId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCorpIdByOrgId$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCorpIdByOrgId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getCorpIdByOrgId",exports.getCorpIdByOrgId$=getCorpIdByOrgId$,exports.default=getCorpIdByOrgId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCurrentOrgId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCurrentOrgId.d.ts deleted file mode 100644 index 4b445db9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCurrentOrgId.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.getCurrentOrgId"; -/** - * 获取当前组织的OrgID 请求参数定义 - * @apiName internal.util.getCurrentOrgId - */ -export interface IInternalUtilGetCurrentOrgIdParams { -} -/** - * 获取当前组织的OrgID 返回结果定义 - * @apiName internal.util.getCurrentOrgId - */ -export interface IInternalUtilGetCurrentOrgIdResult { - orgId: string; -} -/** - * 获取当前组织的OrgID - * @apiName internal.util.getCurrentOrgId - * @supportVersion ios: 5.1.39 android: 5.1.39 - * @author windows: 口合, mac: 口合 - */ -export declare function getCurrentOrgId$(params: IInternalUtilGetCurrentOrgIdParams): Promise; -export default getCurrentOrgId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCurrentOrgId.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCurrentOrgId.js deleted file mode 100644 index 356e5f5b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getCurrentOrgId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentOrgId$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentOrgId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getCurrentOrgId",exports.getCurrentOrgId$=getCurrentOrgId$,exports.default=getCurrentOrgId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getLBSWua.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getLBSWua.d.ts deleted file mode 100644 index 4e33a789..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getLBSWua.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.getLBSWua"; -/** - * 获取安全lbstoken 请求参数定义 - * @apiName internal.util.getLBSWua - */ -export interface IInternalUtilGetLBSWuaParams { -} -/** - * 获取安全lbstoken 返回结果定义 - * @apiName internal.util.getLBSWua - */ -export interface IInternalUtilGetLBSWuaResult { - lbsWua: string; -} -/** - * 获取安全lbstoken - * @apiName internal.util.getLBSWua - * @supportVersion ios: 4.6.34 android: 4.6.33 - * @author andriod:叔敖, ios:小僧 - */ -export declare function getLBSWua$(params: IInternalUtilGetLBSWuaParams): Promise; -export default getLBSWua$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getLBSWua.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getLBSWua.js deleted file mode 100644 index 728dcb15..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getLBSWua.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLBSWua$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLBSWua$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getLBSWua",exports.getLBSWua$=getLBSWua$,exports.default=getLBSWua$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getOrgIdByCorpId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getOrgIdByCorpId.d.ts deleted file mode 100644 index 4ce812df..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getOrgIdByCorpId.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export declare const apiName = "internal.util.getOrgIdByCorpId"; -/** - * corpId换orgId 请求参数定义 - * @apiName internal.util.getOrgIdByCorpId - */ -export interface IInternalUtilGetOrgIdByCorpIdParams { - corpId: string; -} -/** - * corpId换orgId 返回结果定义 - * @apiName internal.util.getOrgIdByCorpId - */ -export declare type IInternalUtilGetOrgIdByCorpIdResult = string; -/** - * corpId换orgId - * @apiName internal.util.getOrgIdByCorpId - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function getOrgIdByCorpId$(params: IInternalUtilGetOrgIdByCorpIdParams): Promise; -export default getOrgIdByCorpId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getOrgIdByCorpId.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getOrgIdByCorpId.js deleted file mode 100644 index 29a5f223..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getOrgIdByCorpId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getOrgIdByCorpId$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getOrgIdByCorpId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getOrgIdByCorpId",exports.getOrgIdByCorpId$=getOrgIdByCorpId$,exports.default=getOrgIdByCorpId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getSystemSetting.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getSystemSetting.d.ts deleted file mode 100644 index 2c6ce379..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getSystemSetting.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.util.getSystemSetting"; -/** - * 获取系统设置值 请求参数定义 - * @apiName internal.util.getSystemSetting - */ -export interface IInternalUtilGetSystemSettingParams { - /** 设置项Id */ - item: string; -} -/** - * 获取系统设置值 返回结果定义 - * @apiName internal.util.getSystemSetting - */ -export interface IInternalUtilGetSystemSettingResult { - /** 设置项id对应的值 */ - value: string; -} -/** - * 获取系统设置值 - * @apiName internal.util.getSystemSetting - * @supportVersion Win: 6.0.19 Mac: 6.0.19 - * @author Win:周镛, MAC:奔云 - */ -export declare function getSystemSetting$(params: IInternalUtilGetSystemSettingParams): Promise; -export default getSystemSetting$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getSystemSetting.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getSystemSetting.js deleted file mode 100644 index 1bfc194e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getSystemSetting.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getSystemSetting$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getSystemSetting$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getSystemSetting",exports.getSystemSetting$=getSystemSetting$,exports.default=getSystemSetting$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getUtdid.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getUtdid.d.ts deleted file mode 100644 index d16a9c40..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getUtdid.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.getUtdid"; -/** - * 获取设备utdid,钉钉内部使用,非对外 请求参数定义 - * @apiName internal.util.getUtdid - */ -export interface IInternalUtilGetUtdidParams { -} -/** - * 获取设备utdid,钉钉内部使用,非对外 返回结果定义 - * @apiName internal.util.getUtdid - */ -export interface IInternalUtilGetUtdidResult { - utdid: string; -} -/** - * 获取设备utdid,钉钉内部使用,非对外 - * @apiName internal.util.getUtdid - * @supportVersion ios: 5.0.7 android: 5.0.7 - * @author ios: 驽良, android: 龙雀 - */ -export declare function getUtdid$(params: IInternalUtilGetUtdidParams): Promise; -export default getUtdid$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getUtdid.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getUtdid.js deleted file mode 100644 index a8469d6a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getUtdid.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getUtdid$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getUtdid$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getUtdid",exports.getUtdid$=getUtdid$,exports.default=getUtdid$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getWua.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getWua.d.ts deleted file mode 100644 index 8953b84e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getWua.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.getWua"; -/** - * 人机识别 请求参数定义 - * @apiName internal.util.getWua - */ -export interface IInternalUtilGetWuaParams { - [key: string]: any; -} -/** - * 人机识别 返回结果定义 - * @apiName internal.util.getWua - */ -export interface IInternalUtilGetWuaResult { - [key: string]: any; -} -/** - * 人机识别 - * @apiName internal.util.getWua - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function getWua$(params: IInternalUtilGetWuaParams): Promise; -export default getWua$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getWua.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getWua.js deleted file mode 100644 index ddde8fc2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/getWua.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getWua$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getWua$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.getWua",exports.getWua$=getWua$,exports.default=getWua$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/grayStringLemon.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/grayStringLemon.d.ts deleted file mode 100644 index cf8fe84a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/grayStringLemon.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.util.grayStringLemon"; -/** - * 获取新灰度流程下的开关配置值(string) 请求参数定义 - * @apiName internal.util.grayStringLemon - */ -export interface IInternalUtilGrayStringLemonParams { - module: string; - key: string; - orgId?: number; - default?: string; -} -/** - * 获取新灰度流程下的开关配置值(string) 返回结果定义 - * @apiName internal.util.grayStringLemon - */ -export declare type IInternalUtilGrayStringLemonResult = string; -/** - * 获取新灰度流程下的开关配置值(string) - * @apiName internal.util.grayStringLemon - * @supportVersion ios: 5.1.11 android: 5.1.11 pc: 5.1.11 - * @author iOS : 冬翔 Android : 卓剑 Windows: 法真 Mac: 法真 - */ -export declare function grayStringLemon$(params: IInternalUtilGrayStringLemonParams): Promise; -export default grayStringLemon$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/grayStringLemon.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/grayStringLemon.js deleted file mode 100644 index 147d2c06..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/grayStringLemon.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function grayStringLemon$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.grayStringLemon$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.grayStringLemon",exports.grayStringLemon$=grayStringLemon$,exports.default=grayStringLemon$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitch.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitch.d.ts deleted file mode 100644 index a50276c8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitch.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "internal.util.graySwitch"; -/** - * 读取灰度开关 请求参数定义 - * @apiName internal.util.graySwitch - */ -export interface IInternalUtilGraySwitchParams { - /** 模块名,默认 general */ - module: string; - /** 开关key 必填,非空 */ - key: string; - /** 默认值,默认为false */ - default?: boolean; -} -/** - * 读取灰度开关 返回结果定义 - * @apiName internal.util.graySwitch - */ -export declare type IInternalUtilGraySwitchResult = boolean; -/** - * 读取灰度开关 - * @apiName internal.util.graySwitch - * @supportVersion ios: 4.6.10 android: 4.6.10 - */ -export declare function graySwitch$(params: IInternalUtilGraySwitchParams): Promise; -export default graySwitch$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitch.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitch.js deleted file mode 100644 index a3850e75..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitch.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function graySwitch$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.graySwitch$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.graySwitch",exports.graySwitch$=graySwitch$,exports.default=graySwitch$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitchLemon.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitchLemon.d.ts deleted file mode 100644 index 1fbd0385..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitchLemon.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.util.graySwitchLemon"; -/** - * 获取新灰度流程下的开关配置值 请求参数定义 - * @apiName internal.util.graySwitchLemon - */ -export interface IInternalUtilGraySwitchLemonParams { - module: string; - key: string; - orgId?: number; - default?: boolean; -} -/** - * 获取新灰度流程下的开关配置值 返回结果定义 - * @apiName internal.util.graySwitchLemon - */ -export declare type IInternalUtilGraySwitchLemonResult = boolean; -/** - * 获取新灰度流程下的开关配置值 - * @apiName internal.util.graySwitchLemon - * @supportVersion ios: 5.1.11 android: 5.1.11 pc: 5.1.11 - * @author iOS : 冬翔 Android : 卓剑 Windows: 法真 Mac: 法真 - */ -export declare function graySwitchLemon$(params: IInternalUtilGraySwitchLemonParams): Promise; -export default graySwitchLemon$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitchLemon.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitchLemon.js deleted file mode 100644 index 9bc79e36..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/graySwitchLemon.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function graySwitchLemon$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.graySwitchLemon$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.graySwitchLemon",exports.graySwitchLemon$=graySwitchLemon$,exports.default=graySwitchLemon$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/isSimulator.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/isSimulator.d.ts deleted file mode 100644 index 235f60af..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/isSimulator.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.isSimulator"; -/** - * 模拟器 请求参数定义 - * @apiName internal.util.isSimulator - */ -export interface IInternalUtilIsSimulatorParams { - [key: string]: any; -} -/** - * 模拟器 返回结果定义 - * @apiName internal.util.isSimulator - */ -export interface IInternalUtilIsSimulatorResult { - [key: string]: any; -} -/** - * 模拟器 - * @apiName internal.util.isSimulator - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function isSimulator$(params: IInternalUtilIsSimulatorParams): Promise; -export default isSimulator$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/isSimulator.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/isSimulator.js deleted file mode 100644 index 8e992e3b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/isSimulator.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isSimulator$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.isSimulator$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.isSimulator",exports.isSimulator$=isSimulator$,exports.default=isSimulator$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/ratingAndFeedback.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/ratingAndFeedback.d.ts deleted file mode 100644 index 53e2824b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/ratingAndFeedback.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "internal.util.ratingAndFeedback"; -/** - * 为了提高app在app store中/android市场的评分,需要在某些业务流程中唤起好评弹窗 请求参数定义 - * @apiName internal.util.ratingAndFeedback - */ -export interface IInternalUtilRatingAndFeedbackParams { - /** 弹窗中的标题(必填) */ - title: string; - /** 弹窗中的描述(必填) */ - description: string; - /** 弹窗封面图链接(必填) */ - cover_image_url: string; - /** 点击反馈按钮后跳转页面链接(必填) */ - feedback_url: string; - /** 反馈按钮标题(必填) */ - feedback_button_title: string; - /** 业务来源 */ - source: string; -} -/** - * 为了提高app在app store中/android市场的评分,需要在某些业务流程中唤起好评弹窗 返回结果定义 - * @apiName internal.util.ratingAndFeedback - */ -export interface IInternalUtilRatingAndFeedbackResult { -} -/** - * 为了提高app在app store中/android市场的评分,需要在某些业务流程中唤起好评弹窗 - * @apiName internal.util.ratingAndFeedback - * @supportVersion ios: 4.3.7 android: 4.3.7 - */ -export declare function ratingAndFeedback$(params: IInternalUtilRatingAndFeedbackParams): Promise; -export default ratingAndFeedback$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/ratingAndFeedback.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/ratingAndFeedback.js deleted file mode 100644 index 40b6b074..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/ratingAndFeedback.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function ratingAndFeedback$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.ratingAndFeedback$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.ratingAndFeedback",exports.ratingAndFeedback$=ratingAndFeedback$,exports.default=ratingAndFeedback$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/recordShortVideo.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/recordShortVideo.d.ts deleted file mode 100644 index cb9698ad..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/recordShortVideo.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -export declare const apiName = "internal.util.recordShortVideo"; -/** - * 淘拍短视频拍摄 请求参数定义 - * @apiName internal.util.recordShortVideo - */ -export interface IInternalUtilRecordShortVideoParams { - /** 前后摄像头(0: rear 1: front),默认rear。 */ - camera?: number; - /** 最大拍摄时长,默认60s。 */ - durationMax?: number; - /** 最小拍摄时长,默认1s。 */ - durationMin?: number; - /** 开启滤镜,默认False。 */ - enableFiler?: boolean; - /** 开启道具,默认False。 */ - enableProps?: boolean; - /** 主题特效素材ID。 */ - materialId?: string; -} -/** - * 淘拍短视频拍摄 返回结果定义 - * @apiName internal.util.recordShortVideo - */ -export interface IInternalUtilRecordShortVideoResult { - /** 拍摄后的视频文件信息 */ - data: { - /** 视频文件路径:APFilePath格式返回。 */ - filePath: string; - /** 视频时长 */ - duration: number; - /** 视频尺寸:宽 */ - width: number; - /** 视频尺寸:高 */ - height: number; - /** 视频文件大小 */ - size: number; - }; -} -/** - * 淘拍短视频拍摄 - * @apiName internal.util.recordShortVideo - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function recordShortVideo$(params: IInternalUtilRecordShortVideoParams): Promise; -export default recordShortVideo$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/recordShortVideo.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/recordShortVideo.js deleted file mode 100644 index 8bd765e1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/recordShortVideo.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function recordShortVideo$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.recordShortVideo$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.recordShortVideo",exports.recordShortVideo$=recordShortVideo$,exports.default=recordShortVideo$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/setSystemSetting.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/setSystemSetting.d.ts deleted file mode 100644 index cfcba8bf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/setSystemSetting.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "internal.util.setSystemSetting"; -/** - * 设置系统设置值 请求参数定义 - * @apiName internal.util.setSystemSetting - */ -export interface IInternalUtilSetSystemSettingParams { - /** 设置项Id */ - item: string; - /** 设置项值 */ - value: string; -} -/** - * 设置系统设置值 返回结果定义 result: boolean: 是否设置成功 - * @apiName internal.util.setSystemSetting - */ -export interface IInternalUtilSetSystemSettingResult { - [key: string]: any; -} -/** - * 设置系统设置值 - * @apiName internal.util.setSystemSetting - * @supportVersion Win: 6.0.19 Mac: 6.0.19 - * @author Win:周镛, MAC:奔云 - */ -export declare function setSystemSetting$(params: IInternalUtilSetSystemSettingParams): Promise; -export default setSystemSetting$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/setSystemSetting.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/setSystemSetting.js deleted file mode 100644 index de2253f2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/setSystemSetting.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setSystemSetting$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setSystemSetting$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.setSystemSetting",exports.setSystemSetting$=setSystemSetting$,exports.default=setSystemSetting$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/showAddExternalContactDialog.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/showAddExternalContactDialog.d.ts deleted file mode 100644 index b7c6cb47..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/showAddExternalContactDialog.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.util.showAddExternalContactDialog"; -/** - * 唤起添加外部联系人组件 请求参数定义 - * @apiName internal.util.showAddExternalContactDialog - */ -export interface IInternalUtilShowAddExternalContactDialogParams { - [key: string]: any; -} -/** - * 唤起添加外部联系人组件 返回结果定义 - * @apiName internal.util.showAddExternalContactDialog - */ -export interface IInternalUtilShowAddExternalContactDialogResult { - [key: string]: any; -} -/** - * 唤起添加外部联系人组件 - * @apiName internal.util.showAddExternalContactDialog - * @supportVersion ios: 3.5.3 android: 3.5.3 - */ -export declare function showAddExternalContactDialog$(params: IInternalUtilShowAddExternalContactDialogParams): Promise; -export default showAddExternalContactDialog$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/showAddExternalContactDialog.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/showAddExternalContactDialog.js deleted file mode 100644 index 4ff4a806..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/showAddExternalContactDialog.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function showAddExternalContactDialog$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.showAddExternalContactDialog$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.showAddExternalContactDialog",exports.showAddExternalContactDialog$=showAddExternalContactDialog$,exports.default=showAddExternalContactDialog$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/switchOA.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/switchOA.d.ts deleted file mode 100644 index f941fefb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/switchOA.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export declare const apiName = "internal.util.switchOA"; -/** - * 通过通知切换首页工作台企业 请求参数定义 - * @apiName internal.util.switchOA - */ -export interface IInternalUtilSwitchOAParams { - corpId: string; -} -/** - * 通过通知切换首页工作台企业 返回结果定义 - * @apiName internal.util.switchOA - */ -export interface IInternalUtilSwitchOAResult { -} -/** - * 通过通知切换首页工作台企业 - * @apiName internal.util.switchOA - * @supportVersion ios: 4.6.11 android: 4.6.11 - */ -export declare function switchOA$(params: IInternalUtilSwitchOAParams): Promise; -export default switchOA$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/switchOA.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/switchOA.js deleted file mode 100644 index 2e0e537e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/switchOA.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function switchOA$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.switchOA$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.switchOA",exports.switchOA$=switchOA$,exports.default=switchOA$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadBase64EncodeImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadBase64EncodeImage.d.ts deleted file mode 100644 index de03f2f4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadBase64EncodeImage.d.ts +++ /dev/null @@ -1,53 +0,0 @@ -export declare const apiName = "internal.util.uploadBase64EncodeImage"; -/** - * 将base64编码的图片二进制数据转换为mediaId 请求参数定义 - * @apiName internal.util.uploadBase64EncodeImage - */ -export interface IInternalUtilUploadBase64EncodeImageParams { - /** 标准格式是:data:image/png;base64,xxxxx需要传的是xxxxx的部分 最大值限制:待定 */ - data: string; - /** - * image/jpg image/gif image/png image/bmp image/jpeg image/webp - * audio/amr audio/mp3 video/mp4 audio/wav office/doc office/docx - * normal/txt file/file - */ - type: string; - /** 业务标识,找@存思 申请 */ - bizType: string; - /** - * 0,无AUTH - * 1,STRICT_AUTH, 严格鉴权,下载文件时需要回调业务方进行鉴权,默认值 。 - * 6,CDN_ONLY,公开文件,上传后只可以通过https下载。 - */ - authType: string; - /** - * 0, v1版本鉴权(不鉴权) - * 2, v2版本鉴权(根据authType) - */ - mediaVersion?: number; - width?: number; - height?: number; - /** - * 任意唯一字符串,仅当需要进度返回时填写,用于防止同时调用多次上传时channel回调错乱 - */ - sessionId?: number; -} -/** - * 将base64编码的图片二进制数据转换为mediaId 返回结果定义 - * @apiName internal.util.uploadBase64EncodeImage - */ -export interface IInternalUtilUploadBase64EncodeImageResult { - sessionId: string; - /** 若是非Auth的返回这个字段 */ - mediaId?: string; - /** 若是Auth的返回这个字段 */ - authMediaId?: string; -} -/** - * 将base64编码的图片二进制数据转换为mediaId - * @apiName internal.util.uploadBase64EncodeImage - * @supportVersion pc: 5.1.2 - * @author pc: 伏檀 - */ -export declare function uploadBase64EncodeImage$(params: IInternalUtilUploadBase64EncodeImageParams): Promise; -export default uploadBase64EncodeImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadBase64EncodeImage.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadBase64EncodeImage.js deleted file mode 100644 index 94a8c4e2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadBase64EncodeImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadBase64EncodeImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadBase64EncodeImage$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.uploadBase64EncodeImage",exports.uploadBase64EncodeImage$=uploadBase64EncodeImage$,exports.default=uploadBase64EncodeImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadFile.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadFile.d.ts deleted file mode 100644 index 6ee0d4bf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadFile.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -export declare const apiName = "internal.util.uploadFile"; -/** - * 内部专用的上传文件接口,上传到OSS,支持AuthType。 请求参数定义 - * @apiName internal.util.uploadFile - */ -export interface IInternalUtilUploadFileParams { - /** 本地文件的虚拟地址 */ - path: string; - /** 业务标识 */ - bizType: string; - /** - * 1,STRICT_AUTH, 严格鉴权,下载文件时需要回调业务方进行鉴权 。 - * 4,TEMP_AUTH, 临时文件,过期后删除文件,无法访问。 - * 6,CDN_ONLY,公开文件,上传后只可以通过https下载。 - */ - authType?: number; - /** 仅当TEMP_AUTH时需要填写,指定过期时间 */ - expiredTime?: number; - /** 任意唯一字符串,仅当需要进度返回时填写,用于防止同时调用多次上传时channel回调错乱 */ - sessionId?: string; -} -/** - * 内部专用的上传文件接口,上传到OSS,支持AuthType。 返回结果定义 - * @apiName internal.util.uploadFile - */ -export interface IInternalUtilUploadFileResult { - /** 文件mediaId地址 */ - mediaId: string; -} -/** - * 内部专用的上传文件接口,上传到OSS,支持AuthType。 - * @apiName internal.util.uploadFile - * @supportVersion ios: 4.6.37 android: 4.6.37 - */ -export declare function uploadFile$(params: IInternalUtilUploadFileParams): Promise; -export default uploadFile$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadFile.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadFile.js deleted file mode 100644 index bff05d3c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/util/uploadFile.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function uploadFile$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.uploadFile$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.util.uploadFile",exports.uploadFile$=uploadFile$,exports.default=uploadFile$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/work/getApplist.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/work/getApplist.d.ts deleted file mode 100644 index a13f3a7b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/work/getApplist.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "internal.work.getApplist"; -/** - * 获取App列表 请求参数定义 - * @apiName internal.work.getApplist - */ -export interface IInternalWorkGetApplistParams { - [key: string]: any; -} -/** - * 获取App列表 返回结果定义 - * @apiName internal.work.getApplist - */ -export interface IInternalWorkGetApplistResult { - [key: string]: any; -} -/** - * 获取App列表 - * @apiName internal.work.getApplist - * @supportVersion pc: 4.1.0 - */ -export declare function getApplist$(params: IInternalWorkGetApplistParams): Promise; -export default getApplist$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/work/getApplist.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/work/getApplist.js deleted file mode 100644 index e100ef11..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/work/getApplist.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getApplist$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getApplist$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.work.getApplist",exports.getApplist$=getApplist$,exports.default=getApplist$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/work/openNativeApp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/work/openNativeApp.d.ts deleted file mode 100644 index 882f18fe..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/work/openNativeApp.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "internal.work.openNativeApp"; -/** - * 功能描述PC工作台打开特定应用功能(如钉邮,钉盘) 请求参数定义 - * @apiName internal.work.openNativeApp - */ -export interface IInternalWorkOpenNativeAppParams { - /** 目前支持钉盘("-3"),钉邮("-5") */ - appId: string; - option: any; -} -/** - * 功能描述PC工作台打开特定应用功能(如钉邮,钉盘) 返回结果定义 - * @apiName internal.work.openNativeApp - */ -export interface IInternalWorkOpenNativeAppResult { -} -/** - * 功能描述PC工作台打开特定应用功能(如钉邮,钉盘) - * @apiName internal.work.openNativeApp - * @supportVersion ios: 4.7.10 android: 4.7.10 - * @author Windows: 伏檀, Mac: 口合 - */ -export declare function openNativeApp$(params: IInternalWorkOpenNativeAppParams): Promise; -export default openNativeApp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/work/openNativeApp.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/work/openNativeApp.js deleted file mode 100644 index 1fbab82c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/work/openNativeApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openNativeApp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openNativeApp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.work.openNativeApp",exports.openNativeApp$=openNativeApp$,exports.default=openNativeApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/wxsdk/openMiniApp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/internal/wxsdk/openMiniApp.d.ts deleted file mode 100644 index 7aa914f8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/wxsdk/openMiniApp.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -export declare const apiName = "internal.wxsdk.openMiniApp"; -/** - * 拉起微信小程序 请求参数定义 - * @apiName internal.wxsdk.openMiniApp - */ -export interface IInternalWxsdkOpenMiniAppParams { - /** 微信开发者账号对应AppId, 该AppId注册时必须绑定钉钉包名com.alibaba.android.rimet, 且与小程序绑定 */ - wxSdkAppId: string; - /** 小程序原始id, 如"gh_d43f693ca31f", 非wx开头的小程序id */ - originalMiniAppId: string; - /** 小程序页面参数query部分, 如 "?parama=1&foo=bar" */ - query?: string; - /** 小程序版本, release=0; test=1;preview=2; */ - miniAppType?: string; -} -/** - * 拉起微信小程序 返回结果定义 - * @apiName internal.wxsdk.openMiniApp - */ -export interface IInternalWxsdkOpenMiniAppResult { -} -/** - * 拉起微信小程序 - * @apiName internal.wxsdk.openMiniApp - * @supportVersion ios: 4.7.16 android: 4.7.16 - * @author Android:泽乾; iOS:姚曦 - */ -export declare function openMiniApp$(params: IInternalWxsdkOpenMiniAppParams): Promise; -export default openMiniApp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/internal/wxsdk/openMiniApp.js b/node_modules/dingtalk-jsapi/lib/common/api/internal/wxsdk/openMiniApp.js deleted file mode 100644 index 6504d067..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/internal/wxsdk/openMiniApp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function openMiniApp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.openMiniApp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="internal.wxsdk.openMiniApp",exports.openMiniApp$=openMiniApp$,exports.default=openMiniApp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/keepAlive.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/keepAlive.d.ts deleted file mode 100644 index 5fd96c3a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/keepAlive.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "media.voiceRecorder.keepAlive"; -/** - * 保持录音 请求参数定义 - * @apiName media.voiceRecorder.keepAlive - */ -export interface IMediaVoiceRecorderKeepAliveParams { - [key: string]: any; -} -/** - * 保持录音 返回结果定义 - * @apiName media.voiceRecorder.keepAlive - */ -export interface IMediaVoiceRecorderKeepAliveResult { - [key: string]: any; -} -/** - * 保持录音 - * @apiName media.voiceRecorder.keepAlive - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function keepAlive$(params: IMediaVoiceRecorderKeepAliveParams): Promise; -export default keepAlive$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/keepAlive.js b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/keepAlive.js deleted file mode 100644 index 57e15dc7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/keepAlive.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function keepAlive$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.keepAlive$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="media.voiceRecorder.keepAlive",exports.keepAlive$=keepAlive$,exports.default=keepAlive$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/pause.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/pause.d.ts deleted file mode 100644 index 0488bff7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/pause.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "media.voiceRecorder.pause"; -/** - * 暂停录音 请求参数定义 - * @apiName media.voiceRecorder.pause - */ -export interface IMediaVoiceRecorderPauseParams { - [key: string]: any; -} -/** - * 暂停录音 返回结果定义 - * @apiName media.voiceRecorder.pause - */ -export interface IMediaVoiceRecorderPauseResult { - [key: string]: any; -} -/** - * 暂停录音 - * @apiName media.voiceRecorder.pause - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function pause$(params: IMediaVoiceRecorderPauseParams): Promise; -export default pause$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/pause.js b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/pause.js deleted file mode 100644 index 97fb0994..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/pause.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pause$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pause$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="media.voiceRecorder.pause",exports.pause$=pause$,exports.default=pause$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/resume.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/resume.d.ts deleted file mode 100644 index ca81938c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/resume.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "media.voiceRecorder.resume"; -/** - * 恢复录音 请求参数定义 - * @apiName media.voiceRecorder.resume - */ -export interface IMediaVoiceRecorderResumeParams { - [key: string]: any; -} -/** - * 恢复录音 返回结果定义 - * @apiName media.voiceRecorder.resume - */ -export interface IMediaVoiceRecorderResumeResult { - [key: string]: any; -} -/** - * 恢复录音 - * @apiName media.voiceRecorder.resume - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function resume$(params: IMediaVoiceRecorderResumeParams): Promise; -export default resume$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/resume.js b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/resume.js deleted file mode 100644 index 2ad47c6b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/resume.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function resume$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.resume$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="media.voiceRecorder.resume",exports.resume$=resume$,exports.default=resume$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/start.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/start.d.ts deleted file mode 100644 index 429dfe17..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/start.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "media.voiceRecorder.start"; -/** - * 开始录音 请求参数定义 - * @apiName media.voiceRecorder.start - */ -export interface IMediaVoiceRecorderStartParams { - [key: string]: any; -} -/** - * 开始录音 返回结果定义 - * @apiName media.voiceRecorder.start - */ -export interface IMediaVoiceRecorderStartResult { - [key: string]: any; -} -/** - * 开始录音 - * @apiName media.voiceRecorder.start - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function start$(params: IMediaVoiceRecorderStartParams): Promise; -export default start$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/start.js b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/start.js deleted file mode 100644 index 1e927ef5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/start.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function start$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.start$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="media.voiceRecorder.start",exports.start$=start$,exports.default=start$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/stop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/stop.d.ts deleted file mode 100644 index 72f98194..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/stop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "media.voiceRecorder.stop"; -/** - * 停止录音 请求参数定义 - * @apiName media.voiceRecorder.stop - */ -export interface IMediaVoiceRecorderStopParams { - [key: string]: any; -} -/** - * 停止录音 返回结果定义 - * @apiName media.voiceRecorder.stop - */ -export interface IMediaVoiceRecorderStopResult { - [key: string]: any; -} -/** - * 停止录音 - * @apiName media.voiceRecorder.stop - * @supportVersion ios: 5.1.12 android: 5.1.12 - */ -export declare function stop$(params: IMediaVoiceRecorderStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/stop.js b/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/stop.js deleted file mode 100644 index cf9a18c4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/media/voiceRecorder/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="media.voiceRecorder.stop",exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/bjGovApn/loginGovNet.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/net/bjGovApn/loginGovNet.d.ts deleted file mode 100644 index 6831b13a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/bjGovApn/loginGovNet.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "net.bjGovApn.loginGovNet"; -/** - * 对北京政务通版本增加一个登录内网的能力 请求参数定义 - * @apiName net.bjGovApn.loginGovNet - */ -export interface INetBjGovApnLoginGovNetParams { - /** 用户名,必填 */ - userName: string; - /** 密码 */ - password: string; -} -/** - * 对北京政务通版本增加一个登录内网的能力 返回结果定义 - * @apiName net.bjGovApn.loginGovNet - */ -export interface INetBjGovApnLoginGovNetResult { - result: string; -} -/** - * 对北京政务通版本增加一个登录内网的能力 - * @apiName net.bjGovApn.loginGovNet - * @supportVersion android: 4.5.16 - */ -export declare function loginGovNet$(params: INetBjGovApnLoginGovNetParams): Promise; -export default loginGovNet$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/bjGovApn/loginGovNet.js b/node_modules/dingtalk-jsapi/lib/common/api/net/bjGovApn/loginGovNet.js deleted file mode 100644 index b6dd1e1e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/bjGovApn/loginGovNet.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function loginGovNet$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.loginGovNet$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="net.bjGovApn.loginGovNet",exports.loginGovNet$=loginGovNet$,exports.default=loginGovNet$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/tunnel/request.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/net/tunnel/request.d.ts deleted file mode 100644 index cbe783c9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/tunnel/request.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "net.tunnel.request"; -/** - * 设客户端提供代理,来发送https请求 请求参数定义 - * @apiName net.tunnel.request - */ -export interface INetTunnelRequestParams { - [key: string]: any; -} -/** - * 设客户端提供代理,来发送https请求 返回结果定义 - * @apiName net.tunnel.request - */ -export interface INetTunnelRequestResult { - [key: string]: any; -} -/** - * 设客户端提供代理,来发送https请求 - * @apiName net.tunnel.request - * @supportVersion ios: 4.2 - */ -export declare function request$(params: INetTunnelRequestParams): Promise; -export default request$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/tunnel/request.js b/node_modules/dingtalk-jsapi/lib/common/api/net/tunnel/request.js deleted file mode 100644 index 60269bc7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/tunnel/request.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function request$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.request$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="net.tunnel.request",exports.request$=request$,exports.default=request$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/check.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/check.d.ts deleted file mode 100644 index 58fb9b9e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/check.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "net.vpn.check"; -/** - * 检查深信服vpn是否连接 请求参数定义 - * @apiName net.vpn.check - */ -export interface INetVpnCheckParams { - [key: string]: any; -} -/** - * 检查深信服vpn是否连接 返回结果定义 - * @apiName net.vpn.check - */ -export interface INetVpnCheckResult { - [key: string]: any; -} -/** - * 检查深信服vpn是否连接 - * @apiName net.vpn.check - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function check$(params: INetVpnCheckParams): Promise; -export default check$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/check.js b/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/check.js deleted file mode 100644 index 2923b645..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/check.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function check$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.check$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="net.vpn.check",exports.check$=check$,exports.default=check$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/start.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/start.d.ts deleted file mode 100644 index 15c019cb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/start.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "net.vpn.start"; -/** - * 启动深信服vpn 请求参数定义 - * @apiName net.vpn.start - */ -export interface INetVpnStartParams { - [key: string]: any; -} -/** - * 启动深信服vpn 返回结果定义 - * @apiName net.vpn.start - */ -export interface INetVpnStartResult { - [key: string]: any; -} -/** - * 启动深信服vpn - * @apiName net.vpn.start - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function start$(params: INetVpnStartParams): Promise; -export default start$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/start.js b/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/start.js deleted file mode 100644 index 31fd9093..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/start.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function start$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.start$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="net.vpn.start",exports.start$=start$,exports.default=start$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/stop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/stop.d.ts deleted file mode 100644 index 39eecaae..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/stop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "net.vpn.stop"; -/** - * 关闭深信服vpn 请求参数定义 - * @apiName net.vpn.stop - */ -export interface INetVpnStopParams { - [key: string]: any; -} -/** - * 关闭深信服vpn 返回结果定义 - * @apiName net.vpn.stop - */ -export interface INetVpnStopResult { - [key: string]: any; -} -/** - * 关闭深信服vpn - * @apiName net.vpn.stop - * @supportVersion ios: 4.1 android: 4.1 - */ -export declare function stop$(params: INetVpnStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/stop.js b/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/stop.js deleted file mode 100644 index b5806400..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/net/vpn/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="net.vpn.stop",exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/fetch.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/fetch.d.ts deleted file mode 100644 index e69aff54..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/fetch.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "preRelease.appLink.fetch"; -/** - * 获取请求页面(sourceApp)的数据 请求参数定义 - * @apiName preRelease.appLink.fetch - */ -export interface IPreReleaseAppLinkFetchParams { - [key: string]: any; -} -/** - * 获取请求页面(sourceApp)的数据 返回结果定义 - * @apiName preRelease.appLink.fetch - */ -export interface IPreReleaseAppLinkFetchResult { - [key: string]: any; -} -/** - * 获取请求页面(sourceApp)的数据 - * @apiName preRelease.appLink.fetch - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function fetch$(params: IPreReleaseAppLinkFetchParams): Promise; -export default fetch$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/fetch.js b/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/fetch.js deleted file mode 100644 index 87501011..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/fetch.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetch$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetch$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="preRelease.appLink.fetch",exports.fetch$=fetch$,exports.default=fetch$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/open.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/open.d.ts deleted file mode 100644 index 6cc8c21a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/open.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "preRelease.appLink.open"; -/** - * 应用跳转 请求参数定义 - * @apiName preRelease.appLink.open - */ -export interface IPreReleaseAppLinkOpenParams { - [key: string]: any; -} -/** - * 应用跳转 返回结果定义 - * @apiName preRelease.appLink.open - */ -export interface IPreReleaseAppLinkOpenResult { - [key: string]: any; -} -/** - * 应用跳转 - * @apiName preRelease.appLink.open - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function open$(params: IPreReleaseAppLinkOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/open.js b/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/open.js deleted file mode 100644 index 71c26b32..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="preRelease.appLink.open",exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/request.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/request.d.ts deleted file mode 100644 index 10edf9df..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/request.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "preRelease.appLink.request"; -/** - * 发送消息 请求参数定义 - * @apiName preRelease.appLink.request - */ -export interface IPreReleaseAppLinkRequestParams { - [key: string]: any; -} -/** - * 发送消息 返回结果定义 - * @apiName preRelease.appLink.request - */ -export interface IPreReleaseAppLinkRequestResult { - [key: string]: any; -} -/** - * 发送消息 - * @apiName preRelease.appLink.request - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function request$(params: IPreReleaseAppLinkRequestParams): Promise; -export default request$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/request.js b/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/request.js deleted file mode 100644 index 9b3a423e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/request.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function request$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.request$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="preRelease.appLink.request",exports.request$=request$,exports.default=request$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/response.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/response.d.ts deleted file mode 100644 index 91f6700d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/response.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "preRelease.appLink.response"; -/** - * 返回消息 请求参数定义 - * @apiName preRelease.appLink.response - */ -export interface IPreReleaseAppLinkResponseParams { - [key: string]: any; -} -/** - * 返回消息 返回结果定义 - * @apiName preRelease.appLink.response - */ -export interface IPreReleaseAppLinkResponseResult { - [key: string]: any; -} -/** - * 返回消息 - * @apiName preRelease.appLink.response - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function response$(params: IPreReleaseAppLinkResponseParams): Promise; -export default response$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/response.js b/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/response.js deleted file mode 100644 index 409e1340..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/preRelease/appLink/response.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function response$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.response$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="preRelease.appLink.response",exports.response$=response$,exports.default=response$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/retail/chat/open.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/retail/chat/open.d.ts deleted file mode 100644 index 2fd80495..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/retail/chat/open.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "retail.chat.open"; -/** - * 在新零售场景,打开会话 请求参数定义 - * @apiName retail.chat.open - */ -export interface IRetailChatOpenParams { - [key: string]: any; -} -/** - * 在新零售场景,打开会话 返回结果定义 - * @apiName retail.chat.open - */ -export interface IRetailChatOpenResult { - [key: string]: any; -} -/** - * 在新零售场景,打开会话 - * @apiName retail.chat.open - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function open$(params: IRetailChatOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/retail/chat/open.js b/node_modules/dingtalk-jsapi/lib/common/api/retail/chat/open.js deleted file mode 100644 index e719e525..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/retail/chat/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="retail.chat.open",exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/retail/telephone/call.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/retail/telephone/call.d.ts deleted file mode 100644 index 97e231c9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/retail/telephone/call.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "retail.telephone.call"; -/** - * 新增JSAPI, 在新零售场景,直接发起办公电话 请求参数定义 - * @apiName retail.telephone.call - */ -export interface IRetailTelephoneCallParams { - [key: string]: any; -} -/** - * 新增JSAPI, 在新零售场景,直接发起办公电话 返回结果定义 - * @apiName retail.telephone.call - */ -export interface IRetailTelephoneCallResult { - [key: string]: any; -} -/** - * 新增JSAPI, 在新零售场景,直接发起办公电话 - * @apiName retail.telephone.call - * @supportVersion ios: 4.3.0 android: 4.3.0 - */ -export declare function call$(params: IRetailTelephoneCallParams): Promise; -export default call$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/retail/telephone/call.js b/node_modules/dingtalk-jsapi/lib/common/api/retail/telephone/call.js deleted file mode 100644 index 87832c71..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/retail/telephone/call.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function call$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.call$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="retail.telephone.call",exports.call$=call$,exports.default=call$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/info/status.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/info/status.d.ts deleted file mode 100644 index 6d359269..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/info/status.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "runtime.info.status"; -/** - * 获取当前容器状态 请求参数定义 - * @apiName runtime.info.status - */ -export interface IRuntimeInfoStatusParams { - [key: string]: any; -} -/** - * 获取当前容器状态 返回结果定义 - * @apiName runtime.info.status - */ -export interface IRuntimeInfoStatusResult { - [key: string]: any; -} -/** - * 获取当前容器状态 - * @apiName runtime.info.status - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function status$(params: IRuntimeInfoStatusParams): Promise; -export default status$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/info/status.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/info/status.js deleted file mode 100644 index 52dcfdaf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/info/status.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function status$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.status$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.info.status",exports.status$=status$,exports.default=status$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/fetch.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/fetch.d.ts deleted file mode 100644 index 6ff61946..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/fetch.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "runtime.message.fetch"; -/** - * 请求参数定义 - * @apiName runtime.message.fetch - */ -export interface IRuntimeMessageFetchParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName runtime.message.fetch - */ -export interface IRuntimeMessageFetchResult { - [key: string]: any; -} -/** - * - * @apiName runtime.message.fetch - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function fetch$(params: IRuntimeMessageFetchParams): Promise; -export default fetch$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/fetch.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/fetch.js deleted file mode 100644 index d47ae947..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/fetch.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetch$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetch$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.message.fetch",exports.fetch$=fetch$,exports.default=fetch$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/post.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/post.d.ts deleted file mode 100644 index c5749a90..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/post.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "runtime.message.post"; -/** - * 请求参数定义 - * @apiName runtime.message.post - */ -export interface IRuntimeMessagePostParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName runtime.message.post - */ -export interface IRuntimeMessagePostResult { - [key: string]: any; -} -/** - * - * @apiName runtime.message.post - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function post$(params: IRuntimeMessagePostParams): Promise; -export default post$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/post.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/post.js deleted file mode 100644 index a577bb4e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/message/post.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function post$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.post$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.message.post",exports.post$=post$,exports.default=post$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/enableUsability.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/enableUsability.d.ts deleted file mode 100644 index 909af756..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/enableUsability.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "runtime.monitor.enableUsability"; -/** - * 开启可用性监控 请求参数定义 - * @apiName runtime.monitor.enableUsability - */ -export interface IRuntimeMonitorEnableUsabilityParams { - [key: string]: any; -} -/** - * 开启可用性监控 返回结果定义 - * @apiName runtime.monitor.enableUsability - */ -export interface IRuntimeMonitorEnableUsabilityResult { - [key: string]: any; -} -/** - * 开启可用性监控 - * @apiName runtime.monitor.enableUsability - * @supportVersion ios: 3.5.0 android: 3.5.0 - */ -export declare function enableUsability$(params: IRuntimeMonitorEnableUsabilityParams): Promise; -export default enableUsability$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/enableUsability.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/enableUsability.js deleted file mode 100644 index 46714095..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/enableUsability.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enableUsability$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enableUsability$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.monitor.enableUsability",exports.enableUsability$=enableUsability$,exports.default=enableUsability$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/finishLoad.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/finishLoad.d.ts deleted file mode 100644 index 5033dbdd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/finishLoad.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "runtime.monitor.finishLoad"; -/** - * H5端通知客户端业务加载成功,客户端返回用户操作触发容器加载的时间 请求参数定义 - * @apiName runtime.monitor.finishLoad - */ -export interface IRuntimeMonitorFinishLoadParams { - [key: string]: any; -} -/** - * H5端通知客户端业务加载成功,客户端返回用户操作触发容器加载的时间 返回结果定义 - * @apiName runtime.monitor.finishLoad - */ -export interface IRuntimeMonitorFinishLoadResult { - [key: string]: any; -} -/** - * H5端通知客户端业务加载成功,客户端返回用户操作触发容器加载的时间 - * @apiName runtime.monitor.finishLoad - * @supportVersion ios: 4.2.5 android: 4.2.5 - */ -export declare function finishLoad$(params: IRuntimeMonitorFinishLoadParams): Promise; -export default finishLoad$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/finishLoad.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/finishLoad.js deleted file mode 100644 index cf697276..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/finishLoad.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function finishLoad$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.finishLoad$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.monitor.finishLoad",exports.finishLoad$=finishLoad$,exports.default=finishLoad$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/getLoadTime.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/getLoadTime.d.ts deleted file mode 100644 index 2cf507bb..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/getLoadTime.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -export declare const apiName = "runtime.monitor.getLoadTime"; -/** - * 获取H5容器启动时间 请求参数定义 - * @apiName runtime.monitor.getLoadTime - */ -export interface IRuntimeMonitorGetLoadTimeParams { - /** - * RuntimeLaunchTime:容器启动耗时 - * PageLoadTime:容器启动时间,从init到第一个页面加载成功 - * RuntimeStartLoadTime:容器初始化到容器中的 webview 开始加载 web 资源的耗时 - */ - type: string; -} -/** - * 获取H5容器启动时间 返回结果定义 - * @apiName runtime.monitor.getLoadTime - */ -export interface IRuntimeMonitorGetLoadTimeResult { - /** 所查询对应的时间 */ - time: number; - /** 同入参 */ - type: string; -} -/** - * 获取H5容器启动时间 - * @apiName runtime.monitor.getLoadTime - * @supportVersion ios: 6.0.10 android: 6.0.10 - * @author Android:泠轩 iOS:序元 - */ -export declare function getLoadTime$(params: IRuntimeMonitorGetLoadTimeParams): Promise; -export default getLoadTime$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/getLoadTime.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/getLoadTime.js deleted file mode 100644 index d5bbf4ee..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/getLoadTime.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getLoadTime$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getLoadTime$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.monitor.getLoadTime",exports.getLoadTime$=getLoadTime$,exports.default=getLoadTime$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/usability.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/usability.d.ts deleted file mode 100644 index 85c9b2f2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/usability.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "runtime.monitor.usability"; -/** - * 可用性上报 请求参数定义 - * @apiName runtime.monitor.usability - */ -export interface IRuntimeMonitorUsabilityParams { - [key: string]: any; -} -/** - * 可用性上报 返回结果定义 - * @apiName runtime.monitor.usability - */ -export interface IRuntimeMonitorUsabilityResult { - [key: string]: any; -} -/** - * 可用性上报 - * @apiName runtime.monitor.usability - * @supportVersion ios: 3.4.8 android: 3.4.8 - */ -export declare function usability$(params: IRuntimeMonitorUsabilityParams): Promise; -export default usability$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/usability.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/usability.js deleted file mode 100644 index d9775aef..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/monitor/usability.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function usability$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.usability$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.monitor.usability",exports.usability$=usability$,exports.default=usability$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestAuthCode.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestAuthCode.d.ts deleted file mode 100644 index caf4fa8a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestAuthCode.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "runtime.permission.requestAuthCode"; -/** - * 请求授权码,免登改造用 请求参数定义 - * 调用此api不需要进行鉴权(即不需要进行dd.config) - * @apiName runtime.permission.requestAuthCode - */ -export interface IRuntimePermissionRequestAuthCodeParams { - /** 企业ID */ - corpId: string; -} -/** - * 请求授权码,免登改造用 返回结果定义 - * @apiName runtime.permission.requestAuthCode - */ -export interface IRuntimePermissionRequestAuthCodeResult { - /** 授权码,5分钟有效,且只能使用一次 */ - code: string; -} -/** - * 请求授权码,免登改造用 - * @apiName runtime.permission.requestAuthCode - * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0 - */ -export declare function requestAuthCode$(params: IRuntimePermissionRequestAuthCodeParams): Promise; -export default requestAuthCode$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestAuthCode.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestAuthCode.js deleted file mode 100644 index d3e0af43..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestAuthCode$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestAuthCode$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.permission.requestAuthCode",exports.requestAuthCode$=requestAuthCode$,exports.default=requestAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestJsApis.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestJsApis.d.ts deleted file mode 100644 index fc23c394..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestJsApis.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "runtime.permission.requestJsApis"; -/** - * 权限校验jsapi,隐藏方法,只限sdk内部调用 请求参数定义 - * @apiName runtime.permission.requestJsApis - */ -export interface IRuntimePermissionRequestJsApisParams { - [key: string]: any; -} -/** - * 权限校验jsapi,隐藏方法,只限sdk内部调用 返回结果定义 - * @apiName runtime.permission.requestJsApis - */ -export interface IRuntimePermissionRequestJsApisResult { - [key: string]: any; -} -/** - * 权限校验jsapi,隐藏方法,只限sdk内部调用 - * @apiName runtime.permission.requestJsApis - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function requestJsApis$(params: IRuntimePermissionRequestJsApisParams): Promise; -export default requestJsApis$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestJsApis.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestJsApis.js deleted file mode 100644 index c0b16126..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestJsApis.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestJsApis$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestJsApis$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.permission.requestJsApis",exports.requestJsApis$=requestJsApis$,exports.default=requestJsApis$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestOperateAuthCode.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestOperateAuthCode.d.ts deleted file mode 100644 index ac743833..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestOperateAuthCode.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "runtime.permission.requestOperateAuthCode"; -/** - * 请求参数定义 - * @apiName runtime.permission.requestOperateAuthCode - */ -export interface IRuntimePermissionRequestOperateAuthCodeParams { - /** 企业ID */ - corpId: string; - /** 微应用ID,必须与dd.config的一致 */ - agentId: string; -} -/** - * 返回结果定义 - * @apiName runtime.permission.requestOperateAuthCode - */ -export interface IRuntimePermissionRequestOperateAuthCodeResult { - code: string; -} -/** - * 获取微应用反馈式操作的临时授权码 - * @apiName runtime.permission.requestOperateAuthCode - * @supportVersion pc: 3.3.0 ios: 3.3.0 android: 3.3.0 - */ -export declare function requestOperateAuthCode$(params: IRuntimePermissionRequestOperateAuthCodeParams): Promise; -export default requestOperateAuthCode$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestOperateAuthCode.js b/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestOperateAuthCode.js deleted file mode 100644 index 204a698c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/runtime/permission/requestOperateAuthCode.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function requestOperateAuthCode$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.requestOperateAuthCode$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="runtime.permission.requestOperateAuthCode",exports.requestOperateAuthCode$=requestOperateAuthCode$,exports.default=requestOperateAuthCode$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/service/request/httpOverLwp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/service/request/httpOverLwp.d.ts deleted file mode 100644 index c81d3d27..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/service/request/httpOverLwp.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "service.request.httpOverLwp"; -/** - * 安全通道网络请求 请求参数定义 - * @apiName service.request.httpOverLwp - */ -export interface IServiceRequestHttpOverLwpParams { - [key: string]: any; -} -/** - * 安全通道网络请求 返回结果定义 - * @apiName service.request.httpOverLwp - */ -export interface IServiceRequestHttpOverLwpResult { - [key: string]: any; -} -/** - * 安全通道网络请求 - * @apiName service.request.httpOverLwp - * @supportVersion pc: 3.5.0 ios: 3.4.0 android: 3.4.0 - */ -export declare function httpOverLwp$(params: IServiceRequestHttpOverLwpParams): Promise; -export default httpOverLwp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/service/request/httpOverLwp.js b/node_modules/dingtalk-jsapi/lib/common/api/service/request/httpOverLwp.js deleted file mode 100644 index 37593d46..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/service/request/httpOverLwp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function httpOverLwp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.httpOverLwp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="service.request.httpOverLwp",exports.httpOverLwp$=httpOverLwp$,exports.default=httpOverLwp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtop.d.ts deleted file mode 100644 index f4af1f19..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "service.request.mtop"; -/** - * 钉钉代理mtop请求 请求参数定义 - * @apiName service.request.mtop - */ -export interface IServiceRequestMtopParams { - [key: string]: any; -} -/** - * 钉钉代理mtop请求 返回结果定义 - * @apiName service.request.mtop - */ -export interface IServiceRequestMtopResult { - [key: string]: any; -} -/** - * 钉钉代理mtop请求 - * @apiName service.request.mtop - * @supportVersion ios: 3.4.0 android: 3.4.0 - */ -export declare function mtop$(params: IServiceRequestMtopParams): Promise; -export default mtop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtop.js b/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtop.js deleted file mode 100644 index c9c56ef6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function mtop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.mtop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="service.request.mtop",exports.mtop$=mtop$,exports.default=mtop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtopOverLwp.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtopOverLwp.d.ts deleted file mode 100644 index 5f82ab9a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtopOverLwp.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "service.request.mtopOverLwp"; -/** - * ICBU通过lwp发起mtop请求 请求参数定义 - * @apiName service.request.mtopOverLwp - */ -export interface IServiceRequestMtopOverLwpParams { - /** 请求数据 object 必选 */ - request: object; - /** appkey key string 必选 */ - appkey: string; -} -/** - * ICBU通过lwp发起mtop请求 返回结果定义 - * @apiName service.request.mtopOverLwp - */ -export interface IServiceRequestMtopOverLwpResult { - [key: string]: any; -} -/** - * ICBU通过lwp发起mtop请求 - * @apiName service.request.mtopOverLwp - * @supportVersion ios: 4.6.8 android: 4.6.8 - */ -export declare function mtopOverLwp$(params: IServiceRequestMtopOverLwpParams): Promise; -export default mtopOverLwp$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtopOverLwp.js b/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtopOverLwp.js deleted file mode 100644 index b8aada83..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/service/request/mtopOverLwp.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function mtopOverLwp$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.mtopOverLwp$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="service.request.mtopOverLwp",exports.mtopOverLwp$=mtopOverLwp$,exports.default=mtopOverLwp$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/authConfig.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/authConfig.d.ts deleted file mode 100644 index f1cedadf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/authConfig.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "taurus.common.authConfig"; -/** - * 用于 JSAPI 鉴权 请求参数定义 - * @apiName taurus.common.authConfig - */ -export interface ITaurusCommonAuthConfigParams { - ticket: string; - jsApiList: string[]; -} -/** - * 用于 JSAPI 鉴权 返回结果定义 - * @apiName taurus.common.authConfig - */ -export interface ITaurusCommonAuthConfigResult { - name: string; - validateResult: boolean; -} -/** - * 用于 JSAPI 鉴权 - * @apiName taurus.common.authConfig - * @supportVersion ios: 1.2.0 android: 1.2.0 - */ -export declare function authConfig$(params: ITaurusCommonAuthConfigParams): Promise; -export default authConfig$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/authConfig.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/authConfig.js deleted file mode 100644 index a9e0bcc6..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/authConfig.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function authConfig$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.authConfig$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.authConfig",exports.authConfig$=authConfig$,exports.default=authConfig$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/callPhone.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/callPhone.d.ts deleted file mode 100644 index 58dfd55c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/callPhone.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -export declare const apiName = "taurus.common.callPhone"; -/** - * 调用系统拨打电话 请求参数定义 - * @apiName taurus.common.callPhone - */ -export interface ITaurusCommonCallPhoneParams { - phoneNum: string; -} -export interface ITaurusCommonCallPhoneResult { -} -/** - * 调用系统拨打电话 - * @apiName taurus.common.callPhone - * @supportVersion ios: 1.1.0 android: 1.1.0 - */ -export declare function callPhone$(params: ITaurusCommonCallPhoneParams): Promise; -export default callPhone$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/callPhone.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/callPhone.js deleted file mode 100644 index 91a7fa05..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/callPhone.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function callPhone$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.callPhone$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.callPhone",exports.callPhone$=callPhone$,exports.default=callPhone$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppInstalled.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppInstalled.d.ts deleted file mode 100644 index 900979c9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppInstalled.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -export declare const apiName = "taurus.common.checkVPNAppInstalled"; -/** - * 用于检查 miniConnectPro 软件是否安装 返回结果定义 - * @apiName taurus.common.checkVPNAppInstalled - */ -export interface ITaurusCommonCheckVPNAppInstalledResult { - isInstalled: boolean; -} -/** - * 用于检查 miniConnectPro 软件是否安装 - * @apiName taurus.common.checkVPNAppInstalled - * @supportVersion ios: 1.6.0 android: 1.6.0 - */ -export declare function checkVPNAppInstalled$(): Promise; -export default checkVPNAppInstalled$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppInstalled.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppInstalled.js deleted file mode 100644 index 3083a50d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppInstalled.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkVPNAppInstalled$(){return common_1.ddSdk.invokeAPI(exports.apiName,{})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkVPNAppInstalled$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.checkVPNAppInstalled",exports.checkVPNAppInstalled$=checkVPNAppInstalled$,exports.default=checkVPNAppInstalled$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppOnline.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppOnline.d.ts deleted file mode 100644 index c4463155..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppOnline.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -export declare const apiName = "taurus.common.checkVPNAppOnline"; -/** - * 用于检查 miniConnectPro VPN 是否在线 返回结果定义 - * @apiName taurus.common.checkVPNAppOnline - */ -export interface ITaurusCommonCheckVPNAppOnlineResult { - isOnline: boolean; -} -/** - * 用于检查 miniConnectPro VPN 是否在线 - * @apiName taurus.common.checkVPNAppOnline - * @supportVersion ios: 1.6.0 android: 1.6.0 - */ -export declare function checkVPNAppOnline$(): Promise; -export default checkVPNAppOnline$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppOnline.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppOnline.js deleted file mode 100644 index 022f6249..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/checkVPNAppOnline.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkVPNAppOnline$(){return common_1.ddSdk.invokeAPI(exports.apiName,{})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.checkVPNAppOnline$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.checkVPNAppOnline",exports.checkVPNAppOnline$=checkVPNAppOnline$,exports.default=checkVPNAppOnline$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContact.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContact.d.ts deleted file mode 100644 index 162bb31e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContact.d.ts +++ /dev/null @@ -1,58 +0,0 @@ -export declare const apiName = "taurus.common.chooseContact"; -export declare enum SelectVersionEnum { - DEFAULT = 1, - NEW = 2 -} -export declare enum PanelTypeEnum { - GLOBAL_ORG = 1, - FRIEND = 2, - GROUP = 4, - RECOMMEND = 5, - SPECIAL_ATTENTION = 7, - LOAD_GROUP_PERSON = 8, - ORG = 9 -} -export declare enum VisibilityCodesEnum { - PHONE_HIDE = "PHONE_HIDE", - CHAT_INVALID = "CHAT_INVALID", - GROUP_CHAT_PULL_INVALID = "GROUP_CHAT_PULL_INVALID", - APP_DING_INVALID = "APP_DING_INVALID", - PHONE_DING_INVALID = "PHONE_DING_INVALID", - SMS_DING_INVALID = "SMS_DING_INVALID", - AUDIO_VIDEO_HIDE = "AUDIO_VIDEO_HIDE" -} -/** - * pc端选人组件,该接口需要鉴权 请求参数定义 - * @apiName taurus.common.chooseContact - */ -export interface ITaurusCommonChooseContactParams { - multiple?: boolean; - users?: string[]; - max?: number; - responseUserOnly?: boolean; - limitTips?: string; - title?: string; - pickedUsers?: string[]; - requiredUsers?: string[]; - disabledUsers?: string[]; - selectVersion?: SelectVersionEnum; - panelTypes?: PanelTypeEnum[]; - visibilityCodes?: VisibilityCodesEnum; - enableExternalUser?: boolean; -} -/** - * pc端选人组件,该接口需要鉴权 返回结果定义 - * @apiName taurus.common.chooseContact - */ -export interface ITaurusCommonChooseContactResult { - name: string; - avatar: string; - emplId: string; -} -/** - * pc端选人组件,该接口需要鉴权 - * @apiName taurus.common.chooseContact - * @supportVersion ios: 1.1.0 android: 1.1.0 - */ -export declare function chooseContact$(params: ITaurusCommonChooseContactParams): Promise; -export default chooseContact$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContact.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContact.js deleted file mode 100644 index d121696c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContact.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseContact$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseContact$=exports.VisibilityCodesEnum=exports.PanelTypeEnum=exports.SelectVersionEnum=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.chooseContact";var SelectVersionEnum;!function(e){e[e.DEFAULT=1]="DEFAULT",e[e.NEW=2]="NEW"}(SelectVersionEnum=exports.SelectVersionEnum||(exports.SelectVersionEnum={}));var PanelTypeEnum;!function(e){e[e.GLOBAL_ORG=1]="GLOBAL_ORG",e[e.FRIEND=2]="FRIEND",e[e.GROUP=4]="GROUP",e[e.RECOMMEND=5]="RECOMMEND",e[e.SPECIAL_ATTENTION=7]="SPECIAL_ATTENTION",e[e.LOAD_GROUP_PERSON=8]="LOAD_GROUP_PERSON",e[e.ORG=9]="ORG"}(PanelTypeEnum=exports.PanelTypeEnum||(exports.PanelTypeEnum={}));var VisibilityCodesEnum;!function(e){e.PHONE_HIDE="PHONE_HIDE",e.CHAT_INVALID="CHAT_INVALID",e.GROUP_CHAT_PULL_INVALID="GROUP_CHAT_PULL_INVALID",e.APP_DING_INVALID="APP_DING_INVALID",e.PHONE_DING_INVALID="PHONE_DING_INVALID",e.SMS_DING_INVALID="SMS_DING_INVALID",e.AUDIO_VIDEO_HIDE="AUDIO_VIDEO_HIDE"}(VisibilityCodesEnum=exports.VisibilityCodesEnum||(exports.VisibilityCodesEnum={})),exports.chooseContact$=chooseContact$,exports.default=chooseContact$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContactWithComplexPicker.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContactWithComplexPicker.d.ts deleted file mode 100644 index 5296bd99..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContactWithComplexPicker.d.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { SelectVersionEnum, PanelTypeEnum, VisibilityCodesEnum } from './chooseContact'; -export declare const apiName = "taurus.common.chooseContactWithComplexPicker"; -/** - * 用于选人选部门场景的通讯录组件,在 v1.6.2 版本之后,建议都使用本接口进行选人和选部门的操作,该接口需要鉴权 请求参数定义 - * @apiName taurus.common.chooseContactWithComplexPicker - */ -export interface ITaurusCommonChooseContactWithComplexPickerParams { - title?: string; - limitTips?: string; - multiple?: boolean; - maxUsers?: number; - pickedUsers?: string[]; - disabledUsers?: string[]; - requiredUsers?: string[]; - disabledDepartments?: string[]; - pickedDepartments?: string[]; - requiredDepartments?: string[]; - responseUserOnly?: boolean; - selectVersion?: SelectVersionEnum; - panelTypes?: PanelTypeEnum[]; - visibilityCodes?: VisibilityCodesEnum; - enableExternalUser?: boolean; - organizationToPerson?: boolean; -} -export interface IDepartmentModel { - id: string; - name: string; -} -export interface IUserModel { - name: string; - avatar?: string; - userid: string; -} -/** - * 用于选人选部门场景的通讯录组件,在 v1.6.2 版本之后,建议都使用本接口进行选人和选部门的操作,该接口需要鉴权 返回结果定义 - * @apiName taurus.common.chooseContactWithComplexPicker - */ -export interface ITaurusCommonChooseContactWithComplexPickerResult { - selectedCount: number; - users: IUserModel[]; - departments: IDepartmentModel[]; -} -/** - * 用于选人选部门场景的通讯录组件,在 v1.6.2 版本之后,建议都使用本接口进行选人和选部门的操作,该接口需要鉴权 - * @apiName taurus.common.chooseContactWithComplexPicker - * @supportVersion ios: 1.1.0 android: 1.1.0 - */ -export declare function chooseContactWithComplexPicker$(params: ITaurusCommonChooseContactWithComplexPickerParams): Promise; -export default chooseContactWithComplexPicker$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContactWithComplexPicker.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContactWithComplexPicker.js deleted file mode 100644 index dffb7ebd..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseContactWithComplexPicker.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseContactWithComplexPicker$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseContactWithComplexPicker$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.chooseContactWithComplexPicker",exports.chooseContactWithComplexPicker$=chooseContactWithComplexPicker$,exports.default=chooseContactWithComplexPicker$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDateRangeWithCalendar.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDateRangeWithCalendar.d.ts deleted file mode 100644 index c713b9bf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDateRangeWithCalendar.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -export declare const apiName = "taurus.common.chooseDateRangeWithCalendar"; -/** - * 使用月历控件选择日期范围 请求参数定义 - * @apiName taurus.common.chooseDateRangeWithCalendar - */ -export interface ITaurusCommonChooseDateRangeWithCalendarParams { - defaultStart?: number; - defaultEnd?: number; -} -/** - * 使用月历控件选择日期范围 返回结果定义 - * @apiName taurus.common.chooseDateRangeWithCalendar - */ -export interface ITaurusCommonChooseDateRangeWithCalendarResult { - start: number; - end: number; - timezone: number; -} -/** - * 使用月历控件选择日期范围 - * @apiName taurus.common.chooseDateRangeWithCalendar - * @supportVersion ios: 1.3.10 android: 1.3.10 - */ -export declare function chooseDateRangeWithCalendar$(params: ITaurusCommonChooseDateRangeWithCalendarParams): Promise; -export default chooseDateRangeWithCalendar$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDateRangeWithCalendar.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDateRangeWithCalendar.js deleted file mode 100644 index aed632da..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDateRangeWithCalendar.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDateRangeWithCalendar$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDateRangeWithCalendar$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.chooseDateRangeWithCalendar",exports.chooseDateRangeWithCalendar$=chooseDateRangeWithCalendar$,exports.default=chooseDateRangeWithCalendar$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDepartments.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDepartments.d.ts deleted file mode 100644 index 6b1ffccf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDepartments.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -export declare const apiName = "taurus.common.chooseDepartments"; -/** - * 用于选部门场景的通讯录组件,该接口需要鉴权 请求参数定义 - * @apiName taurus.common.chooseDepartments - */ -export interface ITaurusCommonChooseDepartmentsParams { - title?: string; - multiple?: boolean; - limitTips?: string; - maxDepartments?: number; - pickedDepartments?: string[]; - disabledDepartments?: string[]; - requiredDepartments?: string[]; -} -export interface IDepartmentModel { - id: string; - name: string; -} -/** - * 用于选部门场景的通讯录组件,该接口需要鉴权 返回结果定义 - * @apiName taurus.common.chooseDepartments - */ -export interface ITaurusCommonChooseDepartmentsResult { - departmentsCount: number; - departments: IDepartmentModel[]; -} -/** - * 用于选部门场景的通讯录组件,该接口需要鉴权 - * @apiName taurus.common.chooseDepartments - * @supportVersion ios: 1.1.0 android: 1.1.0 - */ -export declare function chooseDepartments$(params: ITaurusCommonChooseDepartmentsParams): Promise; -export default chooseDepartments$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDepartments.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDepartments.js deleted file mode 100644 index af5d1846..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseDepartments.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseDepartments$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseDepartments$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.chooseDepartments",exports.chooseDepartments$=chooseDepartments$,exports.default=chooseDepartments$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseImage.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseImage.d.ts deleted file mode 100644 index 2f7de2a9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseImage.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -export declare const apiName = "taurus.common.chooseImage"; -export declare enum ImageType { - image = 0, - video = 1 -} -/** - * 选择本地图片 请求参数定义 - * @apiName taurus.common.chooseImage - */ -export interface ITaurusCommonChooseImageParams { - enableVideo?: boolean; -} -export interface IImage { - size: number; - path: string; - type: ImageType; - lastModified?: number; -} -/** - * 选择本地图片 返回结果定义 - * @apiName taurus.common.chooseImage - */ -export interface ITaurusCommonChooseImageResult { - images: IImage[]; -} -/** - * 选择本地图片 - * @apiName taurus.common.chooseImage - * @supportVersion ios: 1.3.2 android: 1.3.2 - */ -export declare function chooseImage$(params: ITaurusCommonChooseImageParams): Promise; -export default chooseImage$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseImage.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseImage.js deleted file mode 100644 index 8cb2fa85..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/chooseImage.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function chooseImage$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.chooseImage$=exports.ImageType=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.chooseImage";var ImageType;!function(e){e[e.image=0]="image",e[e.video=1]="video"}(ImageType=exports.ImageType||(exports.ImageType={})),exports.chooseImage$=chooseImage$,exports.default=chooseImage$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/getConfig.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/getConfig.d.ts deleted file mode 100644 index 06656d88..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/getConfig.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "taurus.common.getConfig"; -/** - * 获取常用服务端 & 客户端配置信息 请求参数定义 - * @apiName taurus.common.getConfig - */ -export interface ITaurusCommonGetConfigParams { -} -/** - * 获取常用服务端 & 客户端配置信息 返回结果定义 - * @apiName taurus.common.getConfig - */ -export interface ITaurusCommonGetConfigResult { - host?: string; - mediaHost?: string; -} -/** - * 获取常用服务端 & 客户端配置信息 - * @apiName taurus.common.getConfig - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function getConfig$(params?: ITaurusCommonGetConfigParams): Promise; -export default getConfig$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/getConfig.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/getConfig.js deleted file mode 100644 index 8c8f6305..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/getConfig.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getConfig$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getConfig$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.getConfig",exports.getConfig$=getConfig$,exports.default=getConfig$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/startRequest.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/startRequest.d.ts deleted file mode 100644 index 09356755..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/startRequest.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "taurus.common.startRequest"; -/** - * 专有钉内部的请求方法 请求参数定义 - * @apiName taurus.common.startRequest - */ -export interface ITaurusCommonStartRequestParams { - apiName: string; - params: any; -} -/** - * 专有钉内部的请求方法 返回结果定义 - * @apiName taurus.common.startRequest - */ -export interface ITaurusCommonStartRequestResult { - [key: string]: any; -} -/** - * 专有钉内部的请求方法 - * @apiName taurus.common.startRequest - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function startRequest$(params: ITaurusCommonStartRequestParams): Promise; -export default startRequest$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/startRequest.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/startRequest.js deleted file mode 100644 index 48b54f20..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/startRequest.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function startRequest$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.startRequest$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.startRequest",exports.startRequest$=startRequest$,exports.default=startRequest$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/version.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/version.d.ts deleted file mode 100644 index 57997023..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/version.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -export declare const apiName = "taurus.common.version"; -export interface ITaurusCommonVersionParams { -} -/** - * 获取客户端版本 返回结果定义 - * @apiName taurus.common.version - */ -export interface ITaurusCommonVersionResult { - version: string; -} -/** - * 获取客户端版本 - * @apiName taurus.common.version - * @supportVersion ios: 1.3.2 android: 1.3.2 - */ -export declare function version$(params?: ITaurusCommonVersionParams): Promise; -export default version$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/version.js b/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/version.js deleted file mode 100644 index 977b48aa..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/taurus/common/version.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function version$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e||{})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.version$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="taurus.common.version",exports.version$=version$,exports.default=version$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/fetch.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/fetch.d.ts deleted file mode 100644 index 1e9f8ad5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/fetch.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.appLink.fetch"; -/** - * 获取请求页面(sourceApp)的数据 请求参数定义 - * @apiName ui.appLink.fetch - */ -export interface IUiAppLinkFetchParams { - [key: string]: any; -} -/** - * 获取请求页面(sourceApp)的数据 返回结果定义 - * @apiName ui.appLink.fetch - */ -export interface IUiAppLinkFetchResult { - [key: string]: any; -} -/** - * 获取请求页面(sourceApp)的数据 - * @apiName ui.appLink.fetch - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function fetch$(params: IUiAppLinkFetchParams): Promise; -export default fetch$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/fetch.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/fetch.js deleted file mode 100644 index a04738b7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/fetch.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function fetch$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.fetch$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.appLink.fetch",exports.fetch$=fetch$,exports.default=fetch$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/open.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/open.d.ts deleted file mode 100644 index 30cb62e8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/open.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.appLink.open"; -/** - * 应用跳转 请求参数定义 - * @apiName ui.appLink.open - */ -export interface IUiAppLinkOpenParams { - [key: string]: any; -} -/** - * 应用跳转 返回结果定义 - * @apiName ui.appLink.open - */ -export interface IUiAppLinkOpenResult { - [key: string]: any; -} -/** - * 应用跳转 - * @apiName ui.appLink.open - * @supportVersion ios: 2.7.0 android: 2.7.0 - */ -export declare function open$(params: IUiAppLinkOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/open.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/open.js deleted file mode 100644 index 55766f42..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.appLink.open",exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/request.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/request.d.ts deleted file mode 100644 index f2933cb7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/request.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.appLink.request"; -/** - * 发送消息 请求参数定义 - * @apiName ui.appLink.request - */ -export interface IUiAppLinkRequestParams { - [key: string]: any; -} -/** - * 发送消息 返回结果定义 - * @apiName ui.appLink.request - */ -export interface IUiAppLinkRequestResult { - [key: string]: any; -} -/** - * 发送消息 - * @apiName ui.appLink.request - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function request$(params: IUiAppLinkRequestParams): Promise; -export default request$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/request.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/request.js deleted file mode 100644 index 11ac4db5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/request.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function request$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.request$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.appLink.request",exports.request$=request$,exports.default=request$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/response.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/response.d.ts deleted file mode 100644 index 4a9ea91d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/response.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.appLink.response"; -/** - * 返回消息 请求参数定义 - * @apiName ui.appLink.response - */ -export interface IUiAppLinkResponseParams { - [key: string]: any; -} -/** - * 返回消息 返回结果定义 - * @apiName ui.appLink.response - */ -export interface IUiAppLinkResponseResult { - [key: string]: any; -} -/** - * 返回消息 - * @apiName ui.appLink.response - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function response$(params: IUiAppLinkResponseParams): Promise; -export default response$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/response.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/response.js deleted file mode 100644 index 12302af9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/appLink/response.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function response$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.response$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.appLink.response",exports.response$=response$,exports.default=response$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/close.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/close.d.ts deleted file mode 100644 index b81ec130..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/close.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.drawer.close"; -/** - * 请求参数定义 - * @apiName ui.drawer.close - */ -export interface IUiDrawerCloseParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.drawer.close - */ -export interface IUiDrawerCloseResult { - [key: string]: any; -} -/** - * - * @apiName ui.drawer.close - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function close$(params: IUiDrawerCloseParams): Promise; -export default close$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/close.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/close.js deleted file mode 100644 index 38945e58..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/close.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function close$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.close$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.drawer.close",exports.close$=close$,exports.default=close$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/config.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/config.d.ts deleted file mode 100644 index 0350fa75..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/config.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.drawer.config"; -/** - * 请求参数定义 - * @apiName ui.drawer.config - */ -export interface IUiDrawerConfigParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.drawer.config - */ -export interface IUiDrawerConfigResult { - [key: string]: any; -} -/** - * - * @apiName ui.drawer.config - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function config$(params: IUiDrawerConfigParams): Promise; -export default config$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/config.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/config.js deleted file mode 100644 index 3b8d031b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/config.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function config$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.config$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.drawer.config",exports.config$=config$,exports.default=config$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/disable.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/disable.d.ts deleted file mode 100644 index bc84c318..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/disable.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.drawer.disable"; -/** - * 请求参数定义 - * @apiName ui.drawer.disable - */ -export interface IUiDrawerDisableParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.drawer.disable - */ -export interface IUiDrawerDisableResult { - [key: string]: any; -} -/** - * - * @apiName ui.drawer.disable - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function disable$(params: IUiDrawerDisableParams): Promise; -export default disable$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/disable.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/disable.js deleted file mode 100644 index 645e2863..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/disable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disable$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.disable$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.drawer.disable",exports.disable$=disable$,exports.default=disable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/enable.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/enable.d.ts deleted file mode 100644 index cbd2c4b2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/enable.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.drawer.enable"; -/** - * 请求参数定义 - * @apiName ui.drawer.enable - */ -export interface IUiDrawerEnableParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.drawer.enable - */ -export interface IUiDrawerEnableResult { - [key: string]: any; -} -/** - * - * @apiName ui.drawer.enable - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function enable$(params: IUiDrawerEnableParams): Promise; -export default enable$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/enable.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/enable.js deleted file mode 100644 index d859be0c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/enable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enable$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enable$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.drawer.enable",exports.enable$=enable$,exports.default=enable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/init.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/init.d.ts deleted file mode 100644 index f8cd57b4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/init.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.drawer.init"; -/** - * 请求参数定义 - * @apiName ui.drawer.init - */ -export interface IUiDrawerInitParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.drawer.init - */ -export interface IUiDrawerInitResult { - [key: string]: any; -} -/** - * - * @apiName ui.drawer.init - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function init$(params: IUiDrawerInitParams): Promise; -export default init$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/init.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/init.js deleted file mode 100644 index 50db2aad..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/init.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function init$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.init$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.drawer.init",exports.init$=init$,exports.default=init$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/open.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/open.d.ts deleted file mode 100644 index 33ab6076..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/open.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.drawer.open"; -/** - * 请求参数定义 - * @apiName ui.drawer.open - */ -export interface IUiDrawerOpenParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.drawer.open - */ -export interface IUiDrawerOpenResult { - [key: string]: any; -} -/** - * - * @apiName ui.drawer.open - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function open$(params: IUiDrawerOpenParams): Promise; -export default open$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/open.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/open.js deleted file mode 100644 index 8224db8e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/drawer/open.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function open$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.open$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.drawer.open",exports.open$=open$,exports.default=open$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/input/plain.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/input/plain.d.ts deleted file mode 100644 index 7f6227e9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/input/plain.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.input.plain"; -/** - * 输入框(单行) 请求参数定义 - * @apiName ui.input.plain - */ -export interface IUiInputPlainParams { - [key: string]: any; -} -/** - * 输入框(单行) 返回结果定义 - * @apiName ui.input.plain - */ -export interface IUiInputPlainResult { - [key: string]: any; -} -/** - * 输入框(单行) - * @apiName ui.input.plain - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function plain$(params: IUiInputPlainParams): Promise; -export default plain$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/input/plain.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/input/plain.js deleted file mode 100644 index 34e4f8a5..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/input/plain.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function plain$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.plain$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.input.plain",exports.plain$=plain$,exports.default=plain$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/close.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/close.d.ts deleted file mode 100644 index 81eebe43..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/close.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.nav.close"; -/** - * 请求参数定义 - * @apiName ui.nav.close - */ -export interface IUiNavCloseParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.close - */ -export interface IUiNavCloseResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.close - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function close$(params: IUiNavCloseParams): Promise; -export default close$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/close.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/close.js deleted file mode 100644 index 146663d9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/close.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function close$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.close$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.nav.close",exports.close$=close$,exports.default=close$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/getCurrentId.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/getCurrentId.d.ts deleted file mode 100644 index 5308562f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/getCurrentId.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.nav.getCurrentId"; -/** - * 请求参数定义 - * @apiName ui.nav.getCurrentId - */ -export interface IUiNavGetCurrentIdParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.getCurrentId - */ -export interface IUiNavGetCurrentIdResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.getCurrentId - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function getCurrentId$(params: IUiNavGetCurrentIdParams): Promise; -export default getCurrentId$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/getCurrentId.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/getCurrentId.js deleted file mode 100644 index dfe7d6b8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/getCurrentId.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getCurrentId$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getCurrentId$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.nav.getCurrentId",exports.getCurrentId$=getCurrentId$,exports.default=getCurrentId$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/go.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/go.d.ts deleted file mode 100644 index bdb3ec8d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/go.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.nav.go"; -/** - * 请求参数定义 - * @apiName ui.nav.go - */ -export interface IUiNavGoParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.go - */ -export interface IUiNavGoResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.go - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function go$(params: IUiNavGoParams): Promise; -export default go$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/go.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/go.js deleted file mode 100644 index 7beb547e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/go.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function go$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.go$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.nav.go",exports.go$=go$,exports.default=go$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/pop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/pop.d.ts deleted file mode 100644 index 81a67fe3..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/pop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.nav.pop"; -/** - * 路径堆栈中删除view 路径 请求参数定义 - * @apiName ui.nav.pop - */ -export interface IUiNavPopParams { - [key: string]: any; -} -/** - * 路径堆栈中删除view 路径 返回结果定义 - * @apiName ui.nav.pop - */ -export interface IUiNavPopResult { - [key: string]: any; -} -/** - * 路径堆栈中删除view 路径 - * @apiName ui.nav.pop - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function pop$(params: IUiNavPopParams): Promise; -export default pop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/pop.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/pop.js deleted file mode 100644 index ab02d300..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/pop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function pop$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.pop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.nav.pop",exports.pop$=pop$,exports.default=pop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/preload.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/preload.d.ts deleted file mode 100644 index 05e97d51..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/preload.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.nav.preload"; -/** - * 请求参数定义 - * @apiName ui.nav.preload - */ -export interface IUiNavPreloadParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.preload - */ -export interface IUiNavPreloadResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.preload - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function preload$(params: IUiNavPreloadParams): Promise; -export default preload$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/preload.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/preload.js deleted file mode 100644 index 385ab183..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/preload.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function preload$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.preload$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.nav.preload",exports.preload$=preload$,exports.default=preload$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/push.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/push.d.ts deleted file mode 100644 index 2f5edba2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/push.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.nav.push"; -/** - * 往路径堆栈中push路径 请求参数定义 - * @apiName ui.nav.push - */ -export interface IUiNavPushParams { - [key: string]: any; -} -/** - * 往路径堆栈中push路径 返回结果定义 - * @apiName ui.nav.push - */ -export interface IUiNavPushResult { - [key: string]: any; -} -/** - * 往路径堆栈中push路径 - * @apiName ui.nav.push - * @supportVersion ios: 2.8.0 android: 2.8.0 - */ -export declare function push$(params: IUiNavPushParams): Promise; -export default push$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/push.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/push.js deleted file mode 100644 index ff558222..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/push.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function push$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.push$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.nav.push",exports.push$=push$,exports.default=push$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/quit.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/quit.d.ts deleted file mode 100644 index 0c27da1a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/quit.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.nav.quit"; -/** - * 请求参数定义 - * @apiName ui.nav.quit - */ -export interface IUiNavQuitParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.quit - */ -export interface IUiNavQuitResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.quit - * @supportVersion ios: 2.10.0 android: 2.11.0 - */ -export declare function quit$(params: IUiNavQuitParams): Promise; -export default quit$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/quit.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/quit.js deleted file mode 100644 index 3d666616..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/quit.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function quit$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.quit$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.nav.quit",exports.quit$=quit$,exports.default=quit$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/recycle.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/recycle.d.ts deleted file mode 100644 index 39306538..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/recycle.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.nav.recycle"; -/** - * 请求参数定义 - * @apiName ui.nav.recycle - */ -export interface IUiNavRecycleParams { - [key: string]: any; -} -/** - * 返回结果定义 - * @apiName ui.nav.recycle - */ -export interface IUiNavRecycleResult { - [key: string]: any; -} -/** - * - * @apiName ui.nav.recycle - * @supportVersion ios: 2.6.0 android: 2.6.0 - */ -export declare function recycle$(params: IUiNavRecycleParams): Promise; -export default recycle$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/recycle.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/recycle.js deleted file mode 100644 index cbbef890..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/nav/recycle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function recycle$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.recycle$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.nav.recycle",exports.recycle$=recycle$,exports.default=recycle$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/progressBar/setColors.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/progressBar/setColors.d.ts deleted file mode 100644 index b99e90a0..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/progressBar/setColors.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.progressBar.setColors"; -/** - * 设置顶部进度条颜色 请求参数定义 - * @apiName ui.progressBar.setColors - */ -export interface IUiProgressBarSetColorsParams { - [key: string]: any; -} -/** - * 设置顶部进度条颜色 返回结果定义 - * @apiName ui.progressBar.setColors - */ -export interface IUiProgressBarSetColorsResult { - [key: string]: any; -} -/** - * 设置顶部进度条颜色 - * @apiName ui.progressBar.setColors - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function setColors$(params: IUiProgressBarSetColorsParams): Promise; -export default setColors$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/progressBar/setColors.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/progressBar/setColors.js deleted file mode 100644 index 3babf183..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/progressBar/setColors.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setColors$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setColors$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.progressBar.setColors",exports.setColors$=setColors$,exports.default=setColors$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/disable.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/disable.d.ts deleted file mode 100644 index 11f7d009..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/disable.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.pullToRefresh.disable"; -/** - * 禁用下拉刷新功能 请求参数定义 - * @apiName ui.pullToRefresh.disable - */ -export interface IUiPullToRefreshDisableParams { - [key: string]: any; -} -/** - * 禁用下拉刷新功能 返回结果定义 - * @apiName ui.pullToRefresh.disable - */ -export interface IUiPullToRefreshDisableResult { - [key: string]: any; -} -/** - * 禁用下拉刷新功能 - * @apiName ui.pullToRefresh.disable - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function disable$(params: IUiPullToRefreshDisableParams): Promise; -export default disable$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/disable.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/disable.js deleted file mode 100644 index eb12bd7d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/disable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disable$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.disable$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.pullToRefresh.disable",exports.disable$=disable$,exports.default=disable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/enable.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/enable.d.ts deleted file mode 100644 index 4e906023..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/enable.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -export declare const apiName = "ui.pullToRefresh.enable"; -/** - * 启用下拉刷新功能 请求参数定义 - * @apiName ui.pullToRefresh.enable - */ -export interface IUiPullToRefreshEnableParams { - /** onSuccess为监听函数 */ - onSuccess?: () => void; -} -/** - * 启用下拉刷新功能 返回结果定义 - * @apiName ui.pullToRefresh.enable - */ -export interface IUiPullToRefreshEnableResult { - [key: string]: any; -} -/** - * 启用下拉刷新功能 - * @apiName ui.pullToRefresh.enable - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function enable$(params: IUiPullToRefreshEnableParams): Promise; -export default enable$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/enable.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/enable.js deleted file mode 100644 index e26260f7..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/enable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enable$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enable$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.pullToRefresh.enable",exports.enable$=enable$,exports.default=enable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/stop.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/stop.d.ts deleted file mode 100644 index 8e39e73d..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/stop.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.pullToRefresh.stop"; -/** - * 收起下拉刷新控件 请求参数定义 - * @apiName ui.pullToRefresh.stop - */ -export interface IUiPullToRefreshStopParams { - [key: string]: any; -} -/** - * 收起下拉刷新控件 返回结果定义 - * @apiName ui.pullToRefresh.stop - */ -export interface IUiPullToRefreshStopResult { - [key: string]: any; -} -/** - * 收起下拉刷新控件 - * @apiName ui.pullToRefresh.stop - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function stop$(params: IUiPullToRefreshStopParams): Promise; -export default stop$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/stop.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/stop.js deleted file mode 100644 index f650f4d2..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/pullToRefresh/stop.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function stop$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.stop$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.pullToRefresh.stop",exports.stop$=stop$,exports.default=stop$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/add.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/add.d.ts deleted file mode 100644 index a383a43b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/add.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.tab.add"; -/** - * 增加tab 请求参数定义 - * @apiName ui.tab.add - */ -export interface IUiTabAddParams { - [key: string]: any; -} -/** - * 增加tab 返回结果定义 - * @apiName ui.tab.add - */ -export interface IUiTabAddResult { - [key: string]: any; -} -/** - * 增加tab - * @apiName ui.tab.add - * @supportVersion android: 2.7.6 - */ -export declare function add$(params: IUiTabAddParams): Promise; -export default add$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/add.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/add.js deleted file mode 100644 index 78ca7ea4..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/add.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function add$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.add$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.tab.add",exports.add$=add$,exports.default=add$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/config.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/config.d.ts deleted file mode 100644 index 3c1e8d7e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/config.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.tab.config"; -/** - * 配置tab 请求参数定义 - * @apiName ui.tab.config - */ -export interface IUiTabConfigParams { - [key: string]: any; -} -/** - * 配置tab 返回结果定义 - * @apiName ui.tab.config - */ -export interface IUiTabConfigResult { - [key: string]: any; -} -/** - * 配置tab - * @apiName ui.tab.config - * @supportVersion android: 2.7.6 - */ -export declare function config$(params: IUiTabConfigParams): Promise; -export default config$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/config.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/config.js deleted file mode 100644 index adbcba33..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/config.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function config$(o){return common_1.ddSdk.invokeAPI(exports.apiName,o)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.config$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.tab.config",exports.config$=config$,exports.default=config$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/init.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/init.d.ts deleted file mode 100644 index f736a88f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/init.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.tab.init"; -/** - * 初始化tab 请求参数定义 - * @apiName ui.tab.init - */ -export interface IUiTabInitParams { - [key: string]: any; -} -/** - * 初始化tab 返回结果定义 - * @apiName ui.tab.init - */ -export interface IUiTabInitResult { - [key: string]: any; -} -/** - * 初始化tab - * @apiName ui.tab.init - * @supportVersion android: 2.7.6 - */ -export declare function init$(params: IUiTabInitParams): Promise; -export default init$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/init.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/init.js deleted file mode 100644 index 78a0a956..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/init.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function init$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.init$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.tab.init",exports.init$=init$,exports.default=init$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/remove.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/remove.d.ts deleted file mode 100644 index fa3ab072..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/remove.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.tab.remove"; -/** - * 移除tab 请求参数定义 - * @apiName ui.tab.remove - */ -export interface IUiTabRemoveParams { - [key: string]: any; -} -/** - * 移除tab 返回结果定义 - * @apiName ui.tab.remove - */ -export interface IUiTabRemoveResult { - [key: string]: any; -} -/** - * 移除tab - * @apiName ui.tab.remove - * @supportVersion android: 2.7.6 - */ -export declare function remove$(params: IUiTabRemoveParams): Promise; -export default remove$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/remove.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/remove.js deleted file mode 100644 index e334e8c9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/remove.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function remove$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.remove$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.tab.remove",exports.remove$=remove$,exports.default=remove$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/select.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/select.d.ts deleted file mode 100644 index caddc2d9..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/select.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.tab.select"; -/** - * tab选择 请求参数定义 - * @apiName ui.tab.select - */ -export interface IUiTabSelectParams { - [key: string]: any; -} -/** - * tab选择 返回结果定义 - * @apiName ui.tab.select - */ -export interface IUiTabSelectResult { - [key: string]: any; -} -/** - * tab选择 - * @apiName ui.tab.select - * @supportVersion android: 2.7.6 - */ -export declare function select$(params: IUiTabSelectParams): Promise; -export default select$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/select.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/select.js deleted file mode 100644 index a660ab49..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/select.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function select$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.select$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.tab.select",exports.select$=select$,exports.default=select$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/start.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/start.d.ts deleted file mode 100644 index 5e948d9c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/start.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.tab.start"; -/** - * 唤起tab 请求参数定义 - * @apiName ui.tab.start - */ -export interface IUiTabStartParams { - [key: string]: any; -} -/** - * 唤起tab 返回结果定义 - * @apiName ui.tab.start - */ -export interface IUiTabStartResult { - [key: string]: any; -} -/** - * 唤起tab - * @apiName ui.tab.start - * @supportVersion android: 2.7.6 - */ -export declare function start$(params: IUiTabStartParams): Promise; -export default start$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/start.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/start.js deleted file mode 100644 index 4668518c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/tab/start.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function start$(t){return common_1.ddSdk.invokeAPI(exports.apiName,t)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.start$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.tab.start",exports.start$=start$,exports.default=start$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/disable.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/disable.d.ts deleted file mode 100644 index 328581ce..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/disable.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.webViewBounce.disable"; -/** - * 禁用webview下拉弹性效果 请求参数定义 - * @apiName ui.webViewBounce.disable - */ -export interface IUiWebViewBounceDisableParams { - [key: string]: any; -} -/** - * 禁用webview下拉弹性效果 返回结果定义 - * @apiName ui.webViewBounce.disable - */ -export interface IUiWebViewBounceDisableResult { - [key: string]: any; -} -/** - * 禁用webview下拉弹性效果 - * @apiName ui.webViewBounce.disable - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function disable$(params: IUiWebViewBounceDisableParams): Promise; -export default disable$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/disable.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/disable.js deleted file mode 100644 index a3f90f1c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/disable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function disable$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.disable$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.webViewBounce.disable",exports.disable$=disable$,exports.default=disable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/enable.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/enable.d.ts deleted file mode 100644 index 98281145..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/enable.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "ui.webViewBounce.enable"; -/** - * 启用webview下拉弹性效果 请求参数定义 - * @apiName ui.webViewBounce.enable - */ -export interface IUiWebViewBounceEnableParams { - [key: string]: any; -} -/** - * 启用webview下拉弹性效果 返回结果定义 - * @apiName ui.webViewBounce.enable - */ -export interface IUiWebViewBounceEnableResult { - [key: string]: any; -} -/** - * 启用webview下拉弹性效果 - * @apiName ui.webViewBounce.enable - * @supportVersion ios: 2.4.0 android: 2.4.0 - */ -export declare function enable$(params: IUiWebViewBounceEnableParams): Promise; -export default enable$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/enable.js b/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/enable.js deleted file mode 100644 index 3857e4a8..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/ui/webViewBounce/enable.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function enable$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.enable$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="ui.webViewBounce.enable",exports.enable$=enable$,exports.default=enable$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/read.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/read.d.ts deleted file mode 100644 index 24db4986..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/read.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "util.cookies.read"; -/** - * 读取本地cookiestorage中在指定域名下的cookie 请求参数定义 - * @apiName util.cookies.read - */ -export interface IUtilCookiesReadParams { - [key: string]: any; -} -/** - * 读取本地cookiestorage中在指定域名下的cookie 返回结果定义 - * @apiName util.cookies.read - */ -export interface IUtilCookiesReadResult { - [key: string]: any; -} -/** - * 读取本地cookiestorage中在指定域名下的cookie - * @apiName util.cookies.read - * @supportVersion ios: 4.0 - */ -export declare function read$(params: IUtilCookiesReadParams): Promise; -export default read$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/read.js b/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/read.js deleted file mode 100644 index d131275f..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/read.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function read$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.read$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.cookies.read",exports.read$=read$,exports.default=read$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/write.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/write.d.ts deleted file mode 100644 index 9bc1a1da..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/write.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "util.cookies.write"; -/** - * 将指定cookie保存到本地cookiestorage 请求参数定义 - * @apiName util.cookies.write - */ -export interface IUtilCookiesWriteParams { - [key: string]: any; -} -/** - * 将指定cookie保存到本地cookiestorage 返回结果定义 - * @apiName util.cookies.write - */ -export interface IUtilCookiesWriteResult { - [key: string]: any; -} -/** - * 将指定cookie保存到本地cookiestorage - * @apiName util.cookies.write - * @supportVersion ios: 4.0 - */ -export declare function write$(params: IUtilCookiesWriteParams): Promise; -export default write$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/write.js b/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/write.js deleted file mode 100644 index c47a7629..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/cookies/write.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function write$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.write$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.cookies.write",exports.write$=write$,exports.default=write$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/clearItems.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/clearItems.d.ts deleted file mode 100644 index efecb07b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/clearItems.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "util.domainStorage.clearItems"; -/** - * 本地存储(区分域名)清空 请求参数定义 - * @apiName util.domainStorage.clearItems - */ -export interface IUtilDomainStorageClearItemsParams { - [key: string]: any; -} -/** - * 本地存储(区分域名)清空 返回结果定义 - * @apiName util.domainStorage.clearItems - */ -export interface IUtilDomainStorageClearItemsResult { - [key: string]: any; -} -/** - * 本地存储(区分域名)清空 - * @apiName util.domainStorage.clearItems - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function clearItems$(params: IUtilDomainStorageClearItemsParams): Promise; -export default clearItems$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/clearItems.js b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/clearItems.js deleted file mode 100644 index 302a1513..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/clearItems.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function clearItems$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.clearItems$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.domainStorage.clearItems",exports.clearItems$=clearItems$,exports.default=clearItems$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItem.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItem.d.ts deleted file mode 100644 index 47036097..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItem.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -export declare const apiName = "util.domainStorage.getItem"; -/** - * 本地存储(区分域名)读 请求参数定义 - * @apiName util.domainStorage.getItem - */ -export interface IUtilDomainStorageGetItemParams { - /** 存储信息的key值 */ - name: string; -} -/** - * 本地存储(区分域名)读 返回结果定义 - * @apiName util.domainStorage.getItem - */ -export interface IUtilDomainStorageGetItemResult { - /** name对应的存储信息 */ - value: string; -} -/** - * 获取存储信息 本地存储(区分域名)读 - * @apiName util.domainStorage.getItem - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function getItem$(params: IUtilDomainStorageGetItemParams): Promise; -export default getItem$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItem.js b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItem.js deleted file mode 100644 index 27469caf..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getItem$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getItem$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.domainStorage.getItem",exports.getItem$=getItem$,exports.default=getItem$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItems.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItems.d.ts deleted file mode 100644 index 057b8925..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItems.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -export declare const apiName = "util.domainStorage.getItems"; -/** - * 批量查询本地缓存 请求参数定义 - * @apiName util.domainStorage.getItems - */ -export interface IUtilDomainStorageGetItemsParams { - /** 存储信息的key值数组 */ - names: string[]; -} -/** - * 批量查询本地缓存 返回结果定义 - * @apiName util.domainStorage.getItems - */ -export interface IUtilDomainStorageGetItemsResult { - storages: Array<{ - key: string; - value: string; - }>; -} -/** - * 批量查询本地缓存 - * @apiName util.domainStorage.getItems - * @supportVersion ios: 5.1.23 android: 5.1.23 - * @author iOS: 无最 Android:煮虾 - */ -export declare function getItems$(params: IUtilDomainStorageGetItemsParams): Promise; -export default getItems$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItems.js b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItems.js deleted file mode 100644 index edba932c..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/getItems.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getItems$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getItems$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.domainStorage.getItems",exports.getItems$=getItems$,exports.default=getItems$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/listItems.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/listItems.d.ts deleted file mode 100644 index e623ba8a..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/listItems.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "util.domainStorage.listItems"; -/** - * 获取当前域名下,所有存储在本地的数据key以及长度信息 请求参数定义 - * @apiName util.domainStorage.listItems - */ -export interface IUtilDomainStorageListItemsParams { - [key: string]: any; -} -/** - * 获取当前域名下,所有存储在本地的数据key以及长度信息 返回结果定义 - * @apiName util.domainStorage.listItems - */ -export interface IUtilDomainStorageListItemsResult { - [key: string]: any; -} -/** - * 获取当前域名下,所有存储在本地的数据key以及长度信息 - * @apiName util.domainStorage.listItems - * @supportVersion ios: 3.5.1 android: 3.5.1 - */ -export declare function listItems$(params: IUtilDomainStorageListItemsParams): Promise; -export default listItems$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/listItems.js b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/listItems.js deleted file mode 100644 index cee8cb94..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/listItems.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function listItems$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.listItems$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.domainStorage.listItems",exports.listItems$=listItems$,exports.default=listItems$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/removeItem.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/removeItem.d.ts deleted file mode 100644 index e02be347..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/removeItem.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "util.domainStorage.removeItem"; -/** - * 本地存储(区分域名)删除 请求参数定义 - * @apiName util.domainStorage.removeItem - */ -export interface IUtilDomainStorageRemoveItemParams { - /** 存储信息的key值 */ - name: string; -} -/** - * 本地存储(区分域名)删除 返回结果定义 - * @apiName util.domainStorage.removeItem - */ -export interface IUtilDomainStorageRemoveItemResult { -} -/** - * 删除相应存储信息 本地存储(区分域名)删除 - * @apiName util.domainStorage.removeItem - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function removeItem$(params: IUtilDomainStorageRemoveItemParams): Promise; -export default removeItem$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/removeItem.js b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/removeItem.js deleted file mode 100644 index 5fef7af1..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/removeItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeItem$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeItem$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.domainStorage.removeItem",exports.removeItem$=removeItem$,exports.default=removeItem$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/setItem.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/setItem.d.ts deleted file mode 100644 index 34c61552..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/setItem.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -export declare const apiName = "util.domainStorage.setItem"; -/** - * 本地存储(区分域名)写 请求参数定义 - * @apiName util.domainStorage.setItem - */ -export interface IUtilDomainStorageSetItemParams { - /** 存储信息的key值 */ - name: string; - /** 存储信息的Value值 */ - value: string; -} -/** - * 本地存储(区分域名)写 返回结果定义 - * @apiName util.domainStorage.setItem - */ -export interface IUtilDomainStorageSetItemResult { - [key: string]: any; -} -/** - * 本地存储(区分域名)写 - * 每次存储数据不能超过1M,单域名不能超过50M. - * @apiName util.domainStorage.setItem - * @supportVersion ios: 2.9.0 android: 2.9.0 - */ -export declare function setItem$(params: IUtilDomainStorageSetItemParams): Promise; -export default setItem$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/setItem.js b/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/setItem.js deleted file mode 100644 index adc575ea..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/domainStorage/setItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setItem$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setItem$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.domainStorage.setItem",exports.setItem$=setItem$,exports.default=setItem$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/getItem.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/getItem.d.ts deleted file mode 100644 index 15c33c82..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/getItem.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "util.localStorage.getItem"; -/** - * 本地存储读 请求参数定义 - * @apiName util.localStorage.getItem - */ -export interface IUtilLocalStorageGetItemParams { - [key: string]: any; -} -/** - * 本地存储读 返回结果定义 - * @apiName util.localStorage.getItem - */ -export interface IUtilLocalStorageGetItemResult { - [key: string]: any; -} -/** - * 本地存储读 - * @apiName util.localStorage.getItem - * @supportVersion ios: 2.4.2 android: 2.4.2 - */ -export declare function getItem$(params: IUtilLocalStorageGetItemParams): Promise; -export default getItem$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/getItem.js b/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/getItem.js deleted file mode 100644 index 28ca61be..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/getItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getItem$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.getItem$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.localStorage.getItem",exports.getItem$=getItem$,exports.default=getItem$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/removeItem.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/removeItem.d.ts deleted file mode 100644 index 664f10bc..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/removeItem.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "util.localStorage.removeItem"; -/** - * 本地存储移除操作 请求参数定义 - * @apiName util.localStorage.removeItem - */ -export interface IUtilLocalStorageRemoveItemParams { - [key: string]: any; -} -/** - * 本地存储移除操作 返回结果定义 - * @apiName util.localStorage.removeItem - */ -export interface IUtilLocalStorageRemoveItemResult { - [key: string]: any; -} -/** - * 本地存储移除操作 - * @apiName util.localStorage.removeItem - * @supportVersion ios: 2.4.2 android: 2.4.2 - */ -export declare function removeItem$(params: IUtilLocalStorageRemoveItemParams): Promise; -export default removeItem$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/removeItem.js b/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/removeItem.js deleted file mode 100644 index 84fed885..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/removeItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function removeItem$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.removeItem$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.localStorage.removeItem",exports.removeItem$=removeItem$,exports.default=removeItem$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/setItem.d.ts b/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/setItem.d.ts deleted file mode 100644 index afaafd48..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/setItem.d.ts +++ /dev/null @@ -1,22 +0,0 @@ -export declare const apiName = "util.localStorage.setItem"; -/** - * 本地存储写 请求参数定义 - * @apiName util.localStorage.setItem - */ -export interface IUtilLocalStorageSetItemParams { - [key: string]: any; -} -/** - * 本地存储写 返回结果定义 - * @apiName util.localStorage.setItem - */ -export interface IUtilLocalStorageSetItemResult { - [key: string]: any; -} -/** - * 本地存储写 - * @apiName util.localStorage.setItem - * @supportVersion ios: 2.4.2 android: 2.4.2 - */ -export declare function setItem$(params: IUtilLocalStorageSetItemParams): Promise; -export default setItem$; diff --git a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/setItem.js b/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/setItem.js deleted file mode 100644 index d598318e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/api/util/localStorage/setItem.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function setItem$(e){return common_1.ddSdk.invokeAPI(exports.apiName,e)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.setItem$=exports.apiName=void 0;var common_1=require("../../../common");exports.apiName="util.localStorage.setItem",exports.setItem$=setItem$,exports.default=setItem$; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/common/common.d.ts b/node_modules/dingtalk-jsapi/lib/common/common.d.ts deleted file mode 100644 index df66f33b..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/common.d.ts +++ /dev/null @@ -1 +0,0 @@ -export { ddSdk } from '../ddSdk'; diff --git a/node_modules/dingtalk-jsapi/lib/common/common.js b/node_modules/dingtalk-jsapi/lib/common/common.js deleted file mode 100644 index cbe5646e..00000000 --- a/node_modules/dingtalk-jsapi/lib/common/common.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var ddSdk_1=require("../ddSdk");Object.defineProperty(exports,"ddSdk",{enumerable:!0,get:function(){return ddSdk_1.ddSdk}}); \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/ddSdk.d.ts b/node_modules/dingtalk-jsapi/lib/ddSdk.d.ts deleted file mode 100644 index ee822e44..00000000 --- a/node_modules/dingtalk-jsapi/lib/ddSdk.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -export { ENV_ENUM, ENV_ENUM_SUB } from './env'; -import { Sdk } from './sdk'; -export { IJSBridge, IUNCore, IPlatformConfig } from './sdk'; -import './polyfills'; -export declare const ddSdk: Sdk; diff --git a/node_modules/dingtalk-jsapi/lib/ddSdk.js b/node_modules/dingtalk-jsapi/lib/ddSdk.js deleted file mode 100644 index f6c2a025..00000000 --- a/node_modules/dingtalk-jsapi/lib/ddSdk.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ddSdk=void 0;var env_1=require("./env"),env_2=require("./env");Object.defineProperty(exports,"ENV_ENUM",{enumerable:!0,get:function(){return env_2.ENV_ENUM}}),Object.defineProperty(exports,"ENV_ENUM_SUB",{enumerable:!0,get:function(){return env_2.ENV_ENUM_SUB}});var sdk_1=require("./sdk");require("./polyfills");var apiHelper_1=require("./apiHelper"),g=apiHelper_1.getGlobalSelf();exports.ddSdk=g.__useNativeSDK?g.__ddSDK:new sdk_1.Sdk(env_1.getENV()); \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/env.d.ts b/node_modules/dingtalk-jsapi/lib/env.d.ts deleted file mode 100644 index 8b82ee8c..00000000 --- a/node_modules/dingtalk-jsapi/lib/env.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { IENV, IPlatformConfig, Sdk } from './sdk'; -export { ENV_ENUM, APP_TYPE, ENV_ENUM_SUB } from './sdk'; -declare global { - var __dingtalk_jsapi_top_platfrom_config__: IPlatformConfig | undefined; - interface Navigator { - swuserAgent: any; - } - var my: any; - var __useNativeSDK: boolean; - var __ddSDK: Sdk; -} -export declare const getUA: () => string; -export declare const getENV: () => IENV; diff --git a/node_modules/dingtalk-jsapi/lib/env.js b/node_modules/dingtalk-jsapi/lib/env.js deleted file mode 100644 index 81f679f5..00000000 --- a/node_modules/dingtalk-jsapi/lib/env.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.getENV=exports.getUA=void 0;var sdk_1=require("./sdk"),sdk_2=require("./sdk");Object.defineProperty(exports,"ENV_ENUM",{enumerable:!0,get:function(){return sdk_2.ENV_ENUM}}),Object.defineProperty(exports,"APP_TYPE",{enumerable:!0,get:function(){return sdk_2.APP_TYPE}}),Object.defineProperty(exports,"ENV_ENUM_SUB",{enumerable:!0,get:function(){return sdk_2.ENV_ENUM_SUB}});var dingtalk_javascript_env_1=require("./packages/dingtalk-javascript-env"),apiHelper_1=require("./apiHelper"),getTopBridge=function(){try{if("undefined"!=typeof window&&void 0!==window.top){return window.top.__dingtalk_jsapi_top_platfrom_config__}}catch(e){return}},EDdWeexEnv;!function(e){e.singlePage="singlePage",e.miniApp="miniApp",e.miniWidget="miniWidget"}(EDdWeexEnv||(EDdWeexEnv={})),exports.getUA=function(){var e="";try{"undefined"!=typeof navigator&&(e=navigator&&(navigator.userAgent||navigator.swuserAgent)||"")}catch(t){e=""}return e},exports.getENV=function(){var e,t,i=exports.getUA(),n=/iPhone|iPad|iPod|iOS/i.test(i),d=/Android/i.test(i),a=/OpenHarmony/i.test(i)&&/ArkWeb/i.test(i),r=/DingTalk/i.test(i),_=/dd-web/i.test(i),o="object"==typeof nuva,s="object"==typeof dd&&"function"==typeof dd.dtBridge,E=/TaurusApp/.test(i),p=E&&!r,g=E&&r,l=p&&"undefined"!=typeof my&&null!==my&&void 0!==my.alert,v=E&&/dingtalk-win/.test(i),u=!v&&p&&n,f=!v&&p&&d,k=!v&&g&&n,c=!v&&g&&d,N=s&&n||o&&n,P=r||dingtalk_javascript_env_1.default.isDingTalk,A=n&&P||dingtalk_javascript_env_1.default.isWeexiOS||N,w=d&&P||dingtalk_javascript_env_1.default.isWeexAndroid,U=s,m=_,M=a&&P,y=sdk_1.APP_TYPE.WEB;if(l)y=sdk_1.APP_TYPE.MINI_APP;else if(m)y=sdk_1.APP_TYPE.WEBVIEW_IN_MINIAPP;else if(U)y=sdk_1.APP_TYPE.MINI_APP;else if(dingtalk_javascript_env_1.default.isWeexiOS||dingtalk_javascript_env_1.default.isWeexAndroid)try{var V=weex.config.ddWeexEnv;y=V===EDdWeexEnv.miniWidget?sdk_1.APP_TYPE.WEEX_WIDGET:sdk_1.APP_TYPE.WEEX}catch(e){y=sdk_1.APP_TYPE.WEEX}var x,W="*",S=i.match(/AliApp\(\w+\/([a-zA-Z0-9.-]+)\)/);null===S&&(S=i.match(/DingTalk\/([a-zA-Z0-9.-]+)/));var T;S&&S[1]&&(T=S[1]);var I="";"undefined"!=typeof name&&(I=name);var b=getTopBridge();try{b&&"undefined"!=typeof window&&void 0!==window.top&&window.top!==window&&(I=top.name)}catch(e){}if(I)try{var j=JSON.parse(I);j.hostVersion&&(T=j.hostVersion),W=j.language||navigator.language||"*",x=j.containerId}catch(e){}var h=!!x||"undefined"!=typeof window&&(null===(t=null===(e=null===window||void 0===window?void 0:window.dingtalk)||void 0===e?void 0:e.platform)||void 0===t?void 0:t.invokeAPI);h&&!T&&(S=i.match(/DingTalk\(([a-zA-Z0-9\.-]+)\)/))&&S[1]&&(T=S[1]);var D,B=sdk_1.ENV_ENUM_SUB.noSub;if(v?(D=sdk_1.ENV_ENUM.gdtPc,B=sdk_1.ENV_ENUM_SUB.win):D=u?sdk_1.ENV_ENUM.gdtIos:f?sdk_1.ENV_ENUM.gdtAndroid:k?sdk_1.ENV_ENUM.gdtStandardIos:c?sdk_1.ENV_ENUM.gdtStandardAndroid:A?sdk_1.ENV_ENUM.ios:w&&!M?sdk_1.ENV_ENUM.android:M?sdk_1.ENV_ENUM.harmony:h?sdk_1.ENV_ENUM.pc:b&&b.platform?b.platform:sdk_1.ENV_ENUM.notInDingTalk,D===sdk_1.ENV_ENUM.pc){B=i.indexOf("Macintosh; Intel Mac OS")>-1?sdk_1.ENV_ENUM_SUB.mac:sdk_1.ENV_ENUM_SUB.win}var O=apiHelper_1.getGlobalSelf();return O.__ddSDK&&O.__ddSDK.getEnv?O.__ddSDK.getEnv():{platform:D,platformSub:B,version:T,appType:y,language:W}}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/log.d.ts b/node_modules/dingtalk-jsapi/lib/log.d.ts deleted file mode 100644 index 86b25da4..00000000 --- a/node_modules/dingtalk-jsapi/lib/log.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -export declare enum LogLevel { - INFO = "INFO", - WARN = "WARN", - ERROR = "ERROR" -} -interface ILogInfo { - code: number; - category: LogLevel; - message: string; - solution?: string; -} -/** - * 诊断信息采用单 Code 模式对应一个 Message 的模式 - * 采用 4 位 Code 表示错误码,当遇到一个解决方案, - * 1xxx => 一些警告信息 - * 4xxx => 用户使用上的问题 - * 5xxx => 框架或者客户端造成的异常 - */ -export declare const diagnosticMessageMap: { - config_debug_deprecated: ILogInfo; - dd_config_wrap_deprecated: ILogInfo; - not_support_event_on: ILogInfo; - not_support_event_off: ILogInfo; - repeat_config: ILogInfo; - JsBridge_init_fail: ILogInfo; - auto_bridge_init_error: ILogInfo; - JsBridge_init_fail_dd_config: ILogInfo; - not_support_env: ILogInfo; - call_api_support_platform_error: ILogInfo; - call_api_config_platform_error: ILogInfo; - call_api_on_before_error: ILogInfo; - call_api_on_after_error: ILogInfo; -}; -export declare const formatLog: (diagnosticMessage: ILogInfo, ...args: string[]) => string; -export {}; diff --git a/node_modules/dingtalk-jsapi/lib/log.js b/node_modules/dingtalk-jsapi/lib/log.js deleted file mode 100644 index 2438bf06..00000000 --- a/node_modules/dingtalk-jsapi/lib/log.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.formatLog=exports.diagnosticMessageMap=exports.LogLevel=void 0;var LogLevel;!function(e){e.INFO="INFO",e.WARN="WARN",e.ERROR="ERROR"}(LogLevel=exports.LogLevel||(exports.LogLevel={}));var diagLog=function(e,o,r,t){return void 0===t&&(t=void 0),{code:e,category:o,message:r,solution:t}};exports.diagnosticMessageMap={config_debug_deprecated:diagLog(1010,LogLevel.WARN,"This is a deprecated feature (dd.debug - debug:true), recommend use dd.devConfig"),dd_config_wrap_deprecated:diagLog(1020,LogLevel.WARN,"You don 't use a dd.config, so you don't need to wrap dd.ready, recommend remove dd.ready"),not_support_event_on:diagLog(1030,LogLevel.WARN,"\"event.on\" do not support the current platform ('{0}')"),not_support_event_off:diagLog(1040,LogLevel.WARN,"\"event.off\" do not support the current platform ('{0}')"),repeat_config:diagLog(1040,LogLevel.WARN,"dd.config has been executed, please don't repeat config"),JsBridge_init_fail:diagLog(5010,LogLevel.ERROR,"JsBridge initialization fails, jsapi will not work"),auto_bridge_init_error:diagLog(5020,LogLevel.ERROR,"auto bridgeInit error"),JsBridge_init_fail_dd_config:diagLog(5010,LogLevel.ERROR,'JsBridge initialization failed and "dd.config" failed to call'),not_support_env:diagLog(4040,LogLevel.ERROR,"Do not support the current environment:'{0}'"),call_api_support_platform_error:diagLog(4050,LogLevel.ERROR,"'{0}' do not support the current platform ('{1}')"),call_api_config_platform_error:diagLog(4060,LogLevel.ERROR,"This API method is not configured for the platform ('{0}')"),call_api_on_before_error:diagLog(4060,LogLevel.ERROR,"Call Hook:onBeforeInvokeAPI failed , reason: '{0}'"),call_api_on_after_error:diagLog(4060,LogLevel.ERROR,"Call Hook:onAfterInvokeAPI failed , reason: '{0}'")},exports.formatLog=function(e){for(var o,r=[],t=1;t 3.4.9, 而semver的版本号则不支持 - * semver的版本号会忽略tag,例如3.5.0-realse.1 跟 3.5.0-realse.2 相等 - */ -export declare const compareVersion: (oldVersion: string, newVersion: string, containEqual: boolean) => boolean; -/** - * @deprecated recommend use navigator.language to get current language - */ -export declare const language: string | undefined; -/** @deprecated 即容器版本号, 推荐使用 dd.env.version */ -export declare const version: string | undefined; diff --git a/node_modules/dingtalk-jsapi/lib/otherApi.js b/node_modules/dingtalk-jsapi/lib/otherApi.js deleted file mode 100644 index 70291905..00000000 --- a/node_modules/dingtalk-jsapi/lib/otherApi.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.version=exports.language=exports.compareVersion=exports.other=exports.harmony=exports.pc=exports.android=exports.ios=void 0;var env_1=require("./env"),ENV=env_1.getENV();exports.ios=ENV.platform===env_1.ENV_ENUM.ios,exports.android=ENV.platform===env_1.ENV_ENUM.android,exports.pc=ENV.platform===env_1.ENV_ENUM.pc,exports.harmony=ENV.platform===env_1.ENV_ENUM.harmony,exports.other=ENV.platform===env_1.ENV_ENUM.notInDingTalk,exports.compareVersion=function(e,r,o){function t(e){return parseInt(e,10)||0}if("string"!=typeof e||"string"!=typeof r)return!1;for(var n,p,s=e.split("-")[0].split(".").map(t),i=r.split("-")[0].split(".").map(t);n===p&&i.length>0;)n=s.shift(),p=i.shift();return o?(p||0)>=(n||0):(p||0)>(n||0)},exports.language=ENV.language,exports.version=ENV.version; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/README.md b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/README.md deleted file mode 100644 index 858868ae..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/README.md +++ /dev/null @@ -1,40 +0,0 @@ -# dingtalk-javascript-env (进行过修正修改) - -钉钉容器系统-环境变量 - -# Install - -```bash -$ npm install dingtalk-javascript-env --save -``` - -# 导入方式 - -```JavaScript -import env from 'dingtalk-javascript-env'; -console.log(env) -``` - -```JavaScript - -{ - isDingTalk, // 是否在钉钉的容器中(包含移动端和PC端) - isWebiOS, //是否为Web iOS - isWebAndroid, //是否为Web Android - isWeexiOS, // 是否为Weex iOS - isWeexAndroid, // 是否为Weex Android - isDingTalkPCMac, // 是否为Mac客户端中 - isDingTalkPCWeb, // 是否在PC Web网页中 - isDingTalkPCWindows, // 是否在PC Windows客户端中 - isDingTalkPC, // 是否为PC - runtime, // 字符串【'Web','Weex','Unknown'】 - framework, // 字符串【'Vue','Rax','Unknown'】 - platform, // 字符串【'Mac','Windows','iOS','Android','iPad','Browser','Unknown'】 - version // 客户端版本 -} - -``` - -# MIT License - -Copyright (c) 2017 钉钉开放平台团队 diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/constants.d.ts b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/constants.d.ts deleted file mode 100644 index 43ff2988..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/constants.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -export declare const RUNTIME: { - WEB: string; - WEEX: string; - UNKNOWN: string; -}; -export declare const PLATFORM: { - MAC: string; - WINDOWS: string; - IOS: string; - ANDROID: string; - IPAD: string; - BROWSER: string; - UNKNOWN: string; -}; -export declare const FRAMEWORK: { - VUE: string; - RAX: string; - UNKNOWN: string; -}; diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/constants.js b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/constants.js deleted file mode 100644 index e2ee8ab6..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/constants.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.FRAMEWORK=exports.PLATFORM=exports.RUNTIME=void 0,exports.RUNTIME={WEB:"Web",WEEX:"Weex",UNKNOWN:"Unknown"},exports.PLATFORM={MAC:"Mac",WINDOWS:"Windows",IOS:"iOS",ANDROID:"Android",IPAD:"iPad",BROWSER:"Browser",UNKNOWN:"Unknown"},exports.FRAMEWORK={VUE:"Vue",RAX:"Rax",UNKNOWN:"Unknown"}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/environment.d.ts b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/environment.d.ts deleted file mode 100644 index eab74664..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/environment.d.ts +++ /dev/null @@ -1,16 +0,0 @@ -export default function environment(runtime: any, framework: any, virtualEnv: any): { - isDingTalk: boolean; - isWebiOS: boolean; - isWebAndroid: boolean; - isWeexiOS: boolean; - isWeexAndroid: boolean; - isDingTalkPCMac: boolean; - isDingTalkPCWeb: boolean; - isDingTalkPCWindows: boolean; - isDingTalkPC: boolean; - runtime: any; - framework: any; - platform: string; - version: any; - isWeex: boolean; -}; diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/environment.js b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/environment.js deleted file mode 100644 index e510d1bf..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/environment.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function environment(n,i,a){var t="Web"===a.platform,e="iOS"===a.platform,r="android"===a.platform,o=r||e,s=function(){return t?window.navigator.userAgent.toLowerCase():""}(),c=function(){var n={};if(t){var i=window.name;try{var a=JSON.parse(i);n.containerId=a.containerId,n.version=a.hostVersion,n.language=a.language||"*"}catch(n){}}return n}(),d=function(){return o?"DingTalk"===a.appName||"com.alibaba.android.rimet"===a.appName:s.indexOf("dingtalk")>-1||!!c.containerId}(),O=function(){if(t){if(c.version)return c.version;var n=s.match(/aliapp\(\w+\/([a-zA-Z0-9.-]+)\)/);null===n&&(n=s.match(/dingtalk\/([a-zA-Z0-9.-]+)/));return n&&n[1]||"Unknown"}return a.appVersion}(),u=!!c.containerId,l=/iphone|ipod|ios/.test(s),f=/ipad/.test(s),p=s.indexOf("android")>-1,m=s.indexOf("mac")>-1&&u,A=s.indexOf("win")>-1&&u,g=!m&&!A&&u,v=u,P="";return P=d?l||e?constants_1.PLATFORM.IOS:p||r?constants_1.PLATFORM.ANDROID:f?constants_1.PLATFORM.IPAD:m?constants_1.PLATFORM.MAC:A?constants_1.PLATFORM.WINDOWS:g?constants_1.PLATFORM.BROWSER:constants_1.PLATFORM.UNKNOWN:constants_1.PLATFORM.UNKNOWN,{isDingTalk:d,isWebiOS:l,isWebAndroid:p,isWeexiOS:e,isWeexAndroid:r,isDingTalkPCMac:m,isDingTalkPCWeb:g,isDingTalkPCWindows:A,isDingTalkPC:v,runtime:n,framework:i,platform:P,version:O,isWeex:o}}Object.defineProperty(exports,"__esModule",{value:!0});var constants_1=require("./constants");exports.default=environment; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/index.d.ts b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/index.d.ts deleted file mode 100644 index 12fc5215..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/index.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -declare const env: { - isDingTalk: boolean; - isWebiOS: boolean; - isWebAndroid: boolean; - isWeexiOS: boolean; - isWeexAndroid: boolean; - isDingTalkPCMac: boolean; - isDingTalkPCWeb: boolean; - isDingTalkPCWindows: boolean; - isDingTalkPC: boolean; - runtime: any; - framework: any; - platform: string; - version: any; - isWeex: boolean; -}; -export default env; diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/index.js b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/index.js deleted file mode 100644 index b242503f..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/index.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getVirtualEnv(){var n={};switch(framework){case constants_1.FRAMEWORK.VUE:var t=weex.config,e=t.env;n.platform=e.platform,constants_1.RUNTIME.WEEX===runtime&&(n.appVersion=e.appVersion,n.appName=e.appName);break;case constants_1.FRAMEWORK.RAX:constants_1.RUNTIME.WEEX===runtime&&(n.platform=navigator.platform,n.appName=navigator.appName,n.appVersion=navigator.appVersion);break;case constants_1.FRAMEWORK.UNKNOWN:constants_1.RUNTIME.WEB===runtime&&(n.platform=constants_1.RUNTIME.WEB),constants_1.RUNTIME.UNKNOWN===runtime&&(n.platform=constants_1.RUNTIME.UNKNOWN)}return n}Object.defineProperty(exports,"__esModule",{value:!0});var whichOneRuntime_1=require("./whichOneRuntime"),environment_1=require("./environment"),constants_1=require("./constants"),_a=whichOneRuntime_1.default().split("."),runtime=_a[0],framework=_a[1],virtualEnv=getVirtualEnv(),env=environment_1.default(runtime,framework,virtualEnv);exports.default=env; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/whichOneRuntime.d.ts b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/whichOneRuntime.d.ts deleted file mode 100644 index 377f8780..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/whichOneRuntime.d.ts +++ /dev/null @@ -1 +0,0 @@ -export default function whichOneRuntime(): "Web.Vue" | "Web.Unknown" | "Weex.Vue" | "Weex.Unknown" | "Weex.Rax" | "Unknown.Unknown"; diff --git a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/whichOneRuntime.js b/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/whichOneRuntime.js deleted file mode 100644 index 71472136..00000000 --- a/node_modules/dingtalk-jsapi/lib/packages/dingtalk-javascript-env/whichOneRuntime.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function snifferMachine(e,n){for(var i=e.length,a=0,f=!0;a0&&(this._timeoutTimer=setTimeout(function(){this.receiveEvent(s.TIMEOUT),this.receiveResponse(a,!0)}.bind(this),this.option.timeout))},l.prototype._clearTimeout=function(){clearTimeout(this._timeoutTimer)},l.prototype._handleMsg=function(t){var e={};return Object.keys(t).forEach(function(n){var o=t[n];"function"==typeof o&&"on"===n.slice(0,2)?this.callbacks[n]=o:e[n]=r(o)}.bind(this)),e},l.prototype.getPayload=function(){return{msgId:this.id,containerId:this.containerId,methodName:this.methodName,body:this.plainMsg,type:"request"}},l.prototype.receiveEvent=function(t,e){if(this.isFinish&&t!==s.FINISH)return!1;t!==s.FINISH&&t!==s.TIMEOUT&&this._initTimeout(),Array.isArray(this._eventsHandle[t])&&this._eventsHandle[t].forEach(function(t){try{t(e)}catch(t){console.error(e)}});var n="on"+t.charAt(0).toUpperCase()+t.slice(1);return this.callbacks[n]&&this.callbacks[n](e),!0},l.prototype.addEventListener=function(t,e){if(!t||"function"!=typeof e)throw"eventName is null or handle is not a function, addEventListener fail";Array.isArray(this._eventsHandle[t])||(this._eventsHandle[t]=[]),this._eventsHandle[t].push(e)},l.prototype.removeEventListener=function(t,e){if(!t||!e)throw"eventName is null or handle is null, invoke removeEventListener fail";if(Array.isArray(this._eventsHandle[t])){var n=this._eventsHandle[t].indexOf(e);-1!==n&&this._eventsHandle[t].splice(n,1)}},l.prototype.receiveResponse=function(t,e){if(!0===this.isFinish)return!1;this._clearTimeout();var e=!!e;return e?this._p._reject(t):this._p._resolve(t),setTimeout(function(){this.receiveEvent(s.FINISH)}.bind(this),0),this.isFinish=!0,!0},t.exports=l},function(t,e,n){"use strict";var r=function(t,e,n){if(this._msgId=n.msgId,this.frameWindow=t,this.methodName=n.methodName,this.clientOrigin=e,this.containerId=n.containerId,this.params=n.body,!this._msgId)throw"msgId not exist";if(!this.frameWindow)throw"frameWindow not exist";if(!this.methodName)throw"methodName not exits";if(!this.clientOrigin)throw"clientOrigin not exist";this.hasResponded=!1};r.prototype.respond=function(t,e){var e=!!e;if(!0!==this.hasResponded){var n={type:"response",success:!e,body:t,msgId:this._msgId};this.frameWindow.postMessage(n,this.clientOrigin),this.hasResponded=!0}},r.prototype.emit=function(t,e){var n={type:"event",eventName:t,body:e,msgId:this._msgId};this.frameWindow.postMessage(n,this.clientOrigin)},t.exports=r},function(t,e,n){"use strict";t.exports={SYS_EVENT:"SYS_openAPIContainerInitEvent",SYS_INIT:"SYS_openAPIContainerInit"}},function(t,e,n){"use strict";var r=n(0);t.exports=r},function(t,e,n){(function(t,n){function r(t,e){return t.set(e[0],e[1]),t}function o(t,e){return t.add(e),t}function i(t,e){for(var n=-1,r=t.length;++n-1}function O(t,e){var n=this.__data__,r=W(n,t);return r<0?n.push([t,e]):n[r][1]=e,this}function A(t){var e=-1,n=t?t.length:0;for(this.clear();++e-1&&t%1==0&&t-1&&t%1==0&&t<=Mt}function jt(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function It(t){return!!t&&"object"==typeof t}function Ot(t){return!!jt(t)&&(mt(t)||f(t)?be:ee).test(vt(t))}function At(t){return"string"==typeof t||!Ye(t)&&It(t)&&_e.call(t)==Rt}function xt(t){var e=dt(t);if(!e&&!bt(t))return V(t);var n=lt(t),r=!!n,o=n||[],i=o.length;for(var u in t)!C(t,u)||r&&("length"==u||pt(u,i))||e&&"constructor"==u||o.push(u);return o}var Et=200,St="__lodash_hash_undefined__",Mt=9007199254740991,Nt="[object Arguments]",Pt="[object Boolean]",Tt="[object Date]",kt="[object Function]",Ft="[object GeneratorFunction]",Ht="[object Map]",Lt="[object Number]",$t="[object Object]",Wt="[object RegExp]",Ut="[object Set]",Rt="[object String]",Bt="[object Symbol]",Yt="[object ArrayBuffer]",Ct="[object DataView]",Vt="[object Float32Array]",Dt="[object Float64Array]",Gt="[object Int8Array]",qt="[object Int16Array]",zt="[object Int32Array]",Jt="[object Uint8Array]",Kt="[object Uint8ClampedArray]",Qt="[object Uint16Array]",Xt="[object Uint32Array]",Zt=/[\\^$.*+?()[\]{}|]/g,te=/\w*$/,ee=/^\[object .+?Constructor\]$/,ne=/^(?:0|[1-9]\d*)$/,re={};re[Nt]=re["[object Array]"]=re[Yt]=re[Ct]=re[Pt]=re[Tt]=re[Vt]=re[Dt]=re[Gt]=re[qt]=re[zt]=re[Ht]=re[Lt]=re[$t]=re[Wt]=re[Ut]=re[Rt]=re[Bt]=re[Jt]=re[Kt]=re[Qt]=re[Xt]=!0,re["[object Error]"]=re[kt]=re["[object WeakMap]"]=!1;var oe={function:!0,object:!0},ie=oe[typeof e]&&e&&!e.nodeType?e:void 0,ue=oe[typeof t]&&t&&!t.nodeType?t:void 0,ce=ue&&ue.exports===ie?ie:void 0,ae=s(ie&&ue&&"object"==typeof n&&n),se=s(oe[typeof self]&&self),fe=s(oe[typeof window]&&window),le=s(oe[typeof this]&&this),pe=ae||fe!==(le&&le.window)&&fe||se||le||Function("return this")(),he=Array.prototype,de=Object.prototype,ve=Function.prototype.toString,ye=de.hasOwnProperty,_e=de.toString,be=RegExp("^"+ve.call(ye).replace(Zt,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),ge=ce?pe.Buffer:void 0,me=pe.Symbol,we=pe.Uint8Array,je=Object.getOwnPropertySymbols,Ie=Object.create,Oe=de.propertyIsEnumerable,Ae=he.splice,xe=Object.getPrototypeOf,Ee=Object.keys,Se=ot(pe,"DataView"),Me=ot(pe,"Map"),Ne=ot(pe,"Promise"),Pe=ot(pe,"Set"),Te=ot(pe,"WeakMap"),ke=ot(Object,"create"),Fe=vt(Se),He=vt(Me),Le=vt(Ne),$e=vt(Pe),We=vt(Te),Ue=me?me.prototype:void 0,Re=Ue?Ue.valueOf:void 0;h.prototype.clear=d,h.prototype.delete=v,h.prototype.get=y,h.prototype.has=_,h.prototype.set=b,g.prototype.clear=m,g.prototype.delete=w,g.prototype.get=j,g.prototype.has=I,g.prototype.set=O,A.prototype.clear=x,A.prototype.delete=E,A.prototype.get=S,A.prototype.has=M,A.prototype.set=N,P.prototype.clear=T,P.prototype.delete=k,P.prototype.get=F,P.prototype.has=H,P.prototype.set=L;var Be=function(t){return function(t){return null==t?void 0:t.length}}();je||(ut=function(){return[]}),(Se&&ct(new Se(new ArrayBuffer(1)))!=Ct||Me&&ct(new Me)!=Ht||Ne&&"[object Promise]"!=ct(Ne.resolve())||Pe&&ct(new Pe)!=Ut||Te&&"[object WeakMap]"!=ct(new Te))&&(ct=function(t){var e=_e.call(t),n=e==$t?t.constructor:void 0,r=n?vt(n):void 0;if(r)switch(r){case Fe:return Ct;case He:return Ht;case Le:return"[object Promise]";case $e:return Ut;case We:return"[object WeakMap]"}return e});var Ye=Array.isArray,Ce=ge?function(t){return t instanceof ge}:function(t){return function(){return!1}}();t.exports=R}).call(e,n(12)(t),n(11))},function(t,e,n){function r(t,e,n){var r=t[e];m.call(t,e)&&a(r,n)&&(void 0!==n||e in t)||(t[e]=n)}function o(t,e,n,o){n||(n={});for(var i=-1,u=e.length;++i-1&&t%1==0&&t-1&&t%1==0&&t<=v}function p(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}var h=n(9),d=n(10),v=9007199254740991,y="[object Function]",_="[object GeneratorFunction]",b=/^(?:0|[1-9]\d*)$/,g=Object.prototype,m=g.hasOwnProperty,w=g.toString,j=g.propertyIsEnumerable,I=!j.call({valueOf:1},"valueOf"),O=function(t){return function(t){return null==t?void 0:t.length}}(),A=function(t){return d(function(e,n){var r=-1,o=n.length,i=o>1?n[o-1]:void 0,c=o>2?n[2]:void 0;for(i=t.length>3&&"function"==typeof i?(o--,i):void 0,c&&u(n[0],n[1],c)&&(i=o<3?void 0:i,o=1),e=Object(e);++r-1&&t%1==0&&t-1&&t%1==0&&t<=v}function p(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function h(t){return!!t&&"object"==typeof t}function d(t){return a(t)?r(t):o(t)}var v=9007199254740991,y="[object Arguments]",_="[object Function]",b="[object GeneratorFunction]",g=/^(?:0|[1-9]\d*)$/,m=Object.prototype,w=m.hasOwnProperty,j=m.toString,I=m.propertyIsEnumerable,O=function(t,e){return function(n){return t(e(n))}}(Object.keys,Object),A=Array.isArray;t.exports=d},function(t,e){function n(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}function r(t,e){return e=I(void 0===e?t.length-1:e,0),function(){for(var r=arguments,o=-1,i=I(r.length-e,0),u=Array(i);++o0&&(this._timeoutTimer=setTimeout(function(){this.receiveEvent(s.TIMEOUT),this.receiveResponse(a,!0)}.bind(this),this.option.timeout))},l.prototype._clearTimeout=function(){clearTimeout(this._timeoutTimer)},l.prototype._handleMsg=function(t){var e={};return Object.keys(t).forEach(function(n){var o=t[n];"function"==typeof o&&"on"===n.slice(0,2)?this.callbacks[n]=o:e[n]=r(o)}.bind(this)),e},l.prototype.getPayload=function(){return{msgId:this.id,containerId:this.containerId,methodName:this.methodName,body:this.plainMsg,type:"request"}},l.prototype.receiveEvent=function(t,e){if(this.isFinish&&t!==s.FINISH)return!1;t!==s.FINISH&&t!==s.TIMEOUT&&this._initTimeout(),Array.isArray(this._eventsHandle[t])&&this._eventsHandle[t].forEach(function(t){try{t(e)}catch(t){console.error(e)}});var n="on"+t.charAt(0).toUpperCase()+t.slice(1);return this.callbacks[n]&&this.callbacks[n](e),!0},l.prototype.addEventListener=function(t,e){if(!t||"function"!=typeof e)throw"eventName is null or handle is not a function, addEventListener fail";Array.isArray(this._eventsHandle[t])||(this._eventsHandle[t]=[]),this._eventsHandle[t].push(e)},l.prototype.removeEventListener=function(t,e){if(!t||!e)throw"eventName is null or handle is null, invoke removeEventListener fail";if(Array.isArray(this._eventsHandle[t])){var n=this._eventsHandle[t].indexOf(e);-1!==n&&this._eventsHandle[t].splice(n,1)}},l.prototype.receiveResponse=function(t,e){if(!0===this.isFinish)return!1;this._clearTimeout();var e=!!e;return e?this._p._reject(t):this._p._resolve(t),setTimeout(function(){this.receiveEvent(s.FINISH)}.bind(this),0),this.isFinish=!0,!0},t.exports=l},204:function(t,e,n){"use strict";var r=function(t,e,n){if(this._msgId=n.msgId,this.frameWindow=t,this.methodName=n.methodName,this.clientOrigin=e,this.containerId=n.containerId,this.params=n.body,!this._msgId)throw"msgId not exist";if(!this.frameWindow)throw"frameWindow not exist";if(!this.methodName)throw"methodName not exits";if(!this.clientOrigin)throw"clientOrigin not exist";this.hasResponded=!1};r.prototype.respond=function(t,e){var e=!!e;if(!0!==this.hasResponded){var n={type:"response",success:!e,body:t,msgId:this._msgId};this.frameWindow.postMessage(n,this.clientOrigin),this.hasResponded=!0}},r.prototype.emit=function(t,e){var n={type:"event",eventName:t,body:e,msgId:this._msgId};this.frameWindow.postMessage(n,this.clientOrigin)},t.exports=r},205:function(t,e,n){"use strict";t.exports={SYS_EVENT:"SYS_openAPIContainerInitEvent",SYS_INIT:"SYS_openAPIContainerInit"}},4:function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},714:function(t,e,n){(function(t,n){function r(t,e){return t.set(e[0],e[1]),t}function o(t,e){return t.add(e),t}function i(t,e){for(var n=-1,r=t.length;++n-1}function O(t,e){var n=this.__data__,r=W(n,t);return r<0?n.push([t,e]):n[r][1]=e,this}function x(t){var e=-1,n=t?t.length:0;for(this.clear();++e-1&&t%1==0&&t-1&&t%1==0&&t<=Mt}function wt(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function It(t){return!!t&&"object"==typeof t}function Ot(t){return!!wt(t)&&(mt(t)||f(t)?be:ee).test(vt(t))}function xt(t){return"string"==typeof t||!Ye(t)&&It(t)&&_e.call(t)==Rt}function At(t){var e=dt(t);if(!e&&!bt(t))return V(t);var n=lt(t),r=!!n,o=n||[],i=o.length;for(var u in t)!C(t,u)||r&&("length"==u||pt(u,i))||e&&"constructor"==u||o.push(u);return o}var Et=200,St="__lodash_hash_undefined__",Mt=9007199254740991,Nt="[object Arguments]",Pt="[object Boolean]",Tt="[object Date]",kt="[object Function]",Ft="[object GeneratorFunction]",Ht="[object Map]",Lt="[object Number]",$t="[object Object]",Wt="[object RegExp]",Ut="[object Set]",Rt="[object String]",Bt="[object Symbol]",Yt="[object ArrayBuffer]",Ct="[object DataView]",Vt="[object Float32Array]",Dt="[object Float64Array]",Gt="[object Int8Array]",qt="[object Int16Array]",zt="[object Int32Array]",Jt="[object Uint8Array]",Kt="[object Uint8ClampedArray]",Qt="[object Uint16Array]",Xt="[object Uint32Array]",Zt=/[\\^$.*+?()[\]{}|]/g,te=/\w*$/,ee=/^\[object .+?Constructor\]$/,ne=/^(?:0|[1-9]\d*)$/,re={};re[Nt]=re["[object Array]"]=re[Yt]=re[Ct]=re[Pt]=re[Tt]=re[Vt]=re[Dt]=re[Gt]=re[qt]=re[zt]=re[Ht]=re[Lt]=re[$t]=re[Wt]=re[Ut]=re[Rt]=re[Bt]=re[Jt]=re[Kt]=re[Qt]=re[Xt]=!0,re["[object Error]"]=re[kt]=re["[object WeakMap]"]=!1;var oe={function:!0,object:!0},ie=oe[typeof e]&&e&&!e.nodeType?e:void 0,ue=oe[typeof t]&&t&&!t.nodeType?t:void 0,ce=ue&&ue.exports===ie?ie:void 0,ae=s(ie&&ue&&"object"==typeof n&&n),se=s(oe[typeof self]&&self),fe=s(oe[typeof window]&&window),le=s(oe[typeof this]&&this),pe=ae||fe!==(le&&le.window)&&fe||se||le||Function("return this")(),he=Array.prototype,de=Object.prototype,ve=Function.prototype.toString,ye=de.hasOwnProperty,_e=de.toString,be=RegExp("^"+ve.call(ye).replace(Zt,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),ge=ce?pe.Buffer:void 0,me=pe.Symbol,je=pe.Uint8Array,we=Object.getOwnPropertySymbols,Ie=Object.create,Oe=de.propertyIsEnumerable,xe=he.splice,Ae=Object.getPrototypeOf,Ee=Object.keys,Se=ot(pe,"DataView"),Me=ot(pe,"Map"),Ne=ot(pe,"Promise"),Pe=ot(pe,"Set"),Te=ot(pe,"WeakMap"),ke=ot(Object,"create"),Fe=vt(Se),He=vt(Me),Le=vt(Ne),$e=vt(Pe),We=vt(Te),Ue=me?me.prototype:void 0,Re=Ue?Ue.valueOf:void 0;h.prototype.clear=d,h.prototype.delete=v,h.prototype.get=y,h.prototype.has=_,h.prototype.set=b,g.prototype.clear=m,g.prototype.delete=j,g.prototype.get=w,g.prototype.has=I,g.prototype.set=O,x.prototype.clear=A,x.prototype.delete=E,x.prototype.get=S,x.prototype.has=M,x.prototype.set=N,P.prototype.clear=T,P.prototype.delete=k,P.prototype.get=F,P.prototype.has=H,P.prototype.set=L;var Be=function(t){return function(t){return null==t?void 0:t.length}}();we||(ut=function(){return[]}),(Se&&ct(new Se(new ArrayBuffer(1)))!=Ct||Me&&ct(new Me)!=Ht||Ne&&"[object Promise]"!=ct(Ne.resolve())||Pe&&ct(new Pe)!=Ut||Te&&"[object WeakMap]"!=ct(new Te))&&(ct=function(t){var e=_e.call(t),n=e==$t?t.constructor:void 0,r=n?vt(n):void 0;if(r)switch(r){case Fe:return Ct;case He:return Ht;case Le:return"[object Promise]";case $e:return Ut;case We:return"[object WeakMap]"}return e});var Ye=Array.isArray,Ce=ge?function(t){return t instanceof ge}:function(t){return function(){return!1}}();t.exports=R}).call(e,n(719)(t),n(4))},715:function(t,e,n){function r(t,e,n){var r=t[e];m.call(t,e)&&a(r,n)&&(void 0!==n||e in t)||(t[e]=n)}function o(t,e,n,o){n||(n={});for(var i=-1,u=e.length;++i-1&&t%1==0&&t-1&&t%1==0&&t<=v}function p(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}var h=n(717),d=n(718),v=9007199254740991,y="[object Function]",_="[object GeneratorFunction]",b=/^(?:0|[1-9]\d*)$/,g=Object.prototype,m=g.hasOwnProperty,j=g.toString,w=g.propertyIsEnumerable,I=!w.call({valueOf:1},"valueOf"),O=function(t){return function(t){return null==t?void 0:t.length}}(),x=function(t){return d(function(e,n){var r=-1,o=n.length,i=o>1?n[o-1]:void 0,c=o>2?n[2]:void 0;for(i=t.length>3&&"function"==typeof i?(o--,i):void 0,c&&u(n[0],n[1],c)&&(i=o<3?void 0:i,o=1),e=Object(e);++r-1&&t%1==0&&t-1&&t%1==0&&t<=v}function p(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function h(t){return!!t&&"object"==typeof t}function d(t){return a(t)?r(t):o(t)}var v=9007199254740991,y="[object Arguments]",_="[object Function]",b="[object GeneratorFunction]",g=/^(?:0|[1-9]\d*)$/,m=Object.prototype,j=m.hasOwnProperty,w=m.toString,I=m.propertyIsEnumerable,O=function(t,e){return function(n){return t(e(n))}}(Object.keys,Object),x=Array.isArray;t.exports=d},718:function(t,e){function n(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}function r(t,e){return e=I(void 0===e?t.length-1:e,0),function(){for(var r=arguments,o=-1,i=I(r.length-e,0),u=Array(i);++o Promise; - protected configJsApiList: string[]; - protected hadConfig: boolean; - protected isReady: undefined | boolean; - protected devConfig: IDevConfigParams; - protected env: IENV; - protected invokeAPIConfigMapByMethod: IInvokeAPIConfigMapByMethod; - protected p: any; - protected config$: Promise; - private bridgeInitFnPromise; - private exportSdk; - private apiHandler; - private platformConfigMap; - private isBridgeDrity; - constructor(env: IENV); - getExportSdk: () => IUNCore; - setAPI: (method: string, config: IInvokeAPIConfigMap) => void; - setPlatform: (core: IPlatformConfig) => void; - getPlatformConfigMap: () => IConfigCoreMap; - deleteApiConfig: (method: string, platform: string) => void; - /** - * 配置中间件,最晚加入的中间件最先被调用,并最后返回 - * @param fn 中间件函数 - * @remark - * context 中携带接口请求的参数和传递中间变量 - * 1. 总是存在的字段代表入口参数,可以读取,请勿修改 - * 2. 可选的字段代表内部中间件可能产生的中间变量,请勿依赖和改动 - * 3. 尽可能不要使用 context 传递中间变量 - * - * next 是一个异步函数,代表下一个中间件,Promise 的结果代表调用的结果。 - * 同理,当前中间件需要返回内容(or 抛出异常)作为结果,不可不返回任何内容。 - * - * 若需要获取 sdk 的 protected 字段,可以参考 src/lib/sdk/middlewares/ 目录 - * 下的内部中间件的函数 this 参数声明,使用时记得通过 fn.bind(sdk) 绑定 this 变量 - */ - useApiMiddleware(fn: IApiMiddlewareFn): void; - invokeAPI: (method: string, params?: any, isAuthApi?: boolean) => Promise; - private withDefaultEvent; - private initApiMiddleware; -} diff --git a/node_modules/dingtalk-jsapi/lib/sdk/index.js b/node_modules/dingtalk-jsapi/lib/sdk/index.js deleted file mode 100644 index 21d57d42..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/index.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function getTargetApiConfigVS(e,i){var t=e&&e.vs;return"object"==typeof t&&i.platformSub?t[i.platformSub]:"string"==typeof t?t:void 0}var __assign=this&&this.__assign||function(){return __assign=Object.assign||function(e){for(var i,t=1,n=arguments.length;t; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/bridge.js b/node_modules/dingtalk-jsapi/lib/sdk/middlewares/bridge.js deleted file mode 100644 index 81f993e8..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/bridge.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function bridge(e){return __awaiter(this,void 0,void 0,function(){var t,n,r,o;return __generator(this,function(i){return t=e.invokeName,n=e.method,r=e.callParams,o=e.JSBridge,o?[2,o(t||n,r)]:[2,this.bridgeInitFn().then(function(e){return e(t||n,r)})]})})}var __awaiter=this&&this.__awaiter||function(e,t,n,r){function o(e){return e instanceof n?e:new n(function(t){t(e)})}return new(n||(n=Promise))(function(n,i){function a(e){try{c(r.next(e))}catch(e){i(e)}}function u(e){try{c(r.throw(e))}catch(e){i(e)}}function c(e){e.done?n(e.value):o(e.value).then(a,u)}c((r=r.apply(e,t||[])).next())})},__generator=this&&this.__generator||function(e,t){function n(e){return function(t){return r([e,t])}}function r(n){if(o)throw new TypeError("Generator is already executing.");for(;c;)try{if(o=1,i&&(a=2&n[0]?i.return:n[0]?i.throw||((a=i.return)&&a.call(i),0):i.next)&&!(a=a.call(i,n[1])).done)return a;switch(i=0,a&&(n=[2&n[0],a.value]),n[0]){case 0:case 1:a=n;break;case 4:return c.label++,{value:n[1],done:!1};case 5:c.label++,i=n[1],n=[0];continue;case 7:n=c.ops.pop(),c.trys.pop();continue;default:if(a=c.trys,!(a=a.length>0&&a[a.length-1])&&(6===n[0]||2===n[0])){c=0;continue}if(3===n[0]&&(!a||n[1]>a[0]&&n[1]; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/checkConfig.js b/node_modules/dingtalk-jsapi/lib/sdk/middlewares/checkConfig.js deleted file mode 100644 index 3731e36b..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/checkConfig.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function checkConfig(e,r){return __awaiter(this,void 0,void 0,function(){var t,o,n,i,a,a;return __generator(this,function(c){return!1===this.devConfig.isAuthApi&&(e.isAuthApi=!1),t=e.isAuthApi,o=e.method,n=this.invokeAPIConfigMapByMethod[o],n||!t?(i=void 0,n&&(i=n[this.env.platform]),e.apiConfig=i,i||!t?[2,r()]:(a=log_1.formatLog(log_1.diagnosticMessageMap.call_api_support_platform_error,o,this.env.platform),[2,Promise.reject({errorCode:log_1.diagnosticMessageMap.call_api_support_platform_error.code,errorMessage:a})])):(a=log_1.formatLog(log_1.diagnosticMessageMap.call_api_config_platform_error,this.env.platform),[2,Promise.reject({errorCode:log_1.diagnosticMessageMap.call_api_config_platform_error.code,errorMessage:a})])})})}var __awaiter=this&&this.__awaiter||function(e,r,t,o){function n(e){return e instanceof t?e:new t(function(r){r(e)})}return new(t||(t=Promise))(function(t,i){function a(e){try{l(o.next(e))}catch(e){i(e)}}function c(e){try{l(o.throw(e))}catch(e){i(e)}}function l(e){e.done?t(e.value):n(e.value).then(a,c)}l((o=o.apply(e,r||[])).next())})},__generator=this&&this.__generator||function(e,r){function t(e){return function(r){return o([e,r])}}function o(t){if(n)throw new TypeError("Generator is already executing.");for(;l;)try{if(n=1,i&&(a=2&t[0]?i.return:t[0]?i.throw||((a=i.return)&&a.call(i),0):i.next)&&!(a=a.call(i,t[1])).done)return a;switch(i=0,a&&(t=[2&t[0],a.value]),t[0]){case 0:case 1:a=t;break;case 4:return l.label++,{value:t[1],done:!1};case 5:l.label++,i=t[1],t=[0];continue;case 7:t=l.ops.pop(),l.trys.pop();continue;default:if(a=l.trys,!(a=a.length>0&&a[a.length-1])&&(6===t[0]||2===t[0])){l=0;continue}if(3===t[0]&&(!a||t[1]>a[0]&&t[1]; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/dealParamsAndResult.js b/node_modules/dingtalk-jsapi/lib/sdk/middlewares/dealParamsAndResult.js deleted file mode 100644 index d661b95b..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/dealParamsAndResult.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function dealParamsAndResult(e,n){return __awaiter(this,void 0,void 0,function(){var t,r,i,a,s,o,u,c,l,f=this;return __generator(this,function(d){switch(d.label){case 0:return t=e.method,r=e.params,i=e.apiConfig,a=this.devConfig.forceEnableDealApiFnMap&&this.devConfig.forceEnableDealApiFnMap[t]&&!0===this.devConfig.forceEnableDealApiFnMap[t](r),s=!a&&(!0===this.devConfig.isDisableDeal||this.devConfig.disbaleDealApiWhiteList&&-1!==this.devConfig.disbaleDealApiWhiteList.indexOf(t)),o={},!s&&i&&i.paramsDeal&&sdkLib_1.isFunction(i.paramsDeal)?[4,i.paramsDeal(r)]:[3,2];case 1:return o=d.sent(),[3,3];case 2:o=Object.assign({},r),d.label=3;case 3:return u=function(e){return __awaiter(f,void 0,void 0,function(){return __generator(this,function(n){return!s&&i&&i.resultDeal&&sdkLib_1.isFunction(i.resultDeal)?[2,i.resultDeal(e)]:[2,e]})})},sdkLib_1.isFunction(o.onSuccess)&&(c=o.onSuccess,o.onSuccess=function(e){return __awaiter(f,void 0,void 0,function(){var n;return __generator(this,function(t){switch(t.label){case 0:return n=c,[4,u(e)];case 1:return n.apply(void 0,[t.sent()]),[2]}})})}),sdkLib_1.isFunction(o.success)&&(l=o.success,o.success=function(e){return __awaiter(f,void 0,void 0,function(){var n;return __generator(this,function(t){switch(t.label){case 0:return n=l,[4,u(e)];case 1:return n.apply(void 0,[t.sent()]),[2]}})})}),Object.assign(e,{callParams:o,invokeName:null===i||void 0===i?void 0:i.invokeName}),[2,n().then(u)]}})})}var __awaiter=this&&this.__awaiter||function(e,n,t,r){function i(e){return e instanceof t?e:new t(function(n){n(e)})}return new(t||(t=Promise))(function(t,a){function s(e){try{u(r.next(e))}catch(e){a(e)}}function o(e){try{u(r.throw(e))}catch(e){a(e)}}function u(e){e.done?t(e.value):i(e.value).then(s,o)}u((r=r.apply(e,n||[])).next())})},__generator=this&&this.__generator||function(e,n){function t(e){return function(n){return r([e,n])}}function r(t){if(i)throw new TypeError("Generator is already executing.");for(;u;)try{if(i=1,a&&(s=2&t[0]?a.return:t[0]?a.throw||((s=a.return)&&s.call(a),0):a.next)&&!(s=s.call(a,t[1])).done)return s;switch(a=0,s&&(t=[2&t[0],s.value]),t[0]){case 0:case 1:s=t;break;case 4:return u.label++,{value:t[1],done:!1};case 5:u.label++,a=t[1],t=[0];continue;case 7:t=u.ops.pop(),u.trys.pop();continue;default:if(s=u.trys,!(s=s.length>0&&s[s.length-1])&&(6===t[0]||2===t[0])){u=0;continue}if(3===t[0]&&(!s||t[1]>s[0]&&t[1]; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/hookBeforeAndAfter.js b/node_modules/dingtalk-jsapi/lib/sdk/middlewares/hookBeforeAndAfter.js deleted file mode 100644 index e1835355..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/hookBeforeAndAfter.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function hookBeforeAndAfter(e,t){return __awaiter(this,void 0,void 0,function(){var r,o,n,a,i,s,c,l,u;return __generator(this,function(f){switch(f.label){case 0:if(r=e.method,o=e.params,n=+new Date,a=n+"_"+Math.floor(1e3*Math.random()),this.devConfig.onBeforeInvokeAPI)try{this.devConfig.onBeforeInvokeAPI({invokeId:a,method:r,params:o,startTime:n})}catch(e){log_1.formatLog(log_1.diagnosticMessageMap.call_api_on_before_error,e.toString())}c=!0,f.label=1;case 1:return f.trys.push([1,3,,4]),[4,t()];case 2:return i=f.sent(),[3,4];case 3:return l=f.sent(),s=l,c=!1,[3,4];case 4:if(u=c?i:s,this.devConfig.onAfterInvokeAPI)try{this.devConfig.onAfterInvokeAPI({invokeId:a,method:r,params:o,payload:u,startTime:n,duration:+new Date-n,isSuccess:c})}catch(e){log_1.formatLog(log_1.diagnosticMessageMap.call_api_on_after_error,e.toString())}return[2,c?Promise.resolve(u):Promise.reject(u)]}})})}var __awaiter=this&&this.__awaiter||function(e,t,r,o){function n(e){return e instanceof r?e:new r(function(t){t(e)})}return new(r||(r=Promise))(function(r,a){function i(e){try{c(o.next(e))}catch(e){a(e)}}function s(e){try{c(o.throw(e))}catch(e){a(e)}}function c(e){e.done?r(e.value):n(e.value).then(i,s)}c((o=o.apply(e,t||[])).next())})},__generator=this&&this.__generator||function(e,t){function r(e){return function(t){return o([e,t])}}function o(r){if(n)throw new TypeError("Generator is already executing.");for(;c;)try{if(n=1,a&&(i=2&r[0]?a.return:r[0]?a.throw||((i=a.return)&&i.call(a),0):a.next)&&!(i=i.call(a,r[1])).done)return i;switch(a=0,i&&(r=[2&r[0],i.value]),r[0]){case 0:case 1:i=r;break;case 4:return c.label++,{value:r[1],done:!1};case 5:c.label++,a=r[1],r=[0];continue;case 7:r=c.ops.pop(),c.trys.pop();continue;default:if(i=c.trys,!(i=i.length>0&&i[i.length-1])&&(6===r[0]||2===r[0])){c=0;continue}if(3===r[0]&&(!i||r[1]>i[0]&&r[1] void; - start: (context: IApiMiddlewareContext) => Promise; -} -export * from './bridge'; -export * from './retry'; -export * from './dealParamsAndResult'; -export * from './checkConfig'; -export * from './initBridge'; -export * from './hookBeforeAndAfter'; -export * from './simpleLogger'; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/index.js b/node_modules/dingtalk-jsapi/lib/sdk/middlewares/index.js deleted file mode 100644 index b4e17f53..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/index.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var __createBinding=this&&this.__createBinding||(Object.create?function(e,r,t,i){void 0===i&&(i=t),Object.defineProperty(e,i,{enumerable:!0,get:function(){return r[t]}})}:function(e,r,t,i){void 0===i&&(i=t),e[i]=r[t]}),__exportStar=this&&this.__exportStar||function(e,r){for(var t in e)"default"===t||r.hasOwnProperty(t)||__createBinding(r,e,t)};Object.defineProperty(exports,"__esModule",{value:!0}),exports.ApiHandler=void 0;var ApiHandler=function(){function e(){var e=this;this.middlewares=[],this.use=function(r){e.middlewares.push(r)},this.start=function(r){var t=e.middlewares.slice().reverse(),i=function(e){return e; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/initBridge.js b/node_modules/dingtalk-jsapi/lib/sdk/middlewares/initBridge.js deleted file mode 100644 index 81af510a..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/initBridge.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function initBridge(t,e){return __awaiter(this,void 0,void 0,function(){return __generator(this,function(n){return[2,this.bridgeInitFn().then(function(n){return t.JSBridge=n,e()})]})})}var __awaiter=this&&this.__awaiter||function(t,e,n,r){function i(t){return t instanceof n?t:new n(function(e){e(t)})}return new(n||(n=Promise))(function(n,o){function u(t){try{c(r.next(t))}catch(t){o(t)}}function a(t){try{c(r.throw(t))}catch(t){o(t)}}function c(t){t.done?n(t.value):i(t.value).then(u,a)}c((r=r.apply(t,e||[])).next())})},__generator=this&&this.__generator||function(t,e){function n(t){return function(e){return r([t,e])}}function r(n){if(i)throw new TypeError("Generator is already executing.");for(;c;)try{if(i=1,o&&(u=2&n[0]?o.return:n[0]?o.throw||((u=o.return)&&u.call(o),0):o.next)&&!(u=u.call(o,n[1])).done)return u;switch(o=0,u&&(n=[2&n[0],u.value]),n[0]){case 0:case 1:u=n;break;case 4:return c.label++,{value:n[1],done:!1};case 5:c.label++,o=n[1],n=[0];continue;case 7:n=c.ops.pop(),c.trys.pop();continue;default:if(u=c.trys,!(u=u.length>0&&u[u.length-1])&&(6===n[0]||2===n[0])){c=0;continue}if(3===n[0]&&(!u||n[1]>u[0]&&n[1]; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/retry.js b/node_modules/dingtalk-jsapi/lib/sdk/middlewares/retry.js deleted file mode 100644 index 0875c254..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/retry.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function retry(e,t){return __awaiter(this,void 0,void 0,function(){var r,n,i,o,s,a,u,c,f,l,h;return __generator(this,function(p){switch(p.label){case 0:return p.trys.push([0,2,,3]),[4,t()];case 1:return[2,p.sent()];case 2:return r=p.sent(),n=e.method,i=e.isAuthApi,o=e.apiConfig,s=this.hadConfig&&void 0===this.isReady&&-1!==this.configJsApiList.indexOf(n),a="object"==typeof r&&"string"==typeof r.errorCode&&r.errorCode===sdkLib_1.ERROR_CODE.no_permission,u="object"==typeof r&&"string"==typeof r.errorCode&&r.errorCode===sdkLib_1.ERROR_CODE.cancel,c=__1.getTargetApiConfigVS(o,this.env),f=c&&this.env.version&&sdkLib_1.compareVersion(this.env.version,c),l=(this.env.platform===sdkLib_1.ENV_ENUM.ios||this.env.platform===sdkLib_1.ENV_ENUM.android)&&s&&a,h=this.env.platform===sdkLib_1.ENV_ENUM.pc&&s&&(f&&!u&&i||a),l||h?[2,this.config$.then(function(){return t()})]:[2,Promise.reject(r)];case 3:return[2]}})})}var __awaiter=this&&this.__awaiter||function(e,t,r,n){function i(e){return e instanceof r?e:new r(function(t){t(e)})}return new(r||(r=Promise))(function(r,o){function s(e){try{u(n.next(e))}catch(e){o(e)}}function a(e){try{u(n.throw(e))}catch(e){o(e)}}function u(e){e.done?r(e.value):i(e.value).then(s,a)}u((n=n.apply(e,t||[])).next())})},__generator=this&&this.__generator||function(e,t){function r(e){return function(t){return n([e,t])}}function n(r){if(i)throw new TypeError("Generator is already executing.");for(;u;)try{if(i=1,o&&(s=2&r[0]?o.return:r[0]?o.throw||((s=o.return)&&s.call(o),0):o.next)&&!(s=s.call(o,r[1])).done)return s;switch(o=0,s&&(r=[2&r[0],s.value]),r[0]){case 0:case 1:s=r;break;case 4:return u.label++,{value:r[1],done:!1};case 5:u.label++,o=r[1],r=[0];continue;case 7:r=u.ops.pop(),u.trys.pop();continue;default:if(s=u.trys,!(s=s.length>0&&s[s.length-1])&&(6===r[0]||2===r[0])){u=0;continue}if(3===r[0]&&(!s||r[1]>s[0]&&r[1]; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/simpleLogger.js b/node_modules/dingtalk-jsapi/lib/sdk/middlewares/simpleLogger.js deleted file mode 100644 index d62eacdd..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/middlewares/simpleLogger.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function simpleLogger(e,t){return __awaiter(this,void 0,void 0,function(){var r,n,o,i,a,u,s,l,c;return __generator(this,function(f){switch(f.label){case 0:r=e.method,n=e.params,a=!0,f.label=1;case 1:return f.trys.push([1,3,,4]),[4,t()];case 2:return o=f.sent(),[3,4];case 3:return u=f.sent(),i=u,a=!1,[3,4];case 4:return s=a?o:i,l=a?__1.LogLevel.INFO:__1.LogLevel.WARNING,c=a?"success":"fail",[2,a?Promise.resolve(s):Promise.reject(s)]}})})}var __awaiter=this&&this.__awaiter||function(e,t,r,n){function o(e){return e instanceof r?e:new r(function(t){t(e)})}return new(r||(r=Promise))(function(r,i){function a(e){try{s(n.next(e))}catch(e){i(e)}}function u(e){try{s(n.throw(e))}catch(e){i(e)}}function s(e){e.done?r(e.value):o(e.value).then(a,u)}s((n=n.apply(e,t||[])).next())})},__generator=this&&this.__generator||function(e,t){function r(e){return function(t){return n([e,t])}}function n(r){if(o)throw new TypeError("Generator is already executing.");for(;s;)try{if(o=1,i&&(a=2&r[0]?i.return:r[0]?i.throw||((a=i.return)&&a.call(i),0):i.next)&&!(a=a.call(i,r[1])).done)return a;switch(i=0,a&&(r=[2&r[0],a.value]),r[0]){case 0:case 1:a=r;break;case 4:return s.label++,{value:r[1],done:!1};case 5:s.label++,i=r[1],r=[0];continue;case 7:r=s.ops.pop(),s.trys.pop();continue;default:if(a=s.trys,!(a=a.length>0&&a[a.length-1])&&(6===r[0]||2===r[0])){s=0;continue}if(3===r[0]&&(!a||r[1]>a[0]&&r[1] { - onSuccess?(data: S): void; - onFail?(err: IErrorMessage): void; - onCancel?(err: IErrorMessage): void; -} -export declare type IJSBridge = (method: string, params: any) => Promise; -export declare type ICommonAPI = (params: S & ICallbackOption) => Promise; -export interface IInvokeAPIConfigMap { - [platform: string]: IAPIConfig | undefined; -} -export interface IAPIConfig { - /** the minSupport version about the API */ - vs: string | { - [platformSub: string]: string; - }; - invokeName?: string; - /** - * 应返回新的转换后的参数,不应直接修改传入的变量 - */ - paramsDeal?: (params: any) => any | Promise; - /** - * 应返回新的转换后的参数,不应直接修改传入的变量 - */ - resultDeal?: (res: any) => any; -} -export interface IJSBridgeMap { - [platform: string]: IJSBridge | undefined; -} -export interface IInvokeAPIConfigMapByMethod { - [method: string]: IInvokeAPIConfigMap | undefined; -} -export declare function isFunction(param: any): boolean; -/** - * when origin >= target ,return true - * 关于为什么没有跟otherApi保持一致,主要是当初因为otherApi里的方法是复制旧版jsapi的,有一定缺陷 - * 但是担心线上环境利用了缺陷来做逻辑,所以没有保持一致使用同一个方法 - * TODO: 但其实另起方法太冗余,以及丑陋,后续还是需要整个统一掉 - * @param origin - * @param target - */ -export declare function compareVersion(origin: string, target: string): boolean; -/** - * 客户端错误码 - */ -export declare enum ERROR_CODE { - cancel = "-1", - not_exist = "1", - no_permission = "7" -} -export declare enum ENV_ENUM { - pc = "pc", - android = "android", - ios = "ios", - gdtPc = "gdtPc", - /** - * gdt Android mpaas 容器 - */ - gdtAndroid = "gdtAndroid", - /** - * gdt Ios mpaas 容器 - */ - gdtIos = "gdtIos", - /** - * gdt Android 标准 容器 - */ - gdtStandardAndroid = "gdtStandardAndroid", - /** - * gdt Ios 标准 容器 - */ - gdtStandardIos = "gdtStandardIos", - notInDingTalk = "notInDingTalk", - windows = "windows", - mac = "mac", - harmony = "harmony" -} -export declare enum ENV_ENUM_SUB { - mac = "mac", - win = "win", - noSub = "noSub" -} -export declare enum APP_TYPE { - WEB = "WEB", - MINI_APP = "MINI_APP", - WEEX = "WEEX", - WEBVIEW_IN_MINIAPP = "WEBVIEW_IN_MINIAPP", - WEEX_WIDGET = "WEEX_WIDGET" -} -export interface IENV { - /** current platform (iOS or Android or PC or NotInDingTalk) */ - platform: ENV_ENUM; - /** current sub platform (support mac & win) */ - platformSub?: ENV_ENUM_SUB; - /** current client version */ - version?: string; - /** @deprecated recommend use navigator.language to get current language */ - language?: string; - /** current appType (web or eapp or weex) */ - appType: APP_TYPE; - [key: string]: any; -} -export interface IConfigParams { - jsApiList?: string[]; - [key: string]: any; -} -export interface IDevConfigParams { - /** 是否开启调试模式 */ - debug?: boolean; - /** 是否校验Api是否支持等 */ - isAuthApi?: boolean; - /** 废除兼容性处理 */ - isDisableDeal?: boolean; - /** 部分接口废除兼容性处理 */ - disbaleDealApiWhiteList?: string[]; - /** 接口层面开启兼容性处理,优先级大于废除逻辑 */ - forceEnableDealApiFnMap?: { - [apiName: string]: (params: any) => boolean; - }; - onBeforeInvokeAPI?: (data: { - invokeId: string; - method: string; - startTime: number; - params: any; - }) => void; - onAfterInvokeAPI?: (data: { - invokeId: string; - method: string; - params: any; - payload: any; - duration: number; - startTime: number; - isSuccess: boolean; - }) => void; - extraPlatform?: IPlatformConfig; -} -export interface IEvent { - preventDefault: () => void; -} -export declare enum LogLevel { - INFO = 1, - WARNING = 2, - ERROR = 3 -} -export interface ILog { - level: LogLevel; - text: any[]; - time: Date; -} -export declare type ILogFn = (option: ILog) => void; -export interface IPlatformConfig { - platform: string; - authMethod: string; - authParamsDeal?: (params: object) => object; - bridgeInit: () => Promise; - event?: { - on: (type: string, handler: (e: IEvent) => void) => void; - off: (type: string, handler: (e: IEvent) => void) => void; - }; -} -export interface ICheckJsApiParams { - jsApiList?: string[]; -} -export interface ICheckJsApiResult { - [jsApi: string]: boolean; -} -export declare type ICheckJsApiFn = (params: ICheckJsApiParams) => Promise; -export interface IUNCore { - /** 当config权限校验成功时触发readyCallback */ - ready: (readyCallback: () => void) => void; - /** 当config权限校验成功时触发readyCallback */ - error: (callback: (err: any) => void) => void; - /** 配置权限校验参数, 即可启动校验,启动校验成功后可以让本没有权限的接口获取权限,如果你的域名是白名单或者调用的接口不需要校验,可不用调用此接口 */ - config: (configParams: IConfigParams) => void; - /** 配置开发选项 */ - devConfig: (devConfigParams: IDevConfigParams) => void; - /** 推荐使用on绑定方法, 替代原本document的方式 */ - on: (methodName: string, listener: (e: IEvent | any) => void) => void; - /** 推荐使用off解绑方法,替代document的方式 */ - off: (methodName: string, listener: (e: IEvent | any) => void) => void; - /** 当前运行时的环境变量 */ - env: IENV; - /** - * 提供检测jsapi能力的接口 - * @description 本接口原理依赖于 JSAPI 的静态支持版本数据,故存在一定的误差 - * @deprecated 移动端上推荐使用 plugin/checkJsApi.ts 来检测真实环境下的支持情况 - */ - checkJsApi: ICheckJsApiFn; - /** 直接通过method名调用jsapi,新的接口基本不存在多端不一致的问题,可以使用此接口代替。注意:但如果直接调用旧的jsapi接口,且没有引入对应接口库,将不会对入参出参进行兼容操作 */ - _invoke: (method: string, params?: any) => Promise; -} -export interface IConfigCoreMap { - [platform: string]: IPlatformConfig | undefined; -} -export interface IApiMiddlewareContext { - method: string; - params: any; - isAuthApi: boolean; - invokeName?: string; - callParams?: any; - JSBridge?: IJSBridge; - apiConfig?: IAPIConfig; -} -export declare type IApiMiddlewareNextFn = () => Promise; -export declare type IApiMiddlewareFn = (context: IApiMiddlewareContext, next: IApiMiddlewareNextFn) => Promise; diff --git a/node_modules/dingtalk-jsapi/lib/sdk/sdkLib.js b/node_modules/dingtalk-jsapi/lib/sdk/sdkLib.js deleted file mode 100644 index 1c1fd271..00000000 --- a/node_modules/dingtalk-jsapi/lib/sdk/sdkLib.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function isFunction(o){return"function"==typeof o}function compareVersion(o,n){function t(o){return parseInt(o,10)||0}for(var r=o.split(".").map(t),e=n.split(".").map(t),E=0;Ee[E])return!0}return!0}Object.defineProperty(exports,"__esModule",{value:!0}),exports.LogLevel=exports.APP_TYPE=exports.ENV_ENUM_SUB=exports.ENV_ENUM=exports.ERROR_CODE=exports.compareVersion=exports.isFunction=void 0,exports.isFunction=isFunction,exports.compareVersion=compareVersion;var ERROR_CODE;!function(o){o.cancel="-1",o.not_exist="1",o.no_permission="7"}(ERROR_CODE=exports.ERROR_CODE||(exports.ERROR_CODE={}));var ENV_ENUM;!function(o){o.pc="pc",o.android="android",o.ios="ios",o.gdtPc="gdtPc",o.gdtAndroid="gdtAndroid",o.gdtIos="gdtIos",o.gdtStandardAndroid="gdtStandardAndroid",o.gdtStandardIos="gdtStandardIos",o.notInDingTalk="notInDingTalk",o.windows="windows",o.mac="mac",o.harmony="harmony"}(ENV_ENUM=exports.ENV_ENUM||(exports.ENV_ENUM={}));var ENV_ENUM_SUB;!function(o){o.mac="mac",o.win="win",o.noSub="noSub"}(ENV_ENUM_SUB=exports.ENV_ENUM_SUB||(exports.ENV_ENUM_SUB={}));var APP_TYPE;!function(o){o.WEB="WEB",o.MINI_APP="MINI_APP",o.WEEX="WEEX",o.WEBVIEW_IN_MINIAPP="WEBVIEW_IN_MINIAPP",o.WEEX_WIDGET="WEEX_WIDGET"}(APP_TYPE=exports.APP_TYPE||(exports.APP_TYPE={}));var LogLevel;!function(o){o[o.INFO=1]="INFO",o[o.WARNING=2]="WARNING",o[o.ERROR=3]="ERROR"}(LogLevel=exports.LogLevel||(exports.LogLevel={})); \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/mock/index.d.ts b/node_modules/dingtalk-jsapi/mock/index.d.ts deleted file mode 100644 index 042c9441..00000000 --- a/node_modules/dingtalk-jsapi/mock/index.d.ts +++ /dev/null @@ -1,24 +0,0 @@ -import '../lib/polyfills/objectKeys'; -interface IMockData { - payload: object; - isSuccess: boolean; -} -declare type IMockFunction = (params: any) => Promise; -/** - * 一旦调用 init,当前环境下的接口调用将会走 mock 的数据(可选择部分或者全部) - * @memberof MockApi - */ -export declare const init: (config?: { - /** 初始化时配置的api,等同于 batchAppendMockApiResult */ - mockApiMap?: { - [method: string]: IMockData | IMockFunction; - } | undefined; - /** 只有当配置了api才会走 mock */ - isOnlyMockWhenConfig?: boolean | undefined; -} | undefined) => void; -export declare const emitEvent: (eventName: string) => void; -export declare const appendMockApiResult: (method: string, result: IMockFunction | IMockData, disableMockFilter?: ((params: any) => boolean) | undefined) => void; -export declare const batchAppendMockApiResult: (mockApiMap: { - [method: string]: IMockData | IMockFunction; -}) => void; -export {}; diff --git a/node_modules/dingtalk-jsapi/mock/index.js b/node_modules/dingtalk-jsapi/mock/index.js deleted file mode 100644 index b6ee9cc3..00000000 --- a/node_modules/dingtalk-jsapi/mock/index.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.batchAppendMockApiResult=exports.appendMockApiResult=exports.emitEvent=exports.init=void 0;var ddSdk_1=require("../lib/ddSdk");require("../lib/polyfills/objectKeys");var mockData={},eventMap={},disableMockApiFilterMap={};exports.init=function(e){var t=ddSdk_1.ddSdk.getExportSdk(),o=ddSdk_1.ddSdk.getPlatformConfigMap()[t.env.platform];t.devConfig({isAuthApi:!1}),ddSdk_1.ddSdk.setPlatform({platform:t.env.platform,authMethod:o&&o.authMethod||"config",bridgeInit:function(){return Promise.resolve(function(t,n){return!mockData[t]||disableMockApiFilterMap[t]&&!1!==disableMockApiFilterMap[t](n)?e&&e.isOnlyMockWhenConfig&&o?o.bridgeInit().then(function(e){return e(t,n)}):Promise.reject({errorMessage:"Not found mock data, current method: "+t,errorCode:"991"}):mockData[t](n).then(function(e){return"function"==typeof n.success?n.success(e):"function"==typeof n.onSuccess&&n.onSuccess(e),Promise.resolve(e)}).catch(function(e){return"function"==typeof n.fail?n.fail(e):"function"==typeof n.onFail&&n.onFail(e),Promise.reject(e)})})},event:{on:function(e,t){eventMap[e]?eventMap[e].push(t):eventMap[e]=[t]},off:function(e,t){var o=eventMap[e];if(o){var n=o.findIndex(function(e){return e===t});-1!==n&&o.splice(n,1)}}}}),e&&e.mockApiMap&&exports.batchAppendMockApiResult(e.mockApiMap)},exports.emitEvent=function(e){ddSdk_1.ddSdk.bridgeInitFn().then(function(){var t=eventMap[e];t&&t.forEach(function(e){e({})})})},exports.appendMockApiResult=function(e,t,o){var n=ddSdk_1.ddSdk.getExportSdk();if(o&&(disableMockApiFilterMap[e]=o),"function"==typeof t)mockData[e]=t;else{var i=t;mockData[e]=function(e){return i.isSuccess?Promise.resolve(i.payload):Promise.reject(i.payload)}}n.devConfig({disbaleDealApiWhiteList:Object.keys(mockData),forceEnableDealApiFnMap:disableMockApiFilterMap})},exports.batchAppendMockApiResult=function(e){Object.keys(e).forEach(function(t){exports.appendMockApiResult(t,e[t])})}; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/package.json b/node_modules/dingtalk-jsapi/package.json deleted file mode 100644 index 57fed107..00000000 --- a/node_modules/dingtalk-jsapi/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "dingtalk-jsapi", - "version": "3.2.8", - "description": "钉钉 模块化 多端统一 API", - "main": "./index.js", - "author": "junlong.hjl", - "license": "MIT", - "dependencies": { - "promise-polyfill": "^7.1.0" - } -} \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/platform/android.d.ts b/node_modules/dingtalk-jsapi/platform/android.d.ts deleted file mode 100644 index 36fbb510..00000000 --- a/node_modules/dingtalk-jsapi/platform/android.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -import { IPlatformConfig } from '../lib/sdk'; -export declare const platformConfig: IPlatformConfig; diff --git a/node_modules/dingtalk-jsapi/platform/android.js b/node_modules/dingtalk-jsapi/platform/android.js deleted file mode 100644 index dc087ff1..00000000 --- a/node_modules/dingtalk-jsapi/platform/android.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.platformConfig=void 0;var ddSdk_1=require("../lib/ddSdk"),env_1=require("../lib/env"),sdk_1=require("../lib/sdk"),eapp_1=require("../lib/bridge/eapp"),webviewInMiniApp_1=require("../lib/bridge/webviewInMiniApp"),h5Android_1=require("../lib/bridge/h5Android"),weex_1=require("../lib/bridge/weex"),h5Event_1=require("../lib/bridge/h5Event"),weexEvent_1=require("../lib/bridge/weexEvent"),apiMapping_1=require("../constant/apiMapping");exports.platformConfig={platform:env_1.ENV_ENUM.android,bridgeInit:function(){var e=env_1.getENV();return e.appType===sdk_1.APP_TYPE.MINI_APP?Promise.resolve(eapp_1.default):e.appType===sdk_1.APP_TYPE.WEBVIEW_IN_MINIAPP?Promise.resolve(webviewInMiniApp_1.default):e.appType===sdk_1.APP_TYPE.WEEX?weex_1.androidWeexBridge():h5Android_1.h5AndroidbridgeInit().then(function(){return h5Android_1.default})},authMethod:"runtime.permission.requestJsApis",authParamsDeal:function(e){var r=Object.assign({},e);return e.jsApiList&&(r.jsApiList=e.jsApiList.map(function(e){return apiMapping_1.default[e]?apiMapping_1.default[e]:e})),r},event:{on:function(e,r){var i=env_1.getENV();switch(i.appType){case sdk_1.APP_TYPE.WEB:case sdk_1.APP_TYPE.WEBVIEW_IN_MINIAPP:h5Event_1.on(e,r);break;case sdk_1.APP_TYPE.WEEX:weexEvent_1.on(e,r);break;default:throw new Error("Not support global event in the platfrom: "+i.appType)}},off:function(e,r){var i=env_1.getENV();switch(i.appType){case sdk_1.APP_TYPE.WEB:case sdk_1.APP_TYPE.WEBVIEW_IN_MINIAPP:h5Event_1.off(e,r);break;case sdk_1.APP_TYPE.WEEX:weexEvent_1.off(e,r);break;default:throw new Error("Not support global event in the platfrom: "+i.appType)}}}},ddSdk_1.ddSdk.setPlatform(exports.platformConfig); \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/platform/gdt/android.d.ts b/node_modules/dingtalk-jsapi/platform/gdt/android.d.ts deleted file mode 100644 index cb0ff5c3..00000000 --- a/node_modules/dingtalk-jsapi/platform/gdt/android.d.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/node_modules/dingtalk-jsapi/platform/gdt/android.js b/node_modules/dingtalk-jsapi/platform/gdt/android.js deleted file mode 100644 index 903c99a2..00000000 --- a/node_modules/dingtalk-jsapi/platform/gdt/android.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var __awaiter=this&&this.__awaiter||function(e,t,r,n){function i(e){return e instanceof r?e:new r(function(t){t(e)})}return new(r||(r=Promise))(function(r,o){function a(e){try{l(n.next(e))}catch(e){o(e)}}function u(e){try{l(n.throw(e))}catch(e){o(e)}}function l(e){e.done?r(e.value):i(e.value).then(a,u)}l((n=n.apply(e,t||[])).next())})},__generator=this&&this.__generator||function(e,t){function r(e){return function(t){return n([e,t])}}function n(r){if(i)throw new TypeError("Generator is already executing.");for(;l;)try{if(i=1,o&&(a=2&r[0]?o.return:r[0]?o.throw||((a=o.return)&&a.call(o),0):o.next)&&!(a=a.call(o,r[1])).done)return a;switch(o=0,a&&(r=[2&r[0],a.value]),r[0]){case 0:case 1:a=r;break;case 4:return l.label++,{value:r[1],done:!1};case 5:l.label++,o=r[1],r=[0];continue;case 7:r=l.ops.pop(),l.trys.pop();continue;default:if(a=l.trys,!(a=a.length>0&&a[a.length-1])&&(6===r[0]||2===r[0])){l=0;continue}if(3===r[0]&&(!a||r[1]>a[0]&&r[1]0&&a[a.length-1])&&(6===r[0]||2===r[0])){l=0;continue}if(3===r[0]&&(!a||r[1]>a[0]&&r[1]0&&a[a.length-1])&&(6===n[0]||2===n[0])){c=0;continue}if(3===n[0]&&(!a||n[1]>a[0]&&n[1]; -export {}; diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/addMembers.js b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/addMembers.js deleted file mode 100644 index 6a60f050..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/addMembers.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function addMembers(e){var o;return mobile_1._invoke("biz.util.callComponent",{componentType:"h5",params:{url:"/im/cool-app-component.html?corpId="+encodeURIComponent(null===(o=null===e||void 0===e?void 0:e.context)||void 0===o?void 0:o.corpId)+"#/add-members?params="+encodeURIComponent(JSON.stringify(e)),target:"float",title:"提示",wnId:"addMembers",panelHeight:"percent83"}})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.addMembers=void 0,require("../../entry/union");var mobile_1=require("../../entry/mobile");exports.addMembers=addMembers; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/batchInstallToGroup.d.ts b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/batchInstallToGroup.d.ts deleted file mode 100644 index ac87af93..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/batchInstallToGroup.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -import '../../entry/union'; -interface BatchInstallCoolAppArgs { - /** 酷应用 code */ - coolAppCode: string; - /** 酷应用在开放平台的身份标识 */ - clientId: string; - /** 组织id */ - corpId: string; - /** 是否安装到单聊会话 */ - isSingleChat: boolean; -} -export declare function batchInstallCoolApp(args: BatchInstallCoolAppArgs): Promise; -export {}; diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/batchInstallToGroup.js b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/batchInstallToGroup.js deleted file mode 100644 index 1d6083a8..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/batchInstallToGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function batchInstallCoolApp(e){var o=Object.assign({},e,{isBatchApi:!0});return mobile_1._invoke("biz.util.callComponent",{componentType:"h5",params:{url:"/resource-picker/"+(utils_1.isMobile?"mob":"index")+".html?scene=addCoolAppToGroup¶ms="+encodeURIComponent(JSON.stringify(o)),target:utils_1.isMobile?"":"float",title:"选择会话添加应用",wnId:"addCoolAppToGroup",panelHeight:"percent90"}})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.batchInstallCoolApp=void 0,require("../../entry/union");var mobile_1=require("../../entry/mobile"),utils_1=require("./utils");exports.batchInstallCoolApp=batchInstallCoolApp; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/createGroup.d.ts b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/createGroup.d.ts deleted file mode 100644 index 4dd42d6a..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/createGroup.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -import '../../entry/union'; -interface CreateGroupArgs { - /** 群名称 */ - title: string; - /** 群成员 id */ - memberUserIds: string[]; - /** 创建群的唯一标识符 */ - groupUniqId?: string; - /** 群的相关配置 */ - managementOptions?: { - /** 入群需验证(0:不入群验证(默认) 1:入群验证) */ - validationType: number; - /** 仅群主和管理员可atAll (0-默认所有人,1-仅群主可@all) */ - mentionAllAuthority: number; - }; - /** 酷应用身份信息 */ - context: { - /** 酷应用 code */ - coolAppCode: string; - /** 酷应用在开放平台的身份标识 */ - clientId: string; - /** 组织id */ - corpId: string; - }; -} -export declare function createGroup(args: CreateGroupArgs): Promise; -export {}; diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/createGroup.js b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/createGroup.js deleted file mode 100644 index 1d7fbf37..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/createGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function createGroup(e){var o;return union_1._invoke("biz.util.callComponent",{componentType:"h5",params:{url:"/im/cool-app-component.html?corpId="+encodeURIComponent(null===(o=null===e||void 0===e?void 0:e.context)||void 0===o?void 0:o.corpId)+"#/create-group?params="+encodeURIComponent(JSON.stringify(e)),target:"float",title:"提示",wnId:"createGroup",panelHeight:"percent83"}})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.createGroup=void 0,require("../../entry/union");var union_1=require("../../entry/union");exports.createGroup=createGroup; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/index.d.ts b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/index.d.ts deleted file mode 100644 index b5d4f3ed..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/index.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -export * from './installToGroup'; -export * from './sendMessageToGroup'; -export * from './createGroup'; -export * from './addMembers'; -export * from './sendMessageToSingleChat'; -export * from './batchInstallToGroup'; diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/index.js b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/index.js deleted file mode 100644 index 0613ce4c..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/index.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";var __createBinding=this&&this.__createBinding||(Object.create?function(e,r,t,o){void 0===o&&(o=t),Object.defineProperty(e,o,{enumerable:!0,get:function(){return r[t]}})}:function(e,r,t,o){void 0===o&&(o=t),e[o]=r[t]}),__exportStar=this&&this.__exportStar||function(e,r){for(var t in e)"default"===t||r.hasOwnProperty(t)||__createBinding(r,e,t)};Object.defineProperty(exports,"__esModule",{value:!0}),__exportStar(require("./installToGroup"),exports),__exportStar(require("./sendMessageToGroup"),exports),__exportStar(require("./createGroup"),exports),__exportStar(require("./addMembers"),exports),__exportStar(require("./sendMessageToSingleChat"),exports),__exportStar(require("./batchInstallToGroup"),exports); \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/installToGroup.d.ts b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/installToGroup.d.ts deleted file mode 100644 index 85b7b8af..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/installToGroup.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -import '../../entry/union'; -interface InstallCoolAppToGroupArgs { - /** 酷应用 code */ - coolAppCode: string; - /** 酷应用在开放平台的身份标识 */ - clientId: string; - /** 组织id */ - corpId: string; - /** 默认安装群的open id */ - openConversationIds?: string[]; -} -export declare function installCoolAppToGroup(args: InstallCoolAppToGroupArgs): Promise; -export {}; diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/installToGroup.js b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/installToGroup.js deleted file mode 100644 index 86897ad4..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/installToGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function installCoolAppToGroup(o){return mobile_1._invoke("biz.util.callComponent",{componentType:"h5",params:{url:"/resource-picker/"+(utils_1.isMobile?"mob":"index")+".html?scene=addCoolAppToGroup¶ms="+encodeURIComponent(JSON.stringify(o)),target:utils_1.isMobile?"":"float",title:"选择群添加应用",wnId:"addCoolAppToGroup",panelHeight:"percent90"}})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.installCoolAppToGroup=void 0,require("../../entry/union");var mobile_1=require("../../entry/mobile"),utils_1=require("./utils");exports.installCoolAppToGroup=installCoolAppToGroup; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToGroup.d.ts b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToGroup.d.ts deleted file mode 100644 index 9543bdec..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToGroup.d.ts +++ /dev/null @@ -1,16 +0,0 @@ -import '../../entry/union'; -interface SendMessageArgs { - /** 应用身份信息 */ - context: { - /** 应用在开放平台的身份标识 */ - clientId: string; - /** 组织id */ - corpId: string; - }; - openConversationIdList: string[]; - /** 要发送的动态卡片数据 */ - sendCardRequest: object; -} -/** 提供以当前用户的身份将卡片消息发送到指定群的能力 */ -export declare function sendMessageToGroup(args: SendMessageArgs): Promise; -export {}; diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToGroup.js b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToGroup.js deleted file mode 100644 index b23f3f9c..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToGroup.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMessageToGroup(e){var o,n=JSON.stringify(e).length;return mobile_1._invoke("biz.util.callComponent",{componentType:"h5",params:{url:"/im/cool-app-component.html?corpId="+encodeURIComponent(null===(o=null===e||void 0===e?void 0:e.context)||void 0===o?void 0:o.corpId)+"#/send-message?params="+encodeURIComponent(JSON.stringify({body:e,bodyLengthList:[n]})),target:"float",title:"提示",wnId:"sendMessageToGroup",panelHeight:"percent83"}})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMessageToGroup=void 0,require("../../entry/union");var mobile_1=require("../../entry/mobile");exports.sendMessageToGroup=sendMessageToGroup; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToSingleChat.d.ts b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToSingleChat.d.ts deleted file mode 100644 index 24b852b3..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToSingleChat.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -import '../../entry/union'; -interface SendMessageToSingleChatArgs { - /** 应用身份信息 */ - context: { - /** 应用在开放平台的身份标识 */ - clientId: string; - /** 组织id */ - corpId: string; - }; - /** 指定用户id */ - userIdList: string[]; - /** 要发送的动态卡片数据 */ - sendCardRequest: object; -} -/** 提供以当前用户的身份将卡片消息发送到指定单聊的能力 */ -export declare function sendMessageToSingleChat(args: SendMessageToSingleChatArgs): Promise; -export {}; diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToSingleChat.js b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToSingleChat.js deleted file mode 100644 index 255bba9e..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/sendMessageToSingleChat.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";function sendMessageToSingleChat(e){var n,o=JSON.stringify(e).length;return union_1._invoke("biz.util.callComponent",{componentType:"h5",params:{url:"/im/cool-app-component.html?corpId="+encodeURIComponent(null===(n=null===e||void 0===e?void 0:e.context)||void 0===n?void 0:n.corpId)+"#/send-message-to-single-chat?params="+encodeURIComponent(JSON.stringify({body:e,bodyLengthList:[o]})),target:"float",title:"提示",wnId:"sendMessageToSingleChat",panelHeight:"percent83"}})}Object.defineProperty(exports,"__esModule",{value:!0}),exports.sendMessageToSingleChat=void 0,require("../../entry/union");var union_1=require("../../entry/union");exports.sendMessageToSingleChat=sendMessageToSingleChat; \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/utils.d.ts b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/utils.d.ts deleted file mode 100644 index f562c25d..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/utils.d.ts +++ /dev/null @@ -1 +0,0 @@ -export declare const isMobile: boolean; diff --git a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/utils.js b/node_modules/dingtalk-jsapi/plugin/coolAppSdk/utils.js deleted file mode 100644 index c5ca9cd2..00000000 --- a/node_modules/dingtalk-jsapi/plugin/coolAppSdk/utils.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.isMobile=void 0;var env_1=require("../../lib/env"),dingtalkEnv=env_1.getENV(),isAndroidDingTalk=function(){return dingtalkEnv.platform===env_1.ENV_ENUM.android},isIOSDingTalk=function(){return dingtalkEnv.platform===env_1.ENV_ENUM.ios};exports.isMobile=isIOSDingTalk()||isAndroidDingTalk(); \ No newline at end of file diff --git a/node_modules/dingtalk-jsapi/plugin/index.d.ts b/node_modules/dingtalk-jsapi/plugin/index.d.ts deleted file mode 100644 index e383a7fc..00000000 --- a/node_modules/dingtalk-jsapi/plugin/index.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -/** for umd module */ -import * as coolAppSdk from './coolAppSdk'; -export { coolAppSdk }; diff --git a/node_modules/dingtalk-jsapi/plugin/index.js b/node_modules/dingtalk-jsapi/plugin/index.js deleted file mode 100644 index caec8d11..00000000 --- a/node_modules/dingtalk-jsapi/plugin/index.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.coolAppSdk=void 0;var coolAppSdk=require("./coolAppSdk");exports.coolAppSdk=coolAppSdk; \ No newline at end of file diff --git a/node_modules/promise-polyfill/CHANGELOG.md b/node_modules/promise-polyfill/CHANGELOG.md deleted file mode 100644 index be50c648..00000000 --- a/node_modules/promise-polyfill/CHANGELOG.md +++ /dev/null @@ -1,146 +0,0 @@ -# Changelog - -### 7.1.2 - -* Fixed bug in Node JS Promise polyfill - -### 7.1.0 - -* Added Promise.prototype.finally - -### 7.0.2 - -* Added IE8 compatability back to minify - -### 7.0.1 - -* Fixed a bug in 'catch' keyword in IE8 -* Fixed import error when using `require` - -## 7.0.0 - -* Updated code to ES6 module definitions (thanks Andarist) -* Added polyfill.js file -* move compiled files to dist folder - -## 6.1.0 - -* Bug fix for non-array values in `Promise.all()` -* Small optimization checking for making sure `Promise` is called with `new` - -## 6.0.0 Deprecated `Promise._setImmediateFn` and `Promise._setUnhandledRejectionFn` - -This allows subclassing Promise without rewriting functions - -* `Promise._setImmediateFn()` has been deprecated. Use `Promise._immediateFn = ` instead. -* `Promise._setUnhandledRejectionFn()` has been deprecated. Use `Promise._unhandledRejectionFn = ` instead. - These functions will be removed in the next major version. - -### 5.2.1 setTimeout to 0 - -Fixed bug where setTimeout was set to 1 instead of 0 for async execution - -### 5.2.0 Subclassing - -Allowed Subclassing. [#27](https://github.com/taylorhakes/promise-polyfill/pull/27) - -### 5.1.0 Fixed reliance on setTimeout - -Changed possibly unhanded warnings to use asap function instead of setTimeout - -## 5.0.0 Removed multiple params from Promise.all - -Removed non standard functionality of passing multiple params to Promise.all. You must pass an array now. You must change this code - -```js -Promise.all(prom1, prom2, prom3); -``` - -to this - -```js -Promise.all([prom1, prom2, prom3]); -``` - -### 4.0.4 IE8 console.warn fix - -IE8 does not have console, unless you open the developer tools. This fix checks to makes sure console.warn is defined before calling it. - -### 4.0.3 Fix case in bower.json - -bower.json had Promise.js instead of promise.js - -### 4.0.2 promise.js case fix in package.json - -Fixed promise.js in package.json. It was accidently published as Promise.js - -## 4.0.1 Unhandled Rejections and Other Fixes - -* Added unhandled rejection warnings to the console -* Removed Grunt, jasmine and other unused code -* Renamed Promise.js to lowercase promise.js in multiple places - -### 3.0.1 Fixed shadowing issue on setTimeout - -New version fixing this major bug https://github.com/taylorhakes/promise-polyfill/pull/17 - -## 3.0.0 Updated setTimeout to not be affected by test mocks - -This is considered a breaking change because people may have been using this functionality. If you would like to keep version 2 functionality, set Promise.\_setImmediateFn on `promise-polyfill` like the code below. - -```js -var Promise = require('promise-polyfill'); -Promise._setImmedateFn(function(fn) { - setTimeout(fn, 1); -}); -``` - -### 2.1.0 Promise.\_setImmedateFn - -Removed dead code Promise.immedateFn and added Promise.\_setImmediateFn(fn); - -### 2.0.2 Simplified Global detection - -Simplified attaching to global object - -### 2.0.1 Webworker bugfixes - -Fixed Webworkers missing window object - -## 2.0.0 - -**Changed the following line** - -``` -module.exports = root.Promise ? root.Promise : Promise; -``` - -to - -``` -module.exports = Promise; -``` - -This means the library will not use built-in Promise by default. This allows for more consistency. - -You can easily add the functionality back. - -``` -var Promise = window.Promise || require('promise-polyfill'); -``` - -**Added Promise.immediateFn to allow changing the setImmedate function** - -``` -Promise.immediateFn = window.setAsap; -``` - -### 1.1.4 Updated Promise to use correct global object in Browser and Node - -### 1.1.3 Fixed browserify issue with `this` - -### 1.1.2 Updated Promise.resolve to resolve with original Promise - -### 1.1.0 Performance Improvements for Modern Browsers - -## 1.0.1 Update README.md diff --git a/node_modules/promise-polyfill/LICENSE b/node_modules/promise-polyfill/LICENSE deleted file mode 100644 index 94b9dac3..00000000 --- a/node_modules/promise-polyfill/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2014 Taylor Hakes -Copyright (c) 2014 Forbes Lindesay - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file diff --git a/node_modules/promise-polyfill/README.md b/node_modules/promise-polyfill/README.md deleted file mode 100644 index 7dac8192..00000000 --- a/node_modules/promise-polyfill/README.md +++ /dev/null @@ -1,121 +0,0 @@ -# Promise Polyfill - -[![travis][travis-image]][travis-url] - -[travis-image]: https://img.shields.io/travis/taylorhakes/promise-polyfill.svg?style=flat -[travis-url]: https://travis-ci.org/taylorhakes/promise-polyfill - -Lightweight ES6 Promise polyfill for the browser and node. Adheres closely to -the spec. It is a perfect polyfill IE, Firefox or any other browser that does -not support native promises. - -For API information about Promises, please check out this article -[HTML5Rocks article](http://www.html5rocks.com/en/tutorials/es6/promises/). - -It is extremely lightweight. **_< 1kb Gzipped_** - -## Browser Support - -IE8+, Chrome, Firefox, IOS 4+, Safari 5+, Opera - -### NPM Use - -``` -npm install promise-polyfill --save-exact -``` - -### Bower Use - -``` -bower install promise-polyfill -``` - -### CDN Polyfill Use - -```html - -``` - -## Downloads - -* [Promise](https://raw.github.com/taylorhakes/promise-polyfill/master/dist/promise.js) -* [Promise-min](https://raw.github.com/taylorhakes/promise-polyfill/master/dist/promise.min.js) - -## Simple use - -```js -import Promise from 'promise-polyfill'; -``` - -then you can use like normal Promises - -```js -var prom = new Promise(function(resolve, reject) { - // do a thing, possibly async, then… - - if (/* everything turned out fine */) { - resolve("Stuff worked!"); - } else { - reject(new Error("It broke")); - } -}); - -prom.then(function(result) { - // Do something when async done -}); -``` - -If you would like to just polyfill, only if native doesn't exist. - -```js -import 'promise-polyfill/src/polyfill'; -``` - -## Performance - -By default promise-polyfill uses `setImmediate`, but falls back to `setTimeout` -for executing asynchronously. If a browser does not support `setImmediate` -(IE/Edge are the only browsers with setImmediate), you may see performance -issues. Use a `setImmediate` polyfill to fix this issue. -[setAsap](https://github.com/taylorhakes/setAsap) or -[setImmediate](https://github.com/YuzuJS/setImmediate) work well. - -If you polyfill `window.setImmediate` or use `Promise._immediateFn = yourImmediateFn` it will be used instead of `window.setTimeout` - -``` -npm install setasap --save -``` - -```js -import Promise from 'promise-polyfill/src/polyfill'; -import setAsap from 'setasap'; -Promise._immediateFn = setAsap; -``` - -## Unhandled Rejections - -promise-polyfill will warn you about possibly unhandled rejections. It will show -a console warning if a Promise is rejected, but no `.catch` is used. You can -change this behavior by doing. - -```js -Promise._unhandledRejectionFn = ; -``` - -If you would like to disable unhandled rejection messages. Use a noop like -below. - -```js -Promise._unhandledRejectionFn = function(rejectError) {}; -``` - -## Testing - -``` -npm install -npm test -``` - -## License - -MIT diff --git a/node_modules/promise-polyfill/dist/polyfill.js b/node_modules/promise-polyfill/dist/polyfill.js deleted file mode 100644 index 32fd3ca7..00000000 --- a/node_modules/promise-polyfill/dist/polyfill.js +++ /dev/null @@ -1,266 +0,0 @@ -(function (global, factory) { - typeof exports === 'object' && typeof module !== 'undefined' ? factory() : - typeof define === 'function' && define.amd ? define(factory) : - (factory()); -}(this, (function () { 'use strict'; - -// Store setTimeout reference so promise-polyfill will be unaffected by -// other code modifying setTimeout (like sinon.useFakeTimers()) -var setTimeoutFunc = setTimeout; - -function noop() {} - -// Polyfill for Function.prototype.bind -function bind(fn, thisArg) { - return function() { - fn.apply(thisArg, arguments); - }; -} - -function Promise(fn) { - if (!(this instanceof Promise)) - throw new TypeError('Promises must be constructed via new'); - if (typeof fn !== 'function') throw new TypeError('not a function'); - this._state = 0; - this._handled = false; - this._value = undefined; - this._deferreds = []; - - doResolve(fn, this); -} - -function handle(self, deferred) { - while (self._state === 3) { - self = self._value; - } - if (self._state === 0) { - self._deferreds.push(deferred); - return; - } - self._handled = true; - Promise._immediateFn(function() { - var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected; - if (cb === null) { - (self._state === 1 ? resolve : reject)(deferred.promise, self._value); - return; - } - var ret; - try { - ret = cb(self._value); - } catch (e) { - reject(deferred.promise, e); - return; - } - resolve(deferred.promise, ret); - }); -} - -function resolve(self, newValue) { - try { - // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure - if (newValue === self) - throw new TypeError('A promise cannot be resolved with itself.'); - if ( - newValue && - (typeof newValue === 'object' || typeof newValue === 'function') - ) { - var then = newValue.then; - if (newValue instanceof Promise) { - self._state = 3; - self._value = newValue; - finale(self); - return; - } else if (typeof then === 'function') { - doResolve(bind(then, newValue), self); - return; - } - } - self._state = 1; - self._value = newValue; - finale(self); - } catch (e) { - reject(self, e); - } -} - -function reject(self, newValue) { - self._state = 2; - self._value = newValue; - finale(self); -} - -function finale(self) { - if (self._state === 2 && self._deferreds.length === 0) { - Promise._immediateFn(function() { - if (!self._handled) { - Promise._unhandledRejectionFn(self._value); - } - }); - } - - for (var i = 0, len = self._deferreds.length; i < len; i++) { - handle(self, self._deferreds[i]); - } - self._deferreds = null; -} - -function Handler(onFulfilled, onRejected, promise) { - this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null; - this.onRejected = typeof onRejected === 'function' ? onRejected : null; - this.promise = promise; -} - -/** - * Take a potentially misbehaving resolver function and make sure - * onFulfilled and onRejected are only called once. - * - * Makes no guarantees about asynchrony. - */ -function doResolve(fn, self) { - var done = false; - try { - fn( - function(value) { - if (done) return; - done = true; - resolve(self, value); - }, - function(reason) { - if (done) return; - done = true; - reject(self, reason); - } - ); - } catch (ex) { - if (done) return; - done = true; - reject(self, ex); - } -} - -Promise.prototype['catch'] = function(onRejected) { - return this.then(null, onRejected); -}; - -Promise.prototype.then = function(onFulfilled, onRejected) { - var prom = new this.constructor(noop); - - handle(this, new Handler(onFulfilled, onRejected, prom)); - return prom; -}; - -Promise.prototype['finally'] = function(callback) { - var constructor = this.constructor; - return this.then( - function(value) { - return constructor.resolve(callback()).then(function() { - return value; - }); - }, - function(reason) { - return constructor.resolve(callback()).then(function() { - return constructor.reject(reason); - }); - } - ); -}; - -Promise.all = function(arr) { - return new Promise(function(resolve, reject) { - if (!arr || typeof arr.length === 'undefined') - throw new TypeError('Promise.all accepts an array'); - var args = Array.prototype.slice.call(arr); - if (args.length === 0) return resolve([]); - var remaining = args.length; - - function res(i, val) { - try { - if (val && (typeof val === 'object' || typeof val === 'function')) { - var then = val.then; - if (typeof then === 'function') { - then.call( - val, - function(val) { - res(i, val); - }, - reject - ); - return; - } - } - args[i] = val; - if (--remaining === 0) { - resolve(args); - } - } catch (ex) { - reject(ex); - } - } - - for (var i = 0; i < args.length; i++) { - res(i, args[i]); - } - }); -}; - -Promise.resolve = function(value) { - if (value && typeof value === 'object' && value.constructor === Promise) { - return value; - } - - return new Promise(function(resolve) { - resolve(value); - }); -}; - -Promise.reject = function(value) { - return new Promise(function(resolve, reject) { - reject(value); - }); -}; - -Promise.race = function(values) { - return new Promise(function(resolve, reject) { - for (var i = 0, len = values.length; i < len; i++) { - values[i].then(resolve, reject); - } - }); -}; - -// Use polyfill for setImmediate for performance gains -Promise._immediateFn = - (typeof setImmediate === 'function' && - function(fn) { - setImmediate(fn); - }) || - function(fn) { - setTimeoutFunc(fn, 0); - }; - -Promise._unhandledRejectionFn = function _unhandledRejectionFn(err) { - if (typeof console !== 'undefined' && console) { - console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console - } -}; - -var globalNS = (function() { - // the only reliable means to get the global object is - // `Function('return this')()` - // However, this causes CSP violations in Chrome apps. - if (typeof self !== 'undefined') { - return self; - } - if (typeof window !== 'undefined') { - return window; - } - if (typeof global !== 'undefined') { - return global; - } - throw new Error('unable to locate global object'); -})(); - -if (!globalNS.Promise) { - globalNS.Promise = Promise; -} - -}))); diff --git a/node_modules/promise-polyfill/dist/polyfill.min.js b/node_modules/promise-polyfill/dist/polyfill.min.js deleted file mode 100644 index dfc37643..00000000 --- a/node_modules/promise-polyfill/dist/polyfill.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n():"function"==typeof define&&define.amd?define(n):n()}(0,function(){"use strict";function e(){}function n(e){if(!(this instanceof n))throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=undefined,this._deferreds=[],f(e,this)}function t(e,t){for(;3===e._state;)e=e._value;0!==e._state?(e._handled=!0,n._immediateFn(function(){var n=1===e._state?t.onFulfilled:t.onRejected;if(null!==n){var i;try{i=n(e._value)}catch(f){return void r(t.promise,f)}o(t.promise,i)}else(1===e._state?o:r)(t.promise,e._value)})):e._deferreds.push(t)}function o(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var o=t.then;if(t instanceof n)return e._state=3,e._value=t,void i(e);if("function"==typeof o)return void f(function(e,n){return function(){e.apply(n,arguments)}}(o,t),e)}e._state=1,e._value=t,i(e)}catch(u){r(e,u)}}function r(e,n){e._state=2,e._value=n,i(e)}function i(e){2===e._state&&0===e._deferreds.length&&n._immediateFn(function(){e._handled||n._unhandledRejectionFn(e._value)});for(var o=0,r=e._deferreds.length;r>o;o++)t(e,e._deferreds[o]);e._deferreds=null}function f(e,n){var t=!1;try{e(function(e){t||(t=!0,o(n,e))},function(e){t||(t=!0,r(n,e))})}catch(i){if(t)return;t=!0,r(n,i)}}var u=setTimeout;n.prototype["catch"]=function(e){return this.then(null,e)},n.prototype.then=function(n,o){var r=new this.constructor(e);return t(this,new function(e,n,t){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof n?n:null,this.promise=t}(n,o,r)),r},n.prototype["finally"]=function(e){var n=this.constructor;return this.then(function(t){return n.resolve(e()).then(function(){return t})},function(t){return n.resolve(e()).then(function(){return n.reject(t)})})},n.all=function(e){return new n(function(n,t){function o(e,f){try{if(f&&("object"==typeof f||"function"==typeof f)){var u=f.then;if("function"==typeof u)return void u.call(f,function(n){o(e,n)},t)}r[e]=f,0==--i&&n(r)}catch(c){t(c)}}if(!e||"undefined"==typeof e.length)throw new TypeError("Promise.all accepts an array");var r=Array.prototype.slice.call(e);if(0===r.length)return n([]);for(var i=r.length,f=0;r.length>f;f++)o(f,r[f])})},n.resolve=function(e){return e&&"object"==typeof e&&e.constructor===n?e:new n(function(n){n(e)})},n.reject=function(e){return new n(function(n,t){t(e)})},n.race=function(e){return new n(function(n,t){for(var o=0,r=e.length;r>o;o++)e[o].then(n,t)})},n._immediateFn="function"==typeof setImmediate&&function(e){setImmediate(e)}||function(e){u(e,0)},n._unhandledRejectionFn=function(e){void 0!==console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)};var c=function(){if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if("undefined"!=typeof global)return global;throw Error("unable to locate global object")}();c.Promise||(c.Promise=n)}); diff --git a/node_modules/promise-polyfill/dist/promise.js b/node_modules/promise-polyfill/dist/promise.js deleted file mode 100644 index cb5d65ae..00000000 --- a/node_modules/promise-polyfill/dist/promise.js +++ /dev/null @@ -1,248 +0,0 @@ -(function (global, factory) { - typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : - typeof define === 'function' && define.amd ? define(factory) : - (global.Promise = factory()); -}(this, (function () { 'use strict'; - -// Store setTimeout reference so promise-polyfill will be unaffected by -// other code modifying setTimeout (like sinon.useFakeTimers()) -var setTimeoutFunc = setTimeout; - -function noop() {} - -// Polyfill for Function.prototype.bind -function bind(fn, thisArg) { - return function() { - fn.apply(thisArg, arguments); - }; -} - -function Promise(fn) { - if (!(this instanceof Promise)) - throw new TypeError('Promises must be constructed via new'); - if (typeof fn !== 'function') throw new TypeError('not a function'); - this._state = 0; - this._handled = false; - this._value = undefined; - this._deferreds = []; - - doResolve(fn, this); -} - -function handle(self, deferred) { - while (self._state === 3) { - self = self._value; - } - if (self._state === 0) { - self._deferreds.push(deferred); - return; - } - self._handled = true; - Promise._immediateFn(function() { - var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected; - if (cb === null) { - (self._state === 1 ? resolve : reject)(deferred.promise, self._value); - return; - } - var ret; - try { - ret = cb(self._value); - } catch (e) { - reject(deferred.promise, e); - return; - } - resolve(deferred.promise, ret); - }); -} - -function resolve(self, newValue) { - try { - // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure - if (newValue === self) - throw new TypeError('A promise cannot be resolved with itself.'); - if ( - newValue && - (typeof newValue === 'object' || typeof newValue === 'function') - ) { - var then = newValue.then; - if (newValue instanceof Promise) { - self._state = 3; - self._value = newValue; - finale(self); - return; - } else if (typeof then === 'function') { - doResolve(bind(then, newValue), self); - return; - } - } - self._state = 1; - self._value = newValue; - finale(self); - } catch (e) { - reject(self, e); - } -} - -function reject(self, newValue) { - self._state = 2; - self._value = newValue; - finale(self); -} - -function finale(self) { - if (self._state === 2 && self._deferreds.length === 0) { - Promise._immediateFn(function() { - if (!self._handled) { - Promise._unhandledRejectionFn(self._value); - } - }); - } - - for (var i = 0, len = self._deferreds.length; i < len; i++) { - handle(self, self._deferreds[i]); - } - self._deferreds = null; -} - -function Handler(onFulfilled, onRejected, promise) { - this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null; - this.onRejected = typeof onRejected === 'function' ? onRejected : null; - this.promise = promise; -} - -/** - * Take a potentially misbehaving resolver function and make sure - * onFulfilled and onRejected are only called once. - * - * Makes no guarantees about asynchrony. - */ -function doResolve(fn, self) { - var done = false; - try { - fn( - function(value) { - if (done) return; - done = true; - resolve(self, value); - }, - function(reason) { - if (done) return; - done = true; - reject(self, reason); - } - ); - } catch (ex) { - if (done) return; - done = true; - reject(self, ex); - } -} - -Promise.prototype['catch'] = function(onRejected) { - return this.then(null, onRejected); -}; - -Promise.prototype.then = function(onFulfilled, onRejected) { - var prom = new this.constructor(noop); - - handle(this, new Handler(onFulfilled, onRejected, prom)); - return prom; -}; - -Promise.prototype['finally'] = function(callback) { - var constructor = this.constructor; - return this.then( - function(value) { - return constructor.resolve(callback()).then(function() { - return value; - }); - }, - function(reason) { - return constructor.resolve(callback()).then(function() { - return constructor.reject(reason); - }); - } - ); -}; - -Promise.all = function(arr) { - return new Promise(function(resolve, reject) { - if (!arr || typeof arr.length === 'undefined') - throw new TypeError('Promise.all accepts an array'); - var args = Array.prototype.slice.call(arr); - if (args.length === 0) return resolve([]); - var remaining = args.length; - - function res(i, val) { - try { - if (val && (typeof val === 'object' || typeof val === 'function')) { - var then = val.then; - if (typeof then === 'function') { - then.call( - val, - function(val) { - res(i, val); - }, - reject - ); - return; - } - } - args[i] = val; - if (--remaining === 0) { - resolve(args); - } - } catch (ex) { - reject(ex); - } - } - - for (var i = 0; i < args.length; i++) { - res(i, args[i]); - } - }); -}; - -Promise.resolve = function(value) { - if (value && typeof value === 'object' && value.constructor === Promise) { - return value; - } - - return new Promise(function(resolve) { - resolve(value); - }); -}; - -Promise.reject = function(value) { - return new Promise(function(resolve, reject) { - reject(value); - }); -}; - -Promise.race = function(values) { - return new Promise(function(resolve, reject) { - for (var i = 0, len = values.length; i < len; i++) { - values[i].then(resolve, reject); - } - }); -}; - -// Use polyfill for setImmediate for performance gains -Promise._immediateFn = - (typeof setImmediate === 'function' && - function(fn) { - setImmediate(fn); - }) || - function(fn) { - setTimeoutFunc(fn, 0); - }; - -Promise._unhandledRejectionFn = function _unhandledRejectionFn(err) { - if (typeof console !== 'undefined' && console) { - console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console - } -}; - -return Promise; - -}))); diff --git a/node_modules/promise-polyfill/dist/promise.min.js b/node_modules/promise-polyfill/dist/promise.min.js deleted file mode 100644 index 3540721a..00000000 --- a/node_modules/promise-polyfill/dist/promise.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):e.Promise=n()}(this,function(){"use strict";function e(){}function n(e){if(!(this instanceof n))throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=undefined,this._deferreds=[],f(e,this)}function t(e,t){for(;3===e._state;)e=e._value;0!==e._state?(e._handled=!0,n._immediateFn(function(){var n=1===e._state?t.onFulfilled:t.onRejected;if(null!==n){var i;try{i=n(e._value)}catch(f){return void r(t.promise,f)}o(t.promise,i)}else(1===e._state?o:r)(t.promise,e._value)})):e._deferreds.push(t)}function o(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var o=t.then;if(t instanceof n)return e._state=3,e._value=t,void i(e);if("function"==typeof o)return void f(function(e,n){return function(){e.apply(n,arguments)}}(o,t),e)}e._state=1,e._value=t,i(e)}catch(u){r(e,u)}}function r(e,n){e._state=2,e._value=n,i(e)}function i(e){2===e._state&&0===e._deferreds.length&&n._immediateFn(function(){e._handled||n._unhandledRejectionFn(e._value)});for(var o=0,r=e._deferreds.length;r>o;o++)t(e,e._deferreds[o]);e._deferreds=null}function f(e,n){var t=!1;try{e(function(e){t||(t=!0,o(n,e))},function(e){t||(t=!0,r(n,e))})}catch(i){if(t)return;t=!0,r(n,i)}}var u=setTimeout;return n.prototype["catch"]=function(e){return this.then(null,e)},n.prototype.then=function(n,o){var r=new this.constructor(e);return t(this,new function(e,n,t){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof n?n:null,this.promise=t}(n,o,r)),r},n.prototype["finally"]=function(e){var n=this.constructor;return this.then(function(t){return n.resolve(e()).then(function(){return t})},function(t){return n.resolve(e()).then(function(){return n.reject(t)})})},n.all=function(e){return new n(function(n,t){function o(e,f){try{if(f&&("object"==typeof f||"function"==typeof f)){var u=f.then;if("function"==typeof u)return void u.call(f,function(n){o(e,n)},t)}r[e]=f,0==--i&&n(r)}catch(c){t(c)}}if(!e||"undefined"==typeof e.length)throw new TypeError("Promise.all accepts an array");var r=Array.prototype.slice.call(e);if(0===r.length)return n([]);for(var i=r.length,f=0;r.length>f;f++)o(f,r[f])})},n.resolve=function(e){return e&&"object"==typeof e&&e.constructor===n?e:new n(function(n){n(e)})},n.reject=function(e){return new n(function(n,t){t(e)})},n.race=function(e){return new n(function(n,t){for(var o=0,r=e.length;r>o;o++)e[o].then(n,t)})},n._immediateFn="function"==typeof setImmediate&&function(e){setImmediate(e)}||function(e){u(e,0)},n._unhandledRejectionFn=function(e){void 0!==console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)},n}); diff --git a/node_modules/promise-polyfill/lib/index.js b/node_modules/promise-polyfill/lib/index.js deleted file mode 100644 index c40ead49..00000000 --- a/node_modules/promise-polyfill/lib/index.js +++ /dev/null @@ -1,242 +0,0 @@ -'use strict'; - -// Store setTimeout reference so promise-polyfill will be unaffected by -// other code modifying setTimeout (like sinon.useFakeTimers()) -var setTimeoutFunc = setTimeout; - -function noop() {} - -// Polyfill for Function.prototype.bind -function bind(fn, thisArg) { - return function() { - fn.apply(thisArg, arguments); - }; -} - -function Promise(fn) { - if (!(this instanceof Promise)) - throw new TypeError('Promises must be constructed via new'); - if (typeof fn !== 'function') throw new TypeError('not a function'); - this._state = 0; - this._handled = false; - this._value = undefined; - this._deferreds = []; - - doResolve(fn, this); -} - -function handle(self, deferred) { - while (self._state === 3) { - self = self._value; - } - if (self._state === 0) { - self._deferreds.push(deferred); - return; - } - self._handled = true; - Promise._immediateFn(function() { - var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected; - if (cb === null) { - (self._state === 1 ? resolve : reject)(deferred.promise, self._value); - return; - } - var ret; - try { - ret = cb(self._value); - } catch (e) { - reject(deferred.promise, e); - return; - } - resolve(deferred.promise, ret); - }); -} - -function resolve(self, newValue) { - try { - // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure - if (newValue === self) - throw new TypeError('A promise cannot be resolved with itself.'); - if ( - newValue && - (typeof newValue === 'object' || typeof newValue === 'function') - ) { - var then = newValue.then; - if (newValue instanceof Promise) { - self._state = 3; - self._value = newValue; - finale(self); - return; - } else if (typeof then === 'function') { - doResolve(bind(then, newValue), self); - return; - } - } - self._state = 1; - self._value = newValue; - finale(self); - } catch (e) { - reject(self, e); - } -} - -function reject(self, newValue) { - self._state = 2; - self._value = newValue; - finale(self); -} - -function finale(self) { - if (self._state === 2 && self._deferreds.length === 0) { - Promise._immediateFn(function() { - if (!self._handled) { - Promise._unhandledRejectionFn(self._value); - } - }); - } - - for (var i = 0, len = self._deferreds.length; i < len; i++) { - handle(self, self._deferreds[i]); - } - self._deferreds = null; -} - -function Handler(onFulfilled, onRejected, promise) { - this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null; - this.onRejected = typeof onRejected === 'function' ? onRejected : null; - this.promise = promise; -} - -/** - * Take a potentially misbehaving resolver function and make sure - * onFulfilled and onRejected are only called once. - * - * Makes no guarantees about asynchrony. - */ -function doResolve(fn, self) { - var done = false; - try { - fn( - function(value) { - if (done) return; - done = true; - resolve(self, value); - }, - function(reason) { - if (done) return; - done = true; - reject(self, reason); - } - ); - } catch (ex) { - if (done) return; - done = true; - reject(self, ex); - } -} - -Promise.prototype['catch'] = function(onRejected) { - return this.then(null, onRejected); -}; - -Promise.prototype.then = function(onFulfilled, onRejected) { - var prom = new this.constructor(noop); - - handle(this, new Handler(onFulfilled, onRejected, prom)); - return prom; -}; - -Promise.prototype['finally'] = function(callback) { - var constructor = this.constructor; - return this.then( - function(value) { - return constructor.resolve(callback()).then(function() { - return value; - }); - }, - function(reason) { - return constructor.resolve(callback()).then(function() { - return constructor.reject(reason); - }); - } - ); -}; - -Promise.all = function(arr) { - return new Promise(function(resolve, reject) { - if (!arr || typeof arr.length === 'undefined') - throw new TypeError('Promise.all accepts an array'); - var args = Array.prototype.slice.call(arr); - if (args.length === 0) return resolve([]); - var remaining = args.length; - - function res(i, val) { - try { - if (val && (typeof val === 'object' || typeof val === 'function')) { - var then = val.then; - if (typeof then === 'function') { - then.call( - val, - function(val) { - res(i, val); - }, - reject - ); - return; - } - } - args[i] = val; - if (--remaining === 0) { - resolve(args); - } - } catch (ex) { - reject(ex); - } - } - - for (var i = 0; i < args.length; i++) { - res(i, args[i]); - } - }); -}; - -Promise.resolve = function(value) { - if (value && typeof value === 'object' && value.constructor === Promise) { - return value; - } - - return new Promise(function(resolve) { - resolve(value); - }); -}; - -Promise.reject = function(value) { - return new Promise(function(resolve, reject) { - reject(value); - }); -}; - -Promise.race = function(values) { - return new Promise(function(resolve, reject) { - for (var i = 0, len = values.length; i < len; i++) { - values[i].then(resolve, reject); - } - }); -}; - -// Use polyfill for setImmediate for performance gains -Promise._immediateFn = - (typeof setImmediate === 'function' && - function(fn) { - setImmediate(fn); - }) || - function(fn) { - setTimeoutFunc(fn, 0); - }; - -Promise._unhandledRejectionFn = function _unhandledRejectionFn(err) { - if (typeof console !== 'undefined' && console) { - console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console - } -}; - -module.exports = Promise; diff --git a/node_modules/promise-polyfill/lib/polyfill.js b/node_modules/promise-polyfill/lib/polyfill.js deleted file mode 100644 index c6558d9a..00000000 --- a/node_modules/promise-polyfill/lib/polyfill.js +++ /dev/null @@ -1,260 +0,0 @@ -'use strict'; - -// Store setTimeout reference so promise-polyfill will be unaffected by -// other code modifying setTimeout (like sinon.useFakeTimers()) -var setTimeoutFunc = setTimeout; - -function noop() {} - -// Polyfill for Function.prototype.bind -function bind(fn, thisArg) { - return function() { - fn.apply(thisArg, arguments); - }; -} - -function Promise(fn) { - if (!(this instanceof Promise)) - throw new TypeError('Promises must be constructed via new'); - if (typeof fn !== 'function') throw new TypeError('not a function'); - this._state = 0; - this._handled = false; - this._value = undefined; - this._deferreds = []; - - doResolve(fn, this); -} - -function handle(self, deferred) { - while (self._state === 3) { - self = self._value; - } - if (self._state === 0) { - self._deferreds.push(deferred); - return; - } - self._handled = true; - Promise._immediateFn(function() { - var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected; - if (cb === null) { - (self._state === 1 ? resolve : reject)(deferred.promise, self._value); - return; - } - var ret; - try { - ret = cb(self._value); - } catch (e) { - reject(deferred.promise, e); - return; - } - resolve(deferred.promise, ret); - }); -} - -function resolve(self, newValue) { - try { - // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure - if (newValue === self) - throw new TypeError('A promise cannot be resolved with itself.'); - if ( - newValue && - (typeof newValue === 'object' || typeof newValue === 'function') - ) { - var then = newValue.then; - if (newValue instanceof Promise) { - self._state = 3; - self._value = newValue; - finale(self); - return; - } else if (typeof then === 'function') { - doResolve(bind(then, newValue), self); - return; - } - } - self._state = 1; - self._value = newValue; - finale(self); - } catch (e) { - reject(self, e); - } -} - -function reject(self, newValue) { - self._state = 2; - self._value = newValue; - finale(self); -} - -function finale(self) { - if (self._state === 2 && self._deferreds.length === 0) { - Promise._immediateFn(function() { - if (!self._handled) { - Promise._unhandledRejectionFn(self._value); - } - }); - } - - for (var i = 0, len = self._deferreds.length; i < len; i++) { - handle(self, self._deferreds[i]); - } - self._deferreds = null; -} - -function Handler(onFulfilled, onRejected, promise) { - this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null; - this.onRejected = typeof onRejected === 'function' ? onRejected : null; - this.promise = promise; -} - -/** - * Take a potentially misbehaving resolver function and make sure - * onFulfilled and onRejected are only called once. - * - * Makes no guarantees about asynchrony. - */ -function doResolve(fn, self) { - var done = false; - try { - fn( - function(value) { - if (done) return; - done = true; - resolve(self, value); - }, - function(reason) { - if (done) return; - done = true; - reject(self, reason); - } - ); - } catch (ex) { - if (done) return; - done = true; - reject(self, ex); - } -} - -Promise.prototype['catch'] = function(onRejected) { - return this.then(null, onRejected); -}; - -Promise.prototype.then = function(onFulfilled, onRejected) { - var prom = new this.constructor(noop); - - handle(this, new Handler(onFulfilled, onRejected, prom)); - return prom; -}; - -Promise.prototype['finally'] = function(callback) { - var constructor = this.constructor; - return this.then( - function(value) { - return constructor.resolve(callback()).then(function() { - return value; - }); - }, - function(reason) { - return constructor.resolve(callback()).then(function() { - return constructor.reject(reason); - }); - } - ); -}; - -Promise.all = function(arr) { - return new Promise(function(resolve, reject) { - if (!arr || typeof arr.length === 'undefined') - throw new TypeError('Promise.all accepts an array'); - var args = Array.prototype.slice.call(arr); - if (args.length === 0) return resolve([]); - var remaining = args.length; - - function res(i, val) { - try { - if (val && (typeof val === 'object' || typeof val === 'function')) { - var then = val.then; - if (typeof then === 'function') { - then.call( - val, - function(val) { - res(i, val); - }, - reject - ); - return; - } - } - args[i] = val; - if (--remaining === 0) { - resolve(args); - } - } catch (ex) { - reject(ex); - } - } - - for (var i = 0; i < args.length; i++) { - res(i, args[i]); - } - }); -}; - -Promise.resolve = function(value) { - if (value && typeof value === 'object' && value.constructor === Promise) { - return value; - } - - return new Promise(function(resolve) { - resolve(value); - }); -}; - -Promise.reject = function(value) { - return new Promise(function(resolve, reject) { - reject(value); - }); -}; - -Promise.race = function(values) { - return new Promise(function(resolve, reject) { - for (var i = 0, len = values.length; i < len; i++) { - values[i].then(resolve, reject); - } - }); -}; - -// Use polyfill for setImmediate for performance gains -Promise._immediateFn = - (typeof setImmediate === 'function' && - function(fn) { - setImmediate(fn); - }) || - function(fn) { - setTimeoutFunc(fn, 0); - }; - -Promise._unhandledRejectionFn = function _unhandledRejectionFn(err) { - if (typeof console !== 'undefined' && console) { - console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console - } -}; - -var globalNS = (function() { - // the only reliable means to get the global object is - // `Function('return this')()` - // However, this causes CSP violations in Chrome apps. - if (typeof self !== 'undefined') { - return self; - } - if (typeof window !== 'undefined') { - return window; - } - if (typeof global !== 'undefined') { - return global; - } - throw new Error('unable to locate global object'); -})(); - -if (!globalNS.Promise) { - globalNS.Promise = Promise; -} diff --git a/node_modules/promise-polyfill/package.json b/node_modules/promise-polyfill/package.json deleted file mode 100644 index f86c9aa5..00000000 --- a/node_modules/promise-polyfill/package.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "name": "promise-polyfill", - "version": "7.1.2", - "description": "Lightweight promise polyfill. A+ compliant", - "main": "lib/index.js", - "jsnext:main": "src/index.js", - "unpkg": "dist/promise.min.js", - "files": [ - "src", - "lib", - "dist" - ], - "scripts": { - "precommit": "lint-staged", - "pretest": "npm run build:cjs", - "test": "eslint src && mocha && karma start --single-run", - "prebuild": "rimraf lib dist", - "build": "run-p build:**", - "build:cjs": "rollup -i src/index.js -o lib/index.js -f cjs", - "build:umd": "cross-env NODE_ENV=development rollup -i src/index.js -o dist/promise.js -c rollup.umd.config.js", - "build:umd:min": "cross-env NODE_ENV=production rollup -i src/index.js -o dist/promise.min.js -c rollup.umd.config.js", - "build:cjs-polyfill": "rollup -i src/polyfill.js -o lib/polyfill.js -f cjs", - "build:umd-polyfill": "cross-env NODE_ENV=development rollup -i src/polyfill.js -o dist/polyfill.js -c rollup.umd.config.js", - "build:umd-polyfill:min": "cross-env NODE_ENV=production rollup -i src/polyfill.js -o dist/polyfill.min.js -c rollup.umd.config.js", - "prepublish": "test $(npm -v | tr . '\\n' | head -n 1) -ge '4' || exit 1", - "prepare": "npm run build" - }, - "repository": { - "type": "git", - "url": "https://github.com/taylorhakes/promise-polyfill.git" - }, - "author": "Taylor Hakes", - "license": "MIT", - "bugs": { - "url": "https://github.com/taylorhakes/promise-polyfill/issues" - }, - "homepage": "https://github.com/taylorhakes/promise-polyfill", - "devDependencies": { - "cross-env": "^5.1.1", - "eslint": "^4.11.0", - "husky": "^0.14.3", - "karma": "^0.13.19", - "karma-browserify": "^4.4.2", - "karma-chrome-launcher": "^0.2.2", - "karma-mocha": "^0.2.1", - "lint-staged": "^5.0.0", - "mocha": "^2.3.4", - "npm-run-all": "^4.1.2", - "prettier": "^1.8.2", - "promises-aplus-tests": "*", - "rimraf": "^2.6.2", - "rollup": "^0.52.0", - "rollup-plugin-uglify": "^2.0.1", - "sinon": "^1.17.2" - }, - "keywords": [ - "promise", - "promise-polyfill", - "ES6", - "promises-aplus" - ], - "dependencies": {} -} diff --git a/node_modules/promise-polyfill/src/index.js b/node_modules/promise-polyfill/src/index.js deleted file mode 100644 index a59641e2..00000000 --- a/node_modules/promise-polyfill/src/index.js +++ /dev/null @@ -1,240 +0,0 @@ -// Store setTimeout reference so promise-polyfill will be unaffected by -// other code modifying setTimeout (like sinon.useFakeTimers()) -var setTimeoutFunc = setTimeout; - -function noop() {} - -// Polyfill for Function.prototype.bind -function bind(fn, thisArg) { - return function() { - fn.apply(thisArg, arguments); - }; -} - -function Promise(fn) { - if (!(this instanceof Promise)) - throw new TypeError('Promises must be constructed via new'); - if (typeof fn !== 'function') throw new TypeError('not a function'); - this._state = 0; - this._handled = false; - this._value = undefined; - this._deferreds = []; - - doResolve(fn, this); -} - -function handle(self, deferred) { - while (self._state === 3) { - self = self._value; - } - if (self._state === 0) { - self._deferreds.push(deferred); - return; - } - self._handled = true; - Promise._immediateFn(function() { - var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected; - if (cb === null) { - (self._state === 1 ? resolve : reject)(deferred.promise, self._value); - return; - } - var ret; - try { - ret = cb(self._value); - } catch (e) { - reject(deferred.promise, e); - return; - } - resolve(deferred.promise, ret); - }); -} - -function resolve(self, newValue) { - try { - // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure - if (newValue === self) - throw new TypeError('A promise cannot be resolved with itself.'); - if ( - newValue && - (typeof newValue === 'object' || typeof newValue === 'function') - ) { - var then = newValue.then; - if (newValue instanceof Promise) { - self._state = 3; - self._value = newValue; - finale(self); - return; - } else if (typeof then === 'function') { - doResolve(bind(then, newValue), self); - return; - } - } - self._state = 1; - self._value = newValue; - finale(self); - } catch (e) { - reject(self, e); - } -} - -function reject(self, newValue) { - self._state = 2; - self._value = newValue; - finale(self); -} - -function finale(self) { - if (self._state === 2 && self._deferreds.length === 0) { - Promise._immediateFn(function() { - if (!self._handled) { - Promise._unhandledRejectionFn(self._value); - } - }); - } - - for (var i = 0, len = self._deferreds.length; i < len; i++) { - handle(self, self._deferreds[i]); - } - self._deferreds = null; -} - -function Handler(onFulfilled, onRejected, promise) { - this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null; - this.onRejected = typeof onRejected === 'function' ? onRejected : null; - this.promise = promise; -} - -/** - * Take a potentially misbehaving resolver function and make sure - * onFulfilled and onRejected are only called once. - * - * Makes no guarantees about asynchrony. - */ -function doResolve(fn, self) { - var done = false; - try { - fn( - function(value) { - if (done) return; - done = true; - resolve(self, value); - }, - function(reason) { - if (done) return; - done = true; - reject(self, reason); - } - ); - } catch (ex) { - if (done) return; - done = true; - reject(self, ex); - } -} - -Promise.prototype['catch'] = function(onRejected) { - return this.then(null, onRejected); -}; - -Promise.prototype.then = function(onFulfilled, onRejected) { - var prom = new this.constructor(noop); - - handle(this, new Handler(onFulfilled, onRejected, prom)); - return prom; -}; - -Promise.prototype['finally'] = function(callback) { - var constructor = this.constructor; - return this.then( - function(value) { - return constructor.resolve(callback()).then(function() { - return value; - }); - }, - function(reason) { - return constructor.resolve(callback()).then(function() { - return constructor.reject(reason); - }); - } - ); -}; - -Promise.all = function(arr) { - return new Promise(function(resolve, reject) { - if (!arr || typeof arr.length === 'undefined') - throw new TypeError('Promise.all accepts an array'); - var args = Array.prototype.slice.call(arr); - if (args.length === 0) return resolve([]); - var remaining = args.length; - - function res(i, val) { - try { - if (val && (typeof val === 'object' || typeof val === 'function')) { - var then = val.then; - if (typeof then === 'function') { - then.call( - val, - function(val) { - res(i, val); - }, - reject - ); - return; - } - } - args[i] = val; - if (--remaining === 0) { - resolve(args); - } - } catch (ex) { - reject(ex); - } - } - - for (var i = 0; i < args.length; i++) { - res(i, args[i]); - } - }); -}; - -Promise.resolve = function(value) { - if (value && typeof value === 'object' && value.constructor === Promise) { - return value; - } - - return new Promise(function(resolve) { - resolve(value); - }); -}; - -Promise.reject = function(value) { - return new Promise(function(resolve, reject) { - reject(value); - }); -}; - -Promise.race = function(values) { - return new Promise(function(resolve, reject) { - for (var i = 0, len = values.length; i < len; i++) { - values[i].then(resolve, reject); - } - }); -}; - -// Use polyfill for setImmediate for performance gains -Promise._immediateFn = - (typeof setImmediate === 'function' && - function(fn) { - setImmediate(fn); - }) || - function(fn) { - setTimeoutFunc(fn, 0); - }; - -Promise._unhandledRejectionFn = function _unhandledRejectionFn(err) { - if (typeof console !== 'undefined' && console) { - console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console - } -}; - -export default Promise; diff --git a/node_modules/promise-polyfill/src/polyfill.js b/node_modules/promise-polyfill/src/polyfill.js deleted file mode 100644 index 6961cc95..00000000 --- a/node_modules/promise-polyfill/src/polyfill.js +++ /dev/null @@ -1,21 +0,0 @@ -import Promise from './index'; - -var globalNS = (function() { - // the only reliable means to get the global object is - // `Function('return this')()` - // However, this causes CSP violations in Chrome apps. - if (typeof self !== 'undefined') { - return self; - } - if (typeof window !== 'undefined') { - return window; - } - if (typeof global !== 'undefined') { - return global; - } - throw new Error('unable to locate global object'); -})(); - -if (!globalNS.Promise) { - globalNS.Promise = Promise; -}