Skip to content

Commit

Permalink
Updated thirdparty/zap/repo to head of tracking branch (project-chip#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jsloth authored and adbridge committed Nov 17, 2022
1 parent 729c1ff commit 12e8e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/zap/repo
Submodule repo updated 76 files
+2 −4 .github/workflows/cypress.yml
+2 −4 .github/workflows/mattercypress.yml
+22 −27 .github/workflows/release.yml
+1 −3 .github/workflows/sonarcloud.yml
+5 −6 .github/workflows/zap.yml
+3 −0 .husky/pre-commit
+1 −1 README.md
+26 −5 apack.json
+2 −1 cypress/integration/attribute_validations/bitmap.spec.js
+1 −0 cypress/integration/attribute_validations/boolean.spec.js
+1 −0 cypress/integration/attribute_validations/enum8.spec.js
+1 −0 cypress/integration/attribute_validations/int16.spec.js
+1 −0 cypress/integration/attribute_validations/int8.spec.js
+1 −0 cypress/integration/attributes/check-cluster-attributes-singleton-in-zigbee-mode.spec.js
+1 −0 cypress/integration/attributes/check-required-attributes.spec.js
+1 −0 cypress/integration/attributes/check-search.spec.js
+1 −0 cypress/integration/check_summary/enabled-attributes.spec.js
+1 −0 cypress/integration/check_summary/enabled-clusters.spec.js
+1 −0 cypress/integration/clusters/cluster-filter.spec.js
+1 −0 cypress/integration/clusters/cluster-multiple-search.spec.js
+1 −0 cypress/integration/clusters/cluster-search.spec.js
+1 −0 cypress/integration/clusters/dimmable-light.spec.js
+2 −3 cypress/integration/devtools/devtools.spec.js
+1 −0 cypress/integration/endpoints/delete-endpoint.spec.js
+1 −0 cypress/integration/endpoints/edit-endpoint.spec.js
+1 −0 cypress/integration/file_operation/file_open.spec.js
+1 −0 cypress/integration/preview_button/preview_button.spec.js
+7 −14 cypress/integration/theme/theme.spec.js
+17 −3 cypress/support/commands.js
+794 −245 docs/api.md
+12 −0 docs/instructions.md
+1,846 −1,837 docs/zap-schema.svg
+1 −1 jest.config.js
+40,547 −119 package-lock.json
+7 −1 package.json
+14 −0 src-electron/db/db-mapping.js
+84 −0 src-electron/db/query-notification.js
+64 −0 src-electron/db/query-session.js
+13 −0 src-electron/db/zap-schema.sql
+55 −19 src-electron/generator/generation-engine.js
+100 −22 src-electron/generator/helper-zcl.js
+8 −0 src-electron/importexport/import-isc.js
+63 −37 src-electron/main-process/startup.js
+77 −0 src-electron/rest/initialize.js
+52 −14 src-electron/rest/user-data.js
+24 −1 src-electron/server/http-server.js
+1 −0 src-electron/types/env-types.ts
+5 −8 src-electron/ui/ui-util.ts
+1 −1 src-electron/ui/window.ts
+7 −2 src-electron/util/args.ts
+2 −1 src-electron/util/env.ts
+80 −46 src-electron/util/util.js
+4 −1 src-electron/zcl/zcl-loader-dotdot.js
+4 −1 src-electron/zcl/zcl-loader-silabs.js
+20 −11 src-electron/zcl/zcl-loader.js
+24 −0 src-script/7zip-bin-wrapper.js
+38 −0 src-script/pack-cli.js
+1 −1 src-script/script-util.js
+50 −0 src-script/zap-validate-metafiles.js
+1 −0 src-shared/db-enum.js
+8 −1 src-shared/rend-api.js
+5 −0 src-shared/rest-api.js
+78 −55 src/App.vue
+8 −0 src/layouts/ZclConfiguratorLayout.vue
+3 −1 src/layouts/ZclLayout.vue
+80 −0 src/pages/Notifications.vue
+1 −1 src/pages/Preference.vue
+345 −0 src/pages/ZapConfig.vue
+9 −0 src/router/routes.js
+10 −5 src/store/zap/mutations.js
+1 −0 src/store/zap/state.js
+5 −0 src/util/common-mixin.js
+5 −1 test/gen-zigbee-1.test.js
+5 −1 test/generation.test.js
+18 −5 test/query.test.js
+0 −0 zap-cli

0 comments on commit 12e8e24

Please sign in to comment.