├── .circleci └── config.yml ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .nvmrc ├── .nycrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin ├── publish-version └── version ├── modules ├── .mocharc.json ├── .nycrc.yml ├── build ├── cli │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── global.d.ts │ │ └── index.ts │ ├── tsconfig-cjs.json │ └── tsconfig.json ├── cmpapi │ ├── .mocharc.json │ ├── .npmignore │ ├── .nycrc.yml │ ├── LICENSE │ ├── README.md │ ├── global.d.ts │ ├── package.json │ ├── src │ │ ├── CallResponder.ts │ │ ├── CmpApi.ts │ │ ├── CmpApiModel.ts │ │ ├── CustomCommands.ts │ │ ├── EventListenerQueue.ts │ │ ├── SupportedVersions.ts │ │ ├── command │ │ │ ├── AddEventListenerCommand.ts │ │ │ ├── Command.ts │ │ │ ├── CommandCallback.ts │ │ │ ├── CommandMap.ts │ │ │ ├── GetInAppTCDataCommand.ts │ │ │ ├── GetTCDataCommand.ts │ │ │ ├── GetVendorListCommand.ts │ │ │ ├── PingCommand.ts │ │ │ ├── RemoveEventListenerCommand.ts │ │ │ ├── TCFCommand.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── response │ │ │ ├── BooleanVector.ts │ │ │ ├── Booleany.ts │ │ │ ├── Disabled.ts │ │ │ ├── InAppTCData.ts │ │ │ ├── Ping.ts │ │ │ ├── Response.ts │ │ │ ├── Restrictions.ts │ │ │ ├── TCData.ts │ │ │ └── index.ts │ │ └── status │ │ │ ├── CmpStatus.ts │ │ │ ├── DisplayStatus.ts │ │ │ ├── EventStatus.ts │ │ │ └── index.ts │ ├── test │ │ ├── CallResponder.test.ts │ │ ├── CmpApi.test.ts │ │ ├── CmpApiModel.test.ts │ │ ├── EventListenerQueue.test.ts │ │ ├── ReportedIssues.test.ts │ │ ├── TestUtils.ts │ │ ├── command │ │ │ ├── AddEventListenerCommand.test.ts │ │ │ ├── CommandMap.test.ts │ │ │ ├── GetInAppTCDataCommand.test.ts │ │ │ ├── GetTCDataCommand.test.ts │ │ │ ├── GetVendorListCommand.test.ts │ │ │ ├── PingCommand.test.ts │ │ │ ├── RemoveEventListenerCommand.test.ts │ │ │ └── TCFCommands.test.ts │ │ ├── hook.mjs │ │ ├── response │ │ │ ├── Disabled.test.ts │ │ │ ├── InAppTCData.test.ts │ │ │ ├── Ping.test.ts │ │ │ ├── Response.test.ts │ │ │ └── TCData.test.ts │ │ └── status │ │ │ ├── CmpStatus.test.ts │ │ │ ├── DisplayStatus.test.ts │ │ │ └── EventStatus.test.ts │ ├── tsconfig-cjs.json │ └── tsconfig.json ├── core │ ├── .mocharc.json │ ├── .npmignore │ ├── .nycrc.yml │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── Cloneable.ts │ │ ├── GVL.ts │ │ ├── Json.ts │ │ ├── TCModel.ts │ │ ├── TCString.ts │ │ ├── encoder │ │ │ ├── Base64Url.ts │ │ │ ├── BitLength.ts │ │ │ ├── EncodingOptions.ts │ │ │ ├── SegmentEncoder.ts │ │ │ ├── SemanticPreEncoder.ts │ │ │ ├── field │ │ │ │ ├── BooleanEncoder.ts │ │ │ │ ├── DateEncoder.ts │ │ │ │ ├── FieldEncoderMap.ts │ │ │ │ ├── FixedVectorEncoder.ts │ │ │ │ ├── IntEncoder.ts │ │ │ │ ├── LangEncoder.ts │ │ │ │ ├── PurposeRestrictionVectorEncoder.ts │ │ │ │ ├── VectorEncodingType.ts │ │ │ │ ├── VendorVectorEncoder.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── sequence │ │ │ │ ├── FieldSequence.ts │ │ │ │ ├── SegmentSequence.ts │ │ │ │ ├── SequenceVersionMap.ts │ │ │ │ └── index.ts │ │ ├── errors │ │ │ ├── DecodingError.ts │ │ │ ├── EncodingError.ts │ │ │ ├── GVLError.ts │ │ │ ├── TCModelError.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── model │ │ │ ├── ConsentLanguages.ts │ │ │ ├── DeviceDisclosure.ts │ │ │ ├── DeviceDisclosureStorageAccessType.ts │ │ │ ├── Fields.ts │ │ │ ├── IntMap.ts │ │ │ ├── KeyMap.ts │ │ │ ├── PurposeRestriction.ts │ │ │ ├── PurposeRestrictionVector.ts │ │ │ ├── RestrictionType.ts │ │ │ ├── Segment.ts │ │ │ ├── SegmentIDs.ts │ │ │ ├── Vector.ts │ │ │ ├── gvl │ │ │ ├── ByPurposeVendorMap.ts │ │ │ ├── DataCategory.ts │ │ │ ├── DataRetention.ts │ │ │ ├── Declarations.ts │ │ │ ├── Feature.ts │ │ │ ├── GVLMapItem.ts │ │ │ ├── GvlCreationOptions.ts │ │ │ ├── IDSetMap.ts │ │ │ ├── Purpose.ts │ │ │ ├── Stack.ts │ │ │ ├── Vendor.ts │ │ │ ├── VendorList.ts │ │ │ ├── VendorUrl.ts │ │ │ └── index.ts │ │ │ └── index.ts │ ├── test │ │ ├── GVL.test.ts │ │ ├── Json.test.ts │ │ ├── ReportedIssues.test.ts │ │ ├── TCModel.test.ts │ │ ├── TCString.test.ts │ │ ├── encoder │ │ │ ├── Base64Url.test.ts │ │ │ ├── BitLength.test.ts │ │ │ ├── SegmentEncoder.test.ts │ │ │ ├── field │ │ │ │ ├── BooleanEncoder.test.ts │ │ │ │ ├── DateEncoder.test.ts │ │ │ │ ├── FieldEncoderMap.test.ts │ │ │ │ ├── FixedVectorEncoder.test.ts │ │ │ │ ├── IntEncoder.test.ts │ │ │ │ ├── LangEncoder.test.ts │ │ │ │ ├── PurposeRestrictionVectorEncoder.test.ts │ │ │ │ ├── VectorEncodingType.test.ts │ │ │ │ └── VendorVectorEncoder.test.ts │ │ │ └── sequence │ │ │ │ ├── FieldSequence.test.ts │ │ │ │ └── SegmentSequence.test.ts │ │ ├── hook.mjs │ │ └── model │ │ │ ├── ConsentLanguages.test.ts │ │ │ ├── Fields.test.ts │ │ │ ├── PurposeRestriction.test.ts │ │ │ ├── PurposeRestrictionVector.test.ts │ │ │ ├── Vector.test.ts │ │ │ └── gvl │ │ │ ├── DataCategory.test.ts │ │ │ └── Vendor.test.ts │ ├── tsconfig-cjs.json │ └── tsconfig.json ├── stub │ ├── .babelrc │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── src │ │ └── stub.js ├── testing │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── GVLFactory.cts │ │ ├── GVLFactory.ts │ │ ├── PowerSet.ts │ │ ├── TCModelFactory.ts │ │ ├── TCStringFactory.ts │ │ ├── TestCollector.ts │ │ ├── XMLHttpTestTools.ts │ │ ├── index.ts │ │ ├── isPrimitive.ts │ │ ├── makeRandomInt.ts │ │ ├── makeRandomIntArray.ts │ │ ├── makeRandomString.ts │ │ ├── sameDataDiffRef.ts │ │ ├── smellsLikeGVL.ts │ │ └── vendorlist │ │ │ ├── v2.2 │ │ │ ├── vendor-list-v17.json │ │ │ └── vendor-list.json │ │ │ └── v2 │ │ │ ├── purpose-restriction-vendor-list.json │ │ │ ├── purposes-bg.json │ │ │ ├── purposes-ca.json │ │ │ ├── purposes-cs.json │ │ │ ├── purposes-da.json │ │ │ ├── purposes-de.json │ │ │ ├── purposes-el.json │ │ │ ├── purposes-es.json │ │ │ ├── purposes-et.json │ │ │ ├── purposes-fi.json │ │ │ ├── purposes-fr.json │ │ │ ├── purposes-hu.json │ │ │ ├── purposes-it.json │ │ │ ├── purposes-lt.json │ │ │ ├── purposes-lv.json │ │ │ ├── purposes-mt.json │ │ │ ├── purposes-nl.json │ │ │ ├── purposes-no.json │ │ │ ├── purposes-pl.json │ │ │ ├── purposes-pt.json │ │ │ ├── purposes-ro.json │ │ │ ├── purposes-ru.json │ │ │ ├── purposes-sk.json │ │ │ ├── purposes-sl.json │ │ │ ├── purposes-sv.json │ │ │ ├── purposes-zh.json │ │ │ ├── vendor-list-v1.json │ │ │ ├── vendor-list-v10.json │ │ │ ├── vendor-list-v11.json │ │ │ ├── vendor-list-v12.json │ │ │ ├── vendor-list-v13.json │ │ │ ├── vendor-list-v14.json │ │ │ ├── vendor-list-v15.json │ │ │ ├── vendor-list-v16.json │ │ │ ├── vendor-list-v17.json │ │ │ ├── vendor-list-v18.json │ │ │ ├── vendor-list-v19.json │ │ │ ├── vendor-list-v2.json │ │ │ ├── vendor-list-v20.json │ │ │ ├── vendor-list-v21.json │ │ │ ├── vendor-list-v22.json │ │ │ ├── vendor-list-v23.json │ │ │ ├── vendor-list-v24.json │ │ │ ├── vendor-list-v25.json │ │ │ ├── vendor-list-v26.json │ │ │ ├── vendor-list-v27.json │ │ │ ├── vendor-list-v28.json │ │ │ ├── vendor-list-v29.json │ │ │ ├── vendor-list-v3.json │ │ │ ├── vendor-list-v30.json │ │ │ ├── vendor-list-v31.json │ │ │ ├── vendor-list-v32.json │ │ │ ├── vendor-list-v33.json │ │ │ ├── vendor-list-v34.json │ │ │ ├── vendor-list-v35.json │ │ │ ├── vendor-list-v36.json │ │ │ ├── vendor-list-v37.json │ │ │ ├── vendor-list-v38.json │ │ │ ├── vendor-list-v39.json │ │ │ ├── vendor-list-v4.json │ │ │ ├── vendor-list-v40.json │ │ │ ├── vendor-list-v41.json │ │ │ ├── vendor-list-v42.json │ │ │ ├── vendor-list-v43.json │ │ │ ├── vendor-list-v44.json │ │ │ ├── vendor-list-v45.json │ │ │ ├── vendor-list-v46.json │ │ │ ├── vendor-list-v47.json │ │ │ ├── vendor-list-v48.json │ │ │ ├── vendor-list-v49.json │ │ │ ├── vendor-list-v5.json │ │ │ ├── vendor-list-v50.json │ │ │ ├── vendor-list-v51.json │ │ │ ├── vendor-list-v6.json │ │ │ ├── vendor-list-v7.json │ │ │ ├── vendor-list-v8.json │ │ │ ├── vendor-list-v9.json │ │ │ └── vendor-list.json │ ├── tsconfig-cjs.json │ └── tsconfig.json └── tsconfig.json ├── package.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.15.3 2 | -------------------------------------------------------------------------------- /.nycrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/.nycrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/README.md -------------------------------------------------------------------------------- /bin/publish-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/bin/publish-version -------------------------------------------------------------------------------- /bin/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/bin/version -------------------------------------------------------------------------------- /modules/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/.mocharc.json -------------------------------------------------------------------------------- /modules/.nycrc.yml: -------------------------------------------------------------------------------- 1 | extends: "@istanbuljs/nyc-config-typescript" 2 | check-coverage: true 3 | -------------------------------------------------------------------------------- /modules/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/build -------------------------------------------------------------------------------- /modules/cli/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cli/.npmignore -------------------------------------------------------------------------------- /modules/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cli/README.md -------------------------------------------------------------------------------- /modules/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cli/package.json -------------------------------------------------------------------------------- /modules/cli/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cli/src/global.d.ts -------------------------------------------------------------------------------- /modules/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cli/src/index.ts -------------------------------------------------------------------------------- /modules/cli/tsconfig-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cli/tsconfig-cjs.json -------------------------------------------------------------------------------- /modules/cli/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../tsconfig.json -------------------------------------------------------------------------------- /modules/cmpapi/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/.mocharc.json -------------------------------------------------------------------------------- /modules/cmpapi/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/.npmignore -------------------------------------------------------------------------------- /modules/cmpapi/.nycrc.yml: -------------------------------------------------------------------------------- 1 | ../.nycrc.yml -------------------------------------------------------------------------------- /modules/cmpapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/LICENSE -------------------------------------------------------------------------------- /modules/cmpapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/README.md -------------------------------------------------------------------------------- /modules/cmpapi/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/global.d.ts -------------------------------------------------------------------------------- /modules/cmpapi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/package.json -------------------------------------------------------------------------------- /modules/cmpapi/src/CallResponder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/CallResponder.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/CmpApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/CmpApi.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/CmpApiModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/CmpApiModel.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/CustomCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/CustomCommands.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/EventListenerQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/EventListenerQueue.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/SupportedVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/SupportedVersions.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/AddEventListenerCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/AddEventListenerCommand.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/Command.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/CommandCallback.ts: -------------------------------------------------------------------------------- 1 | export type CommandCallback = (...params) => void; 2 | -------------------------------------------------------------------------------- /modules/cmpapi/src/command/CommandMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/CommandMap.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/GetInAppTCDataCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/GetInAppTCDataCommand.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/GetTCDataCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/GetTCDataCommand.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/GetVendorListCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/GetVendorListCommand.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/PingCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/PingCommand.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/RemoveEventListenerCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/RemoveEventListenerCommand.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/TCFCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/TCFCommand.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/command/index.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/index.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/BooleanVector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/BooleanVector.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/Booleany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/Booleany.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/Disabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/Disabled.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/InAppTCData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/InAppTCData.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/Ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/Ping.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/Response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/Response.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/Restrictions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/Restrictions.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/TCData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/TCData.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/response/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/response/index.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/status/CmpStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/status/CmpStatus.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/status/DisplayStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/status/DisplayStatus.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/status/EventStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/status/EventStatus.ts -------------------------------------------------------------------------------- /modules/cmpapi/src/status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/src/status/index.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/CallResponder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/CallResponder.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/CmpApi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/CmpApi.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/CmpApiModel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/CmpApiModel.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/EventListenerQueue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/EventListenerQueue.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/ReportedIssues.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/ReportedIssues.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/TestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/TestUtils.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/command/AddEventListenerCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/command/AddEventListenerCommand.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/command/CommandMap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/command/CommandMap.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/command/GetInAppTCDataCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/command/GetInAppTCDataCommand.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/command/GetTCDataCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/command/GetTCDataCommand.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/command/GetVendorListCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/command/GetVendorListCommand.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/command/PingCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/command/PingCommand.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/command/RemoveEventListenerCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/command/RemoveEventListenerCommand.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/command/TCFCommands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/command/TCFCommands.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/hook.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/hook.mjs -------------------------------------------------------------------------------- /modules/cmpapi/test/response/Disabled.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/response/Disabled.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/response/InAppTCData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/response/InAppTCData.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/response/Ping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/response/Ping.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/response/Response.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/response/Response.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/response/TCData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/response/TCData.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/status/CmpStatus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/status/CmpStatus.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/status/DisplayStatus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/status/DisplayStatus.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/test/status/EventStatus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/test/status/EventStatus.test.ts -------------------------------------------------------------------------------- /modules/cmpapi/tsconfig-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/cmpapi/tsconfig-cjs.json -------------------------------------------------------------------------------- /modules/cmpapi/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../tsconfig.json -------------------------------------------------------------------------------- /modules/core/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/.mocharc.json -------------------------------------------------------------------------------- /modules/core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/.npmignore -------------------------------------------------------------------------------- /modules/core/.nycrc.yml: -------------------------------------------------------------------------------- 1 | ../.nycrc.yml -------------------------------------------------------------------------------- /modules/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/LICENSE -------------------------------------------------------------------------------- /modules/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/README.md -------------------------------------------------------------------------------- /modules/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/package.json -------------------------------------------------------------------------------- /modules/core/src/Cloneable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/Cloneable.ts -------------------------------------------------------------------------------- /modules/core/src/GVL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/GVL.ts -------------------------------------------------------------------------------- /modules/core/src/Json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/Json.ts -------------------------------------------------------------------------------- /modules/core/src/TCModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/TCModel.ts -------------------------------------------------------------------------------- /modules/core/src/TCString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/TCString.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/Base64Url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/Base64Url.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/BitLength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/BitLength.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/EncodingOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/EncodingOptions.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/SegmentEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/SegmentEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/SemanticPreEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/SemanticPreEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/BooleanEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/BooleanEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/DateEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/DateEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/FieldEncoderMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/FieldEncoderMap.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/FixedVectorEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/FixedVectorEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/IntEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/IntEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/LangEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/LangEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/PurposeRestrictionVectorEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/PurposeRestrictionVectorEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/VectorEncodingType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/VectorEncodingType.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/VendorVectorEncoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/VendorVectorEncoder.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/field/index.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/index.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/sequence/FieldSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/sequence/FieldSequence.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/sequence/SegmentSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/sequence/SegmentSequence.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/sequence/SequenceVersionMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/sequence/SequenceVersionMap.ts -------------------------------------------------------------------------------- /modules/core/src/encoder/sequence/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/encoder/sequence/index.ts -------------------------------------------------------------------------------- /modules/core/src/errors/DecodingError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/errors/DecodingError.ts -------------------------------------------------------------------------------- /modules/core/src/errors/EncodingError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/errors/EncodingError.ts -------------------------------------------------------------------------------- /modules/core/src/errors/GVLError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/errors/GVLError.ts -------------------------------------------------------------------------------- /modules/core/src/errors/TCModelError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/errors/TCModelError.ts -------------------------------------------------------------------------------- /modules/core/src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/errors/index.ts -------------------------------------------------------------------------------- /modules/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/index.ts -------------------------------------------------------------------------------- /modules/core/src/model/ConsentLanguages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/ConsentLanguages.ts -------------------------------------------------------------------------------- /modules/core/src/model/DeviceDisclosure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/DeviceDisclosure.ts -------------------------------------------------------------------------------- /modules/core/src/model/DeviceDisclosureStorageAccessType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/DeviceDisclosureStorageAccessType.ts -------------------------------------------------------------------------------- /modules/core/src/model/Fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/Fields.ts -------------------------------------------------------------------------------- /modules/core/src/model/IntMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/IntMap.ts -------------------------------------------------------------------------------- /modules/core/src/model/KeyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/KeyMap.ts -------------------------------------------------------------------------------- /modules/core/src/model/PurposeRestriction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/PurposeRestriction.ts -------------------------------------------------------------------------------- /modules/core/src/model/PurposeRestrictionVector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/PurposeRestrictionVector.ts -------------------------------------------------------------------------------- /modules/core/src/model/RestrictionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/RestrictionType.ts -------------------------------------------------------------------------------- /modules/core/src/model/Segment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/Segment.ts -------------------------------------------------------------------------------- /modules/core/src/model/SegmentIDs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/SegmentIDs.ts -------------------------------------------------------------------------------- /modules/core/src/model/Vector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/Vector.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/ByPurposeVendorMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/ByPurposeVendorMap.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/DataCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/DataCategory.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/DataRetention.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/DataRetention.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/Declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/Declarations.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/Feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/Feature.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/GVLMapItem.ts: -------------------------------------------------------------------------------- 1 | export interface GVLMapItem { 2 | id: number; 3 | name: string; 4 | } 5 | -------------------------------------------------------------------------------- /modules/core/src/model/gvl/GvlCreationOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/GvlCreationOptions.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/IDSetMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/IDSetMap.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/Purpose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/Purpose.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/Stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/Stack.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/Vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/Vendor.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/VendorList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/VendorList.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/VendorUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/VendorUrl.ts -------------------------------------------------------------------------------- /modules/core/src/model/gvl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/gvl/index.ts -------------------------------------------------------------------------------- /modules/core/src/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/src/model/index.ts -------------------------------------------------------------------------------- /modules/core/test/GVL.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/GVL.test.ts -------------------------------------------------------------------------------- /modules/core/test/Json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/Json.test.ts -------------------------------------------------------------------------------- /modules/core/test/ReportedIssues.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/ReportedIssues.test.ts -------------------------------------------------------------------------------- /modules/core/test/TCModel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/TCModel.test.ts -------------------------------------------------------------------------------- /modules/core/test/TCString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/TCString.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/Base64Url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/Base64Url.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/BitLength.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/BitLength.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/SegmentEncoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/SegmentEncoder.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/BooleanEncoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/BooleanEncoder.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/DateEncoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/DateEncoder.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/FieldEncoderMap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/FieldEncoderMap.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/FixedVectorEncoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/FixedVectorEncoder.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/IntEncoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/IntEncoder.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/LangEncoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/LangEncoder.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/PurposeRestrictionVectorEncoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/PurposeRestrictionVectorEncoder.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/VectorEncodingType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/VectorEncodingType.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/field/VendorVectorEncoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/field/VendorVectorEncoder.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/sequence/FieldSequence.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/sequence/FieldSequence.test.ts -------------------------------------------------------------------------------- /modules/core/test/encoder/sequence/SegmentSequence.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/encoder/sequence/SegmentSequence.test.ts -------------------------------------------------------------------------------- /modules/core/test/hook.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/hook.mjs -------------------------------------------------------------------------------- /modules/core/test/model/ConsentLanguages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/model/ConsentLanguages.test.ts -------------------------------------------------------------------------------- /modules/core/test/model/Fields.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/model/Fields.test.ts -------------------------------------------------------------------------------- /modules/core/test/model/PurposeRestriction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/model/PurposeRestriction.test.ts -------------------------------------------------------------------------------- /modules/core/test/model/PurposeRestrictionVector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/model/PurposeRestrictionVector.test.ts -------------------------------------------------------------------------------- /modules/core/test/model/Vector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/model/Vector.test.ts -------------------------------------------------------------------------------- /modules/core/test/model/gvl/DataCategory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/model/gvl/DataCategory.test.ts -------------------------------------------------------------------------------- /modules/core/test/model/gvl/Vendor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/test/model/gvl/Vendor.test.ts -------------------------------------------------------------------------------- /modules/core/tsconfig-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/core/tsconfig-cjs.json -------------------------------------------------------------------------------- /modules/core/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../tsconfig.json -------------------------------------------------------------------------------- /modules/stub/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/stub/.babelrc -------------------------------------------------------------------------------- /modules/stub/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/stub/.npmignore -------------------------------------------------------------------------------- /modules/stub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/stub/README.md -------------------------------------------------------------------------------- /modules/stub/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/stub/package.json -------------------------------------------------------------------------------- /modules/stub/src/stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/stub/src/stub.js -------------------------------------------------------------------------------- /modules/testing/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/.npmignore -------------------------------------------------------------------------------- /modules/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/README.md -------------------------------------------------------------------------------- /modules/testing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/package.json -------------------------------------------------------------------------------- /modules/testing/src/GVLFactory.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/GVLFactory.cts -------------------------------------------------------------------------------- /modules/testing/src/GVLFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/GVLFactory.ts -------------------------------------------------------------------------------- /modules/testing/src/PowerSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/PowerSet.ts -------------------------------------------------------------------------------- /modules/testing/src/TCModelFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/TCModelFactory.ts -------------------------------------------------------------------------------- /modules/testing/src/TCStringFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/TCStringFactory.ts -------------------------------------------------------------------------------- /modules/testing/src/TestCollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/TestCollector.ts -------------------------------------------------------------------------------- /modules/testing/src/XMLHttpTestTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/XMLHttpTestTools.ts -------------------------------------------------------------------------------- /modules/testing/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/index.ts -------------------------------------------------------------------------------- /modules/testing/src/isPrimitive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/isPrimitive.ts -------------------------------------------------------------------------------- /modules/testing/src/makeRandomInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/makeRandomInt.ts -------------------------------------------------------------------------------- /modules/testing/src/makeRandomIntArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/makeRandomIntArray.ts -------------------------------------------------------------------------------- /modules/testing/src/makeRandomString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/makeRandomString.ts -------------------------------------------------------------------------------- /modules/testing/src/sameDataDiffRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/sameDataDiffRef.ts -------------------------------------------------------------------------------- /modules/testing/src/smellsLikeGVL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/smellsLikeGVL.ts -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2.2/vendor-list-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2.2/vendor-list-v17.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2.2/vendor-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2.2/vendor-list.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purpose-restriction-vendor-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purpose-restriction-vendor-list.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-bg.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-ca.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-cs.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-da.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-de.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-el.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-es.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-et.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-fi.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-fr.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-hu.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-it.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-lt.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-lv.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-mt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-mt.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-nl.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-no.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-pl.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-pt.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-ro.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-ru.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-sk.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-sl.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-sv.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/purposes-zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/purposes-zh.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v1.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v10.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v11.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v12.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v13.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v14.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v15.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v16.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v17.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v18.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v19.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v2.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v20.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v21.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v22.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v23.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v24.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v25.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v26.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v27.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v28.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v29.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v3.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v30.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v31.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v32.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v33.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v34.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v35.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v36.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v37.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v38.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v39.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v4.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v40.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v41.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v42.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v43.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v44.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v45.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v46.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v47.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v48.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v49.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v5.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v50.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v51.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v6.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v7.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v8.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list-v9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list-v9.json -------------------------------------------------------------------------------- /modules/testing/src/vendorlist/v2/vendor-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/src/vendorlist/v2/vendor-list.json -------------------------------------------------------------------------------- /modules/testing/tsconfig-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/testing/tsconfig-cjs.json -------------------------------------------------------------------------------- /modules/testing/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../tsconfig.json -------------------------------------------------------------------------------- /modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/modules/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/iabtcf-es/HEAD/yarn.lock --------------------------------------------------------------------------------