xlwings-server 1.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- xlwings_server/.env.template +145 -0
- xlwings_server/__init__.py +12 -0
- xlwings_server/_version.py +34 -0
- xlwings_server/auth/__init__.py +0 -0
- xlwings_server/auth/custom/__init__.py +26 -0
- xlwings_server/auth/entraid/__init__.py +131 -0
- xlwings_server/auth/entraid/jwks.py +10 -0
- xlwings_server/azure_functions_templates/.funcignore +28 -0
- xlwings_server/azure_functions_templates/function_app.py +28 -0
- xlwings_server/azure_functions_templates/host.json +22 -0
- xlwings_server/azure_functions_templates/local.settings.json +8 -0
- xlwings_server/build_utils/__init__.py +9 -0
- xlwings_server/build_utils/static_file_hasher.py +212 -0
- xlwings_server/cli.py +1592 -0
- xlwings_server/config.py +228 -0
- xlwings_server/custom_functions/__init__.py +8 -0
- xlwings_server/custom_functions/examples.py +177 -0
- xlwings_server/custom_scripts/__init__.py +8 -0
- xlwings_server/custom_scripts/examples.py +94 -0
- xlwings_server/databases.py +19 -0
- xlwings_server/dependencies.py +126 -0
- xlwings_server/docker_templates/.dockerignore +15 -0
- xlwings_server/docker_templates/Dockerfile +60 -0
- xlwings_server/docker_templates/docker-compose.yaml +32 -0
- xlwings_server/hotreload.py +59 -0
- xlwings_server/main.py +242 -0
- xlwings_server/models/__init__.py +14 -0
- xlwings_server/models/user.py +53 -0
- xlwings_server/object_handles.py +142 -0
- xlwings_server/routers/__init__.py +0 -0
- xlwings_server/routers/manifest.py +82 -0
- xlwings_server/routers/root.py +16 -0
- xlwings_server/routers/socketio.py +69 -0
- xlwings_server/routers/taskpane.py +12 -0
- xlwings_server/routers/xlwings.py +197 -0
- xlwings_server/security_headers.json +53 -0
- xlwings_server/serializers/__init__.py +25 -0
- xlwings_server/serializers/default_serializer.py +19 -0
- xlwings_server/serializers/dictionary_serializer.py +25 -0
- xlwings_server/serializers/framework.py +50 -0
- xlwings_server/serializers/numpy_serializer.py +26 -0
- xlwings_server/serializers/pandas_serializer.py +95 -0
- xlwings_server/static/css/core.css +28 -0
- xlwings_server/static/css/style.css +0 -0
- xlwings_server/static/images/favicon.png +0 -0
- xlwings_server/static/images/xlwings-16.png +0 -0
- xlwings_server/static/images/xlwings-32.png +0 -0
- xlwings_server/static/images/xlwings-64.png +0 -0
- xlwings_server/static/images/xlwings-80.png +0 -0
- xlwings_server/static/js/auth.js +13 -0
- xlwings_server/static/js/config.js +4 -0
- xlwings_server/static/js/core/alpinejs-csp-boilerplate.js +11 -0
- xlwings_server/static/js/core/bootstrap-customizations.js +7 -0
- xlwings_server/static/js/core/custom-functions-code.js +296 -0
- xlwings_server/static/js/core/examples.js +62 -0
- xlwings_server/static/js/core/hotreload.js +3 -0
- xlwings_server/static/js/core/htmx-handlers.js +86 -0
- xlwings_server/static/js/core/officejs-history-fix-part1.js +3 -0
- xlwings_server/static/js/core/officejs-history-fix-part2.js +2 -0
- xlwings_server/static/js/core/reload-custom-functions.js +79 -0
- xlwings_server/static/js/core/socketio-handlers.js +34 -0
- xlwings_server/static/js/core/xlwings-alert.js +22 -0
- xlwings_server/static/js/core/xlwingsjs/alert.js +85 -0
- xlwings_server/static/js/core/xlwingsjs/auth.js +63 -0
- xlwings_server/static/js/core/xlwingsjs/sheet-buttons.js +133 -0
- xlwings_server/static/js/core/xlwingsjs/utils.js +119 -0
- xlwings_server/static/js/core/xlwingsjs/wasm.js +131 -0
- xlwings_server/static/js/core/xlwingsjs/xlwings.js +1060 -0
- xlwings_server/static/js/main.js +0 -0
- xlwings_server/static/js/ribbon.js +17 -0
- xlwings_server/static/vendor/@alpinejs/LICENSE +21 -0
- xlwings_server/static/vendor/@alpinejs/csp/dist/cdn.min.js +7 -0
- xlwings_server/static/vendor/@microsoft/office-js/LICENSE.md +76 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/af-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/agaveerrorux.js +18 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon32x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon96x96.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/businessbarclose_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/dropdownarrow_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/ellipsis_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/miniinfoblue_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_default_icon.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_status_icons.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/office.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/refresh_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/index.html +16 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/style/agaveerrorux.css +482 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/am-et/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ae/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-bh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-dz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-eg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-iq/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-jo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-kw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-lb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ly/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ma/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-om/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-qa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sa/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-tn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ye/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.8.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.9.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/az-latn-az/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/be-by/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bg-bg/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bs-latn-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ca-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cs-cz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cy-gb/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/da-dk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-at/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-de/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-li/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/el-gr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-029/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-au/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-bz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ca/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-gb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-in/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-jm/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-my/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-nz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ph/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-tt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-zw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ar/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-bo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cl/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-co/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-do/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ec/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-gt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-hn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-mx/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ni/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pe/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-py/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-sv/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-uy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ve/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es6-promise.js +5 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/et-ee/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/eu-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.00.js +19 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-winrt-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelios-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fa-ir/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fi-fi/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fil-ph/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ca/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-fr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-mc/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ga-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gl-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gu-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/he-il/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hi-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-hr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/html2canvas.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hu-hu/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hy-am/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/id-id/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/is-is/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-it/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ja-jp/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ka-ge/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kk-kz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/km-kh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ko-kr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lb-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lo-la/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lt-lt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lv-lv/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mk-mk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ml-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mn-mn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mr-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-bn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-my/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mt-mt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nb-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ne-np/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-nl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nn-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/o15apptofilemappingtable.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office-vsdoc.js +28596 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office.js +84 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pl-pl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-br/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-pt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ro-ro/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ru-ru/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/si-lk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sk-sk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sl-si/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sq-al/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-fi/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-se/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sw-ke/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ta-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/te-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs_agave.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/th-th/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/tr-tr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/uk-ua/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ur-pk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/vi-vn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.browserauth.js +77 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.implicit.js +35 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-cn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-hk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-mo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-tw/office_strings.js +1 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js +3 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap/LICENSE +21 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js +7 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css +12 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css.map +1 -0
- xlwings_server/static/vendor/htmx-ext-head-support/head-support.js +144 -0
- xlwings_server/static/vendor/htmx-ext-loading-states/loading-states.js +184 -0
- xlwings_server/static/vendor/htmx.org/LICENSE +13 -0
- xlwings_server/static/vendor/htmx.org/dist/htmx.min.js +1 -0
- xlwings_server/static/vendor/socket.io/LICENSE +22 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js +7 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js.map +1 -0
- xlwings_server/templates/_book.html +8 -0
- xlwings_server/templates/alert_base.html +16 -0
- xlwings_server/templates/base.html +117 -0
- xlwings_server/templates/examples/alpine/README.md +26 -0
- xlwings_server/templates/examples/alpine/taskpane.html +47 -0
- xlwings_server/templates/examples/auth/README.md +38 -0
- xlwings_server/templates/examples/auth/protected.html +8 -0
- xlwings_server/templates/examples/auth/public.html +11 -0
- xlwings_server/templates/examples/excel_object_model/README.md +49 -0
- xlwings_server/templates/examples/excel_object_model/add_name_form.html +27 -0
- xlwings_server/templates/examples/hello_world/README.md +9 -0
- xlwings_server/templates/examples/hello_world/taskpane_hello.html +24 -0
- xlwings_server/templates/examples/htmx_form/README.md +44 -0
- xlwings_server/templates/examples/htmx_form/_greeting.html +6 -0
- xlwings_server/templates/examples/htmx_form/taskpane_htmx_form.html +21 -0
- xlwings_server/templates/examples/live_form_validation/README.md +60 -0
- xlwings_server/templates/examples/live_form_validation/add_name_form.html +33 -0
- xlwings_server/templates/examples/multi_app/README.md +34 -0
- xlwings_server/templates/examples/multi_app/taskpane1.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane2.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane_loader.html +5 -0
- xlwings_server/templates/examples/navigation/README.md +28 -0
- xlwings_server/templates/examples/navigation/_navigation.html +16 -0
- xlwings_server/templates/examples/navigation/taskpane_one.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_three.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_two.html +8 -0
- xlwings_server/templates/examples/pictures/README.md +42 -0
- xlwings_server/templates/examples/pictures/_picture.html +4 -0
- xlwings_server/templates/examples/pictures/taskpane_pictures.html +26 -0
- xlwings_server/templates/manifest.xml +155 -0
- xlwings_server/templates/taskpane.html +1 -0
- xlwings_server/templates/xlwings_alert.html +27 -0
- xlwings_server/templates.py +61 -0
- xlwings_server/utils.py +32 -0
- xlwings_server/wasm/__init__.py +0 -0
- xlwings_server/wasm/config.py +24 -0
- xlwings_server/wasm/main.py +236 -0
- xlwings_server/wasm/requirements.txt +5 -0
- xlwings_server-1.1.0.dist-info/METADATA +61 -0
- xlwings_server-1.1.0.dist-info/RECORD +313 -0
- xlwings_server-1.1.0.dist-info/WHEEL +4 -0
- xlwings_server-1.1.0.dist-info/entry_points.txt +2 -0
- xlwings_server-1.1.0.dist-info/licenses/LICENSE.md +223 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_NewWindowCrossZoneErrorString="浏览器限制阻止创建对话框。对话框的域和外接程序宿主的域不处于同一安全区域。";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="所选内容必须采用表格格式。将数据设置为表格格式,然后再试。";Strings.OfficeOM.L_InvalidAPICall="无效的 API 调用";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="不支持该用户的标识类型。";Strings.OfficeOM.L_InvalidArgument="参数“{0}”不适用于这种情况、丢失或者格式不正确。";Strings.OfficeOM.L_CustomXmlExceedQuotaName="已达到选择限制";Strings.OfficeOM.L_ConfirmDialog="域{0}充当Microsoft Office,可以运行Office加载项,后者可能会访问你的个人数据。如果信任域以Office身份运行并访问数据,请单击“确定”继续。";Strings.OfficeOM.L_TooManyIncompleteRequests="等待前一个调用完成。";Strings.OfficeOM.L_PropertyNotLoaded='属性“{0}”不可用。读取属性的值之前,请先对包含对象调用 load 方法,再对关联的请求上下文调用 "context.sync()"。';Strings.OfficeOM.L_FileTypeNotSupported="不支持指定的文件类型。";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="注意: 建议由格式 API 调用设置的格式集数少于 100。";Strings.OfficeOM.L_InternalErrorDescription="发生了内部错误。";Strings.OfficeOM.L_InvalidRequestContext="不能跨不同的请求上下文使用该对象。";Strings.OfficeOM.L_UserNotSignedIn="没有用户登录到 Office。";Strings.OfficeOM.L_DataReadError="数据读取错误";Strings.OfficeOM.L_CustomXmlOutOfDateName="数据不是最新的";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="数据已过期。请重新检索对象。";Strings.OfficeOM.L_Timeout="操作已超时。";Strings.OfficeOM.L_UnsupportedUserIdentity="不支持的用户标识类型。";Strings.OfficeOM.L_NetworkProblemRetrieveFile="发生网络问题,无法检索该文件。";Strings.OfficeOM.L_MultipleNamedItemFound="找到多个具有相同名称的对象。";Strings.OfficeOM.L_TooManyOptionalObjects="参数列表中的多个可选对象";Strings.OfficeOM.L_InvalidGrant="缺少 Preauthorization。";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="你的 Office 会话已过期或无效。若要继续, 请刷新页面。";Strings.OfficeOM.L_DataNotMatchSelection="提供的数据对象与当前所选内容的形状或尺寸不兼容。";Strings.OfficeOM.L_EventHandlerNotExist="找不到此绑定的指定事件处理程序。";Strings.OfficeOM.L_NetworkProblem="网络问题";Strings.OfficeOM.L_ConfirmDialogConsentTitle="请稍等...";Strings.OfficeOM.L_DisplayDialogError="显示对话框错误";Strings.OfficeOM.L_InvalidBinding="无效的绑定";Strings.OfficeOM.L_NotImplemented="未实现函数 {0}。";Strings.OfficeOM.L_DialogRequireHTTPS="HTTP 协议不受支持。请改用 HTTPS。";Strings.OfficeOM.L_TooManyOptionalFunction="参数列表中的多个可选函数";Strings.OfficeOM.L_APINotSupported="不支持 API";Strings.OfficeOM.L_CannotNavigateTo="该对象位于不支持导航的位置。";Strings.OfficeOM.L_InvalidGetRowColumnCounts="指定的 rowCount 或 columnCount 值无效。";Strings.OfficeOM.L_CellDataAmountBeyondLimits="注意: 建议表格中的单元格数少于 20,000 个单元格。";Strings.OfficeOM.L_InvalidColumnsForBinding="指定的列无效。";Strings.OfficeOM.L_PermissionDenied="权限被拒绝";Strings.OfficeOM.L_SSOConnectionLostError="登录过程中丢失了连接。";Strings.OfficeOM.L_BindingCreationError="绑定创建错误";Strings.OfficeOM.L_InvalidCoercion="强制类型无效";Strings.OfficeOM.L_GetSelectionNotSupported="不支持当前所选内容。";Strings.OfficeOM.L_EventHandlerRemovalFailed="未能删除事件处理程序。";Strings.OfficeOM.L_InternalError="内部错误";Strings.OfficeOM.L_CoercionTypeNotSupported="不支持指定的强制类型。";Strings.OfficeOM.L_ApiNotFoundDetails="该方法或属性 {0} 是 {1} 要求集的一部分,在你的 {2} 版本中不可用。";Strings.OfficeOM.L_DocumentReadOnly="当前文档模式不允许所请求的操作。";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="操作失败,因为在此类别中即使用户同意,也不可使用此加载项";Strings.OfficeOM.L_GetDataIsTooLarge="请求的数据集太大。";Strings.OfficeOM.L_MemoryLimit="超过了内存限制";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="Excel.Script.CustomFunctions 中必须存在具有此名称、表示函数定义的属性。";Strings.OfficeOM.L_SSOClientError="来自 Office 的身份验证请求中出现错误。";Strings.OfficeOM.L_SSOUnsupportedPlatform="此平台不支持 API。";Strings.OfficeOM.L_DialogInvalidScheme="URL 方案不受支持。请改用 HTTPS。";Strings.OfficeOM.L_InvalidGetRows="指定的行无效。";Strings.OfficeOM.L_SSOServerErrorMessage="服务器上发生异常错误。";Strings.OfficeOM.L_InvalidBindingOperation="无效的绑定操作";Strings.OfficeOM.L_InvalidSelectionForBindingType="不能通过当前所选内容和指定的绑定类型创建绑定。";Strings.OfficeOM.L_SettingsAreStale="无法保存设置,因为它们不是最新的。";Strings.OfficeOM.L_SSOServerError="身份验证提供程序中出现错误。";Strings.OfficeOM.L_OutOfRange="超出范围";Strings.OfficeOM.L_ConnectionFailureWithStatus="请求失败,状态代码为 {0}。";Strings.OfficeOM.L_SetDataParametersConflict="指定的参数发生冲突。";Strings.OfficeOM.L_SpecifiedIdNotExist="指定的 ID 不存在。";Strings.OfficeOM.L_TooManyArguments="参数太多";Strings.OfficeOM.L_DataNotMatchBindingSize="提供的数据对象与当前所选内容的大小不匹配。";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath 将选择限制为 1024 个项目。";Strings.OfficeOM.L_PropertyDoesNotExist="该对象上不存在属性“{0}”。";Strings.OfficeOM.L_OperationCancelledError="已取消操作";Strings.OfficeOM.L_CancelButton="取消";Strings.OfficeOM.L_SaveSettingsError="保存设置错误";Strings.OfficeOM.L_FunctionCallFailed="函数 {0} 调用失败,错误代码: {1}。";Strings.OfficeOM.L_InvalidBindingError="无效的绑定错误";Strings.OfficeOM.L_UnsupportedDataObject="提供的数据对象不受支持。";Strings.OfficeOM.L_ValueNotLoaded='尚未加载结果对象的值。请先调用相关请求上下文上的 "context.sync()",然后再读取值属性。';Strings.OfficeOM.L_UnsupportedEnumeration="不受支持的枚举";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="尝试设置只读属性“{0}”。";Strings.OfficeOM.L_EventHandlerAdditionFailed="未能添加事件处理程序。";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="请进行选择。";Strings.OfficeOM.L_UserClickIgnore="用户已选择忽略对话框。";Strings.OfficeOM.L_DialogAddressNotTrusted="URL 的域不包括在清单中的 AppDomains 元素中,并且不是源位置的子域。";Strings.OfficeOM.L_CustomXmlError="自定义 XML 错误。";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='响应有效负载大小已超过限制。请参考文档: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins"。';Strings.OfficeOM.L_ReadSettingsError="读取设置错误";Strings.OfficeOM.L_InvalidArgumentGeneric="传递给函数的参数不适用于此情况、丢失或格式错误。";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="当强制类型表包含合并的单元格时,坐标参数不能与该表一起使用。";Strings.OfficeOM.L_NoCapability="您没有足够的权限执行此操作。";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="缺少获取身份验证上下文的函数";Strings.OfficeOM.L_OKButton="确定";Strings.OfficeOM.L_UserAbortedMessage="用户没有允许外接程序的权限。";Strings.OfficeOM.L_InvalidParameters="函数 {0} 包含无效参数。";Strings.OfficeOM.L_CloseFileBeforeRetrieve="在检索另一个文件之前对当前文件调用 closeAsync。";Strings.OfficeOM.L_NavOutOfBound="操作失败,因为索引超出范围。";Strings.OfficeOM.L_InvalidDataFormat="指定的数据对象的格式无效。";Strings.OfficeOM.L_InvalidOrTimedOutSession="无效或定时出会话";Strings.OfficeOM.L_NotTrustedWAC="已禁用此加载项,以帮助保护你的安全。若要继续使用外接程序,请验证此项目托管在受信任的域中或在 Office 桌面应用中打开它。";Strings.OfficeOM.L_DataNotMatchCoercionType="指定的数据对象的类型与当前所选内容不兼容。";Strings.OfficeOM.L_SliceSizeNotSupported="指定的扇区大小不受支持。";Strings.OfficeOM.L_DataWriteReminder="数据写入提醒";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="当强制类型表包含合并的单元格时,坐标参数不能与该表一起使用。";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod='无法通过 "object.set" 方法应用对属性“{0}”的更改。';Strings.OfficeOM.L_InvalidSetColumns="指定的列无效。";Strings.OfficeOM.L_InvalidReadForBlankRow="指定的行是空的。";Strings.OfficeOM.L_InvalidGetColumns="指定的列无效。";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="当模式对话框处于打开状态时,Office 不支持写入操作。";Strings.OfficeOM.L_NotSupported="不支持函数 {0}。";Strings.OfficeOM.L_UnknownBindingType="不支持该绑定类型。";Strings.OfficeOM.L_InvalidSSOAddinMessage="此外接程序不支持标识 API。";Strings.OfficeOM.L_RowIndexOutOfRange="行索引值不在允许的范围内。请使用少于行数的值(0 或更大)。";Strings.OfficeOM.L_CustomFunctionImplementationMissing='Excel.Script.CustomFunctions 中具有此名称的表示函数定义的属性必须包含实现了该函数的 "call" 属性。';Strings.OfficeOM.L_DialogOK="确定";Strings.OfficeOM.L_ShuttingDown="操作失败,因为服务器上的数据不是最新的。";Strings.OfficeOM.L_CannotWriteToSelection="无法写入到当前所选内容。";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="配置浏览器";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API 请求失败,因为工作簿已隐藏。请取消隐藏工作簿,然后重试。";Strings.OfficeOM.L_IndexOutOfRange="索引超出范围。";Strings.OfficeOM.L_SetDataIsTooLarge="指定的数据对象太大。";Strings.OfficeOM.L_InvalidGrantMessage="缺少对此加载项的授权。";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl 类型不受支持。";Strings.OfficeOM.L_APICallFailed="API 调用失败";Strings.OfficeOM.L_RequestTokenUnavailable="已限制此 API 以减慢调用频率。";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="指定的强制类型与此绑定类型不兼容。";Strings.OfficeOM.L_ImplicitNotLoaded="在获取令牌之前未加载此模块 ";Strings.OfficeOM.L_NotSupportedBindingType="不支持指定的绑定类型 {0}。";Strings.OfficeOM.L_BadSelectorString="传递到选择器中的字符串格式不正确或不受支持。";Strings.OfficeOM.L_BrowserAPINotSupported="此浏览器不支持请求的 API。";Strings.OfficeOM.L_ConfirmCancelMessage="抱歉,无法继续操作。";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="忽略";Strings.OfficeOM.L_InvalidApiArgumentsMessage="输入参数无效。";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='请求有效负载大小已超过限制。请参考文档: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins"。';Strings.OfficeOM.L_InvalidCellsValue="一个或多个单元格参数具有不允许的值。请仔细检查值,然后重试。";Strings.OfficeOM.L_InvalidSetRows="指定的行无效。";Strings.OfficeOM.L_ConnectionFailureWithDetails="请求失败,状态代码为 {0},错误代码为 {1},并显示以下错误消息: {2}";Strings.OfficeOM.L_InvalidFormat="无效的格式错误";Strings.OfficeOM.L_InvalidValue="无效的值";Strings.OfficeOM.L_NamedItemNotFound="已命名的项目不存在。";Strings.OfficeOM.L_BindingToMultipleSelection="不支持非连续选择。";Strings.OfficeOM.L_UnsupportedEnumerationMessage="当前宿主应用程序中不支持枚举。";Strings.OfficeOM.L_SelectionNotSupportCoercionType="当前所选内容与指定强制类型不兼容。";Strings.OfficeOM.L_InvalidTableOptionValue="一个或多个表格选项参数具有不允许的值。请仔细检查值,然后重试。";Strings.OfficeOM.L_InvalidResourceUrl="提供的应用程序资源 Url 无效。";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="函数名必须包含一个非空的命名空间和一个非空的短名称。";Strings.OfficeOM.L_NoHttpsWAC="此 Office 会话未使用安全连接。我们建议你采取额外的预防措施。";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="允许";Strings.OfficeOM.L_MissingRequiredArguments="缺少某些必需的参数";Strings.OfficeOM.L_OperationCancelledErrorMessage="用户已取消操作。";Strings.OfficeOM.L_InvalidNamedItemForBindingType="指定的绑定类型与提供的已命名项目不兼容。";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="登录过程中丢失了连接,用户可能未成功登录。这可能是由于用户的浏览器配置设置而导致,如安全区域设置。";Strings.OfficeOM.L_InvalidResourceUrlMessage="清单中指定的资源 Url 无效。";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="此绑定类型上不支持操作。";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="应用程序 {0} 不存在。Microsoft.Office.WebExtension.initialize(reason) 未被调用。";Strings.OfficeOM.L_ElementMissing="由于缺少某些参数值,无法设置表格单元格的格式。请仔细检查参数,然后重试。";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel 处于单元格编辑模式。请按 Enter 或 Tab 或者选择其他单元格以退出编辑模式,然后重试。";Strings.OfficeOM.L_InvalidApiCallInContext="当前环境下发生无效的 API 呼叫。";Strings.OfficeOM.L_SelectionCannotBound="无法绑定到当前所选内容。";Strings.OfficeOM.L_RunMustReturnPromise="传递到“.run”方法的批处理函数未返回一个承诺。该函数必须返回一个承诺,以便可以在批处理操作完成时释放任何自动跟踪的对象。一般通过从“context.sync()”返回响应来返回一个承诺。";Strings.OfficeOM.L_NotSupportedEventType="不支持指定的事件类型 {0}。";Strings.OfficeOM.L_InvalidObjectPath='对象路径“{0}”不适用于当前尝试执行的操作。如果跨多个 "context.sync" 调用以及在 ".run" 批处理的顺序执行之外使用该对象,请使用 "context.trackedObjects.add()" 和 "context.trackedObjects.remove()" 方法来管理该对象的生存期。';Strings.OfficeOM.L_OperationNotSupported="不支持此项操作。";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="操作失败,因为此外接程序已请求访问令牌。";Strings.OfficeOM.L_OverwriteWorksheetData="设置操作失败,因为提供的数据对象将覆盖或移动数据。";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="函数名仅可包含字母、数字、下划线和句点。";Strings.OfficeOM.L_DataNotMatchBindingType="指定的数据对象与绑定类型不兼容。";Strings.OfficeOM.L_NewWindowCrossZone="浏览器的安全设置阻止创建对话框。请尝试使用其他浏览器,或 {0} 以将“{1}”和地址栏中显示的域置于同一安全区域。";Strings.OfficeOM.L_DialogParentIsMinimized="操作失败,因为父窗口已最小化。";Strings.OfficeOM.L_MissingParameter="缺少的参数";Strings.OfficeOM.L_ActivityLimitReached="已达到活动限制。";Strings.OfficeOM.L_DataWriteError="数据写入错误";Strings.OfficeOM.L_UserAborted="用户已中止许可请求。";Strings.OfficeOM.L_CannotRegisterEvent="无法注册事件处理程序。";Strings.OfficeOM.L_CustomXmlNodeNotFound="找不到指定的节点。";Strings.OfficeOM.L_ContinueButton="继续";Strings.OfficeOM.L_GetDataParametersConflict="指定的参数发生冲突。";Strings.OfficeOM.L_SettingsStaleError="设置过期错误";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} 希望显示一个新窗口。";Strings.OfficeOM.L_CallbackNotAFunction="回调必须是函数类型,而其类型为 {0}。";Strings.OfficeOM.L_DocumentIsInactive="操作失败,因为包含此加载项的文档处于非活动状态。";Strings.OfficeOM.L_ModalDialogOpeng="操作失败,因为此加载项已具有活动模式对话框。";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="即使用户同意,也不可使用此加载项。";Strings.OfficeOM.L_SettingsCannotSave="无法保存设置。";Strings.OfficeOM.L_InvalidDataObject="无效的数据对象";Strings.OfficeOM.L_ColIndexOutOfRange="列索引值不在允许的范围内。请使用少于列数的值(0 或更大)。";Strings.OfficeOM.L_SettingNameNotExist="指定的设置名称不存在。";Strings.OfficeOM.L_DataStale="数据不是最新的";Strings.OfficeOM.L_InvalidNode="无效的节点";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="你即将从 {0} 发送和接收潜在的敏感信息。仅当你信任接收敏感信息的以下网站时才单击“确定”: {1}。";Strings.OfficeOM.L_EventRegistrationError="事件注册错误";Strings.OfficeOM.L_ConfirmRefreshMessage="若要继续,请删除加载项并重新添加,或刷新页面。";Strings.OfficeOM.L_RedundantCallbackSpecification="不能在参数列表和可选对象中同时指定回调。";Strings.OfficeOM.L_DialogAlreadyOpened="操作失败,因为此外接程序已具有一个活动对话框。";Strings.OfficeOM.L_DialogNavigateError="对话框导航错误";Strings.OfficeOM.L_BindingNotExist="指定的绑定不存在。";Strings.OfficeOM.L_InvalidFormatValue="一个或多个格式参数具有不允许的值。请仔细检查值,然后重试。";Strings.OfficeOM.L_SSOClientErrorMessage="客户端中发生异常错误。";Strings.OfficeOM.L_ConfirmDialogConsent="单击“确定”将允许 {0} 访问你的内容和个人信息。 ";Strings.OfficeOM.L_AppNameNotExist="{0} 的加载项名称不存在。";Strings.OfficeOM.L_HostError="主机错误";Strings.OfficeOM.L_FormattingReminder="格式设置提醒";Strings.OfficeOM.L_RequestTimeout="调用时间太长,无法执行。";Strings.OfficeOM.L_InitializeNotReady="Office.js 尚未完全加载。请稍后再试或者确保在 Office.initialize 函数上添加初始化代码。";Strings.OfficeOM.L_InvalidSetStartRowColumn="指定的 startRow 或 startColumn 值无效。";Strings.OfficeOM.L_InvalidGetStartRowColumn="指定的 startRow 或 startColumn 值无效。";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="外接程序已请求访问令牌。";Strings.OfficeOM.L_FormatValueOutOfRange="值不在允许的范围内。";Strings.OfficeOM.L_InValidOptionalArgument="可选参数无效"
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
if (window.Type && window.Type.registerNamespace) {
|
|
2
|
+
Type.registerNamespace("Strings");} else {
|
|
3
|
+
if(typeof(window['"Strings"']) == 'undefined') {
|
|
4
|
+
window['"Strings"'] = new Object(); window['"Strings"']. __namespace = true;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
}
|
|
8
|
+
Strings.OfficeOM=function(){};if (Strings.OfficeOM.registerClass) Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_APICallFailed="API Call Failed";Strings.OfficeOM.L_APINotSupported="API Not Supported";Strings.OfficeOM.L_ActivityLimitReached="Activity limit has been reached.";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="Please make a selection.";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="Add-in is already requesting an access token.";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="The operation failed because this add-in is already requesting an access token.";Strings.OfficeOM.L_ApiNotFoundDetails="The method or property {0} is part of the {1} requirement set, which is not available in your version of {2}.";Strings.OfficeOM.L_AppNameNotExist="Add-in Name for {0} doesn't exist.";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="Application {0} does not exist. Microsoft.Office.WebExtension.initialize(reason) is not called.";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="Attempting to set read-only property '{0}'.";Strings.OfficeOM.L_BadSelectorString="The string passed into the selector is improperly formatted or unsupported.";Strings.OfficeOM.L_BindingCreationError="Binding Creation Error";Strings.OfficeOM.L_BindingNotExist="The specified binding does not exist.";Strings.OfficeOM.L_BindingToMultipleSelection="Noncontiguous selections are not supported.";Strings.OfficeOM.L_BrowserAPINotSupported="This browser does not support the requested API.";Strings.OfficeOM.L_CallbackNotAFunction="Callback must be of type function, was of type {0}.";Strings.OfficeOM.L_CancelButton="Cancel";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="Changes to property '{0}' cannot be applied through an \"object.set\" method.";Strings.OfficeOM.L_CannotNavigateTo="The object is located in a place where navigation is not supported.";Strings.OfficeOM.L_CannotRegisterEvent="The event handler cannot be registered.";Strings.OfficeOM.L_CannotWriteToSelection="Cannot write to the current selection.";Strings.OfficeOM.L_CellDataAmountBeyondLimits="Note: The number of cells in a table is suggested to be below 20,000 cells.";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="Note: The formatting sets set by a Formatting API call is suggested to be below 100.";Strings.OfficeOM.L_CloseFileBeforeRetrieve="Call closeAsync on the current File before retrieving another.";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="The specified coercion type is not compatible with this binding type.";Strings.OfficeOM.L_CoercionTypeNotSupported="The specified coercion type is not supported.";Strings.OfficeOM.L_ColIndexOutOfRange="The column index value is out of the allowed range. Use a value (0 or higher) that's less than the number of columns.";Strings.OfficeOM.L_ConfirmCancelMessage="Sorry, we can't continue.";Strings.OfficeOM.L_ConfirmDialog="The domain {0} is acting as Microsoft Office and can run Office add-ins, which may access your personal data. If you trust the domain to run as Office and access your data, click OK to continue.";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="You are about to send and receive potentially sensitive information from {0}. Only click OK if you trust the following website recieving the sensitive information: {1}.";Strings.OfficeOM.L_ConfirmDialogConsent="By clicking OK, you will allow {0} access to your content and personal information. ";Strings.OfficeOM.L_ConfirmDialogConsentTitle="One moment ...";Strings.OfficeOM.L_ConfirmRefreshMessage="To continue, remove the add-in and add it again, or refresh the page.";Strings.OfficeOM.L_ConnectionFailureWithDetails="The request failed with status code of {0}, error code {1} and the following error message: {2}";Strings.OfficeOM.L_ConnectionFailureWithStatus="The request failed with status code of {0}.";Strings.OfficeOM.L_ContinueButton="Continue";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="A property with this name that represents the function's definition must exist on Excel.Script.CustomFunctions.";Strings.OfficeOM.L_CustomFunctionImplementationMissing="The property with this name on Excel.Script.CustomFunctions that represents the function's definition must contain a 'call' property that implements the function.";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="The function name must contain a non-empty namespace and a non-empty short name.";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="The function name may only contain letters, digits, underscores, and periods.";Strings.OfficeOM.L_CustomXmlError="Custom XML Error.";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath limits selection to 1024 items.";Strings.OfficeOM.L_CustomXmlExceedQuotaName="Selection Limit Reached";Strings.OfficeOM.L_CustomXmlNodeNotFound="The specified node was not found.";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="The data is out of date. Retrieve the object again.";Strings.OfficeOM.L_CustomXmlOutOfDateName="Data Not Current";Strings.OfficeOM.L_DataNotMatchBindingSize="The supplied data object does not match the size of the current selection.";Strings.OfficeOM.L_DataNotMatchBindingType="The specified data object is not compatible with the binding type.";Strings.OfficeOM.L_DataNotMatchCoercionType="The type of the specified data object is not compatible with the current selection.";Strings.OfficeOM.L_DataNotMatchSelection="The supplied data object is not compatible with the shape or dimensions of the current selection.";Strings.OfficeOM.L_DataReadError="Data Read Error";Strings.OfficeOM.L_DataStale="Data Not Current";Strings.OfficeOM.L_DataWriteError="Data Write Error";Strings.OfficeOM.L_DataWriteReminder="Data Write Reminder";Strings.OfficeOM.L_DialogAddressNotTrusted="The domain of the URL is not included in the AppDomains element in the manifest, and is not subdomain of source location.";Strings.OfficeOM.L_DialogAlreadyOpened="The operation failed because this add-in already has an active dialog.";Strings.OfficeOM.L_DialogInvalidScheme="The URL scheme is not supported. Use HTTPS instead.";Strings.OfficeOM.L_DialogNavigateError="Dialog Navigation Error";Strings.OfficeOM.L_DialogOK="OK";Strings.OfficeOM.L_DialogParentIsMinimized="The operation failed because parent window is minimized.";Strings.OfficeOM.L_DialogRequireHTTPS="The HTTP protocol is not supported. Use HTTPS instead";Strings.OfficeOM.L_DisplayDialogError="Display Dialog Error";Strings.OfficeOM.L_DocumentIsInactive="The operation failed because the document containing this add-in is inactive.";Strings.OfficeOM.L_DocumentReadOnly="The requested operation is not allowed on the current document mode.";Strings.OfficeOM.L_ElementMissing="We couldn't format the table cell because some parameter values are missing. Double-check the parameters and try again.";Strings.OfficeOM.L_EventHandlerAdditionFailed="Failed to add the event handler.";Strings.OfficeOM.L_EventHandlerNotExist="The specified event handler was not found for this binding.";Strings.OfficeOM.L_EventHandlerRemovalFailed="Failed to remove the event handler.";Strings.OfficeOM.L_EventRegistrationError="Event Registration Error";Strings.OfficeOM.L_FileTypeNotSupported="The specified file type is not supported.";Strings.OfficeOM.L_FormatValueOutOfRange="The value is out of the allowed range.";Strings.OfficeOM.L_FormattingReminder="Formatting Reminder";Strings.OfficeOM.L_FunctionCallFailed="Function {0} call failed, error code: {1}.";Strings.OfficeOM.L_GetDataIsTooLarge="The requested data set is too large.";Strings.OfficeOM.L_GetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_GetSelectionNotSupported="The current selection is not supported.";Strings.OfficeOM.L_HostError="Host Error";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="The function to get authentication context is missing";Strings.OfficeOM.L_ImplicitNotLoaded="The module is not loaded before acquire a token";Strings.OfficeOM.L_InValidOptionalArgument="invalid optional argument";Strings.OfficeOM.L_IndexOutOfRange="Index out of range.";Strings.OfficeOM.L_InitializeNotReady="Office.js has not been fully loaded yet. Please try again later or make sure to add your initialization code on the Office.initialize function.";Strings.OfficeOM.L_InternalError="Internal Error";Strings.OfficeOM.L_InternalErrorDescription="An internal error has occurred.";Strings.OfficeOM.L_InvalidAPICall="Invalid API Call";Strings.OfficeOM.L_InvalidApiArgumentsMessage="Invalid input arguments.";Strings.OfficeOM.L_InvalidApiCallInContext="Invalid API call in the current context.";Strings.OfficeOM.L_InvalidArgument="The argument '{0}' doesn't work for this situation, is missing, or isn't in the right format.";Strings.OfficeOM.L_InvalidArgumentGeneric="The argument(s) passed into the function don't work for this situation, are missing, or aren't in the right format.";Strings.OfficeOM.L_InvalidBinding="Invalid Binding";Strings.OfficeOM.L_InvalidBindingError="Invalid Binding Error";Strings.OfficeOM.L_InvalidBindingOperation="Invalid Binding Operation";Strings.OfficeOM.L_InvalidCellsValue="One or more of the cells parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidCoercion="Invalid Coercion Type";Strings.OfficeOM.L_InvalidColumnsForBinding="The specified columns are invalid.";Strings.OfficeOM.L_InvalidDataFormat="The format of the specified data object is invalid.";Strings.OfficeOM.L_InvalidDataObject="Invalid Data Object";Strings.OfficeOM.L_InvalidFormat="Invalid Format Error";Strings.OfficeOM.L_InvalidFormatValue="One or more of the format parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidGetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidGetRowColumnCounts="The specified rowCount or columnCount values are invalid.";Strings.OfficeOM.L_InvalidGetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidGetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidGrant="Preauthorization missing.";Strings.OfficeOM.L_InvalidGrantMessage="Missing grant for this add-in.";Strings.OfficeOM.L_InvalidNamedItemForBindingType="The specified binding type is not compatible with the supplied named item.";Strings.OfficeOM.L_InvalidNode="Invalid Node";Strings.OfficeOM.L_InvalidObjectPath='The object path \'{0}\' isn\'t working for what you\'re trying to do. If you\'re using the object across multiple "context.sync" calls and outside the sequential execution of a ".run" batch, please use the "context.trackedObjects.add()" and "context.trackedObjects.remove()" methods to manage the object\'s lifetime.';Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel is in cell-editing mode. Please exit the edit mode by pressing ENTER or TAB or selecting another cell, and then try again.";Strings.OfficeOM.L_InvalidOrTimedOutSession="Invalid Or Timed Out Session";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="Your Office session has expired or is invalid. To continue, refresh the page.";Strings.OfficeOM.L_InvalidParameters="Function {0} has invalid parameters.";Strings.OfficeOM.L_InvalidReadForBlankRow="The specified row is blank.";Strings.OfficeOM.L_InvalidRequestContext="Cannot use the object across different request contexts.";Strings.OfficeOM.L_InvalidResourceUrl="Invalid application resource Url provided.";Strings.OfficeOM.L_InvalidResourceUrlMessage="Invalid resource Url specified in the manifest.";Strings.OfficeOM.L_InvalidSSOAddinMessage="The identity API is not supported for this add-in.";Strings.OfficeOM.L_InvalidSelectionForBindingType="A binding cannot be created with the current selection and the specified binding type.";Strings.OfficeOM.L_InvalidSetColumns="The specified columns are invalid.";Strings.OfficeOM.L_InvalidSetRows="The specified rows are invalid.";Strings.OfficeOM.L_InvalidSetStartRowColumn="The specified startRow or startColumn values are invalid.";Strings.OfficeOM.L_InvalidTableOptionValue="One or more of the tableOptions parameters have values that aren't allowed. Double-check the values and try again.";Strings.OfficeOM.L_InvalidValue="Invalid Value";Strings.OfficeOM.L_MemoryLimit="Memory Limit Exceeded";Strings.OfficeOM.L_MissingParameter="Missing Parameter";Strings.OfficeOM.L_MissingRequiredArguments="missing some required arguments";Strings.OfficeOM.L_ModalDialogOpeng="The operation failed because this add-in already has an active modal dialog.";Strings.OfficeOM.L_MultipleNamedItemFound="Multiple objects with the same name were found.";Strings.OfficeOM.L_NamedItemNotFound="The named item does not exist.";Strings.OfficeOM.L_NavOutOfBound="The operation failed because the index is out of range.";Strings.OfficeOM.L_NetworkProblem="Network Problem";Strings.OfficeOM.L_NetworkProblemRetrieveFile="A network problem has prevented retrieval of the file.";Strings.OfficeOM.L_NewWindowCrossZone="The security settings in your browser prevent us from creating a dialog box. Try a different browser, or {0} so that '{1}' and the domain shown in your address bar are in the same security zone.";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="configure your browser";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="Browser restrictions prevented us from creating the dialog box. The domain of dialog box and the domain of the add-in host are not in the same security zone.";Strings.OfficeOM.L_NoCapability="You don't have sufficient permissions for this action.";Strings.OfficeOM.L_NoHttpsWAC="This Office session is not using a secure connection. We recommend that you take extra precautions.";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="Coordinate parameters cannot be used with coercion type Table when the table contains merged cells.";Strings.OfficeOM.L_NotImplemented="Function {0} is not implemented.";Strings.OfficeOM.L_NotSupported="Function {0} is not supported.";Strings.OfficeOM.L_NotSupportedBindingType="The specified binding type {0} is not supported.";Strings.OfficeOM.L_NotSupportedEventType="The specified event type {0} is not supported.";Strings.OfficeOM.L_NotTrustedWAC="This add-in has been disabled to help keep you safe. To continue using the add-in, validate that this item is hosted in a trusted domain or open it in the Office desktop app.";Strings.OfficeOM.L_OKButton="OK";Strings.OfficeOM.L_OperationCancelledError="Operation Cancelled";Strings.OfficeOM.L_OperationCancelledErrorMessage="The operation was cancelled by the user.";Strings.OfficeOM.L_OperationNotSupported="The operation is not supported.";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="Selected content needs to be in table format. Format the data as a table and try again.";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="Operation is not supported on this binding type.";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl type not supported.";Strings.OfficeOM.L_OutOfRange="Out of Range";Strings.OfficeOM.L_OverwriteWorksheetData="The set operation failed because the supplied data object will overwrite or shift data.";Strings.OfficeOM.L_PermissionDenied="Permission Denied";Strings.OfficeOM.L_PropertyDoesNotExist="Property '{0}' does not exist on the object.";Strings.OfficeOM.L_PropertyNotLoaded="The property '{0}' is not available. Before reading the property's value, call the load method on the containing object and call \"context.sync()\" on the associated request context.";Strings.OfficeOM.L_ReadSettingsError="Read Settings Error";Strings.OfficeOM.L_RedundantCallbackSpecification="Callback cannot be specified both in argument list and in optional object.";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='The request payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RequestTimeout="The call took too long to execute.";Strings.OfficeOM.L_RequestTokenUnavailable="This API has been throttled to slow the call frequency.";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='The response payload size has exceeded the limit. Please refer to the documentation: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins".';Strings.OfficeOM.L_RowIndexOutOfRange="The row index value is out of the allowed range. Use a value (0 or higher) that's less than the number of rows.";Strings.OfficeOM.L_RunMustReturnPromise='The batch function passed to the ".run" method didn\'t return a promise. The function must return a promise, so that any automatically-tracked objects can be released at the completion of the batch operation. Typically, you return a promise by returning the response from "context.sync()".';Strings.OfficeOM.L_SSOClientError="Error occurred in the authentication request from Office.";Strings.OfficeOM.L_SSOClientErrorMessage="An unexpected error occurred in the client.";Strings.OfficeOM.L_SSOConnectionLostError="A connection was lost during the sign in process.";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="A connection was lost during the sign in process, and the user may not be signed in. This was likely due to the user's browser configuration settings, such as security zones.";Strings.OfficeOM.L_SSOServerError="Error occurred in the authentication provider.";Strings.OfficeOM.L_SSOServerErrorMessage="An unexpected error occurred on the server.";Strings.OfficeOM.L_SSOUnsupportedPlatform="API is not supported in this platform.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="This add-in does not support user consent.";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="The operation failed because this add-in does not support user consent in this category";Strings.OfficeOM.L_SaveSettingsError="Save Settings Error";Strings.OfficeOM.L_SelectionCannotBound="Cannot bind to the current selection.";Strings.OfficeOM.L_SelectionNotSupportCoercionType="The current selection is not compatible with the specified coercion type.";Strings.OfficeOM.L_SetDataIsTooLarge="The specified data object is too large.";Strings.OfficeOM.L_SetDataParametersConflict="The specified parameters conflict.";Strings.OfficeOM.L_SettingNameNotExist="The specified setting name does not exist.";Strings.OfficeOM.L_SettingsAreStale="Settings could not be saved because they are not current.";Strings.OfficeOM.L_SettingsCannotSave="The settings could not be saved.";Strings.OfficeOM.L_SettingsStaleError="Settings Stale Error";Strings.OfficeOM.L_ShowWindowDialogNotification="{0} wants to display a new window.";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="Allow";Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="Ignore";Strings.OfficeOM.L_ShuttingDown="Operation failed because the data is not current on the server.";Strings.OfficeOM.L_SliceSizeNotSupported="The specified slice size is not supported.";Strings.OfficeOM.L_SpecifiedIdNotExist="The specified ID does not exist.";Strings.OfficeOM.L_Timeout="The operation has timed out.";Strings.OfficeOM.L_TooManyArguments="too many arguments";Strings.OfficeOM.L_TooManyIncompleteRequests="Wait until the previous call completes.";Strings.OfficeOM.L_TooManyOptionalFunction="multiple optional functions in parameter list";Strings.OfficeOM.L_TooManyOptionalObjects="multiple optional objects in parameter list";Strings.OfficeOM.L_UnknownBindingType="The binding type is not supported.";Strings.OfficeOM.L_UnsupportedDataObject="The supplied data object type is not supported.";Strings.OfficeOM.L_UnsupportedEnumeration="Unsupported Enumeration";Strings.OfficeOM.L_UnsupportedEnumerationMessage="The enumeration isn't supported in the current host application.";Strings.OfficeOM.L_UnsupportedUserIdentity="User identity type is not supported.";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="The identity type of the user is not supported.";Strings.OfficeOM.L_UserAborted="User aborted the consent request.";Strings.OfficeOM.L_UserAbortedMessage="The user did not consent the add-in permissions.";Strings.OfficeOM.L_UserClickIgnore="The user chose to ignore the dialog box.";Strings.OfficeOM.L_UserNotSignedIn="No user is signed into Office.";Strings.OfficeOM.L_ValueNotLoaded='The value of the result object has not been loaded yet. Before reading the value property, call "context.sync()" on the associated request context.';Strings.OfficeOM.L_WorkbookHiddenMessage="The JavaScript API request failed because the workbook was hidden. Please unhide the workbook and try again.";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="Write operation is not supported for Office when a modal dialog is open."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Type.registerNamespace("Strings");Strings.OfficeOM=function(){};Strings.OfficeOM.registerClass("Strings.OfficeOM");Strings.OfficeOM.L_UnknownBindingType="不支援此繫結類型。";Strings.OfficeOM.L_RunMustReturnPromise='傳遞到 ".run" 方法的批次函式沒有傳回承諾。函式必須傳回承諾,以便在批次作業完成時可釋放所有自動追蹤的物件。一般而言,您以透過來自 "context.sync()" 的回應來傳回承諾。';Strings.OfficeOM.L_ShowWindowDialogNotificationIgnore="忽略";Strings.OfficeOM.L_RequestPayloadSizeLimitExceededMessage='要求承載大小已超過限制。請參閱文件: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins"。';Strings.OfficeOM.L_APICallFailed="API 呼叫失敗";Strings.OfficeOM.L_DataStale="資料不是最新的";Strings.OfficeOM.L_UnsupportedEnumerationMessage="目前的主機應用程式中不支援列舉。";Strings.OfficeOM.L_ActivityLimitReached="已達活動限制。";Strings.OfficeOM.L_DialogOK="確定";Strings.OfficeOM.L_UnsupportedUserIdentityMessage="不支援使用者的身分識別類型。";Strings.OfficeOM.L_ConfirmDialogConsent="按一下 [確定],即表示您允許 {0} 存取您的內容與個人資訊。 ";Strings.OfficeOM.L_MultipleNamedItemFound="找到多個同名稱的物件。";Strings.OfficeOM.L_InvalidSetColumns="指定的欄無效。";Strings.OfficeOM.L_InvalidApiCallInContext="目前的內容中發生無效的 API 呼叫。";Strings.OfficeOM.L_NetworkProblemRetrieveFile="網路發生問題,無法擷取檔案。";Strings.OfficeOM.L_InvalidNamedItemForBindingType="指定的繫結類型與提供的命名項目不相容。";Strings.OfficeOM.L_InvalidGetRowColumnCounts="指定的 rowCount 或 columnCount 值無效。";Strings.OfficeOM.L_NamedItemNotFound="命名項目不存在。";Strings.OfficeOM.L_DocumentReadOnly="目前的文件模式不允許執行要求的作業。";Strings.OfficeOM.L_InvalidOperationInCellEditMode="Excel 處於儲存格編輯模式。請按 ENTER 或 TAB 或是選取另一個儲存格以結束編輯模式,然後再試一次。";Strings.OfficeOM.L_SSOUnsupportedPlatform="此平台不支援 API。";Strings.OfficeOM.L_InvalidDataFormat="指定的資料物件格式無效。";Strings.OfficeOM.L_MissingParameter="缺少參數。";Strings.OfficeOM.L_ReadSettingsError="讀取設定錯誤";Strings.OfficeOM.L_ShuttingDown="作業失敗,因為伺服器上的資料不是最新的。";Strings.OfficeOM.L_AddinIsAlreadyRequestingToken="增益集已經要求存取權杖。";Strings.OfficeOM.L_DialogAlreadyOpened="作業失敗,因為這個增益集已有使用中的對話方塊。";Strings.OfficeOM.L_SliceSizeNotSupported="不支援指定的圖塊大小。";Strings.OfficeOM.L_WriteNotSupportedWhenModalDialogOpen="開啟強制回應對話方塊時,Office 不支援寫入作業。";Strings.OfficeOM.L_RedundantCallbackSpecification="回呼無法在引數清單和選用物件中指定。";Strings.OfficeOM.L_InvalidParameters="函數 {0} 有無效的參數。";Strings.OfficeOM.L_ImplicitGetAuthContextMissing="缺少取得驗證內容的功能";Strings.OfficeOM.L_DataWriteReminder="資料寫入提醒";Strings.OfficeOM.L_CustomFunctionDefinitionMissing="具有此名稱且代表函數定義的屬性必須存在於 Excel.Script.CustomFunctions。";Strings.OfficeOM.L_CustomXmlError="自訂 XML 錯誤。";Strings.OfficeOM.L_CustomFunctionNameCannotSplit="函數名稱必須包含非空白命名空間與非空白簡短名稱。";Strings.OfficeOM.L_DataReadError="資料讀取錯誤";Strings.OfficeOM.L_OperationCancelledErrorMessage="使用者已取消作業。";Strings.OfficeOM.L_InvalidBindingOperation="無效的繫結作業";Strings.OfficeOM.L_ElementMissing="無法設定表格儲存格格式,因為缺少某些參數值。請再次檢查參數,然後重試一次。";Strings.OfficeOM.L_DataNotMatchBindingType="指定的資料物件與繫結類型不相容。";Strings.OfficeOM.L_DataNotMatchSelection="提供的資料物件與目前選取範圍的圖形或維度不相容。";Strings.OfficeOM.L_SettingsAreStale="設定無法儲存,因為不是最新的。";Strings.OfficeOM.L_CustomXmlOutOfDateMessage="資料已過期。請重新擷取物件。";Strings.OfficeOM.L_RequestTimeout="呼叫執行耗時過長。";Strings.OfficeOM.L_InvalidColumnsForBinding="指定的欄無效。";Strings.OfficeOM.L_CustomXmlNodeNotFound="找不到指定的節點。";Strings.OfficeOM.L_NewWindowCrossZoneErrorString="瀏覽器限制導致我們無法建立對話方塊。對話方塊的網域和增益集主機的網域不是位於相同的安全性區域。";Strings.OfficeOM.L_EventHandlerRemovalFailed="無法移除事件處理常式。";Strings.OfficeOM.L_InvalidSSOAddinMessage="此增益集不支援身分識別 API。";Strings.OfficeOM.L_NetworkProblem="網路問題";Strings.OfficeOM.L_TooManyIncompleteRequests="等候前一個呼叫完成。";Strings.OfficeOM.L_GetDataParametersConflict="指定的參數相衝突。";Strings.OfficeOM.L_HostError="主機錯誤";Strings.OfficeOM.L_NotTrustedWAC="已停用此增益集以協助保護您的安全。若要繼續使用此增益集,請確認此專案是託管在受信任的網域中,或在 Office 傳統型應用程式中開啟它。";Strings.OfficeOM.L_CustomFunctionImplementationMissing="Excel.Script.CustomFunctions 上具有此名稱且代表函數定義的屬性必須包含實作該函數的 'call' 屬性。";Strings.OfficeOM.L_ConfirmCancelMessage="抱歉,我們無法繼續。";Strings.OfficeOM.L_GetSelectionNotSupported="不支援目前的選取範圍。";Strings.OfficeOM.L_SelectionNotSupportCoercionType="目前的選取範圍與指定的強制型轉類型不相容。";Strings.OfficeOM.L_InvalidGetRows="指定的列無效。";Strings.OfficeOM.L_WorkbookHiddenMessage="JavaScript API 要求失敗,因為活頁簿已隱藏。請取消隱藏活頁簿,然後再試一次。";Strings.OfficeOM.L_FormatValueOutOfRange="值超出允許的範圍。";Strings.OfficeOM.L_InValidOptionalArgument="無效的選擇性引數";Strings.OfficeOM.L_ConnectionFailureWithStatus="要求失敗,狀態碼為 {0}。";Strings.OfficeOM.L_InvalidNode="無效的節點";Strings.OfficeOM.L_SettingsStaleError="設定過時錯誤";Strings.OfficeOM.L_InvalidResourceUrlMessage="資訊清單中指定的資源 URL 無效。";Strings.OfficeOM.L_InvalidValue="無效值";Strings.OfficeOM.L_ConfirmRefreshMessage="若要繼續,請移除增益集並重新新增,或重新整理頁面。";Strings.OfficeOM.L_CoercionTypeNotMatchBinding="指定的強制型轉類型與此繫結類型不相容。";Strings.OfficeOM.L_CellFormatAmountBeyondLimits="附註: 我們建議由格式 API 呼叫設定的格式組低於 100。";Strings.OfficeOM.L_EventHandlerAdditionFailed="無法新增事件處理常式。";Strings.OfficeOM.L_NewWindowCrossZone="您瀏覽器的安全性設定導致我們無法建立對話方塊。請嘗試其他瀏覽器,或{0}以讓 '{1}' 和網址列顯示的網域位於相同的安全性區域。";Strings.OfficeOM.L_SettingNameNotExist="指定的設定名稱不存在。";Strings.OfficeOM.L_IndexOutOfRange="索引超出範圍。";Strings.OfficeOM.L_PropertyNotLoaded="無法使用屬性 '{0}'。在讀取屬性值之前,呼叫包含物件上的 load 方法,並在相關的要求內容上呼叫 \"context.sync()\"。";Strings.OfficeOM.L_InvalidReadForBlankRow="指定的列是空白的。";Strings.OfficeOM.L_SSOClientErrorMessage="用戶端發生未預期的錯誤。";Strings.OfficeOM.L_OperationNotSupportedOnThisBindingType="不支援此繫結類型的作業。";Strings.OfficeOM.L_InvalidGetStartRowColumn="指定的 startRow 或 startColumn 值無效。";Strings.OfficeOM.L_InvalidSelectionForBindingType="無法以目前的選取範圍與指定的繫結類型建立繫結。";Strings.OfficeOM.L_CoercionTypeNotSupported="不支援指定的強制型轉類型。";Strings.OfficeOM.L_DialogRequireHTTPS="不支援 HTTP 通訊協定。請改用 HTTPS";Strings.OfficeOM.L_TooManyArguments="引數過多";Strings.OfficeOM.L_InvalidAPICall="無效的 API 呼叫";Strings.OfficeOM.L_InvalidCellsValue="一或多個儲存格參數有不允許使用的值。請再次檢查值,然後重試一次。";Strings.OfficeOM.L_EventRegistrationError="事件註冊錯誤";Strings.OfficeOM.L_TooManyOptionalFunction="參數清單中的多個選擇性函數";Strings.OfficeOM.L_InvalidApiArgumentsMessage="輸入引數無效。";Strings.OfficeOM.L_FormattingReminder="格式設定提醒";Strings.OfficeOM.L_APINotSupported="不支援 API";Strings.OfficeOM.L_CustomXmlExceedQuotaMessage="XPath 的選取項目上限為 1024 個項目。";Strings.OfficeOM.L_DataNotMatchBindingSize="提供的資料物件與目前選擇的大小不符。";Strings.OfficeOM.L_InvalidObjectPath='物件路徑 \'{0}\' 不適用於您嘗試處理的狀況。如果您正在跨多個 "context.sync" 呼叫來使用物件,且處於 ".run" 批次的循序執行之外,則請使用 "context.trackedObjects.add()" 和 "context.trackedObjects.remove()" 方法來管理物件的存留期。';Strings.OfficeOM.L_DocumentIsInactive="作業失敗,因為包含此增益集的文件閒置中。";Strings.OfficeOM.L_SaveSettingsError="儲存設定錯誤";Strings.OfficeOM.L_AttemptingToSetReadOnlyProperty="正在嘗試設定唯讀屬性 '{0}'。";Strings.OfficeOM.L_SSOClientError="來自 Office 的驗證要求發生錯誤。";Strings.OfficeOM.L_InvalidOrTimedOutSession="無效或逾時的工作階段";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategory="此增益集不支援使用者同意。";Strings.OfficeOM.L_CustomFunctionNameContainsBadChars="函數名稱只能包含字母、數字、底線與句號。";Strings.OfficeOM.L_InvalidGetColumns="指定的欄無效。";Strings.OfficeOM.L_BindingToMultipleSelection="不支援選取多個非連續項目。";Strings.OfficeOM.L_SpecifiedIdNotExist="指定的識別碼不存在。";Strings.OfficeOM.L_DataNotMatchCoercionType="指定的資料物件類型與目前的選擇不相容。";Strings.OfficeOM.L_InvalidCoercion="無效的強制型轉類型";Strings.OfficeOM.L_ConnectionFailureWithDetails="要求失敗,狀態碼為 {0}、錯誤碼為 {1},且錯誤訊息如下: {2}";Strings.OfficeOM.L_CannotNavigateTo="物件位於不支援導覽的位置。";Strings.OfficeOM.L_BrowserAPINotSupported="此瀏覽器不支援要求的 API。";Strings.OfficeOM.L_BindingCreationError="繫結建立錯誤";Strings.OfficeOM.L_NoCapability="您沒有足夠的權限可執行此動作。";Strings.OfficeOM.L_BindingNotExist="指定的繫結不存在。";Strings.OfficeOM.L_CancelButton="取消";Strings.OfficeOM.L_OsfControlTypeNotSupported="OsfControl 類型不受支援。";Strings.OfficeOM.L_InternalError="內部錯誤";Strings.OfficeOM.L_AppNameNotExist="{0} 的增益集名稱不存在。";Strings.OfficeOM.L_ConfirmDialogConsentTitle="請稍候...";Strings.OfficeOM.L_SSOConnectionLostErrorMessage="連線在登入程序期間已經中斷,因此使用者可能無法登入。這可能是使用者的瀏覽器設定 (例如安全性區域) 所致。";Strings.OfficeOM.L_SSOServerErrorMessage="伺服器發生未預期的錯誤。";Strings.OfficeOM.L_AddinIsAlreadyRequestingTokenMessage="作業失敗,因為此增益集已經要求存取權杖。";Strings.OfficeOM.L_InvalidOrTimedOutSessionMessage="您的 Office 會話已過期或無效。若要繼續, 請重新整理頁面。";Strings.OfficeOM.L_OKButton="確定";Strings.OfficeOM.L_SSOServerError="驗證提供者時發生錯誤。";Strings.OfficeOM.L_InvalidSetRows="指定的列無效。";Strings.OfficeOM.L_EventHandlerNotExist="此繫結找不到指定的事件處理常式。";Strings.OfficeOM.L_UserAbortedMessage="使用者未同意增益集權限。";Strings.OfficeOM.L_NotSupported="不支援函數 {0}。";Strings.OfficeOM.L_ValueNotLoaded='尚未載入結果物件的值。在讀取值屬性之前,請呼叫相關聯之要求內容中的 "context.sync()"。';Strings.OfficeOM.L_MemoryLimit="已超過記憶體限制";Strings.OfficeOM.L_CloseFileBeforeRetrieve="擷取另一個之前,呼叫目前的檔案中的 closeAsync。";Strings.OfficeOM.L_DisplayDialogError="顯示對話方塊錯誤";Strings.OfficeOM.L_PermissionDenied="權限遭拒";Strings.OfficeOM.L_CannotRegisterEvent="無法登錄事件處理常式。";Strings.OfficeOM.L_BadSelectorString="傳入選取器之字串的格式不適當或不受支援。";Strings.OfficeOM.L_NotSupportedEventType="不支援指定的事件類型 {0}。";Strings.OfficeOM.L_DialogInvalidScheme="不支援 URL 配置。請改為使用 HTTPS。";Strings.OfficeOM.L_InvalidGrant="缺少預先授權。";Strings.OfficeOM.L_InvalidResourceUrl="提供的應用程式資源 URL 無效。";Strings.OfficeOM.L_TooManyOptionalObjects="參數清單中的多個選擇性物件";Strings.OfficeOM.L_DialogParentIsMinimized="作業失敗,因為父視窗已最小化。";Strings.OfficeOM.L_OperationNotSupported="不支援此作業。";Strings.OfficeOM.L_CannotWriteToSelection="無法寫入至目前的選取範圍。";Strings.OfficeOM.L_UserClickIgnore="使用者選擇略過對話方塊。";Strings.OfficeOM.L_InvalidRequestContext="無法使用跨不同要求內容的物件。";Strings.OfficeOM.L_UserNotSignedIn="沒有使用者登入 Office。";Strings.OfficeOM.L_RequestTokenUnavailable="已節流此 API 減緩呼叫頻率。";Strings.OfficeOM.L_InvalidTableOptionValue="一或多個 tableOptions 參數有不允許使用的值,請再次檢查值,然後重試一次。";Strings.OfficeOM.L_NewWindowCrossZoneConfigureBrowserLink="設定您的瀏覽器";Strings.OfficeOM.L_CustomXmlOutOfDateName="資料不是最新的";Strings.OfficeOM.L_Timeout="作業逾時。";Strings.OfficeOM.L_DialogNavigateError="對話方塊導覽錯誤";Strings.OfficeOM.L_SetDataIsTooLarge="指定的資料物件太大。";Strings.OfficeOM.L_PropertyDoesNotExist="物件中沒有屬性 '{0}'。";Strings.OfficeOM.L_RowIndexOutOfRange="列索引值不在允許的範圍內。請用小於列數的值 (0 或更大)。";Strings.OfficeOM.L_NonUniformPartialGetNotSupported="表格含有合併儲存格時,座標參數不能與強制型轉類型表格共同使用。";Strings.OfficeOM.L_MissingRequiredArguments="遺失部分必要引數";Strings.OfficeOM.L_FunctionCallFailed="函數 {0} 呼叫失敗,錯誤碼: {1}。";Strings.OfficeOM.L_UnsupportedEnumeration="列舉不受支援";Strings.OfficeOM.L_AppNotExistInitializeNotCalled="應用程式 {0} 不存在。沒有呼叫 Microsoft.Office.WebExtension.initialize(reason)。";Strings.OfficeOM.L_ConfirmDialog="網域 {0} 做為 Microsoft Office,且可執行 Office 增益集,可能會存取您的個人資訊。如果您信任網域以 Office 執行並存取您的資料,請點擊 [確定] 以繼續。";Strings.OfficeOM.L_CustomXmlExceedQuotaName="已達選取項目上限";Strings.OfficeOM.L_InvalidArgumentGeneric="傳遞到函數的引數在此情況下不適用、已遺失或格式不正確。";Strings.OfficeOM.L_OutOfRange="超出範圍";Strings.OfficeOM.L_SSOConnectionLostError="連線在登入程序期間已經中斷。";Strings.OfficeOM.L_ShowWindowDialogNotification="「{0}」想要顯示新的視窗。";Strings.OfficeOM.L_UserAborted="使用者已中止同意要求。";Strings.OfficeOM.L_ConfirmDialogApiTrustsParent="您將從 {0} 發送和接收潛在敏感性資訊。只有在您信任以下接收敏感性資訊的網站時才按一下 [確定]: {1}。";Strings.OfficeOM.L_ImplicitNotLoaded="未在取得權杖前先載入模組";Strings.OfficeOM.L_NavOutOfBound="作業失敗,因為索引超出範圍。";Strings.OfficeOM.L_InternalErrorDescription="發生內部錯誤。";Strings.OfficeOM.L_AddBindingFromPromptDefaultText="請選擇一個選項。";Strings.OfficeOM.L_GetDataIsTooLarge="要求的資料集太大。";Strings.OfficeOM.L_InvalidBinding="無效的繫結";Strings.OfficeOM.L_SSOUserConsentNotSupportedByCurrentAddinCategoryMessage="作業失敗,因為此增益集在此類別中不支援使用者同意";Strings.OfficeOM.L_ShowWindowDialogNotificationAllow="允許";Strings.OfficeOM.L_SelectionCannotBound="無法繫結到目前的選取範圍。";Strings.OfficeOM.L_ModalDialogOpeng="作業失敗,因為此增益集已有使用中的強制回應對話方塊。";Strings.OfficeOM.L_OperationNotSupportedOnMatrixData="選取的內容需要使用表格格式。請將資料格式化為表格,然後再試一次。";Strings.OfficeOM.L_ColIndexOutOfRange="欄索引值不在允許的範圍內。請用小於欄數的值 (0 或更大)。";Strings.OfficeOM.L_InvalidDataObject="無效的資料物件";Strings.OfficeOM.L_InvalidSetStartRowColumn="指定的 startRow 或 startColumn 值無效。";Strings.OfficeOM.L_ApiNotFoundDetails="方法或屬性 {0} 是 {1} 需求集合的一部分,您的 {2} 版本無法使用它。";Strings.OfficeOM.L_NonUniformPartialSetNotSupported="表格含有合併儲存格時,座標參數不能與強制型轉類型表格共同使用。";Strings.OfficeOM.L_DataWriteError="資料寫入錯誤";Strings.OfficeOM.L_ResponsePayloadSizeLimitExceededMessage='回應承載大小已超過限制。請參閱文件: "https://docs.microsoft.com/office/dev/add-ins/concepts/resource-limits-and-performance-optimization#excel-add-ins"。';Strings.OfficeOM.L_OperationCancelledError="作業已取消";Strings.OfficeOM.L_DialogAddressNotTrusted="URL 的網域未包含在資訊清單的 AppDomains 元素中,且不是來源位置的子網域。";Strings.OfficeOM.L_InvalidArgument="引數 '{0}' 不適用於這種情況、遺失,或格式不正確。";Strings.OfficeOM.L_SettingsCannotSave="無法儲存設定。";Strings.OfficeOM.L_SetDataParametersConflict="指定的參數相衝突。";Strings.OfficeOM.L_InvalidBindingError="無效的繫結錯誤";Strings.OfficeOM.L_UnsupportedDataObject="提供的資料物件類型不受支援。";Strings.OfficeOM.L_CellDataAmountBeyondLimits="附註: 我們建議表格中的儲存格數量低於 20,000。";Strings.OfficeOM.L_OverwriteWorksheetData="設定作業失敗,因為提供的資料物件會覆寫資料或將資料移位。";Strings.OfficeOM.L_UnsupportedUserIdentity="不支援使用者身分識別類型。";Strings.OfficeOM.L_FileTypeNotSupported="指定的檔案類型不受支援。";Strings.OfficeOM.L_CallbackNotAFunction="回撥必須是類型函數、曾是類型 {0}。";Strings.OfficeOM.L_NotImplemented="函數 {0} 未實作。";Strings.OfficeOM.L_NotSupportedBindingType="不支援指定的繫結類型 {0}。";Strings.OfficeOM.L_InvalidFormat="無效的格式錯誤";Strings.OfficeOM.L_NoHttpsWAC="此 Office 工作階段未使用安全連線。我們建議您採取額外的預防措施。";Strings.OfficeOM.L_CannotApplyPropertyThroughSetMethod="無法透過 \"object.set\" 方法套用對屬性 '{0}' 所做的變更。";Strings.OfficeOM.L_InvalidGrantMessage="缺少此增益集的授權。";Strings.OfficeOM.L_InvalidFormatValue="一或多個格式參數有不允許使用的值。請再次檢查值,然後重試一次。";Strings.OfficeOM.L_InitializeNotReady="Office.js 尚未完全載入。請稍後再試,或將您的初始化程式碼新增到 Office.initialize 函數。";Strings.OfficeOM.L_ContinueButton="繼續"
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! Axios v1.12.2 Copyright (c) 2025 Matt Zabriskie and contributors */
|
|
2
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).axios=t()}(this,(function(){"use strict";function e(e){var r,n;function o(r,n){try{var a=e[r](n),s=a.value,u=s instanceof t;Promise.resolve(u?s.v:s).then((function(t){if(u){var n="return"===r?"return":"next";if(!s.k||t.done)return o(n,t);t=e[n](t).value}i(a.done?"return":"normal",t)}),(function(e){o("throw",e)}))}catch(e){i("throw",e)}}function i(e,t){switch(e){case"return":r.resolve({value:t,done:!0});break;case"throw":r.reject(t);break;default:r.resolve({value:t,done:!1})}(r=r.next)?o(r.key,r.arg):n=null}this._invoke=function(e,t){return new Promise((function(i,a){var s={key:e,arg:t,resolve:i,reject:a,next:null};n?n=n.next=s:(r=n=s,o(e,t))}))},"function"!=typeof e.return&&(this.return=void 0)}function t(e,t){this.v=e,this.k=t}function r(e){var r={},n=!1;function o(r,o){return n=!0,o=new Promise((function(t){t(e[r](o))})),{done:!1,value:new t(o,1)}}return r["undefined"!=typeof Symbol&&Symbol.iterator||"@@iterator"]=function(){return this},r.next=function(e){return n?(n=!1,e):o("next",e)},"function"==typeof e.throw&&(r.throw=function(e){if(n)throw n=!1,e;return o("throw",e)}),"function"==typeof e.return&&(r.return=function(e){return n?(n=!1,e):o("return",e)}),r}function n(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new o(t.call(e));r="@@asyncIterator",n="@@iterator"}throw new TypeError("Object is not async iterable")}function o(e){function t(e){if(Object(e)!==e)return Promise.reject(new TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then((function(e){return{value:e,done:t}}))}return o=function(e){this.s=e,this.n=e.next},o.prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new o(e)}function i(e){return new t(e,0)}function a(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?a(Object(r),!0).forEach((function(t){m(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):a(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function u(){u=function(){return t};var e,t={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(e,t,r){e[t]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function f(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{f({},"")}catch(e){f=function(e,t,r){return e[t]=r}}function l(e,t,r,n){var i=t&&t.prototype instanceof m?t:m,a=Object.create(i.prototype),s=new P(n||[]);return o(a,"_invoke",{value:k(e,r,s)}),a}function p(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var h="suspendedStart",d="executing",v="completed",y={};function m(){}function b(){}function g(){}var w={};f(w,a,(function(){return this}));var E=Object.getPrototypeOf,O=E&&E(E(L([])));O&&O!==r&&n.call(O,a)&&(w=O);var S=g.prototype=m.prototype=Object.create(w);function x(e){["next","throw","return"].forEach((function(t){f(e,t,(function(e){return this._invoke(t,e)}))}))}function R(e,t){function r(o,i,a,s){var u=p(e[o],e,i);if("throw"!==u.type){var c=u.arg,f=c.value;return f&&"object"==typeof f&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return r("throw",e,a,s)}))}s(u.arg)}var i;o(this,"_invoke",{value:function(e,n){function o(){return new t((function(t,o){r(e,n,t,o)}))}return i=i?i.then(o,o):o()}})}function k(t,r,n){var o=h;return function(i,a){if(o===d)throw new Error("Generator is already running");if(o===v){if("throw"===i)throw a;return{value:e,done:!0}}for(n.method=i,n.arg=a;;){var s=n.delegate;if(s){var u=j(s,n);if(u){if(u===y)continue;return u}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=v,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=d;var c=p(t,r,n);if("normal"===c.type){if(o=n.done?v:"suspendedYield",c.arg===y)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=v,n.method="throw",n.arg=c.arg)}}}function j(t,r){var n=r.method,o=t.iterator[n];if(o===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,j(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),y;var i=p(o,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,y;var a=i.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,y):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,y)}function T(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(T,this),this.reset(!0)}function L(t){if(t||""===t){var r=t[a];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return i.next=i}}throw new TypeError(typeof t+" is not iterable")}return b.prototype=g,o(S,"constructor",{value:g,configurable:!0}),o(g,"constructor",{value:b,configurable:!0}),b.displayName=f(g,c,"GeneratorFunction"),t.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===b||"GeneratorFunction"===(t.displayName||t.name))},t.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,g):(e.__proto__=g,f(e,c,"GeneratorFunction")),e.prototype=Object.create(S),e},t.awrap=function(e){return{__await:e}},x(R.prototype),f(R.prototype,s,(function(){return this})),t.AsyncIterator=R,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new R(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},x(S),f(S,c,"Generator"),f(S,a,(function(){return this})),f(S,"toString",(function(){return"[object Generator]"})),t.keys=function(e){var t=Object(e),r=[];for(var n in t)r.push(n);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},t.values=L,P.prototype={constructor:P,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(A),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return s.type="throw",s.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var u=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(u&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=e,a.arg=t,i?(this.method="next",this.next=i.finallyLoc,y):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),y},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),A(r),y}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;A(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:L(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),y}},t}function c(e){var t=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:String(t)}function f(e){return f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function l(t){return function(){return new e(t.apply(this,arguments))}}function p(e,t,r,n,o,i,a){try{var s=e[i](a),u=s.value}catch(e){return void r(e)}s.done?t(u):Promise.resolve(u).then(n,o)}function h(e){return function(){var t=this,r=arguments;return new Promise((function(n,o){var i=e.apply(t,r);function a(e){p(i,n,o,a,s,"next",e)}function s(e){p(i,n,o,a,s,"throw",e)}a(void 0)}))}}function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function v(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,c(n.key),n)}}function y(e,t,r){return t&&v(e.prototype,t),r&&v(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}function m(e,t,r){return(t=c(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function b(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);u=!0);}catch(e){c=!0,o=e}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||w(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g(e){return function(e){if(Array.isArray(e))return E(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||w(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){if(e){if("string"==typeof e)return E(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?E(e,t):void 0}}function E(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function O(e,t){return function(){return e.apply(t,arguments)}}e.prototype["function"==typeof Symbol&&Symbol.asyncIterator||"@@asyncIterator"]=function(){return this},e.prototype.next=function(e){return this._invoke("next",e)},e.prototype.throw=function(e){return this._invoke("throw",e)},e.prototype.return=function(e){return this._invoke("return",e)};var S,x=Object.prototype.toString,R=Object.getPrototypeOf,k=Symbol.iterator,j=Symbol.toStringTag,T=(S=Object.create(null),function(e){var t=x.call(e);return S[t]||(S[t]=t.slice(8,-1).toLowerCase())}),A=function(e){return e=e.toLowerCase(),function(t){return T(t)===e}},P=function(e){return function(t){return f(t)===e}},L=Array.isArray,N=P("undefined");function _(e){return null!==e&&!N(e)&&null!==e.constructor&&!N(e.constructor)&&F(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}var C=A("ArrayBuffer");var U=P("string"),F=P("function"),B=P("number"),D=function(e){return null!==e&&"object"===f(e)},I=function(e){if("object"!==T(e))return!1;var t=R(e);return!(null!==t&&t!==Object.prototype&&null!==Object.getPrototypeOf(t)||j in e||k in e)},q=A("Date"),M=A("File"),z=A("Blob"),H=A("FileList"),J=A("URLSearchParams"),W=b(["ReadableStream","Request","Response","Headers"].map(A),4),K=W[0],V=W[1],G=W[2],X=W[3];function $(e,t){var r,n,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=o.allOwnKeys,a=void 0!==i&&i;if(null!=e)if("object"!==f(e)&&(e=[e]),L(e))for(r=0,n=e.length;r<n;r++)t.call(null,e[r],r,e);else{if(_(e))return;var s,u=a?Object.getOwnPropertyNames(e):Object.keys(e),c=u.length;for(r=0;r<c;r++)s=u[r],t.call(null,e[s],s,e)}}function Y(e,t){if(_(e))return null;t=t.toLowerCase();for(var r,n=Object.keys(e),o=n.length;o-- >0;)if(t===(r=n[o]).toLowerCase())return r;return null}var Q="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,Z=function(e){return!N(e)&&e!==Q};var ee,te=(ee="undefined"!=typeof Uint8Array&&R(Uint8Array),function(e){return ee&&e instanceof ee}),re=A("HTMLFormElement"),ne=function(e){var t=Object.prototype.hasOwnProperty;return function(e,r){return t.call(e,r)}}(),oe=A("RegExp"),ie=function(e,t){var r=Object.getOwnPropertyDescriptors(e),n={};$(r,(function(r,o){var i;!1!==(i=t(r,o,e))&&(n[o]=i||r)})),Object.defineProperties(e,n)};var ae,se,ue,ce,fe=A("AsyncFunction"),le=(ae="function"==typeof setImmediate,se=F(Q.postMessage),ae?setImmediate:se?(ue="axios@".concat(Math.random()),ce=[],Q.addEventListener("message",(function(e){var t=e.source,r=e.data;t===Q&&r===ue&&ce.length&&ce.shift()()}),!1),function(e){ce.push(e),Q.postMessage(ue,"*")}):function(e){return setTimeout(e)}),pe="undefined"!=typeof queueMicrotask?queueMicrotask.bind(Q):"undefined"!=typeof process&&process.nextTick||le,he={isArray:L,isArrayBuffer:C,isBuffer:_,isFormData:function(e){var t;return e&&("function"==typeof FormData&&e instanceof FormData||F(e.append)&&("formdata"===(t=T(e))||"object"===t&&F(e.toString)&&"[object FormData]"===e.toString()))},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&C(e.buffer)},isString:U,isNumber:B,isBoolean:function(e){return!0===e||!1===e},isObject:D,isPlainObject:I,isEmptyObject:function(e){if(!D(e)||_(e))return!1;try{return 0===Object.keys(e).length&&Object.getPrototypeOf(e)===Object.prototype}catch(e){return!1}},isReadableStream:K,isRequest:V,isResponse:G,isHeaders:X,isUndefined:N,isDate:q,isFile:M,isBlob:z,isRegExp:oe,isFunction:F,isStream:function(e){return D(e)&&F(e.pipe)},isURLSearchParams:J,isTypedArray:te,isFileList:H,forEach:$,merge:function e(){for(var t=Z(this)&&this||{},r=t.caseless,n=t.skipUndefined,o={},i=function(t,i){var a=r&&Y(o,i)||i;I(o[a])&&I(t)?o[a]=e(o[a],t):I(t)?o[a]=e({},t):L(t)?o[a]=t.slice():n&&N(t)||(o[a]=t)},a=0,s=arguments.length;a<s;a++)arguments[a]&&$(arguments[a],i);return o},extend:function(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=n.allOwnKeys;return $(t,(function(t,n){r&&F(t)?e[n]=O(t,r):e[n]=t}),{allOwnKeys:o}),e},trim:function(e){return e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")},stripBOM:function(e){return 65279===e.charCodeAt(0)&&(e=e.slice(1)),e},inherits:function(e,t,r,n){e.prototype=Object.create(t.prototype,n),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),r&&Object.assign(e.prototype,r)},toFlatObject:function(e,t,r,n){var o,i,a,s={};if(t=t||{},null==e)return t;do{for(i=(o=Object.getOwnPropertyNames(e)).length;i-- >0;)a=o[i],n&&!n(a,e,t)||s[a]||(t[a]=e[a],s[a]=!0);e=!1!==r&&R(e)}while(e&&(!r||r(e,t))&&e!==Object.prototype);return t},kindOf:T,kindOfTest:A,endsWith:function(e,t,r){e=String(e),(void 0===r||r>e.length)&&(r=e.length),r-=t.length;var n=e.indexOf(t,r);return-1!==n&&n===r},toArray:function(e){if(!e)return null;if(L(e))return e;var t=e.length;if(!B(t))return null;for(var r=new Array(t);t-- >0;)r[t]=e[t];return r},forEachEntry:function(e,t){for(var r,n=(e&&e[k]).call(e);(r=n.next())&&!r.done;){var o=r.value;t.call(e,o[0],o[1])}},matchAll:function(e,t){for(var r,n=[];null!==(r=e.exec(t));)n.push(r);return n},isHTMLForm:re,hasOwnProperty:ne,hasOwnProp:ne,reduceDescriptors:ie,freezeMethods:function(e){ie(e,(function(t,r){if(F(e)&&-1!==["arguments","caller","callee"].indexOf(r))return!1;var n=e[r];F(n)&&(t.enumerable=!1,"writable"in t?t.writable=!1:t.set||(t.set=function(){throw Error("Can not rewrite read-only method '"+r+"'")}))}))},toObjectSet:function(e,t){var r={},n=function(e){e.forEach((function(e){r[e]=!0}))};return L(e)?n(e):n(String(e).split(t)),r},toCamelCase:function(e){return e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(e,t,r){return t.toUpperCase()+r}))},noop:function(){},toFiniteNumber:function(e,t){return null!=e&&Number.isFinite(e=+e)?e:t},findKey:Y,global:Q,isContextDefined:Z,isSpecCompliantForm:function(e){return!!(e&&F(e.append)&&"FormData"===e[j]&&e[k])},toJSONObject:function(e){var t=new Array(10);return function e(r,n){if(D(r)){if(t.indexOf(r)>=0)return;if(_(r))return r;if(!("toJSON"in r)){t[n]=r;var o=L(r)?[]:{};return $(r,(function(t,r){var i=e(t,n+1);!N(i)&&(o[r]=i)})),t[n]=void 0,o}}return r}(e,0)},isAsyncFn:fe,isThenable:function(e){return e&&(D(e)||F(e))&&F(e.then)&&F(e.catch)},setImmediate:le,asap:pe,isIterable:function(e){return null!=e&&F(e[k])}};function de(e,t,r,n,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,this.name="AxiosError",t&&(this.code=t),r&&(this.config=r),n&&(this.request=n),o&&(this.response=o,this.status=o.status?o.status:null)}he.inherits(de,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:he.toJSONObject(this.config),code:this.code,status:this.status}}});var ve=de.prototype,ye={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((function(e){ye[e]={value:e}})),Object.defineProperties(de,ye),Object.defineProperty(ve,"isAxiosError",{value:!0}),de.from=function(e,t,r,n,o,i){var a=Object.create(ve);he.toFlatObject(e,a,(function(e){return e!==Error.prototype}),(function(e){return"isAxiosError"!==e}));var s=e&&e.message?e.message:"Error",u=null==t&&e?e.code:t;return de.call(a,s,u,r,n,o),e&&null==a.cause&&Object.defineProperty(a,"cause",{value:e,configurable:!0}),a.name=e&&e.name||"Error",i&&Object.assign(a,i),a};function me(e){return he.isPlainObject(e)||he.isArray(e)}function be(e){return he.endsWith(e,"[]")?e.slice(0,-2):e}function ge(e,t,r){return e?e.concat(t).map((function(e,t){return e=be(e),!r&&t?"["+e+"]":e})).join(r?".":""):t}var we=he.toFlatObject(he,{},null,(function(e){return/^is[A-Z]/.test(e)}));function Ee(e,t,r){if(!he.isObject(e))throw new TypeError("target must be an object");t=t||new FormData;var n=(r=he.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(e,t){return!he.isUndefined(t[e])}))).metaTokens,o=r.visitor||c,i=r.dots,a=r.indexes,s=(r.Blob||"undefined"!=typeof Blob&&Blob)&&he.isSpecCompliantForm(t);if(!he.isFunction(o))throw new TypeError("visitor must be a function");function u(e){if(null===e)return"";if(he.isDate(e))return e.toISOString();if(he.isBoolean(e))return e.toString();if(!s&&he.isBlob(e))throw new de("Blob is not supported. Use a Buffer instead.");return he.isArrayBuffer(e)||he.isTypedArray(e)?s&&"function"==typeof Blob?new Blob([e]):Buffer.from(e):e}function c(e,r,o){var s=e;if(e&&!o&&"object"===f(e))if(he.endsWith(r,"{}"))r=n?r:r.slice(0,-2),e=JSON.stringify(e);else if(he.isArray(e)&&function(e){return he.isArray(e)&&!e.some(me)}(e)||(he.isFileList(e)||he.endsWith(r,"[]"))&&(s=he.toArray(e)))return r=be(r),s.forEach((function(e,n){!he.isUndefined(e)&&null!==e&&t.append(!0===a?ge([r],n,i):null===a?r:r+"[]",u(e))})),!1;return!!me(e)||(t.append(ge(o,r,i),u(e)),!1)}var l=[],p=Object.assign(we,{defaultVisitor:c,convertValue:u,isVisitable:me});if(!he.isObject(e))throw new TypeError("data must be an object");return function e(r,n){if(!he.isUndefined(r)){if(-1!==l.indexOf(r))throw Error("Circular reference detected in "+n.join("."));l.push(r),he.forEach(r,(function(r,i){!0===(!(he.isUndefined(r)||null===r)&&o.call(t,r,he.isString(i)?i.trim():i,n,p))&&e(r,n?n.concat(i):[i])})),l.pop()}}(e),t}function Oe(e){var t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,(function(e){return t[e]}))}function Se(e,t){this._pairs=[],e&&Ee(e,this,t)}var xe=Se.prototype;function Re(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function ke(e,t,r){if(!t)return e;var n=r&&r.encode||Re;he.isFunction(r)&&(r={serialize:r});var o,i=r&&r.serialize;if(o=i?i(t,r):he.isURLSearchParams(t)?t.toString():new Se(t,r).toString(n)){var a=e.indexOf("#");-1!==a&&(e=e.slice(0,a)),e+=(-1===e.indexOf("?")?"?":"&")+o}return e}xe.append=function(e,t){this._pairs.push([e,t])},xe.toString=function(e){var t=e?function(t){return e.call(this,t,Oe)}:Oe;return this._pairs.map((function(e){return t(e[0])+"="+t(e[1])}),"").join("&")};var je=function(){function e(){d(this,e),this.handlers=[]}return y(e,[{key:"use",value:function(e,t,r){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!r&&r.synchronous,runWhen:r?r.runWhen:null}),this.handlers.length-1}},{key:"eject",value:function(e){this.handlers[e]&&(this.handlers[e]=null)}},{key:"clear",value:function(){this.handlers&&(this.handlers=[])}},{key:"forEach",value:function(e){he.forEach(this.handlers,(function(t){null!==t&&e(t)}))}}]),e}(),Te={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Ae={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:Se,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]},Pe="undefined"!=typeof window&&"undefined"!=typeof document,Le="object"===("undefined"==typeof navigator?"undefined":f(navigator))&&navigator||void 0,Ne=Pe&&(!Le||["ReactNative","NativeScript","NS"].indexOf(Le.product)<0),_e="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,Ce=Pe&&window.location.href||"http://localhost",Ue=s(s({},Object.freeze({__proto__:null,hasBrowserEnv:Pe,hasStandardBrowserWebWorkerEnv:_e,hasStandardBrowserEnv:Ne,navigator:Le,origin:Ce})),Ae);function Fe(e){function t(e,r,n,o){var i=e[o++];if("__proto__"===i)return!0;var a=Number.isFinite(+i),s=o>=e.length;return i=!i&&he.isArray(n)?n.length:i,s?(he.hasOwnProp(n,i)?n[i]=[n[i],r]:n[i]=r,!a):(n[i]&&he.isObject(n[i])||(n[i]=[]),t(e,r,n[i],o)&&he.isArray(n[i])&&(n[i]=function(e){var t,r,n={},o=Object.keys(e),i=o.length;for(t=0;t<i;t++)n[r=o[t]]=e[r];return n}(n[i])),!a)}if(he.isFormData(e)&&he.isFunction(e.entries)){var r={};return he.forEachEntry(e,(function(e,n){t(function(e){return he.matchAll(/\w+|\[(\w*)]/g,e).map((function(e){return"[]"===e[0]?"":e[1]||e[0]}))}(e),n,r,0)})),r}return null}var Be={transitional:Te,adapter:["xhr","http","fetch"],transformRequest:[function(e,t){var r,n=t.getContentType()||"",o=n.indexOf("application/json")>-1,i=he.isObject(e);if(i&&he.isHTMLForm(e)&&(e=new FormData(e)),he.isFormData(e))return o?JSON.stringify(Fe(e)):e;if(he.isArrayBuffer(e)||he.isBuffer(e)||he.isStream(e)||he.isFile(e)||he.isBlob(e)||he.isReadableStream(e))return e;if(he.isArrayBufferView(e))return e.buffer;if(he.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();if(i){if(n.indexOf("application/x-www-form-urlencoded")>-1)return function(e,t){return Ee(e,new Ue.classes.URLSearchParams,s({visitor:function(e,t,r,n){return Ue.isNode&&he.isBuffer(e)?(this.append(t,e.toString("base64")),!1):n.defaultVisitor.apply(this,arguments)}},t))}(e,this.formSerializer).toString();if((r=he.isFileList(e))||n.indexOf("multipart/form-data")>-1){var a=this.env&&this.env.FormData;return Ee(r?{"files[]":e}:e,a&&new a,this.formSerializer)}}return i||o?(t.setContentType("application/json",!1),function(e,t,r){if(he.isString(e))try{return(t||JSON.parse)(e),he.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(r||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){var t=this.transitional||Be.transitional,r=t&&t.forcedJSONParsing,n="json"===this.responseType;if(he.isResponse(e)||he.isReadableStream(e))return e;if(e&&he.isString(e)&&(r&&!this.responseType||n)){var o=!(t&&t.silentJSONParsing)&&n;try{return JSON.parse(e,this.parseReviver)}catch(e){if(o){if("SyntaxError"===e.name)throw de.from(e,de.ERR_BAD_RESPONSE,this,null,this.response);throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Ue.classes.FormData,Blob:Ue.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};he.forEach(["delete","get","head","post","put","patch"],(function(e){Be.headers[e]={}}));var De=Be,Ie=he.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),qe=Symbol("internals");function Me(e){return e&&String(e).trim().toLowerCase()}function ze(e){return!1===e||null==e?e:he.isArray(e)?e.map(ze):String(e)}function He(e,t,r,n,o){return he.isFunction(n)?n.call(this,t,r):(o&&(t=r),he.isString(t)?he.isString(n)?-1!==t.indexOf(n):he.isRegExp(n)?n.test(t):void 0:void 0)}var Je=function(e,t){function r(e){d(this,r),e&&this.set(e)}return y(r,[{key:"set",value:function(e,t,r){var n=this;function o(e,t,r){var o=Me(t);if(!o)throw new Error("header name must be a non-empty string");var i=he.findKey(n,o);(!i||void 0===n[i]||!0===r||void 0===r&&!1!==n[i])&&(n[i||t]=ze(e))}var i=function(e,t){return he.forEach(e,(function(e,r){return o(e,r,t)}))};if(he.isPlainObject(e)||e instanceof this.constructor)i(e,t);else if(he.isString(e)&&(e=e.trim())&&!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim()))i(function(e){var t,r,n,o={};return e&&e.split("\n").forEach((function(e){n=e.indexOf(":"),t=e.substring(0,n).trim().toLowerCase(),r=e.substring(n+1).trim(),!t||o[t]&&Ie[t]||("set-cookie"===t?o[t]?o[t].push(r):o[t]=[r]:o[t]=o[t]?o[t]+", "+r:r)})),o}(e),t);else if(he.isObject(e)&&he.isIterable(e)){var a,s,u,c={},f=function(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=w(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return a=e.done,e},e:function(e){s=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw i}}}}(e);try{for(f.s();!(u=f.n()).done;){var l=u.value;if(!he.isArray(l))throw TypeError("Object iterator must return a key-value pair");c[s=l[0]]=(a=c[s])?he.isArray(a)?[].concat(g(a),[l[1]]):[a,l[1]]:l[1]}}catch(e){f.e(e)}finally{f.f()}i(c,t)}else null!=e&&o(t,e,r);return this}},{key:"get",value:function(e,t){if(e=Me(e)){var r=he.findKey(this,e);if(r){var n=this[r];if(!t)return n;if(!0===t)return function(e){for(var t,r=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;t=n.exec(e);)r[t[1]]=t[2];return r}(n);if(he.isFunction(t))return t.call(this,n,r);if(he.isRegExp(t))return t.exec(n);throw new TypeError("parser must be boolean|regexp|function")}}}},{key:"has",value:function(e,t){if(e=Me(e)){var r=he.findKey(this,e);return!(!r||void 0===this[r]||t&&!He(0,this[r],r,t))}return!1}},{key:"delete",value:function(e,t){var r=this,n=!1;function o(e){if(e=Me(e)){var o=he.findKey(r,e);!o||t&&!He(0,r[o],o,t)||(delete r[o],n=!0)}}return he.isArray(e)?e.forEach(o):o(e),n}},{key:"clear",value:function(e){for(var t=Object.keys(this),r=t.length,n=!1;r--;){var o=t[r];e&&!He(0,this[o],o,e,!0)||(delete this[o],n=!0)}return n}},{key:"normalize",value:function(e){var t=this,r={};return he.forEach(this,(function(n,o){var i=he.findKey(r,o);if(i)return t[i]=ze(n),void delete t[o];var a=e?function(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(function(e,t,r){return t.toUpperCase()+r}))}(o):String(o).trim();a!==o&&delete t[o],t[a]=ze(n),r[a]=!0})),this}},{key:"concat",value:function(){for(var e,t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return(e=this.constructor).concat.apply(e,[this].concat(r))}},{key:"toJSON",value:function(e){var t=Object.create(null);return he.forEach(this,(function(r,n){null!=r&&!1!==r&&(t[n]=e&&he.isArray(r)?r.join(", "):r)})),t}},{key:Symbol.iterator,value:function(){return Object.entries(this.toJSON())[Symbol.iterator]()}},{key:"toString",value:function(){return Object.entries(this.toJSON()).map((function(e){var t=b(e,2);return t[0]+": "+t[1]})).join("\n")}},{key:"getSetCookie",value:function(){return this.get("set-cookie")||[]}},{key:Symbol.toStringTag,get:function(){return"AxiosHeaders"}}],[{key:"from",value:function(e){return e instanceof this?e:new this(e)}},{key:"concat",value:function(e){for(var t=new this(e),r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return n.forEach((function(e){return t.set(e)})),t}},{key:"accessor",value:function(e){var t=(this[qe]=this[qe]={accessors:{}}).accessors,r=this.prototype;function n(e){var n=Me(e);t[n]||(!function(e,t){var r=he.toCamelCase(" "+t);["get","set","has"].forEach((function(n){Object.defineProperty(e,n+r,{value:function(e,r,o){return this[n].call(this,t,e,r,o)},configurable:!0})}))}(r,e),t[n]=!0)}return he.isArray(e)?e.forEach(n):n(e),this}}]),r}();Je.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),he.reduceDescriptors(Je.prototype,(function(e,t){var r=e.value,n=t[0].toUpperCase()+t.slice(1);return{get:function(){return r},set:function(e){this[n]=e}}})),he.freezeMethods(Je);var We=Je;function Ke(e,t){var r=this||De,n=t||r,o=We.from(n.headers),i=n.data;return he.forEach(e,(function(e){i=e.call(r,i,o.normalize(),t?t.status:void 0)})),o.normalize(),i}function Ve(e){return!(!e||!e.__CANCEL__)}function Ge(e,t,r){de.call(this,null==e?"canceled":e,de.ERR_CANCELED,t,r),this.name="CanceledError"}function Xe(e,t,r){var n=r.config.validateStatus;r.status&&n&&!n(r.status)?t(new de("Request failed with status code "+r.status,[de.ERR_BAD_REQUEST,de.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r)):e(r)}function $e(e,t){e=e||10;var r,n=new Array(e),o=new Array(e),i=0,a=0;return t=void 0!==t?t:1e3,function(s){var u=Date.now(),c=o[a];r||(r=u),n[i]=s,o[i]=u;for(var f=a,l=0;f!==i;)l+=n[f++],f%=e;if((i=(i+1)%e)===a&&(a=(a+1)%e),!(u-r<t)){var p=c&&u-c;return p?Math.round(1e3*l/p):void 0}}}function Ye(e,t){var r,n,o=0,i=1e3/t,a=function(t){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Date.now();o=i,r=null,n&&(clearTimeout(n),n=null),e.apply(void 0,g(t))};return[function(){for(var e=Date.now(),t=e-o,s=arguments.length,u=new Array(s),c=0;c<s;c++)u[c]=arguments[c];t>=i?a(u,e):(r=u,n||(n=setTimeout((function(){n=null,a(r)}),i-t)))},function(){return r&&a(r)}]}he.inherits(Ge,de,{__CANCEL__:!0});var Qe=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:3,n=0,o=$e(50,250);return Ye((function(r){var i=r.loaded,a=r.lengthComputable?r.total:void 0,s=i-n,u=o(s);n=i;var c=m({loaded:i,total:a,progress:a?i/a:void 0,bytes:s,rate:u||void 0,estimated:u&&a&&i<=a?(a-i)/u:void 0,event:r,lengthComputable:null!=a},t?"download":"upload",!0);e(c)}),r)},Ze=function(e,t){var r=null!=e;return[function(n){return t[0]({lengthComputable:r,total:e,loaded:n})},t[1]]},et=function(e){return function(){for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return he.asap((function(){return e.apply(void 0,r)}))}},tt=Ue.hasStandardBrowserEnv?function(e,t){return function(r){return r=new URL(r,Ue.origin),e.protocol===r.protocol&&e.host===r.host&&(t||e.port===r.port)}}(new URL(Ue.origin),Ue.navigator&&/(msie|trident)/i.test(Ue.navigator.userAgent)):function(){return!0},rt=Ue.hasStandardBrowserEnv?{write:function(e,t,r,n,o,i){var a=[e+"="+encodeURIComponent(t)];he.isNumber(r)&&a.push("expires="+new Date(r).toGMTString()),he.isString(n)&&a.push("path="+n),he.isString(o)&&a.push("domain="+o),!0===i&&a.push("secure"),document.cookie=a.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}};function nt(e,t,r){var n=!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t);return e&&(n||0==r)?function(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}(e,t):t}var ot=function(e){return e instanceof We?s({},e):e};function it(e,t){t=t||{};var r={};function n(e,t,r,n){return he.isPlainObject(e)&&he.isPlainObject(t)?he.merge.call({caseless:n},e,t):he.isPlainObject(t)?he.merge({},t):he.isArray(t)?t.slice():t}function o(e,t,r,o){return he.isUndefined(t)?he.isUndefined(e)?void 0:n(void 0,e,0,o):n(e,t,0,o)}function i(e,t){if(!he.isUndefined(t))return n(void 0,t)}function a(e,t){return he.isUndefined(t)?he.isUndefined(e)?void 0:n(void 0,e):n(void 0,t)}function u(r,o,i){return i in t?n(r,o):i in e?n(void 0,r):void 0}var c={url:i,method:i,data:i,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,withXSRFToken:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:u,headers:function(e,t,r){return o(ot(e),ot(t),0,!0)}};return he.forEach(Object.keys(s(s({},e),t)),(function(n){var i=c[n]||o,a=i(e[n],t[n],n);he.isUndefined(a)&&i!==u||(r[n]=a)})),r}var at,st=function(e){var t=it({},e),r=t.data,n=t.withXSRFToken,o=t.xsrfHeaderName,i=t.xsrfCookieName,a=t.headers,s=t.auth;if(t.headers=a=We.from(a),t.url=ke(nt(t.baseURL,t.url,t.allowAbsoluteUrls),e.params,e.paramsSerializer),s&&a.set("Authorization","Basic "+btoa((s.username||"")+":"+(s.password?unescape(encodeURIComponent(s.password)):""))),he.isFormData(r))if(Ue.hasStandardBrowserEnv||Ue.hasStandardBrowserWebWorkerEnv)a.setContentType(void 0);else if(he.isFunction(r.getHeaders)){var u=r.getHeaders(),c=["content-type","content-length"];Object.entries(u).forEach((function(e){var t=b(e,2),r=t[0],n=t[1];c.includes(r.toLowerCase())&&a.set(r,n)}))}if(Ue.hasStandardBrowserEnv&&(n&&he.isFunction(n)&&(n=n(t)),n||!1!==n&&tt(t.url))){var f=o&&i&&rt.read(i);f&&a.set(o,f)}return t},ut="undefined"!=typeof XMLHttpRequest&&function(e){return new Promise((function(t,r){var n,o,i,a,s,u=st(e),c=u.data,f=We.from(u.headers).normalize(),l=u.responseType,p=u.onUploadProgress,h=u.onDownloadProgress;function d(){a&&a(),s&&s(),u.cancelToken&&u.cancelToken.unsubscribe(n),u.signal&&u.signal.removeEventListener("abort",n)}var v=new XMLHttpRequest;function y(){if(v){var n=We.from("getAllResponseHeaders"in v&&v.getAllResponseHeaders());Xe((function(e){t(e),d()}),(function(e){r(e),d()}),{data:l&&"text"!==l&&"json"!==l?v.response:v.responseText,status:v.status,statusText:v.statusText,headers:n,config:e,request:v}),v=null}}if(v.open(u.method.toUpperCase(),u.url,!0),v.timeout=u.timeout,"onloadend"in v?v.onloadend=y:v.onreadystatechange=function(){v&&4===v.readyState&&(0!==v.status||v.responseURL&&0===v.responseURL.indexOf("file:"))&&setTimeout(y)},v.onabort=function(){v&&(r(new de("Request aborted",de.ECONNABORTED,e,v)),v=null)},v.onerror=function(t){var n=new de(t&&t.message?t.message:"Network Error",de.ERR_NETWORK,e,v);n.event=t||null,r(n),v=null},v.ontimeout=function(){var t=u.timeout?"timeout of "+u.timeout+"ms exceeded":"timeout exceeded",n=u.transitional||Te;u.timeoutErrorMessage&&(t=u.timeoutErrorMessage),r(new de(t,n.clarifyTimeoutError?de.ETIMEDOUT:de.ECONNABORTED,e,v)),v=null},void 0===c&&f.setContentType(null),"setRequestHeader"in v&&he.forEach(f.toJSON(),(function(e,t){v.setRequestHeader(t,e)})),he.isUndefined(u.withCredentials)||(v.withCredentials=!!u.withCredentials),l&&"json"!==l&&(v.responseType=u.responseType),h){var m=b(Qe(h,!0),2);i=m[0],s=m[1],v.addEventListener("progress",i)}if(p&&v.upload){var g=b(Qe(p),2);o=g[0],a=g[1],v.upload.addEventListener("progress",o),v.upload.addEventListener("loadend",a)}(u.cancelToken||u.signal)&&(n=function(t){v&&(r(!t||t.type?new Ge(null,e,v):t),v.abort(),v=null)},u.cancelToken&&u.cancelToken.subscribe(n),u.signal&&(u.signal.aborted?n():u.signal.addEventListener("abort",n)));var w,E,O=(w=u.url,(E=/^([-+\w]{1,25})(:?\/\/|:)/.exec(w))&&E[1]||"");O&&-1===Ue.protocols.indexOf(O)?r(new de("Unsupported protocol "+O+":",de.ERR_BAD_REQUEST,e)):v.send(c||null)}))},ct=function(e,t){var r=(e=e?e.filter(Boolean):[]).length;if(t||r){var n,o=new AbortController,i=function(e){if(!n){n=!0,s();var t=e instanceof Error?e:this.reason;o.abort(t instanceof de?t:new Ge(t instanceof Error?t.message:t))}},a=t&&setTimeout((function(){a=null,i(new de("timeout ".concat(t," of ms exceeded"),de.ETIMEDOUT))}),t),s=function(){e&&(a&&clearTimeout(a),a=null,e.forEach((function(e){e.unsubscribe?e.unsubscribe(i):e.removeEventListener("abort",i)})),e=null)};e.forEach((function(e){return e.addEventListener("abort",i)}));var u=o.signal;return u.unsubscribe=function(){return he.asap(s)},u}},ft=u().mark((function e(t,r){var n,o,i;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=t.byteLength,r&&!(n<r)){e.next=5;break}return e.next=4,t;case 4:return e.abrupt("return");case 5:o=0;case 6:if(!(o<n)){e.next=13;break}return i=o+r,e.next=10,t.slice(o,i);case 10:o=i,e.next=6;break;case 13:case"end":return e.stop()}}),e)})),lt=function(){var e=l(u().mark((function e(t,o){var a,s,c,f,l,p;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:a=!1,s=!1,e.prev=2,f=n(pt(t));case 4:return e.next=6,i(f.next());case 6:if(!(a=!(l=e.sent).done)){e.next=12;break}return p=l.value,e.delegateYield(r(n(ft(p,o))),"t0",9);case 9:a=!1,e.next=4;break;case 12:e.next=18;break;case 14:e.prev=14,e.t1=e.catch(2),s=!0,c=e.t1;case 18:if(e.prev=18,e.prev=19,!a||null==f.return){e.next=23;break}return e.next=23,i(f.return());case 23:if(e.prev=23,!s){e.next=26;break}throw c;case 26:return e.finish(23);case 27:return e.finish(18);case 28:case"end":return e.stop()}}),e,null,[[2,14,18,28],[19,,23,27]])})));return function(t,r){return e.apply(this,arguments)}}(),pt=function(){var e=l(u().mark((function e(t){var o,a,s,c;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!t[Symbol.asyncIterator]){e.next=3;break}return e.delegateYield(r(n(t)),"t0",2);case 2:return e.abrupt("return");case 3:o=t.getReader(),e.prev=4;case 5:return e.next=7,i(o.read());case 7:if(a=e.sent,s=a.done,c=a.value,!s){e.next=12;break}return e.abrupt("break",16);case 12:return e.next=14,c;case 14:e.next=5;break;case 16:return e.prev=16,e.next=19,i(o.cancel());case 19:return e.finish(16);case 20:case"end":return e.stop()}}),e,null,[[4,,16,20]])})));return function(t){return e.apply(this,arguments)}}(),ht=function(e,t,r,n){var o,i=lt(e,t),a=0,s=function(e){o||(o=!0,n&&n(e))};return new ReadableStream({pull:function(e){return h(u().mark((function t(){var n,o,c,f,l;return u().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,i.next();case 3:if(n=t.sent,o=n.done,c=n.value,!o){t.next=10;break}return s(),e.close(),t.abrupt("return");case 10:f=c.byteLength,r&&(l=a+=f,r(l)),e.enqueue(new Uint8Array(c)),t.next=19;break;case 15:throw t.prev=15,t.t0=t.catch(0),s(t.t0),t.t0;case 19:case"end":return t.stop()}}),t,null,[[0,15]])})))()},cancel:function(e){return s(e),i.return()}},{highWaterMark:2})},dt=he.isFunction,vt={Request:(at=he.global).Request,Response:at.Response},yt=he.global,mt=yt.ReadableStream,bt=yt.TextEncoder,gt=function(e){try{for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return!!e.apply(void 0,r)}catch(e){return!1}},wt=function(e){var t=e=he.merge.call({skipUndefined:!0},vt,e),r=t.fetch,n=t.Request,o=t.Response,i=r?dt(r):"function"==typeof fetch,a=dt(n),c=dt(o);if(!i)return!1;var f,l=i&&dt(mt),p=i&&("function"==typeof bt?(f=new bt,function(e){return f.encode(e)}):function(){var e=h(u().mark((function e(t){return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=Uint8Array,e.next=3,new n(t).arrayBuffer();case 3:return e.t1=e.sent,e.abrupt("return",new e.t0(e.t1));case 5:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()),d=a&&l&>((function(){var e=!1,t=new n(Ue.origin,{body:new mt,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t})),v=c&&l&>((function(){return he.isReadableStream(new o("").body)})),y={stream:v&&function(e){return e.body}};i&&["text","arrayBuffer","blob","formData","stream"].forEach((function(e){!y[e]&&(y[e]=function(t,r){var n=t&&t[e];if(n)return n.call(t);throw new de("Response type '".concat(e,"' is not supported"),de.ERR_NOT_SUPPORT,r)})}));var m=function(){var e=h(u().mark((function e(t){var r;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(null!=t){e.next=2;break}return e.abrupt("return",0);case 2:if(!he.isBlob(t)){e.next=4;break}return e.abrupt("return",t.size);case 4:if(!he.isSpecCompliantForm(t)){e.next=9;break}return r=new n(Ue.origin,{method:"POST",body:t}),e.next=8,r.arrayBuffer();case 8:case 15:return e.abrupt("return",e.sent.byteLength);case 9:if(!he.isArrayBufferView(t)&&!he.isArrayBuffer(t)){e.next=11;break}return e.abrupt("return",t.byteLength);case 11:if(he.isURLSearchParams(t)&&(t+=""),!he.isString(t)){e.next=16;break}return e.next=15,p(t);case 16:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),g=function(){var e=h(u().mark((function e(t,r){var n;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=he.toFiniteNumber(t.getContentLength()),e.abrupt("return",null==n?m(r):n);case 2:case"end":return e.stop()}}),e)})));return function(t,r){return e.apply(this,arguments)}}();return function(){var e=h(u().mark((function e(t){var i,c,f,l,p,h,m,w,E,O,S,x,R,k,j,T,A,P,L,N,_,C,U,F,B,D,I,q,M,z,H,J,W,K,V,G;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(i=st(t),c=i.url,f=i.method,l=i.data,p=i.signal,h=i.cancelToken,m=i.timeout,w=i.onDownloadProgress,E=i.onUploadProgress,O=i.responseType,S=i.headers,x=i.withCredentials,R=void 0===x?"same-origin":x,k=i.fetchOptions,j=r||fetch,O=O?(O+"").toLowerCase():"text",T=ct([p,h&&h.toAbortSignal()],m),A=null,P=T&&T.unsubscribe&&function(){T.unsubscribe()},e.prev=6,e.t0=E&&d&&"get"!==f&&"head"!==f,!e.t0){e.next=13;break}return e.next=11,g(S,l);case 11:e.t1=L=e.sent,e.t0=0!==e.t1;case 13:if(!e.t0){e.next=17;break}N=new n(c,{method:"POST",body:l,duplex:"half"}),he.isFormData(l)&&(_=N.headers.get("content-type"))&&S.setContentType(_),N.body&&(C=Ze(L,Qe(et(E))),U=b(C,2),F=U[0],B=U[1],l=ht(N.body,65536,F,B));case 17:return he.isString(R)||(R=R?"include":"omit"),D=a&&"credentials"in n.prototype,I=s(s({},k),{},{signal:T,method:f.toUpperCase(),headers:S.normalize().toJSON(),body:l,duplex:"half",credentials:D?R:void 0}),A=a&&new n(c,I),e.next=23,a?j(A,k):j(c,I);case 23:return q=e.sent,M=v&&("stream"===O||"response"===O),v&&(w||M&&P)&&(z={},["status","statusText","headers"].forEach((function(e){z[e]=q[e]})),H=he.toFiniteNumber(q.headers.get("content-length")),J=w&&Ze(H,Qe(et(w),!0))||[],W=b(J,2),K=W[0],V=W[1],q=new o(ht(q.body,65536,K,(function(){V&&V(),P&&P()})),z)),O=O||"text",e.next=29,y[he.findKey(y,O)||"text"](q,t);case 29:return G=e.sent,!M&&P&&P(),e.next=33,new Promise((function(e,r){Xe(e,r,{data:G,headers:We.from(q.headers),status:q.status,statusText:q.statusText,config:t,request:A})}));case 33:return e.abrupt("return",e.sent);case 36:if(e.prev=36,e.t2=e.catch(6),P&&P(),!e.t2||"TypeError"!==e.t2.name||!/Load failed|fetch/i.test(e.t2.message)){e.next=41;break}throw Object.assign(new de("Network Error",de.ERR_NETWORK,t,A),{cause:e.t2.cause||e.t2});case 41:throw de.from(e.t2,e.t2&&e.t2.code,t,A);case 42:case"end":return e.stop()}}),e,null,[[6,36]])})));return function(t){return e.apply(this,arguments)}}()},Et=new Map,Ot=function(e){for(var t,r,n=e?e.env:{},o=n.fetch,i=[n.Request,n.Response,o],a=i.length,s=Et;a--;)t=i[a],void 0===(r=s.get(t))&&s.set(t,r=a?new Map:wt(n)),s=r;return r};Ot();var St={http:null,xhr:ut,fetch:{get:Ot}};he.forEach(St,(function(e,t){if(e){try{Object.defineProperty(e,"name",{value:t})}catch(e){}Object.defineProperty(e,"adapterName",{value:t})}}));var xt=function(e){return"- ".concat(e)},Rt=function(e){return he.isFunction(e)||null===e||!1===e},kt=function(e,t){for(var r,n,o=(e=he.isArray(e)?e:[e]).length,i={},a=0;a<o;a++){var s=void 0;if(n=r=e[a],!Rt(r)&&void 0===(n=St[(s=String(r)).toLowerCase()]))throw new de("Unknown adapter '".concat(s,"'"));if(n&&(he.isFunction(n)||(n=n.get(t))))break;i[s||"#"+a]=n}if(!n){var u=Object.entries(i).map((function(e){var t=b(e,2),r=t[0],n=t[1];return"adapter ".concat(r," ")+(!1===n?"is not supported by the environment":"is not available in the build")}));throw new de("There is no suitable adapter to dispatch the request "+(o?u.length>1?"since :\n"+u.map(xt).join("\n"):" "+xt(u[0]):"as no adapter specified"),"ERR_NOT_SUPPORT")}return n};function jt(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Ge(null,e)}function Tt(e){return jt(e),e.headers=We.from(e.headers),e.data=Ke.call(e,e.transformRequest),-1!==["post","put","patch"].indexOf(e.method)&&e.headers.setContentType("application/x-www-form-urlencoded",!1),kt(e.adapter||De.adapter,e)(e).then((function(t){return jt(e),t.data=Ke.call(e,e.transformResponse,t),t.headers=We.from(t.headers),t}),(function(t){return Ve(t)||(jt(e),t&&t.response&&(t.response.data=Ke.call(e,e.transformResponse,t.response),t.response.headers=We.from(t.response.headers))),Promise.reject(t)}))}var At="1.12.2",Pt={};["object","boolean","number","function","string","symbol"].forEach((function(e,t){Pt[e]=function(r){return f(r)===e||"a"+(t<1?"n ":" ")+e}}));var Lt={};Pt.transitional=function(e,t,r){function n(e,t){return"[Axios v1.12.2] Transitional option '"+e+"'"+t+(r?". "+r:"")}return function(r,o,i){if(!1===e)throw new de(n(o," has been removed"+(t?" in "+t:"")),de.ERR_DEPRECATED);return t&&!Lt[o]&&(Lt[o]=!0,console.warn(n(o," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(r,o,i)}},Pt.spelling=function(e){return function(t,r){return console.warn("".concat(r," is likely a misspelling of ").concat(e)),!0}};var Nt={assertOptions:function(e,t,r){if("object"!==f(e))throw new de("options must be an object",de.ERR_BAD_OPTION_VALUE);for(var n=Object.keys(e),o=n.length;o-- >0;){var i=n[o],a=t[i];if(a){var s=e[i],u=void 0===s||a(s,i,e);if(!0!==u)throw new de("option "+i+" must be "+u,de.ERR_BAD_OPTION_VALUE)}else if(!0!==r)throw new de("Unknown option "+i,de.ERR_BAD_OPTION)}},validators:Pt},_t=Nt.validators,Ct=function(){function e(t){d(this,e),this.defaults=t||{},this.interceptors={request:new je,response:new je}}var t;return y(e,[{key:"request",value:(t=h(u().mark((function e(t,r){var n,o;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,this._request(t,r);case 3:return e.abrupt("return",e.sent);case 6:if(e.prev=6,e.t0=e.catch(0),e.t0 instanceof Error){n={},Error.captureStackTrace?Error.captureStackTrace(n):n=new Error,o=n.stack?n.stack.replace(/^.+\n/,""):"";try{e.t0.stack?o&&!String(e.t0.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(e.t0.stack+="\n"+o):e.t0.stack=o}catch(e){}}throw e.t0;case 10:case"end":return e.stop()}}),e,this,[[0,6]])}))),function(e,r){return t.apply(this,arguments)})},{key:"_request",value:function(e,t){"string"==typeof e?(t=t||{}).url=e:t=e||{};var r=t=it(this.defaults,t),n=r.transitional,o=r.paramsSerializer,i=r.headers;void 0!==n&&Nt.assertOptions(n,{silentJSONParsing:_t.transitional(_t.boolean),forcedJSONParsing:_t.transitional(_t.boolean),clarifyTimeoutError:_t.transitional(_t.boolean)},!1),null!=o&&(he.isFunction(o)?t.paramsSerializer={serialize:o}:Nt.assertOptions(o,{encode:_t.function,serialize:_t.function},!0)),void 0!==t.allowAbsoluteUrls||(void 0!==this.defaults.allowAbsoluteUrls?t.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:t.allowAbsoluteUrls=!0),Nt.assertOptions(t,{baseUrl:_t.spelling("baseURL"),withXsrfToken:_t.spelling("withXSRFToken")},!0),t.method=(t.method||this.defaults.method||"get").toLowerCase();var a=i&&he.merge(i.common,i[t.method]);i&&he.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete i[e]})),t.headers=We.concat(a,i);var s=[],u=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(u=u&&e.synchronous,s.unshift(e.fulfilled,e.rejected))}));var c,f=[];this.interceptors.response.forEach((function(e){f.push(e.fulfilled,e.rejected)}));var l,p=0;if(!u){var h=[Tt.bind(this),void 0];for(h.unshift.apply(h,s),h.push.apply(h,f),l=h.length,c=Promise.resolve(t);p<l;)c=c.then(h[p++],h[p++]);return c}l=s.length;for(var d=t;p<l;){var v=s[p++],y=s[p++];try{d=v(d)}catch(e){y.call(this,e);break}}try{c=Tt.call(this,d)}catch(e){return Promise.reject(e)}for(p=0,l=f.length;p<l;)c=c.then(f[p++],f[p++]);return c}},{key:"getUri",value:function(e){return ke(nt((e=it(this.defaults,e)).baseURL,e.url,e.allowAbsoluteUrls),e.params,e.paramsSerializer)}}]),e}();he.forEach(["delete","get","head","options"],(function(e){Ct.prototype[e]=function(t,r){return this.request(it(r||{},{method:e,url:t,data:(r||{}).data}))}})),he.forEach(["post","put","patch"],(function(e){function t(t){return function(r,n,o){return this.request(it(o||{},{method:e,headers:t?{"Content-Type":"multipart/form-data"}:{},url:r,data:n}))}}Ct.prototype[e]=t(),Ct.prototype[e+"Form"]=t(!0)}));var Ut=Ct,Ft=function(){function e(t){if(d(this,e),"function"!=typeof t)throw new TypeError("executor must be a function.");var r;this.promise=new Promise((function(e){r=e}));var n=this;this.promise.then((function(e){if(n._listeners){for(var t=n._listeners.length;t-- >0;)n._listeners[t](e);n._listeners=null}})),this.promise.then=function(e){var t,r=new Promise((function(e){n.subscribe(e),t=e})).then(e);return r.cancel=function(){n.unsubscribe(t)},r},t((function(e,t,o){n.reason||(n.reason=new Ge(e,t,o),r(n.reason))}))}return y(e,[{key:"throwIfRequested",value:function(){if(this.reason)throw this.reason}},{key:"subscribe",value:function(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}},{key:"unsubscribe",value:function(e){if(this._listeners){var t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}}},{key:"toAbortSignal",value:function(){var e=this,t=new AbortController,r=function(e){t.abort(e)};return this.subscribe(r),t.signal.unsubscribe=function(){return e.unsubscribe(r)},t.signal}}],[{key:"source",value:function(){var t;return{token:new e((function(e){t=e})),cancel:t}}}]),e}(),Bt=Ft;var Dt={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Dt).forEach((function(e){var t=b(e,2),r=t[0],n=t[1];Dt[n]=r}));var It=Dt;var qt=function e(t){var r=new Ut(t),n=O(Ut.prototype.request,r);return he.extend(n,Ut.prototype,r,{allOwnKeys:!0}),he.extend(n,r,null,{allOwnKeys:!0}),n.create=function(r){return e(it(t,r))},n}(De);return qt.Axios=Ut,qt.CanceledError=Ge,qt.CancelToken=Bt,qt.isCancel=Ve,qt.VERSION=At,qt.toFormData=Ee,qt.AxiosError=de,qt.Cancel=qt.CanceledError,qt.all=function(e){return Promise.all(e)},qt.spread=function(e){return function(t){return e.apply(null,t)}},qt.isAxiosError=function(e){return he.isObject(e)&&!0===e.isAxiosError},qt.mergeConfig=it,qt.AxiosHeaders=We,qt.formToJSON=function(e){return Fe(he.isHTMLForm(e)?new FormData(e):e)},qt.getAdapter=kt,qt.HttpStatusCode=It,qt.default=qt,qt}));
|
|
3
|
+
//# sourceMappingURL=axios.min.js.map
|