├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── deploy.yml │ ├── deployPreview.yml │ ├── test.yml │ └── vulnerability-scan-failure-notify.yaml ├── .gitignore ├── .idea └── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .trivyignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── blog ├── 2023-04-12-welcome │ └── index.md └── authors.yml ├── docs ├── category │ ├── dsp-integrations-3.mdx │ ├── endpoints-v2.mdx │ ├── integration-guides.mdx │ ├── overview-pages.mdx │ ├── private-operator-integrations-1.mdx │ ├── private-operator-integrations-2.mdx │ ├── private-operator-integrations-3.mdx │ ├── private-operator-integrations-4.mdx │ ├── private-operator-integrations.mdx │ ├── readme.txt │ ├── sdks.mdx │ └── workflows.mdx ├── endpoints │ ├── _category_.json │ ├── post-identity-buckets.md │ ├── post-identity-map-v2.md │ ├── post-identity-map.md │ ├── post-optout-status.md │ ├── post-token-generate.md │ ├── post-token-refresh.md │ ├── post-token-validate.md │ └── summary-endpoints.md ├── getting-started │ ├── _category_.json │ ├── gs-account-setup.md │ ├── gs-api-using.mdx │ ├── gs-auth.md │ ├── gs-credentials.md │ ├── gs-encryption-decryption.md │ ├── gs-environments.md │ ├── gs-faqs.md │ ├── gs-normalization-encoding.md │ ├── gs-opt-out.md │ ├── gs-permissions.md │ ├── gs-sharing.md │ └── images │ │ ├── UID2GlobalOptoutWorkflow.svg │ │ └── source │ │ └── source.txt ├── guides │ ├── _category_.json │ ├── advertiser-dataprovider-guide.mdx │ ├── dsp-guide.md │ ├── google-ss-integration.mdx │ ├── images │ │ ├── NetworkTraffic.png │ │ ├── TokenDebugger-uid2.png │ │ ├── advertiser-flow-endpoints-mermaid-v3.png │ │ ├── advertiser-flow-endpoints-mermaid.png │ │ ├── advertiser-flow-overview-mermaid-v3.png │ │ ├── advertiser-flow-overview-mermaid.png │ │ ├── aws-vpc-chart-uid2.png │ │ ├── cloudformation-step-2-2.png │ │ ├── cloudformation-step-2.png │ │ ├── cloudformation-step-3.png │ │ ├── dsp-guide-flow-mermaid.png │ │ ├── dsp-guide-optout.png │ │ ├── integration-aws-entity-resolution-public-listing.png │ │ ├── integration-aws-entity-resolution.png │ │ ├── integration-javascript-client-server-mermaid.png │ │ ├── integration-mobile-client-server-uid2.png │ │ ├── integration-publisher-server-side-mermaid.png │ │ ├── operator-azure-drawio.png │ │ ├── resource │ │ │ ├── advertiser-flow-endpoints-v2-mermaid.md.bak │ │ │ ├── advertiser-flow-endpoints-v3-mermaid.mermaid │ │ │ ├── advertiser-flow-overview-v2-mermaid.md.bak │ │ │ ├── advertiser-flow-overview-v3-mermaid.mermaid │ │ │ ├── aws-vpc-chart-uid2.svg │ │ │ ├── dsp-guide-flow-mermaid.md.bak │ │ │ ├── dsp-guide-optout-mermaid.md.bak │ │ │ ├── dsp-guide-optout.png │ │ │ ├── integration-aws-entity-resolution.svg │ │ │ ├── integration-aws-entity-resolution.txt │ │ │ ├── integration-javascript-client-server-mermaid.md.bak │ │ │ ├── integration-mobile-client-server-uid2.pptx │ │ │ ├── integration-publisher-server-side-mermaid.md.bak │ │ │ ├── operator-azure-drawio.drawio │ │ │ ├── stack-creation-events.png │ │ │ └── uid2-snowflake-integration-architecture.drawio │ │ └── uid2-snowflake-integration-architecture-drawio.png │ ├── integration-advertiser-dataprovider-endpoints.md │ ├── integration-advertiser-dataprovider-overview.md │ ├── integration-aws-entity-resolution.md │ ├── integration-ctv-guide.md │ ├── integration-databricks.md │ ├── integration-dsp-no-sdk.md │ ├── integration-google-ss.md │ ├── integration-javascript-client-server.md │ ├── integration-javascript-client-side.md │ ├── integration-javascript.md │ ├── integration-liveramp-tips.md │ ├── integration-mobile-client-server.md │ ├── integration-mobile-client-side.md │ ├── integration-mobile-overview.md │ ├── integration-mobile-server-side.md │ ├── integration-options-private-operator.md │ ├── integration-options-publisher-all.md │ ├── integration-options-publisher-web.md │ ├── integration-prebid-client-server.md │ ├── integration-prebid-client-side.md │ ├── integration-prebid-mobile-summary.md │ ├── integration-prebid-server-side.mdx │ ├── integration-prebid.md │ ├── integration-publisher-server-side.md │ ├── integration-snowflake-before-february-2025.md │ ├── integration-snowflake-previous.md │ ├── integration-snowflake.md │ ├── mobile-plugin-gma-android.md │ ├── mobile-plugin-gma-ios.md │ ├── mobile-plugin-ima-android.md │ ├── mobile-plugin-ima-ios.md │ ├── operator-guide-aks-enclave.md │ ├── operator-guide-aws-marketplace.md │ ├── operator-guide-azure-enclave.md │ ├── operator-private-gcp-confidential-space.md │ ├── publisher-client-side.mdx │ ├── snowflake_integration.mdx │ └── summary-guides.md ├── intro.md ├── overviews │ ├── _category_.json │ ├── images │ │ ├── UID2AdvertiserAndThirdPartyDataProviderWorkflow.svg │ │ ├── UID2BuySIdeDSPWorkflow.svg │ │ ├── UID2PublisherAndSSPWorkflow.svg │ │ └── source │ │ │ └── source.txt │ ├── overview-advertisers.md │ ├── overview-data-providers.md │ ├── overview-dsps.md │ ├── overview-operators-private.mdx │ ├── overview-publishers.md │ └── participants-overview.md ├── portal │ ├── _category_.json │ ├── api-keys.md │ ├── audit-trail.md │ ├── client-side-integration.md │ ├── email-contacts.md │ ├── images │ │ ├── icon-copy-solid.png │ │ ├── icon-eye-solid.png │ │ ├── icon-magnifying-glass-solid.png │ │ ├── icon-pencil-solid.png │ │ ├── icon-trash-can-solid.png │ │ ├── portal-client-side-integration-domains-multiselect.png │ │ ├── portal-client-side-integration-key-pairs.png │ │ ├── portal-client-side-integration-multiselect.png │ │ ├── portal-sharing-permissions-individual-delete-options.png │ │ ├── portal-sharing-permissions-individual-participant-type.png │ │ ├── portal-sharing-permissions-individual-review.png │ │ ├── portal-sharing-permissions-individual-search.png │ │ ├── portal-sharing-permissions-view-participants.png │ │ ├── portal-sharing-permissions.png │ │ ├── portal-team-members-resend-invitation.png │ │ └── portal-uid2-overview.png │ ├── participant-info.md │ ├── portal-getting-started.md │ ├── portal-overview.md │ ├── sharing-permissions.md │ └── team-members.md ├── ref-info │ ├── _category_.json │ ├── deprecation-schedule.md │ ├── glossary-uid.md │ ├── images │ │ ├── HowUID2Created_UID2ImplementationPlaybook.jpg │ │ ├── UID2Workflows.svg │ │ ├── resource │ │ │ └── HowUID2Created_UID2ImplementationPlaybook.pptx │ │ └── source │ │ │ └── source.txt │ ├── integration-sample-sites.md │ ├── ref-how-uid-is-created.md │ ├── ref-integration-approaches.md │ ├── ref-integration-sso-providers.md │ ├── ref-operators-public-private.md │ ├── ref-server-side-token-generation.md │ ├── ref-tokens.md │ ├── uid-components.md │ ├── uid-identifier-types.md │ ├── uid-workflows.md │ └── updates-doc.md ├── sdks │ ├── _category_.json │ ├── client-side-identity.mdx │ ├── images │ │ ├── resource │ │ │ └── uid2-js-sdk-workflow.svg │ │ ├── uid2-js-sdk-workflow.png │ │ └── uid2-js-sdk-workflow.svg │ ├── sdk-ref-android.md │ ├── sdk-ref-cplusplus.md │ ├── sdk-ref-csharp-dotnet.md │ ├── sdk-ref-ios.md │ ├── sdk-ref-java.md │ ├── sdk-ref-javascript-v2.md │ ├── sdk-ref-javascript-v3.md │ ├── sdk-ref-javascript.md │ ├── sdk-ref-python.md │ ├── summary-sdks.md │ ├── uid2-sdk-ref-java.mdx │ └── uid2-sdk-ref-python.mdx ├── sharing │ ├── _category_.json │ ├── images │ │ ├── SharingSlide-Examples.png │ │ ├── UID2_Sharing_Diagram_Integrate_SDK_Bid_Stream.png │ │ ├── UID2_Sharing_Diagram_Integrate_SDK_Sharing_Token.png │ │ └── resource │ │ │ ├── SharingSlide-Examples.pptx │ │ │ └── readme.txt │ ├── sharing-best-practices.md │ ├── sharing-overview.md │ ├── sharing-raw.md │ ├── sharing-security.md │ ├── sharing-tokenized-from-data-bid-stream.md │ ├── sharing-tokenized-from-data-pixel.md │ ├── sharing-tokenized-from-raw.md │ ├── sharing-tokenized-overview.md │ └── sharing-use-cases.md ├── snippets │ ├── _snpt-example-advertising-token.mdx │ ├── _snpt-example-client-server-send-uid2-to-sdk.mdx │ ├── _snpt-example-identity-generate-response.mdx │ ├── _snpt-example-javascript-init.mdx │ ├── _snpt-example-javascript-v2-init.mdx │ ├── _snpt-example-token-in-bidstream.mdx │ ├── _snpt-example-uid2-cookie.mdx │ ├── _snpt-integrating-with-sso.mdx │ ├── _snpt-mobile-docs-enable-logging.mdx │ ├── _snpt-mobile-docs-error-response-states.mdx │ ├── _snpt-mobile_docs_gmaima-plugin-gss.mdx │ ├── _snpt-mobile_docs_prebid-mobile.mdx │ ├── _snpt-post-identity-map-improvements-v3.mdx │ ├── _snpt-prebid-add-prebidjs-to-your-site.mdx │ ├── _snpt-prebid-storing-uid2-token-in-browser.mdx │ ├── _snpt-private-operator-attest-failure.mdx │ ├── _snpt-private-operator-option.mdx │ ├── _snpt-private-operator-rotating-the-keys.mdx │ ├── _snpt-private-operator-upgrade-policy.mdx │ └── _snpt-publisher-implementation-resources.mdx ├── summary-doc-v2.md └── workflows │ ├── readme.txt │ ├── workflow-overview-3p-data-provider.mdx │ └── workflow-overview-supply-side.mdx ├── docusaurus.config.js ├── docusaurus.config.localized.json ├── docusaurus.preview.js ├── i18n └── ja │ ├── code.json │ ├── docusaurus-plugin-content-blog │ └── options.json │ ├── docusaurus-plugin-content-docs │ ├── current.json │ └── current │ │ ├── category │ │ ├── dsp-integrations-3.mdx │ │ ├── dsp-integrations-4.mdx │ │ ├── mobile.mdx │ │ ├── private-operator-integrations-1.mdx │ │ ├── private-operator-integrations-3.mdx │ │ ├── private-operator-integrations-4.mdx │ │ ├── private-operator-integrations.mdx │ │ └── sdks.mdx │ │ ├── endpoints │ │ ├── _category_.json │ │ ├── post-identity-buckets.md │ │ ├── post-identity-map-v2.md │ │ ├── post-identity-map.md │ │ ├── post-optout-status.md │ │ ├── post-token-generate.md │ │ ├── post-token-refresh.md │ │ ├── post-token-validate.md │ │ └── summary-endpoints.md │ │ ├── getting-started │ │ ├── _category_.json │ │ ├── gs-account-setup.md │ │ ├── gs-auth.md │ │ ├── gs-credentials.md │ │ ├── gs-encryption-decryption.md │ │ ├── gs-environments.md │ │ ├── gs-faqs.md │ │ ├── gs-normalization-encoding.md │ │ ├── gs-opt-out.md │ │ ├── gs-permissions.md │ │ ├── gs-sharing.md │ │ └── images │ │ │ └── UID2GlobalOptoutWorkflow.svg │ │ ├── guides-operator-private │ │ └── _category_.json │ │ ├── guides │ │ ├── _category_.json │ │ ├── advertiser-dataprovider-guide.mdx │ │ ├── dsp-guide.md │ │ ├── google-ss-integration.mdx │ │ ├── images │ │ │ ├── NetworkTraffic.png │ │ │ ├── TokenDebugger-uid2.png │ │ │ ├── advertiser-flow-endpoints-mermaid-v3.png │ │ │ ├── advertiser-flow-endpoints-mermaid.png │ │ │ ├── advertiser-flow-overview-mermaid-v3.png │ │ │ ├── advertiser-flow-overview-mermaid.png │ │ │ ├── aws-vpc-chart-uid2.png │ │ │ ├── cloudformation-step-2-2.png │ │ │ ├── cloudformation-step-2.png │ │ │ ├── cloudformation-step-3.png │ │ │ ├── dsp-guide-flow-mermaid.png │ │ │ ├── dsp-guide-optout-check-mermaid.png │ │ │ ├── integration-aws-entity-resolution-public-listing.png │ │ │ ├── integration-aws-entity-resolution.png │ │ │ ├── integration-aws-entity-resolution.svg │ │ │ ├── integration-javascript-client-server-mermaid.png │ │ │ ├── integration-javascript-client-server-mermaid.svg │ │ │ ├── integration-mobile-client-server-uid2.png │ │ │ ├── integration-publisher-server-side-mermaid.png │ │ │ ├── operator-azure-drawio.png │ │ │ ├── publisher-flow-mermaid.png │ │ │ ├── resource │ │ │ │ ├── advertiser-flow-endpoints-v2-mermaid.md.bak │ │ │ │ ├── advertiser-flow-endpoints-v3-mermaid.mermaid │ │ │ │ ├── advertiser-flow-overview-v2-mermaid.md.bak │ │ │ │ ├── advertiser-flow-overview-v3-mermaid.mermaid │ │ │ │ ├── aws-vpc-chart-uid2.svg │ │ │ │ ├── custom-publisher-integration-mermaid.md.bak │ │ │ │ ├── dsp-guide-flow-mermaid.md.bk │ │ │ │ ├── dsp-guide-optout-check-mermaid.md.bk │ │ │ │ ├── integration-aws-entity-resolution.txt │ │ │ │ ├── integration-javascript-client-server-mermaid.md.bak │ │ │ │ ├── integration-mobile-client-server-uid2.pptx │ │ │ │ ├── integration-publisher-server-side-mermaid.md.bak │ │ │ │ ├── operator-azure-drawio.drawio │ │ │ │ ├── publisher-flow-mermaid.md.bk │ │ │ │ └── uid2-snowflake-integration-architecture.drawio │ │ │ ├── stack-creation-resources.png │ │ │ ├── uid2-private-operator-aws-chart.svg │ │ │ └── uid2-snowflake-integration-architecture-drawio.png │ │ ├── integration-advertiser-dataprovider-endpoints.md │ │ ├── integration-advertiser-dataprovider-overview.md │ │ ├── integration-aws-entity-resolution.md │ │ ├── integration-ctv-guide.md │ │ ├── integration-databricks.md │ │ ├── integration-dsp-no-sdk.md │ │ ├── integration-google-ss.md │ │ ├── integration-javascript-client-server.md │ │ ├── integration-javascript-client-side.md │ │ ├── integration-javascript.md │ │ ├── integration-liveramp-tips.md │ │ ├── integration-mobile-client-server.md │ │ ├── integration-mobile-client-side.md │ │ ├── integration-mobile-overview.md │ │ ├── integration-mobile-server-side.md │ │ ├── integration-options-private-operator.md │ │ ├── integration-options-publisher-all.md │ │ ├── integration-options-publisher-web.md │ │ ├── integration-prebid-client-server.md │ │ ├── integration-prebid-client-side.md │ │ ├── integration-prebid-mobile-summary.md │ │ ├── integration-prebid-server-side.mdx │ │ ├── integration-prebid.md │ │ ├── integration-publisher-server-side.md │ │ ├── integration-snowflake-before-february-2025.md │ │ ├── integration-snowflake-previous.md │ │ ├── integration-snowflake.md │ │ ├── mobile-plugin-gma-android.md │ │ ├── mobile-plugin-gma-ios.md │ │ ├── mobile-plugin-ima-android.md │ │ ├── mobile-plugin-ima-ios.md │ │ ├── operator-guide-aks-enclave.md │ │ ├── operator-guide-aws-marketplace.md │ │ ├── operator-guide-azure-enclave.md │ │ ├── operator-private-gcp-confidential-space.md │ │ ├── snowflake_integration.mdx │ │ └── summary-guides.md │ │ ├── intro.md │ │ ├── overviews │ │ ├── _category_.json │ │ ├── images │ │ │ ├── UID2AdvertiserAndThirdPartyDataProviderWorkflow.jpg │ │ │ ├── UID2BuySIdeDSPWorkflow.jpg │ │ │ ├── UID2PublisherAndSSPWorkflow.jpg │ │ │ └── source │ │ │ │ ├── UID2AdvertiserAndThirdPartyDataProviderWorkflow.svg │ │ │ │ ├── UID2BuySIdeDSPWorkflow.svg │ │ │ │ ├── UID2PublisherAndSSPWorkflow.svg │ │ │ │ └── source.txt │ │ ├── overview-advertisers.md │ │ ├── overview-data-providers.md │ │ ├── overview-dsps.md │ │ ├── overview-operators-private.mdx │ │ ├── overview-publishers.md │ │ └── participants-overview.md │ │ ├── portal │ │ ├── _category_.json │ │ ├── api-keys.md │ │ ├── audit-trail.md │ │ ├── client-side-integration.md │ │ ├── email-contacts.md │ │ ├── images │ │ │ ├── icon-copy-solid.png │ │ │ ├── icon-eye-solid.png │ │ │ ├── icon-magnifying-glass-solid.png │ │ │ ├── icon-pencil-solid.png │ │ │ ├── icon-trash-can-solid.png │ │ │ ├── portal-client-side-integration-domains-multiselect.png │ │ │ ├── portal-client-side-integration-key-pairs.png │ │ │ ├── portal-client-side-integration-multiselect.png │ │ │ ├── portal-sharing-permissions-individual-delete-options.png │ │ │ ├── portal-sharing-permissions-individual-participant-type.png │ │ │ ├── portal-sharing-permissions-individual-review.png │ │ │ ├── portal-sharing-permissions-individual-search.png │ │ │ ├── portal-sharing-permissions-view-participants.png │ │ │ ├── portal-sharing-permissions.png │ │ │ ├── portal-team-members-resend-invitation.png │ │ │ └── portal-uid2-overview.png │ │ ├── participant-info.md │ │ ├── portal-getting-started.md │ │ ├── portal-overview.md │ │ ├── portal-team-members-resend-invitation.png │ │ ├── sharing-permissions.md │ │ └── team-members.md │ │ ├── ref-info │ │ ├── _category_.json │ │ ├── deprecation-schedule.md │ │ ├── glossary-uid.md │ │ ├── images │ │ │ ├── HowUID2Created_UID2ImplementationPlaybook.jpg │ │ │ ├── UID2Workflows.svg │ │ │ ├── resource │ │ │ │ └── HowUID2Created_UID2ImplementationPlaybook.pptx │ │ │ └── source │ │ │ │ └── source.txt │ │ ├── integration-sample-sites.md │ │ ├── ref-how-uid-is-created.md │ │ ├── ref-integration-approaches.md │ │ ├── ref-integration-sso-providers.md │ │ ├── ref-operators-public-private.md │ │ ├── ref-server-side-token-generation.md │ │ ├── ref-tokens.md │ │ ├── uid-components.md │ │ ├── uid-identifier-types.md │ │ ├── uid-workflows.md │ │ └── updates-doc.md │ │ ├── sdks │ │ ├── _category_.json │ │ ├── images │ │ │ ├── resource │ │ │ │ └── uid2-js-sdk-workflow.svg │ │ │ ├── uid2-js-sdk-workflow.png │ │ │ └── xcode-uid2-ios-sdk.png │ │ ├── sdk-ref-android.md │ │ ├── sdk-ref-cplusplus.md │ │ ├── sdk-ref-csharp-dotnet.md │ │ ├── sdk-ref-ios.md │ │ ├── sdk-ref-java.md │ │ ├── sdk-ref-javascript-v2.md │ │ ├── sdk-ref-javascript-v3.md │ │ ├── sdk-ref-javascript.md │ │ ├── sdk-ref-python.md │ │ ├── summary-sdks.md │ │ └── uid2-sdk-ref-python.mdx │ │ ├── sharing │ │ ├── _category_.json │ │ ├── images │ │ │ ├── SharingSlide-Examples.png │ │ │ ├── UID2_Sharing_Diagram_Integrate_SDK_Bid_Stream.png │ │ │ ├── UID2_Sharing_Diagram_Integrate_SDK_Sharing_Token.png │ │ │ ├── UID2_Sharing_Diagram_UseCases.png │ │ │ └── resource │ │ │ │ ├── SharingSlide-Examples.pptx │ │ │ │ ├── UID2_Sharing_Diagram_Integrate_SDK_Bid_Stream.svg │ │ │ │ ├── UID2_Sharing_Diagram_Integrate_SDK_Sharing_Token.svg │ │ │ │ └── UIDTransferSlide.pptx │ │ ├── sharing-best-practices.md │ │ ├── sharing-overview.md │ │ ├── sharing-raw.md │ │ ├── sharing-security.md │ │ ├── sharing-tokenized-from-data-bid-stream.md │ │ ├── sharing-tokenized-from-data-pixel.md │ │ ├── sharing-tokenized-from-raw.md │ │ ├── sharing-tokenized-overview.md │ │ └── sharing-use-cases.md │ │ ├── snippets │ │ ├── _snpt-example-advertising-token.mdx │ │ ├── _snpt-example-client-server-send-uid2-to-sdk.mdx │ │ ├── _snpt-example-identity-generate-response.mdx │ │ ├── _snpt-example-javascript-init.mdx │ │ ├── _snpt-example-javascript-v2-init.mdx │ │ ├── _snpt-example-token-in-bidstream.mdx │ │ ├── _snpt-example-uid2-cookie.mdx │ │ ├── _snpt-integrating-with-sso.mdx │ │ ├── _snpt-mobile-docs-enable-logging.mdx │ │ ├── _snpt-mobile-docs-error-response-states.mdx │ │ ├── _snpt-mobile_docs_gmaima-plugin-gss.mdx │ │ ├── _snpt-mobile_docs_prebid-mobile.mdx │ │ ├── _snpt-post-identity-map-improvements-v3.mdx │ │ ├── _snpt-prebid-add-prebidjs-to-your-site.mdx │ │ ├── _snpt-prebid-storing-uid2-token-in-browser.mdx │ │ ├── _snpt-private-operator-attest-failure.mdx │ │ ├── _snpt-private-operator-option.mdx │ │ ├── _snpt-private-operator-rotating-the-keys.mdx │ │ ├── _snpt-private-operator-upgrade-policy.mdx │ │ └── _snpt-publisher-implementation-resources.mdx │ │ └── summary-doc-v2.md │ └── docusaurus-theme-classic │ ├── footer.json │ └── navbar.json ├── package.json ├── sidebars.js ├── src ├── components │ ├── CustomTags │ │ ├── CustomTagsContainer.tsx │ │ ├── CustomTagsContext.tsx │ │ ├── CustomTagsFilterList.tsx │ │ ├── CustomTagsFilters.tsx │ │ └── styles.module.scss │ ├── DocsBanner │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── HomepageConsumerBenefit │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── HomepageCtaStripe │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── HomepageFeatures │ │ ├── crossDevice.json │ │ ├── email.json │ │ ├── index.tsx │ │ ├── personLock.json │ │ └── styles.module.scss │ ├── HomepageHero │ │ ├── HeroBgAnimation.tsx │ │ ├── heroBgDesktop.json │ │ ├── heroBgMobile.json │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── HomepageNews │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── HomepagePartnersMarquee │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── HomepagePartnersSegment │ │ ├── chartIconData.json │ │ ├── documentsIconData.json │ │ ├── flowchartIconData.json │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── uploadIconData.json │ ├── MdxJumpAnchor │ │ └── index.tsx │ ├── PageHeader │ │ ├── index.tsx │ │ └── styles.module.scss │ └── SectionHeader │ │ ├── index.tsx │ │ └── styles.module.scss ├── css │ ├── _config.scss │ ├── custom.scss │ ├── footer.scss │ ├── markdown.scss │ ├── marketo.scss │ ├── navbar.scss │ └── search.scss ├── data │ ├── partners.ts │ └── pressReleases.ts ├── pages │ ├── index.tsx │ ├── markdown-page.md │ ├── partners.module.scss │ ├── partners.tsx │ ├── request-access.module.scss │ └── request-access.tsx ├── theme │ ├── BlogListPage │ │ └── index.tsx │ ├── BlogPostItem │ │ └── index.tsx │ ├── BlogTagsPostsPage │ │ └── index.tsx │ ├── DocItem │ │ └── Layout │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── DocSidebarItem │ │ ├── Category │ │ │ └── index.tsx │ │ ├── Html │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Link │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── index.tsx │ │ └── styles.css │ ├── Footer │ │ ├── Copyright │ │ │ └── index.tsx │ │ ├── Layout │ │ │ └── index.tsx │ │ ├── LinkItem │ │ │ └── index.tsx │ │ ├── Links │ │ │ ├── MultiColumn │ │ │ │ └── index.tsx │ │ │ ├── Simple │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Logo │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── index.tsx │ ├── Layout │ │ └── Provider │ │ │ └── index.tsx │ ├── Navbar │ │ ├── ColorModeToggle │ │ │ └── index.tsx │ │ ├── Content │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Layout │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Logo │ │ │ └── index.tsx │ │ ├── MobileSidebar │ │ │ ├── Header │ │ │ │ └── index.tsx │ │ │ ├── Layout │ │ │ │ └── index.tsx │ │ │ ├── PrimaryMenu │ │ │ │ └── index.tsx │ │ │ ├── SecondaryMenu │ │ │ │ └── index.tsx │ │ │ ├── Toggle │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Search │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── index.tsx │ ├── NavbarItem │ │ ├── ColorModeToggle.tsx │ │ ├── ComponentTypes.ts │ │ ├── NavbarNavLink.tsx │ │ └── NavbarSeperator.tsx │ ├── NotFound │ │ ├── Content │ │ │ └── index.tsx │ │ └── index.tsx │ ├── SiteMetadata │ │ └── index.tsx │ └── TOCItems │ │ ├── Tree.tsx │ │ └── index.tsx ├── types.d.ts └── utils │ ├── index.ts │ ├── isJapanese.ts │ ├── isMobile.ts │ ├── pushGtmEvent.ts │ ├── useForcedDarkTheme.ts │ └── usePrefersReducesMotion.ts ├── static ├── .nojekyll ├── CNAME ├── examples │ ├── cstg-prebid-example │ │ ├── README.md │ │ ├── app.css │ │ ├── index.html │ │ └── prebid.js │ └── hashing-tool │ │ ├── app.css │ │ ├── index.html │ │ └── uid2-sdk-3.3.0.js ├── fonts │ ├── inter-font-medium.woff2 │ ├── inter-font-regular.woff2 │ ├── inter-font-semi-bold.woff2 │ └── roboto-mono-font-light.woff2 ├── img │ ├── Add.svg │ ├── Advertiser_base.svg │ ├── DataGroup_base.svg │ ├── MoreActions_base.svg │ ├── MoreActions_base_16x16.svg │ ├── Publisher_base.svg │ ├── Publisher_base_16x16.svg │ ├── arrow-outbound-link.svg │ ├── chart-icon.svg │ ├── cloud-upload-icon.svg │ ├── cross-device.svg │ ├── data_providers.png │ ├── documents-icon.svg │ ├── email-feature.svg │ ├── favicon.ico │ ├── favicon.png │ ├── flowchart-icon.svg │ ├── hero-desktop.svg │ ├── hero-mobile.svg │ ├── icon-page-advertisers.svg │ ├── icon-page-dataproviders.svg │ ├── icon-page-dsps.svg │ ├── icon-page-publishers.svg │ ├── logo-blue.svg │ ├── logo-white.svg │ ├── logo.png │ ├── logo.svg │ ├── partners │ │ ├── 33Across_logo.png │ │ ├── 4GTV.tv-logo_2022-07-12-203714_dakq.png │ │ ├── AMC_Networks_logo-580x250.png │ │ ├── Admicro_logo-580x250.png │ │ ├── Adobe_Corporate_Logo-580x250.png │ │ ├── AlikeAudience.png │ │ ├── Ameba_logo_580x250.png │ │ ├── Amobee.png │ │ ├── AngleTech.png │ │ ├── AppLovin_Logo_580x250.png │ │ ├── Aseal-Logo.png │ │ ├── Attain_Logo_Black_580x250.png │ │ ├── BabyCalendar.png │ │ ├── Bridg.png │ │ ├── BuzzFeed_Logo_580x250.png │ │ ├── CH3-logo.png │ │ ├── Caddle_ColourLogo_Horizontal.webp │ │ ├── Circana_Logo.png │ │ ├── CocCoc_RGB.png │ │ ├── CrossTarget.png │ │ ├── Deadline_logo-580x250.png │ │ ├── Dish-Media-Logo.png │ │ ├── DotdashMeredith_Logo_BLK.png │ │ ├── Experian.svg │ │ ├── FLUX_Logo_fix-1_BL.png │ │ ├── FOX_wordmark.svg │ │ ├── Fluct_logo-580x250.png │ │ ├── GetOne.png │ │ ├── GrowthLoop.png │ │ ├── HHG1000px.png │ │ ├── HK01-logo.png │ │ ├── Habu.png │ │ ├── Haystack-logo.png │ │ ├── InTouch_Logo-580x250.png │ │ ├── Index_Exchange_Logo_2021.png │ │ ├── InfoSum_Logo-580x250.png │ │ ├── KG-Media-518x250.png │ │ ├── LA-Times_logo-580x250.png │ │ ├── LiTV-logo-580x250.png │ │ ├── LifeStyle_logo-580x250.png │ │ ├── Lifesight-Logo-580x250.png │ │ ├── LineTV.png │ │ ├── Lndata.png │ │ ├── Logo-SehatQ-580x250.png │ │ ├── LogoTrueID Corporate.png │ │ ├── Logo_Windfall_580x250.png │ │ ├── Lucid-Logo.png │ │ ├── Lytics.png │ │ ├── MI_LOGO_500x240.png │ │ ├── MP-580x250.png │ │ ├── Magnite_logo-580x250.png │ │ ├── MediaTradecraft_Logo-580x250.png │ │ ├── Mediavine.png │ │ ├── Mediawallah_logo-580x250.png │ │ ├── Meitu_logo-580x250.png │ │ ├── MicroAd_COMPASS_580x250.png │ │ ├── MuscleFitness_Logo-580x250.png │ │ ├── NBCuniversal.png │ │ ├── NRich.png │ │ ├── Newsweek_logo-580x250.png │ │ ├── Nova-Entertainment-580x250.png │ │ ├── OnAudience_logo.png │ │ ├── Oracle_Advertising_580x250.png │ │ ├── PASS3_Logo-02.png │ │ ├── Pandora_wordmark.svg.png │ │ ├── Paramount.png │ │ ├── PartnerLogo_AJA-SSP_580x250.png │ │ ├── PartnerLogo_ARN_256x256.png │ │ ├── PartnerLogo_AdGeneration_580x250.png │ │ ├── PartnerLogo_Adsquare_580x256.png │ │ ├── PartnerLogo_Adswizz_580x250.png │ │ ├── PartnerLogo_AlikeAudience_580x250.png │ │ ├── PartnerLogo_Alliant_256x256.png │ │ ├── PartnerLogo_Audigent_256x256.png │ │ ├── PartnerLogo_Bidswitch_580x250.png │ │ ├── PartnerLogo_Comscore_580x250.png │ │ ├── PartnerLogo_Eyeota_580x250.png │ │ ├── PartnerLogo_Foursquare_580x250.png │ │ ├── PartnerLogo_FreakOut_580x250.png │ │ ├── PartnerLogo_FuboTV_256x256.png │ │ ├── PartnerLogo_Gamma_580x250.png │ │ ├── PartnerLogo_Kargo_580x250.png │ │ ├── PartnerLogo_LiSTNR_256x256.png │ │ ├── PartnerLogo_LiveIntent_580x250.png │ │ ├── PartnerLogo_LiveRamp_580x250.png │ │ ├── PartnerLogo_Netwise_580x250.png │ │ ├── PartnerLogo_Neustar_256x256.png │ │ ├── PartnerLogo_Nielsen_580x250.png │ │ ├── PartnerLogo_OpenX_580x250.png │ │ ├── PartnerLogo_Penske-Media-Corp-PMC_256x256.png │ │ ├── PartnerLogo_PubMatic_580x250.png │ │ ├── PartnerLogo_SCA_256x256.png │ │ ├── PartnerLogo_Sovrn_580x250.png │ │ ├── PartnerLogo_SpotX_580x250.png │ │ ├── PartnerLogo_Tapad_580x250.png │ │ ├── PartnerLogo_Unruly_580x250.png │ │ ├── PartnerLogo_Verve_580x250.png │ │ ├── PartnerLogo_YieldOne_580x250.png │ │ ├── PartnerLogo_gumgum_580x250.png │ │ ├── PartnerLogo_iCook_256x256.png │ │ ├── PartnerLogo_iQiyi_256x256.png │ │ ├── PartnerLogo_myTV-SUPER_256x256.png │ │ ├── PartnerLogo_ucfunnel_580x250.png │ │ ├── Philo_logo.png │ │ ├── ProperMedia_logo-580x250.png │ │ ├── Ranker-logo.png │ │ ├── Raptive_2023.svg │ │ ├── Retty_rgb_logotype-580x250.png │ │ ├── RevOptimal.png │ │ ├── Roku-Logo.png │ │ ├── Rolling-Stone_logo-580x250.png │ │ ├── SD-Union-Tribune_logo-580x250.png │ │ ├── Seedtag.png │ │ ├── ShareThis.png │ │ ├── Summit_Media_logo.png │ │ ├── Surfside.png │ │ ├── TMG-Rebrand-2021-Logo-RGB-Poli-K43-1.png │ │ ├── TNL-Media-Group-580x250.png │ │ ├── TULogo-blue.png │ │ ├── Thairath_Online_Logo2023.png │ │ ├── The-News-Lens-580x250.png │ │ ├── Throtle_Logo_580x250.png │ │ ├── TrueData-580x250.png │ │ ├── USNews.png │ │ ├── UnwindLogo.png │ │ ├── Us-Weekly-logo-580x250.png │ │ ├── VNExpress.png │ │ ├── VN_FPT Play.png │ │ ├── Variety_logo-580x250.png │ │ ├── WBD_logo.webp │ │ ├── WashingtonPost_logo-580x250.png │ │ ├── WeTV logo_1200x628_.png │ │ ├── Xandr-Logo.png │ │ ├── actioniq-logo.png │ │ ├── acxion-logo.png │ │ ├── adobe-advertising.png │ │ ├── allabout_logo_580x250.png │ │ ├── alliant-logo.png │ │ ├── amperity-logo.png │ │ ├── aotter_logo-580x250.png │ │ ├── arkadia-logo.png │ │ ├── audient_logo.png │ │ ├── aws-logo.svg │ │ ├── beachfront-logo.png │ │ ├── billboard-logo-580x250.png │ │ ├── blu_logo.png │ │ ├── blueconic.png │ │ ├── bombora-logo.png │ │ ├── cadent.png │ │ ├── cc_logo.png │ │ ├── centillion-logo.png │ │ ├── cinema-cafe-logo-580x250.png │ │ ├── ddlogo_orn_a 2.png │ │ ├── deepintent.png │ │ ├── dentsu-logo-black.png │ │ ├── digital-trends-logo.png │ │ ├── disney-logo.png │ │ ├── environics-analytics-logo2.png │ │ ├── fourm_company_logo.png │ │ ├── freewheel.png │ │ ├── frndlytv-logo.png │ │ ├── gma-logo.png │ │ ├── gumtree-logo.png │ │ ├── gurugame-logo.png │ │ ├── hightouch-logo.jpg │ │ ├── hipwee-580x250.png │ │ ├── hochi-580x250.png │ │ ├── hollywood-reporter_logo-580x250.png │ │ ├── hotai-logo.png │ │ ├── iQIYI.png │ │ ├── idn-logo.png │ │ ├── iheart-media-logo.png │ │ ├── interplay-logo.png │ │ ├── lasso-logo-580x250.png │ │ ├── lihuhu-logo.png │ │ ├── liveramp-logo-black.svg │ │ ├── logo_ThanhNien-580x250.png │ │ ├── lotame-epsilon-logo.png │ │ ├── lotame-logo.png │ │ ├── lottemembers.png │ │ ├── mainichi580x250.jpg │ │ ├── mcc-logo-horizontal-black.svg │ │ ├── media-prima-logo.png │ │ ├── medianet-logo.png │ │ ├── mingpao-logo.png │ │ ├── mparticle-logo.png │ │ ├── narrative-logo.png │ │ ├── networld.png │ │ ├── newscafe-logo-580x250.png │ │ ├── next-partner-logo-580.png │ │ ├── ogury.png │ │ ├── optable-logo.png │ │ ├── partner-logo-lucid.jpg │ │ ├── perion-lockup-black-rgb.png │ │ ├── pixnet-logo.png │ │ ├── publift-logo.png │ │ ├── rbb-today-logo-580x250.png │ │ ├── rea-group.png │ │ ├── revoptimal-logo.png │ │ ├── rudderstack.png │ │ ├── salesforce-logo.png │ │ ├── salon_logo-580x250.png │ │ ├── sc-logo-horizontal-black.svg │ │ ├── scripps.jpeg │ │ ├── simon.png │ │ ├── skyperfect-logo-700x400.png │ │ ├── slate.png │ │ ├── sling-logo.png │ │ ├── smrtr-logo-518x250.png │ │ ├── snowflake-logo-580x250.png │ │ ├── sports-illustrated_black_580x250.png │ │ ├── str-logo.png │ │ ├── tealium.png │ │ ├── tempo-logo.png │ │ ├── treasure-data-logo.svg │ │ ├── triplelift-logo.png │ │ ├── tubi-580x250.png │ │ ├── twilio-logo.png │ │ ├── vidio-logo.png │ │ └── wb-logo.png │ ├── person-lock.svg │ ├── right-arrow-icon.svg │ ├── uid2-social-card.jpg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg └── robots.txt ├── test └── python │ ├── .gitignore │ ├── README.md │ ├── pyproject.toml │ ├── test │ └── test_post_identity_map_v3.py │ └── uv.lock └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/deployPreview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.github/workflows/deployPreview.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/vulnerability-scan-failure-notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.github/workflows/vulnerability-scan-failure-notify.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.12.2 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .docusaurus 2 | .github 3 | build 4 | static 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/.trivyignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog/2023-04-12-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/blog/2023-04-12-welcome/index.md -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/category/dsp-integrations-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/dsp-integrations-3.mdx -------------------------------------------------------------------------------- /docs/category/endpoints-v2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/endpoints-v2.mdx -------------------------------------------------------------------------------- /docs/category/integration-guides.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/integration-guides.mdx -------------------------------------------------------------------------------- /docs/category/overview-pages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/overview-pages.mdx -------------------------------------------------------------------------------- /docs/category/private-operator-integrations-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/private-operator-integrations-1.mdx -------------------------------------------------------------------------------- /docs/category/private-operator-integrations-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/private-operator-integrations-2.mdx -------------------------------------------------------------------------------- /docs/category/private-operator-integrations-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/private-operator-integrations-3.mdx -------------------------------------------------------------------------------- /docs/category/private-operator-integrations-4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/private-operator-integrations-4.mdx -------------------------------------------------------------------------------- /docs/category/private-operator-integrations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/private-operator-integrations.mdx -------------------------------------------------------------------------------- /docs/category/readme.txt: -------------------------------------------------------------------------------- 1 | Folder and contents created 11 June 24 for APIDOCS-2239. Temporary. Keep until EOY. -------------------------------------------------------------------------------- /docs/category/sdks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/sdks.mdx -------------------------------------------------------------------------------- /docs/category/workflows.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/category/workflows.mdx -------------------------------------------------------------------------------- /docs/endpoints/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/_category_.json -------------------------------------------------------------------------------- /docs/endpoints/post-identity-buckets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/post-identity-buckets.md -------------------------------------------------------------------------------- /docs/endpoints/post-identity-map-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/post-identity-map-v2.md -------------------------------------------------------------------------------- /docs/endpoints/post-identity-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/post-identity-map.md -------------------------------------------------------------------------------- /docs/endpoints/post-optout-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/post-optout-status.md -------------------------------------------------------------------------------- /docs/endpoints/post-token-generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/post-token-generate.md -------------------------------------------------------------------------------- /docs/endpoints/post-token-refresh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/post-token-refresh.md -------------------------------------------------------------------------------- /docs/endpoints/post-token-validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/post-token-validate.md -------------------------------------------------------------------------------- /docs/endpoints/summary-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/endpoints/summary-endpoints.md -------------------------------------------------------------------------------- /docs/getting-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/_category_.json -------------------------------------------------------------------------------- /docs/getting-started/gs-account-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-account-setup.md -------------------------------------------------------------------------------- /docs/getting-started/gs-api-using.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-api-using.mdx -------------------------------------------------------------------------------- /docs/getting-started/gs-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-auth.md -------------------------------------------------------------------------------- /docs/getting-started/gs-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-credentials.md -------------------------------------------------------------------------------- /docs/getting-started/gs-encryption-decryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-encryption-decryption.md -------------------------------------------------------------------------------- /docs/getting-started/gs-environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-environments.md -------------------------------------------------------------------------------- /docs/getting-started/gs-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-faqs.md -------------------------------------------------------------------------------- /docs/getting-started/gs-normalization-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-normalization-encoding.md -------------------------------------------------------------------------------- /docs/getting-started/gs-opt-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-opt-out.md -------------------------------------------------------------------------------- /docs/getting-started/gs-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-permissions.md -------------------------------------------------------------------------------- /docs/getting-started/gs-sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/gs-sharing.md -------------------------------------------------------------------------------- /docs/getting-started/images/UID2GlobalOptoutWorkflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/images/UID2GlobalOptoutWorkflow.svg -------------------------------------------------------------------------------- /docs/getting-started/images/source/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/getting-started/images/source/source.txt -------------------------------------------------------------------------------- /docs/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/_category_.json -------------------------------------------------------------------------------- /docs/guides/advertiser-dataprovider-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/advertiser-dataprovider-guide.mdx -------------------------------------------------------------------------------- /docs/guides/dsp-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/dsp-guide.md -------------------------------------------------------------------------------- /docs/guides/google-ss-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/google-ss-integration.mdx -------------------------------------------------------------------------------- /docs/guides/images/NetworkTraffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/NetworkTraffic.png -------------------------------------------------------------------------------- /docs/guides/images/TokenDebugger-uid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/TokenDebugger-uid2.png -------------------------------------------------------------------------------- /docs/guides/images/advertiser-flow-endpoints-mermaid-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/advertiser-flow-endpoints-mermaid-v3.png -------------------------------------------------------------------------------- /docs/guides/images/advertiser-flow-endpoints-mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/advertiser-flow-endpoints-mermaid.png -------------------------------------------------------------------------------- /docs/guides/images/advertiser-flow-overview-mermaid-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/advertiser-flow-overview-mermaid-v3.png -------------------------------------------------------------------------------- /docs/guides/images/advertiser-flow-overview-mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/advertiser-flow-overview-mermaid.png -------------------------------------------------------------------------------- /docs/guides/images/aws-vpc-chart-uid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/aws-vpc-chart-uid2.png -------------------------------------------------------------------------------- /docs/guides/images/cloudformation-step-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/cloudformation-step-2-2.png -------------------------------------------------------------------------------- /docs/guides/images/cloudformation-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/cloudformation-step-2.png -------------------------------------------------------------------------------- /docs/guides/images/cloudformation-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/cloudformation-step-3.png -------------------------------------------------------------------------------- /docs/guides/images/dsp-guide-flow-mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/dsp-guide-flow-mermaid.png -------------------------------------------------------------------------------- /docs/guides/images/dsp-guide-optout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/dsp-guide-optout.png -------------------------------------------------------------------------------- /docs/guides/images/integration-aws-entity-resolution-public-listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/integration-aws-entity-resolution-public-listing.png -------------------------------------------------------------------------------- /docs/guides/images/integration-aws-entity-resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/integration-aws-entity-resolution.png -------------------------------------------------------------------------------- /docs/guides/images/integration-javascript-client-server-mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/integration-javascript-client-server-mermaid.png -------------------------------------------------------------------------------- /docs/guides/images/integration-mobile-client-server-uid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/integration-mobile-client-server-uid2.png -------------------------------------------------------------------------------- /docs/guides/images/integration-publisher-server-side-mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/integration-publisher-server-side-mermaid.png -------------------------------------------------------------------------------- /docs/guides/images/operator-azure-drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/operator-azure-drawio.png -------------------------------------------------------------------------------- /docs/guides/images/resource/advertiser-flow-endpoints-v2-mermaid.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/advertiser-flow-endpoints-v2-mermaid.md.bak -------------------------------------------------------------------------------- /docs/guides/images/resource/advertiser-flow-endpoints-v3-mermaid.mermaid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/advertiser-flow-endpoints-v3-mermaid.mermaid -------------------------------------------------------------------------------- /docs/guides/images/resource/advertiser-flow-overview-v2-mermaid.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/advertiser-flow-overview-v2-mermaid.md.bak -------------------------------------------------------------------------------- /docs/guides/images/resource/advertiser-flow-overview-v3-mermaid.mermaid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/advertiser-flow-overview-v3-mermaid.mermaid -------------------------------------------------------------------------------- /docs/guides/images/resource/aws-vpc-chart-uid2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/aws-vpc-chart-uid2.svg -------------------------------------------------------------------------------- /docs/guides/images/resource/dsp-guide-flow-mermaid.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/dsp-guide-flow-mermaid.md.bak -------------------------------------------------------------------------------- /docs/guides/images/resource/dsp-guide-optout-mermaid.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/dsp-guide-optout-mermaid.md.bak -------------------------------------------------------------------------------- /docs/guides/images/resource/dsp-guide-optout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/dsp-guide-optout.png -------------------------------------------------------------------------------- /docs/guides/images/resource/integration-aws-entity-resolution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/integration-aws-entity-resolution.svg -------------------------------------------------------------------------------- /docs/guides/images/resource/integration-aws-entity-resolution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/integration-aws-entity-resolution.txt -------------------------------------------------------------------------------- /docs/guides/images/resource/integration-javascript-client-server-mermaid.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/integration-javascript-client-server-mermaid.md.bak -------------------------------------------------------------------------------- /docs/guides/images/resource/integration-mobile-client-server-uid2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/integration-mobile-client-server-uid2.pptx -------------------------------------------------------------------------------- /docs/guides/images/resource/integration-publisher-server-side-mermaid.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/integration-publisher-server-side-mermaid.md.bak -------------------------------------------------------------------------------- /docs/guides/images/resource/operator-azure-drawio.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/operator-azure-drawio.drawio -------------------------------------------------------------------------------- /docs/guides/images/resource/stack-creation-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/stack-creation-events.png -------------------------------------------------------------------------------- /docs/guides/images/resource/uid2-snowflake-integration-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/resource/uid2-snowflake-integration-architecture.drawio -------------------------------------------------------------------------------- /docs/guides/images/uid2-snowflake-integration-architecture-drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/images/uid2-snowflake-integration-architecture-drawio.png -------------------------------------------------------------------------------- /docs/guides/integration-advertiser-dataprovider-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-advertiser-dataprovider-endpoints.md -------------------------------------------------------------------------------- /docs/guides/integration-advertiser-dataprovider-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-advertiser-dataprovider-overview.md -------------------------------------------------------------------------------- /docs/guides/integration-aws-entity-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-aws-entity-resolution.md -------------------------------------------------------------------------------- /docs/guides/integration-ctv-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-ctv-guide.md -------------------------------------------------------------------------------- /docs/guides/integration-databricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-databricks.md -------------------------------------------------------------------------------- /docs/guides/integration-dsp-no-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-dsp-no-sdk.md -------------------------------------------------------------------------------- /docs/guides/integration-google-ss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-google-ss.md -------------------------------------------------------------------------------- /docs/guides/integration-javascript-client-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-javascript-client-server.md -------------------------------------------------------------------------------- /docs/guides/integration-javascript-client-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-javascript-client-side.md -------------------------------------------------------------------------------- /docs/guides/integration-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-javascript.md -------------------------------------------------------------------------------- /docs/guides/integration-liveramp-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-liveramp-tips.md -------------------------------------------------------------------------------- /docs/guides/integration-mobile-client-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-mobile-client-server.md -------------------------------------------------------------------------------- /docs/guides/integration-mobile-client-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-mobile-client-side.md -------------------------------------------------------------------------------- /docs/guides/integration-mobile-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-mobile-overview.md -------------------------------------------------------------------------------- /docs/guides/integration-mobile-server-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-mobile-server-side.md -------------------------------------------------------------------------------- /docs/guides/integration-options-private-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-options-private-operator.md -------------------------------------------------------------------------------- /docs/guides/integration-options-publisher-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-options-publisher-all.md -------------------------------------------------------------------------------- /docs/guides/integration-options-publisher-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-options-publisher-web.md -------------------------------------------------------------------------------- /docs/guides/integration-prebid-client-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-prebid-client-server.md -------------------------------------------------------------------------------- /docs/guides/integration-prebid-client-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-prebid-client-side.md -------------------------------------------------------------------------------- /docs/guides/integration-prebid-mobile-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-prebid-mobile-summary.md -------------------------------------------------------------------------------- /docs/guides/integration-prebid-server-side.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-prebid-server-side.mdx -------------------------------------------------------------------------------- /docs/guides/integration-prebid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-prebid.md -------------------------------------------------------------------------------- /docs/guides/integration-publisher-server-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-publisher-server-side.md -------------------------------------------------------------------------------- /docs/guides/integration-snowflake-before-february-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-snowflake-before-february-2025.md -------------------------------------------------------------------------------- /docs/guides/integration-snowflake-previous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-snowflake-previous.md -------------------------------------------------------------------------------- /docs/guides/integration-snowflake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/integration-snowflake.md -------------------------------------------------------------------------------- /docs/guides/mobile-plugin-gma-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/mobile-plugin-gma-android.md -------------------------------------------------------------------------------- /docs/guides/mobile-plugin-gma-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/mobile-plugin-gma-ios.md -------------------------------------------------------------------------------- /docs/guides/mobile-plugin-ima-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/mobile-plugin-ima-android.md -------------------------------------------------------------------------------- /docs/guides/mobile-plugin-ima-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/mobile-plugin-ima-ios.md -------------------------------------------------------------------------------- /docs/guides/operator-guide-aks-enclave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/operator-guide-aks-enclave.md -------------------------------------------------------------------------------- /docs/guides/operator-guide-aws-marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/operator-guide-aws-marketplace.md -------------------------------------------------------------------------------- /docs/guides/operator-guide-azure-enclave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/operator-guide-azure-enclave.md -------------------------------------------------------------------------------- /docs/guides/operator-private-gcp-confidential-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/operator-private-gcp-confidential-space.md -------------------------------------------------------------------------------- /docs/guides/publisher-client-side.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/publisher-client-side.mdx -------------------------------------------------------------------------------- /docs/guides/snowflake_integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/snowflake_integration.mdx -------------------------------------------------------------------------------- /docs/guides/summary-guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/guides/summary-guides.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/overviews/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/_category_.json -------------------------------------------------------------------------------- /docs/overviews/images/UID2AdvertiserAndThirdPartyDataProviderWorkflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/images/UID2AdvertiserAndThirdPartyDataProviderWorkflow.svg -------------------------------------------------------------------------------- /docs/overviews/images/UID2BuySIdeDSPWorkflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/images/UID2BuySIdeDSPWorkflow.svg -------------------------------------------------------------------------------- /docs/overviews/images/UID2PublisherAndSSPWorkflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/images/UID2PublisherAndSSPWorkflow.svg -------------------------------------------------------------------------------- /docs/overviews/images/source/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/images/source/source.txt -------------------------------------------------------------------------------- /docs/overviews/overview-advertisers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/overview-advertisers.md -------------------------------------------------------------------------------- /docs/overviews/overview-data-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/overview-data-providers.md -------------------------------------------------------------------------------- /docs/overviews/overview-dsps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/overview-dsps.md -------------------------------------------------------------------------------- /docs/overviews/overview-operators-private.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/overview-operators-private.mdx -------------------------------------------------------------------------------- /docs/overviews/overview-publishers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/overview-publishers.md -------------------------------------------------------------------------------- /docs/overviews/participants-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/overviews/participants-overview.md -------------------------------------------------------------------------------- /docs/portal/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/_category_.json -------------------------------------------------------------------------------- /docs/portal/api-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/api-keys.md -------------------------------------------------------------------------------- /docs/portal/audit-trail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/audit-trail.md -------------------------------------------------------------------------------- /docs/portal/client-side-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/client-side-integration.md -------------------------------------------------------------------------------- /docs/portal/email-contacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/email-contacts.md -------------------------------------------------------------------------------- /docs/portal/images/icon-copy-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/icon-copy-solid.png -------------------------------------------------------------------------------- /docs/portal/images/icon-eye-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/icon-eye-solid.png -------------------------------------------------------------------------------- /docs/portal/images/icon-magnifying-glass-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/icon-magnifying-glass-solid.png -------------------------------------------------------------------------------- /docs/portal/images/icon-pencil-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/icon-pencil-solid.png -------------------------------------------------------------------------------- /docs/portal/images/icon-trash-can-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/icon-trash-can-solid.png -------------------------------------------------------------------------------- /docs/portal/images/portal-client-side-integration-domains-multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-client-side-integration-domains-multiselect.png -------------------------------------------------------------------------------- /docs/portal/images/portal-client-side-integration-key-pairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-client-side-integration-key-pairs.png -------------------------------------------------------------------------------- /docs/portal/images/portal-client-side-integration-multiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-client-side-integration-multiselect.png -------------------------------------------------------------------------------- /docs/portal/images/portal-sharing-permissions-individual-delete-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-sharing-permissions-individual-delete-options.png -------------------------------------------------------------------------------- /docs/portal/images/portal-sharing-permissions-individual-participant-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-sharing-permissions-individual-participant-type.png -------------------------------------------------------------------------------- /docs/portal/images/portal-sharing-permissions-individual-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-sharing-permissions-individual-review.png -------------------------------------------------------------------------------- /docs/portal/images/portal-sharing-permissions-individual-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-sharing-permissions-individual-search.png -------------------------------------------------------------------------------- /docs/portal/images/portal-sharing-permissions-view-participants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-sharing-permissions-view-participants.png -------------------------------------------------------------------------------- /docs/portal/images/portal-sharing-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-sharing-permissions.png -------------------------------------------------------------------------------- /docs/portal/images/portal-team-members-resend-invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-team-members-resend-invitation.png -------------------------------------------------------------------------------- /docs/portal/images/portal-uid2-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/images/portal-uid2-overview.png -------------------------------------------------------------------------------- /docs/portal/participant-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/participant-info.md -------------------------------------------------------------------------------- /docs/portal/portal-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/portal-getting-started.md -------------------------------------------------------------------------------- /docs/portal/portal-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/portal-overview.md -------------------------------------------------------------------------------- /docs/portal/sharing-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/sharing-permissions.md -------------------------------------------------------------------------------- /docs/portal/team-members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/portal/team-members.md -------------------------------------------------------------------------------- /docs/ref-info/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/_category_.json -------------------------------------------------------------------------------- /docs/ref-info/deprecation-schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/deprecation-schedule.md -------------------------------------------------------------------------------- /docs/ref-info/glossary-uid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/glossary-uid.md -------------------------------------------------------------------------------- /docs/ref-info/images/HowUID2Created_UID2ImplementationPlaybook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/images/HowUID2Created_UID2ImplementationPlaybook.jpg -------------------------------------------------------------------------------- /docs/ref-info/images/UID2Workflows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/images/UID2Workflows.svg -------------------------------------------------------------------------------- /docs/ref-info/images/resource/HowUID2Created_UID2ImplementationPlaybook.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/images/resource/HowUID2Created_UID2ImplementationPlaybook.pptx -------------------------------------------------------------------------------- /docs/ref-info/images/source/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/images/source/source.txt -------------------------------------------------------------------------------- /docs/ref-info/integration-sample-sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/integration-sample-sites.md -------------------------------------------------------------------------------- /docs/ref-info/ref-how-uid-is-created.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/ref-how-uid-is-created.md -------------------------------------------------------------------------------- /docs/ref-info/ref-integration-approaches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/ref-integration-approaches.md -------------------------------------------------------------------------------- /docs/ref-info/ref-integration-sso-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/ref-integration-sso-providers.md -------------------------------------------------------------------------------- /docs/ref-info/ref-operators-public-private.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/ref-operators-public-private.md -------------------------------------------------------------------------------- /docs/ref-info/ref-server-side-token-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/ref-server-side-token-generation.md -------------------------------------------------------------------------------- /docs/ref-info/ref-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/ref-tokens.md -------------------------------------------------------------------------------- /docs/ref-info/uid-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/uid-components.md -------------------------------------------------------------------------------- /docs/ref-info/uid-identifier-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/uid-identifier-types.md -------------------------------------------------------------------------------- /docs/ref-info/uid-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/uid-workflows.md -------------------------------------------------------------------------------- /docs/ref-info/updates-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/ref-info/updates-doc.md -------------------------------------------------------------------------------- /docs/sdks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/_category_.json -------------------------------------------------------------------------------- /docs/sdks/client-side-identity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/client-side-identity.mdx -------------------------------------------------------------------------------- /docs/sdks/images/resource/uid2-js-sdk-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/images/resource/uid2-js-sdk-workflow.svg -------------------------------------------------------------------------------- /docs/sdks/images/uid2-js-sdk-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/images/uid2-js-sdk-workflow.png -------------------------------------------------------------------------------- /docs/sdks/images/uid2-js-sdk-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/images/uid2-js-sdk-workflow.svg -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-android.md -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-cplusplus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-cplusplus.md -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-csharp-dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-csharp-dotnet.md -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-ios.md -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-java.md -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-javascript-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-javascript-v2.md -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-javascript-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-javascript-v3.md -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-javascript.md -------------------------------------------------------------------------------- /docs/sdks/sdk-ref-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/sdk-ref-python.md -------------------------------------------------------------------------------- /docs/sdks/summary-sdks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/summary-sdks.md -------------------------------------------------------------------------------- /docs/sdks/uid2-sdk-ref-java.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/uid2-sdk-ref-java.mdx -------------------------------------------------------------------------------- /docs/sdks/uid2-sdk-ref-python.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sdks/uid2-sdk-ref-python.mdx -------------------------------------------------------------------------------- /docs/sharing/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/_category_.json -------------------------------------------------------------------------------- /docs/sharing/images/SharingSlide-Examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/images/SharingSlide-Examples.png -------------------------------------------------------------------------------- /docs/sharing/images/UID2_Sharing_Diagram_Integrate_SDK_Bid_Stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/images/UID2_Sharing_Diagram_Integrate_SDK_Bid_Stream.png -------------------------------------------------------------------------------- /docs/sharing/images/UID2_Sharing_Diagram_Integrate_SDK_Sharing_Token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/images/UID2_Sharing_Diagram_Integrate_SDK_Sharing_Token.png -------------------------------------------------------------------------------- /docs/sharing/images/resource/SharingSlide-Examples.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/images/resource/SharingSlide-Examples.pptx -------------------------------------------------------------------------------- /docs/sharing/images/resource/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/images/resource/readme.txt -------------------------------------------------------------------------------- /docs/sharing/sharing-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-best-practices.md -------------------------------------------------------------------------------- /docs/sharing/sharing-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-overview.md -------------------------------------------------------------------------------- /docs/sharing/sharing-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-raw.md -------------------------------------------------------------------------------- /docs/sharing/sharing-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-security.md -------------------------------------------------------------------------------- /docs/sharing/sharing-tokenized-from-data-bid-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-tokenized-from-data-bid-stream.md -------------------------------------------------------------------------------- /docs/sharing/sharing-tokenized-from-data-pixel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-tokenized-from-data-pixel.md -------------------------------------------------------------------------------- /docs/sharing/sharing-tokenized-from-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-tokenized-from-raw.md -------------------------------------------------------------------------------- /docs/sharing/sharing-tokenized-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-tokenized-overview.md -------------------------------------------------------------------------------- /docs/sharing/sharing-use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/sharing/sharing-use-cases.md -------------------------------------------------------------------------------- /docs/snippets/_snpt-example-advertising-token.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-example-advertising-token.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-example-client-server-send-uid2-to-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-example-client-server-send-uid2-to-sdk.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-example-identity-generate-response.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-example-identity-generate-response.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-example-javascript-init.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-example-javascript-init.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-example-javascript-v2-init.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-example-javascript-v2-init.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-example-token-in-bidstream.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-example-token-in-bidstream.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-example-uid2-cookie.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-example-uid2-cookie.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-integrating-with-sso.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-integrating-with-sso.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-mobile-docs-enable-logging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-mobile-docs-enable-logging.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-mobile-docs-error-response-states.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-mobile-docs-error-response-states.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-mobile_docs_gmaima-plugin-gss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-mobile_docs_gmaima-plugin-gss.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-mobile_docs_prebid-mobile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-mobile_docs_prebid-mobile.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-post-identity-map-improvements-v3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-post-identity-map-improvements-v3.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-prebid-add-prebidjs-to-your-site.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-prebid-add-prebidjs-to-your-site.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-prebid-storing-uid2-token-in-browser.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-prebid-storing-uid2-token-in-browser.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-private-operator-attest-failure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-private-operator-attest-failure.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-private-operator-option.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-private-operator-option.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-private-operator-rotating-the-keys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-private-operator-rotating-the-keys.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-private-operator-upgrade-policy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-private-operator-upgrade-policy.mdx -------------------------------------------------------------------------------- /docs/snippets/_snpt-publisher-implementation-resources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/snippets/_snpt-publisher-implementation-resources.mdx -------------------------------------------------------------------------------- /docs/summary-doc-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/summary-doc-v2.md -------------------------------------------------------------------------------- /docs/workflows/readme.txt: -------------------------------------------------------------------------------- 1 | Folder and contents created 11 June 24 for APIDOCS-2239. Temporary. Keep until EOY. -------------------------------------------------------------------------------- /docs/workflows/workflow-overview-3p-data-provider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/workflows/workflow-overview-3p-data-provider.mdx -------------------------------------------------------------------------------- /docs/workflows/workflow-overview-supply-side.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docs/workflows/workflow-overview-supply-side.mdx -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /docusaurus.config.localized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docusaurus.config.localized.json -------------------------------------------------------------------------------- /docusaurus.preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/docusaurus.preview.js -------------------------------------------------------------------------------- /i18n/ja/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/code.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-blog/options.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/category/dsp-integrations-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/category/dsp-integrations-3.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/category/dsp-integrations-4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/category/dsp-integrations-4.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/category/mobile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/category/mobile.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/category/private-operator-integrations-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/category/private-operator-integrations-1.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/category/private-operator-integrations-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/category/private-operator-integrations-3.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/category/private-operator-integrations-4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/category/private-operator-integrations-4.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/category/private-operator-integrations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/category/private-operator-integrations.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/category/sdks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/category/sdks.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-identity-buckets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-identity-buckets.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-identity-map-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-identity-map-v2.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-identity-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-identity-map.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-optout-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-optout-status.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-token-generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-token-generate.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-token-refresh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-token-refresh.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-token-validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/post-token-validate.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/endpoints/summary-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/endpoints/summary-endpoints.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-account-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-account-setup.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-auth.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-credentials.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-encryption-decryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-encryption-decryption.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-environments.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-faqs.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-normalization-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-normalization-encoding.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-opt-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-opt-out.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-permissions.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-sharing.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides-operator-private/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides-operator-private/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/advertiser-dataprovider-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/advertiser-dataprovider-guide.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/dsp-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/dsp-guide.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/google-ss-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/google-ss-integration.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/NetworkTraffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/NetworkTraffic.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/TokenDebugger-uid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/TokenDebugger-uid2.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/aws-vpc-chart-uid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/aws-vpc-chart-uid2.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/cloudformation-step-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/cloudformation-step-2-2.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/cloudformation-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/cloudformation-step-2.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/cloudformation-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/cloudformation-step-3.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/dsp-guide-flow-mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/dsp-guide-flow-mermaid.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/operator-azure-drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/operator-azure-drawio.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/publisher-flow-mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/publisher-flow-mermaid.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/images/stack-creation-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/images/stack-creation-resources.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-aws-entity-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-aws-entity-resolution.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-ctv-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-ctv-guide.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-databricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-databricks.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-dsp-no-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-dsp-no-sdk.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-google-ss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-google-ss.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-javascript-client-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-javascript-client-side.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-javascript.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-liveramp-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-liveramp-tips.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-client-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-client-server.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-client-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-client-side.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-overview.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-server-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-server-side.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-options-publisher-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-options-publisher-all.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-options-publisher-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-options-publisher-web.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid-client-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid-client-server.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid-client-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid-client-side.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid-mobile-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid-mobile-summary.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid-server-side.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid-server-side.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-prebid.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-publisher-server-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-publisher-server-side.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-snowflake-previous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-snowflake-previous.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-snowflake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-snowflake.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/mobile-plugin-gma-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/mobile-plugin-gma-android.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/mobile-plugin-gma-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/mobile-plugin-gma-ios.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/mobile-plugin-ima-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/mobile-plugin-ima-android.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/mobile-plugin-ima-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/mobile-plugin-ima-ios.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/operator-guide-aks-enclave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/operator-guide-aks-enclave.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/operator-guide-aws-marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/operator-guide-aws-marketplace.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/operator-guide-azure-enclave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/operator-guide-azure-enclave.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/snowflake_integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/snowflake_integration.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/summary-guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/guides/summary-guides.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/intro.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/images/UID2BuySIdeDSPWorkflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/images/UID2BuySIdeDSPWorkflow.jpg -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/images/source/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/images/source/source.txt -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-advertisers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-advertisers.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-data-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-data-providers.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-dsps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-dsps.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-operators-private.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-operators-private.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-publishers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/overview-publishers.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/overviews/participants-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/overviews/participants-overview.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/api-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/api-keys.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/audit-trail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/audit-trail.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/client-side-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/client-side-integration.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/email-contacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/email-contacts.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/images/icon-copy-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/images/icon-copy-solid.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/images/icon-eye-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/images/icon-eye-solid.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/images/icon-pencil-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/images/icon-pencil-solid.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/images/icon-trash-can-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/images/icon-trash-can-solid.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/images/portal-sharing-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/images/portal-sharing-permissions.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/images/portal-uid2-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/images/portal-uid2-overview.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/participant-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/participant-info.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/portal-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/portal-getting-started.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/portal-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/portal-overview.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/sharing-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/sharing-permissions.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/portal/team-members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/portal/team-members.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/deprecation-schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/deprecation-schedule.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/glossary-uid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/glossary-uid.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/images/UID2Workflows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/images/UID2Workflows.svg -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/images/source/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/images/source/source.txt -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/integration-sample-sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/integration-sample-sites.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-how-uid-is-created.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-how-uid-is-created.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-integration-approaches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-integration-approaches.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-integration-sso-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-integration-sso-providers.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-operators-public-private.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-operators-public-private.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/ref-tokens.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/uid-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/uid-components.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/uid-identifier-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/uid-identifier-types.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/uid-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/uid-workflows.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/ref-info/updates-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/ref-info/updates-doc.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/images/uid2-js-sdk-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/images/uid2-js-sdk-workflow.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/images/xcode-uid2-ios-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/images/xcode-uid2-ios-sdk.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-android.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-cplusplus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-cplusplus.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-csharp-dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-csharp-dotnet.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-ios.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-java.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-javascript-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-javascript-v2.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-javascript-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-javascript-v3.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-javascript.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-python.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/summary-sdks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/summary-sdks.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sdks/uid2-sdk-ref-python.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sdks/uid2-sdk-ref-python.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/_category_.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/images/SharingSlide-Examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/images/SharingSlide-Examples.png -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-best-practices.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-overview.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-raw.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-security.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-tokenized-from-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-tokenized-from-raw.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-tokenized-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-tokenized-overview.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/sharing/sharing-use-cases.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/snippets/_snpt-example-javascript-init.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/snippets/_snpt-example-javascript-init.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/snippets/_snpt-example-uid2-cookie.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/snippets/_snpt-example-uid2-cookie.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/snippets/_snpt-integrating-with-sso.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/snippets/_snpt-integrating-with-sso.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/snippets/_snpt-private-operator-option.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/snippets/_snpt-private-operator-option.mdx -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/summary-doc-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-plugin-content-docs/current/summary-doc-v2.md -------------------------------------------------------------------------------- /i18n/ja/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /i18n/ja/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/i18n/ja/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/CustomTags/CustomTagsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/CustomTags/CustomTagsContainer.tsx -------------------------------------------------------------------------------- /src/components/CustomTags/CustomTagsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/CustomTags/CustomTagsContext.tsx -------------------------------------------------------------------------------- /src/components/CustomTags/CustomTagsFilterList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/CustomTags/CustomTagsFilterList.tsx -------------------------------------------------------------------------------- /src/components/CustomTags/CustomTagsFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/CustomTags/CustomTagsFilters.tsx -------------------------------------------------------------------------------- /src/components/CustomTags/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/CustomTags/styles.module.scss -------------------------------------------------------------------------------- /src/components/DocsBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/DocsBanner/index.tsx -------------------------------------------------------------------------------- /src/components/DocsBanner/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/DocsBanner/styles.module.scss -------------------------------------------------------------------------------- /src/components/HomepageConsumerBenefit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageConsumerBenefit/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageConsumerBenefit/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageConsumerBenefit/styles.module.scss -------------------------------------------------------------------------------- /src/components/HomepageCtaStripe/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageCtaStripe/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageCtaStripe/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageCtaStripe/styles.module.scss -------------------------------------------------------------------------------- /src/components/HomepageFeatures/crossDevice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageFeatures/crossDevice.json -------------------------------------------------------------------------------- /src/components/HomepageFeatures/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageFeatures/email.json -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/personLock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageFeatures/personLock.json -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageFeatures/styles.module.scss -------------------------------------------------------------------------------- /src/components/HomepageHero/HeroBgAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageHero/HeroBgAnimation.tsx -------------------------------------------------------------------------------- /src/components/HomepageHero/heroBgDesktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageHero/heroBgDesktop.json -------------------------------------------------------------------------------- /src/components/HomepageHero/heroBgMobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageHero/heroBgMobile.json -------------------------------------------------------------------------------- /src/components/HomepageHero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageHero/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageHero/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageHero/styles.module.scss -------------------------------------------------------------------------------- /src/components/HomepageNews/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageNews/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageNews/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepageNews/styles.module.scss -------------------------------------------------------------------------------- /src/components/HomepagePartnersMarquee/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepagePartnersMarquee/index.tsx -------------------------------------------------------------------------------- /src/components/HomepagePartnersMarquee/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepagePartnersMarquee/styles.module.scss -------------------------------------------------------------------------------- /src/components/HomepagePartnersSegment/chartIconData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepagePartnersSegment/chartIconData.json -------------------------------------------------------------------------------- /src/components/HomepagePartnersSegment/documentsIconData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepagePartnersSegment/documentsIconData.json -------------------------------------------------------------------------------- /src/components/HomepagePartnersSegment/flowchartIconData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepagePartnersSegment/flowchartIconData.json -------------------------------------------------------------------------------- /src/components/HomepagePartnersSegment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepagePartnersSegment/index.tsx -------------------------------------------------------------------------------- /src/components/HomepagePartnersSegment/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepagePartnersSegment/styles.module.scss -------------------------------------------------------------------------------- /src/components/HomepagePartnersSegment/uploadIconData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/HomepagePartnersSegment/uploadIconData.json -------------------------------------------------------------------------------- /src/components/MdxJumpAnchor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/MdxJumpAnchor/index.tsx -------------------------------------------------------------------------------- /src/components/PageHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/PageHeader/index.tsx -------------------------------------------------------------------------------- /src/components/PageHeader/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/PageHeader/styles.module.scss -------------------------------------------------------------------------------- /src/components/SectionHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/SectionHeader/index.tsx -------------------------------------------------------------------------------- /src/components/SectionHeader/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/components/SectionHeader/styles.module.scss -------------------------------------------------------------------------------- /src/css/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/css/_config.scss -------------------------------------------------------------------------------- /src/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/css/custom.scss -------------------------------------------------------------------------------- /src/css/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/css/footer.scss -------------------------------------------------------------------------------- /src/css/markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/css/markdown.scss -------------------------------------------------------------------------------- /src/css/marketo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/css/marketo.scss -------------------------------------------------------------------------------- /src/css/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/css/navbar.scss -------------------------------------------------------------------------------- /src/css/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/css/search.scss -------------------------------------------------------------------------------- /src/data/partners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/data/partners.ts -------------------------------------------------------------------------------- /src/data/pressReleases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/data/pressReleases.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /src/pages/partners.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/pages/partners.module.scss -------------------------------------------------------------------------------- /src/pages/partners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/pages/partners.tsx -------------------------------------------------------------------------------- /src/pages/request-access.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/pages/request-access.module.scss -------------------------------------------------------------------------------- /src/pages/request-access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/pages/request-access.tsx -------------------------------------------------------------------------------- /src/theme/BlogListPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/BlogListPage/index.tsx -------------------------------------------------------------------------------- /src/theme/BlogPostItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/BlogPostItem/index.tsx -------------------------------------------------------------------------------- /src/theme/BlogTagsPostsPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/BlogTagsPostsPage/index.tsx -------------------------------------------------------------------------------- /src/theme/DocItem/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/DocItem/Layout/index.tsx -------------------------------------------------------------------------------- /src/theme/DocItem/Layout/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/DocItem/Layout/styles.module.css -------------------------------------------------------------------------------- /src/theme/DocSidebarItem/Category/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/DocSidebarItem/Category/index.tsx -------------------------------------------------------------------------------- /src/theme/DocSidebarItem/Html/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/DocSidebarItem/Html/index.tsx -------------------------------------------------------------------------------- /src/theme/DocSidebarItem/Html/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/DocSidebarItem/Html/styles.module.css -------------------------------------------------------------------------------- /src/theme/DocSidebarItem/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/DocSidebarItem/Link/index.tsx -------------------------------------------------------------------------------- /src/theme/DocSidebarItem/Link/styles.module.css: -------------------------------------------------------------------------------- 1 | .menuExternalLink { 2 | align-items: center; 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/DocSidebarItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/DocSidebarItem/index.tsx -------------------------------------------------------------------------------- /src/theme/DocSidebarItem/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/DocSidebarItem/styles.css -------------------------------------------------------------------------------- /src/theme/Footer/Copyright/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/Copyright/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/Layout/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/LinkItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/LinkItem/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Links/MultiColumn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/Links/MultiColumn/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Links/Simple/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/Links/Simple/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Links/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/Links/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/Logo/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Logo/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/Logo/styles.module.css -------------------------------------------------------------------------------- /src/theme/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Footer/index.tsx -------------------------------------------------------------------------------- /src/theme/Layout/Provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Layout/Provider/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/ColorModeToggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/ColorModeToggle/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/Content/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/Content/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/Content/styles.module.css -------------------------------------------------------------------------------- /src/theme/Navbar/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/Layout/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/Layout/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/Layout/styles.module.css -------------------------------------------------------------------------------- /src/theme/Navbar/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/Logo/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/MobileSidebar/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/MobileSidebar/Header/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/MobileSidebar/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/MobileSidebar/Layout/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/MobileSidebar/PrimaryMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/MobileSidebar/PrimaryMenu/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/MobileSidebar/SecondaryMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/MobileSidebar/SecondaryMenu/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/MobileSidebar/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/MobileSidebar/Toggle/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/MobileSidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/MobileSidebar/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/Search/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/Search/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/Search/styles.module.css -------------------------------------------------------------------------------- /src/theme/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/Navbar/index.tsx -------------------------------------------------------------------------------- /src/theme/NavbarItem/ColorModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/NavbarItem/ColorModeToggle.tsx -------------------------------------------------------------------------------- /src/theme/NavbarItem/ComponentTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/NavbarItem/ComponentTypes.ts -------------------------------------------------------------------------------- /src/theme/NavbarItem/NavbarNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/NavbarItem/NavbarNavLink.tsx -------------------------------------------------------------------------------- /src/theme/NavbarItem/NavbarSeperator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/NavbarItem/NavbarSeperator.tsx -------------------------------------------------------------------------------- /src/theme/NotFound/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/NotFound/Content/index.tsx -------------------------------------------------------------------------------- /src/theme/NotFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/NotFound/index.tsx -------------------------------------------------------------------------------- /src/theme/SiteMetadata/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/SiteMetadata/index.tsx -------------------------------------------------------------------------------- /src/theme/TOCItems/Tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/TOCItems/Tree.tsx -------------------------------------------------------------------------------- /src/theme/TOCItems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/theme/TOCItems/index.tsx -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/isJapanese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/utils/isJapanese.ts -------------------------------------------------------------------------------- /src/utils/isMobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/utils/isMobile.ts -------------------------------------------------------------------------------- /src/utils/pushGtmEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/utils/pushGtmEvent.ts -------------------------------------------------------------------------------- /src/utils/useForcedDarkTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/utils/useForcedDarkTheme.ts -------------------------------------------------------------------------------- /src/utils/usePrefersReducesMotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/src/utils/usePrefersReducesMotion.ts -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | unifiedid.com -------------------------------------------------------------------------------- /static/examples/cstg-prebid-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/examples/cstg-prebid-example/README.md -------------------------------------------------------------------------------- /static/examples/cstg-prebid-example/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/examples/cstg-prebid-example/app.css -------------------------------------------------------------------------------- /static/examples/cstg-prebid-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/examples/cstg-prebid-example/index.html -------------------------------------------------------------------------------- /static/examples/cstg-prebid-example/prebid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/examples/cstg-prebid-example/prebid.js -------------------------------------------------------------------------------- /static/examples/hashing-tool/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/examples/hashing-tool/app.css -------------------------------------------------------------------------------- /static/examples/hashing-tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/examples/hashing-tool/index.html -------------------------------------------------------------------------------- /static/examples/hashing-tool/uid2-sdk-3.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/examples/hashing-tool/uid2-sdk-3.3.0.js -------------------------------------------------------------------------------- /static/fonts/inter-font-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/fonts/inter-font-medium.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-font-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/fonts/inter-font-regular.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-font-semi-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/fonts/inter-font-semi-bold.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto-mono-font-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/fonts/roboto-mono-font-light.woff2 -------------------------------------------------------------------------------- /static/img/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/Add.svg -------------------------------------------------------------------------------- /static/img/Advertiser_base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/Advertiser_base.svg -------------------------------------------------------------------------------- /static/img/DataGroup_base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/DataGroup_base.svg -------------------------------------------------------------------------------- /static/img/MoreActions_base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/MoreActions_base.svg -------------------------------------------------------------------------------- /static/img/MoreActions_base_16x16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/MoreActions_base_16x16.svg -------------------------------------------------------------------------------- /static/img/Publisher_base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/Publisher_base.svg -------------------------------------------------------------------------------- /static/img/Publisher_base_16x16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/Publisher_base_16x16.svg -------------------------------------------------------------------------------- /static/img/arrow-outbound-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/arrow-outbound-link.svg -------------------------------------------------------------------------------- /static/img/chart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/chart-icon.svg -------------------------------------------------------------------------------- /static/img/cloud-upload-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/cloud-upload-icon.svg -------------------------------------------------------------------------------- /static/img/cross-device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/cross-device.svg -------------------------------------------------------------------------------- /static/img/data_providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/data_providers.png -------------------------------------------------------------------------------- /static/img/documents-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/documents-icon.svg -------------------------------------------------------------------------------- /static/img/email-feature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/email-feature.svg -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/flowchart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/flowchart-icon.svg -------------------------------------------------------------------------------- /static/img/hero-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/hero-desktop.svg -------------------------------------------------------------------------------- /static/img/hero-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/hero-mobile.svg -------------------------------------------------------------------------------- /static/img/icon-page-advertisers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/icon-page-advertisers.svg -------------------------------------------------------------------------------- /static/img/icon-page-dataproviders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/icon-page-dataproviders.svg -------------------------------------------------------------------------------- /static/img/icon-page-dsps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/icon-page-dsps.svg -------------------------------------------------------------------------------- /static/img/icon-page-publishers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/icon-page-publishers.svg -------------------------------------------------------------------------------- /static/img/logo-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/logo-blue.svg -------------------------------------------------------------------------------- /static/img/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/logo-white.svg -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/partners/33Across_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/33Across_logo.png -------------------------------------------------------------------------------- /static/img/partners/4GTV.tv-logo_2022-07-12-203714_dakq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/4GTV.tv-logo_2022-07-12-203714_dakq.png -------------------------------------------------------------------------------- /static/img/partners/AMC_Networks_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/AMC_Networks_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Admicro_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Admicro_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Adobe_Corporate_Logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Adobe_Corporate_Logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/AlikeAudience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/AlikeAudience.png -------------------------------------------------------------------------------- /static/img/partners/Ameba_logo_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Ameba_logo_580x250.png -------------------------------------------------------------------------------- /static/img/partners/Amobee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Amobee.png -------------------------------------------------------------------------------- /static/img/partners/AngleTech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/AngleTech.png -------------------------------------------------------------------------------- /static/img/partners/AppLovin_Logo_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/AppLovin_Logo_580x250.png -------------------------------------------------------------------------------- /static/img/partners/Aseal-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Aseal-Logo.png -------------------------------------------------------------------------------- /static/img/partners/Attain_Logo_Black_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Attain_Logo_Black_580x250.png -------------------------------------------------------------------------------- /static/img/partners/BabyCalendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/BabyCalendar.png -------------------------------------------------------------------------------- /static/img/partners/Bridg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Bridg.png -------------------------------------------------------------------------------- /static/img/partners/BuzzFeed_Logo_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/BuzzFeed_Logo_580x250.png -------------------------------------------------------------------------------- /static/img/partners/CH3-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/CH3-logo.png -------------------------------------------------------------------------------- /static/img/partners/Caddle_ColourLogo_Horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Caddle_ColourLogo_Horizontal.webp -------------------------------------------------------------------------------- /static/img/partners/Circana_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Circana_Logo.png -------------------------------------------------------------------------------- /static/img/partners/CocCoc_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/CocCoc_RGB.png -------------------------------------------------------------------------------- /static/img/partners/CrossTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/CrossTarget.png -------------------------------------------------------------------------------- /static/img/partners/Deadline_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Deadline_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Dish-Media-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Dish-Media-Logo.png -------------------------------------------------------------------------------- /static/img/partners/DotdashMeredith_Logo_BLK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/DotdashMeredith_Logo_BLK.png -------------------------------------------------------------------------------- /static/img/partners/Experian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Experian.svg -------------------------------------------------------------------------------- /static/img/partners/FLUX_Logo_fix-1_BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/FLUX_Logo_fix-1_BL.png -------------------------------------------------------------------------------- /static/img/partners/FOX_wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/FOX_wordmark.svg -------------------------------------------------------------------------------- /static/img/partners/Fluct_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Fluct_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/GetOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/GetOne.png -------------------------------------------------------------------------------- /static/img/partners/GrowthLoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/GrowthLoop.png -------------------------------------------------------------------------------- /static/img/partners/HHG1000px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/HHG1000px.png -------------------------------------------------------------------------------- /static/img/partners/HK01-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/HK01-logo.png -------------------------------------------------------------------------------- /static/img/partners/Habu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Habu.png -------------------------------------------------------------------------------- /static/img/partners/Haystack-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Haystack-logo.png -------------------------------------------------------------------------------- /static/img/partners/InTouch_Logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/InTouch_Logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Index_Exchange_Logo_2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Index_Exchange_Logo_2021.png -------------------------------------------------------------------------------- /static/img/partners/InfoSum_Logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/InfoSum_Logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/KG-Media-518x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/KG-Media-518x250.png -------------------------------------------------------------------------------- /static/img/partners/LA-Times_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/LA-Times_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/LiTV-logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/LiTV-logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/LifeStyle_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/LifeStyle_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Lifesight-Logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Lifesight-Logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/LineTV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/LineTV.png -------------------------------------------------------------------------------- /static/img/partners/Lndata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Lndata.png -------------------------------------------------------------------------------- /static/img/partners/Logo-SehatQ-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Logo-SehatQ-580x250.png -------------------------------------------------------------------------------- /static/img/partners/LogoTrueID Corporate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/LogoTrueID Corporate.png -------------------------------------------------------------------------------- /static/img/partners/Logo_Windfall_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Logo_Windfall_580x250.png -------------------------------------------------------------------------------- /static/img/partners/Lucid-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Lucid-Logo.png -------------------------------------------------------------------------------- /static/img/partners/Lytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Lytics.png -------------------------------------------------------------------------------- /static/img/partners/MI_LOGO_500x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/MI_LOGO_500x240.png -------------------------------------------------------------------------------- /static/img/partners/MP-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/MP-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Magnite_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Magnite_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/MediaTradecraft_Logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/MediaTradecraft_Logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Mediavine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Mediavine.png -------------------------------------------------------------------------------- /static/img/partners/Mediawallah_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Mediawallah_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Meitu_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Meitu_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/MicroAd_COMPASS_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/MicroAd_COMPASS_580x250.png -------------------------------------------------------------------------------- /static/img/partners/MuscleFitness_Logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/MuscleFitness_Logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/NBCuniversal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/NBCuniversal.png -------------------------------------------------------------------------------- /static/img/partners/NRich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/NRich.png -------------------------------------------------------------------------------- /static/img/partners/Newsweek_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Newsweek_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Nova-Entertainment-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Nova-Entertainment-580x250.png -------------------------------------------------------------------------------- /static/img/partners/OnAudience_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/OnAudience_logo.png -------------------------------------------------------------------------------- /static/img/partners/Oracle_Advertising_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Oracle_Advertising_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PASS3_Logo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PASS3_Logo-02.png -------------------------------------------------------------------------------- /static/img/partners/Pandora_wordmark.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Pandora_wordmark.svg.png -------------------------------------------------------------------------------- /static/img/partners/Paramount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Paramount.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_AJA-SSP_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_AJA-SSP_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_ARN_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_ARN_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_AdGeneration_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_AdGeneration_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Adsquare_580x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Adsquare_580x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Adswizz_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Adswizz_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_AlikeAudience_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_AlikeAudience_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Alliant_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Alliant_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Audigent_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Audigent_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Bidswitch_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Bidswitch_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Comscore_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Comscore_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Eyeota_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Eyeota_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Foursquare_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Foursquare_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_FreakOut_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_FreakOut_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_FuboTV_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_FuboTV_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Gamma_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Gamma_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Kargo_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Kargo_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_LiSTNR_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_LiSTNR_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_LiveIntent_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_LiveIntent_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_LiveRamp_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_LiveRamp_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Netwise_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Netwise_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Neustar_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Neustar_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Nielsen_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Nielsen_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_OpenX_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_OpenX_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Penske-Media-Corp-PMC_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Penske-Media-Corp-PMC_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_PubMatic_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_PubMatic_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_SCA_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_SCA_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Sovrn_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Sovrn_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_SpotX_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_SpotX_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Tapad_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Tapad_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Unruly_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Unruly_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_Verve_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_Verve_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_YieldOne_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_YieldOne_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_gumgum_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_gumgum_580x250.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_iCook_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_iCook_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_iQiyi_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_iQiyi_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_myTV-SUPER_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_myTV-SUPER_256x256.png -------------------------------------------------------------------------------- /static/img/partners/PartnerLogo_ucfunnel_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/PartnerLogo_ucfunnel_580x250.png -------------------------------------------------------------------------------- /static/img/partners/Philo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Philo_logo.png -------------------------------------------------------------------------------- /static/img/partners/ProperMedia_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/ProperMedia_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Ranker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Ranker-logo.png -------------------------------------------------------------------------------- /static/img/partners/Raptive_2023.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Raptive_2023.svg -------------------------------------------------------------------------------- /static/img/partners/Retty_rgb_logotype-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Retty_rgb_logotype-580x250.png -------------------------------------------------------------------------------- /static/img/partners/RevOptimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/RevOptimal.png -------------------------------------------------------------------------------- /static/img/partners/Roku-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Roku-Logo.png -------------------------------------------------------------------------------- /static/img/partners/Rolling-Stone_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Rolling-Stone_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/SD-Union-Tribune_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/SD-Union-Tribune_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Seedtag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Seedtag.png -------------------------------------------------------------------------------- /static/img/partners/ShareThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/ShareThis.png -------------------------------------------------------------------------------- /static/img/partners/Summit_Media_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Summit_Media_logo.png -------------------------------------------------------------------------------- /static/img/partners/Surfside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Surfside.png -------------------------------------------------------------------------------- /static/img/partners/TMG-Rebrand-2021-Logo-RGB-Poli-K43-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/TMG-Rebrand-2021-Logo-RGB-Poli-K43-1.png -------------------------------------------------------------------------------- /static/img/partners/TNL-Media-Group-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/TNL-Media-Group-580x250.png -------------------------------------------------------------------------------- /static/img/partners/TULogo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/TULogo-blue.png -------------------------------------------------------------------------------- /static/img/partners/Thairath_Online_Logo2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Thairath_Online_Logo2023.png -------------------------------------------------------------------------------- /static/img/partners/The-News-Lens-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/The-News-Lens-580x250.png -------------------------------------------------------------------------------- /static/img/partners/Throtle_Logo_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Throtle_Logo_580x250.png -------------------------------------------------------------------------------- /static/img/partners/TrueData-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/TrueData-580x250.png -------------------------------------------------------------------------------- /static/img/partners/USNews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/USNews.png -------------------------------------------------------------------------------- /static/img/partners/UnwindLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/UnwindLogo.png -------------------------------------------------------------------------------- /static/img/partners/Us-Weekly-logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Us-Weekly-logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/VNExpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/VNExpress.png -------------------------------------------------------------------------------- /static/img/partners/VN_FPT Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/VN_FPT Play.png -------------------------------------------------------------------------------- /static/img/partners/Variety_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Variety_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/WBD_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/WBD_logo.webp -------------------------------------------------------------------------------- /static/img/partners/WashingtonPost_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/WashingtonPost_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/WeTV logo_1200x628_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/WeTV logo_1200x628_.png -------------------------------------------------------------------------------- /static/img/partners/Xandr-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/Xandr-Logo.png -------------------------------------------------------------------------------- /static/img/partners/actioniq-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/actioniq-logo.png -------------------------------------------------------------------------------- /static/img/partners/acxion-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/acxion-logo.png -------------------------------------------------------------------------------- /static/img/partners/adobe-advertising.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/adobe-advertising.png -------------------------------------------------------------------------------- /static/img/partners/allabout_logo_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/allabout_logo_580x250.png -------------------------------------------------------------------------------- /static/img/partners/alliant-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/alliant-logo.png -------------------------------------------------------------------------------- /static/img/partners/amperity-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/amperity-logo.png -------------------------------------------------------------------------------- /static/img/partners/aotter_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/aotter_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/arkadia-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/arkadia-logo.png -------------------------------------------------------------------------------- /static/img/partners/audient_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/audient_logo.png -------------------------------------------------------------------------------- /static/img/partners/aws-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/aws-logo.svg -------------------------------------------------------------------------------- /static/img/partners/beachfront-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/beachfront-logo.png -------------------------------------------------------------------------------- /static/img/partners/billboard-logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/billboard-logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/blu_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/blu_logo.png -------------------------------------------------------------------------------- /static/img/partners/blueconic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/blueconic.png -------------------------------------------------------------------------------- /static/img/partners/bombora-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/bombora-logo.png -------------------------------------------------------------------------------- /static/img/partners/cadent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/cadent.png -------------------------------------------------------------------------------- /static/img/partners/cc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/cc_logo.png -------------------------------------------------------------------------------- /static/img/partners/centillion-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/centillion-logo.png -------------------------------------------------------------------------------- /static/img/partners/cinema-cafe-logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/cinema-cafe-logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/ddlogo_orn_a 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/ddlogo_orn_a 2.png -------------------------------------------------------------------------------- /static/img/partners/deepintent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/deepintent.png -------------------------------------------------------------------------------- /static/img/partners/dentsu-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/dentsu-logo-black.png -------------------------------------------------------------------------------- /static/img/partners/digital-trends-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/digital-trends-logo.png -------------------------------------------------------------------------------- /static/img/partners/disney-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/disney-logo.png -------------------------------------------------------------------------------- /static/img/partners/environics-analytics-logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/environics-analytics-logo2.png -------------------------------------------------------------------------------- /static/img/partners/fourm_company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/fourm_company_logo.png -------------------------------------------------------------------------------- /static/img/partners/freewheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/freewheel.png -------------------------------------------------------------------------------- /static/img/partners/frndlytv-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/frndlytv-logo.png -------------------------------------------------------------------------------- /static/img/partners/gma-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/gma-logo.png -------------------------------------------------------------------------------- /static/img/partners/gumtree-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/gumtree-logo.png -------------------------------------------------------------------------------- /static/img/partners/gurugame-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/gurugame-logo.png -------------------------------------------------------------------------------- /static/img/partners/hightouch-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/hightouch-logo.jpg -------------------------------------------------------------------------------- /static/img/partners/hipwee-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/hipwee-580x250.png -------------------------------------------------------------------------------- /static/img/partners/hochi-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/hochi-580x250.png -------------------------------------------------------------------------------- /static/img/partners/hollywood-reporter_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/hollywood-reporter_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/hotai-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/hotai-logo.png -------------------------------------------------------------------------------- /static/img/partners/iQIYI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/iQIYI.png -------------------------------------------------------------------------------- /static/img/partners/idn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/idn-logo.png -------------------------------------------------------------------------------- /static/img/partners/iheart-media-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/iheart-media-logo.png -------------------------------------------------------------------------------- /static/img/partners/interplay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/interplay-logo.png -------------------------------------------------------------------------------- /static/img/partners/lasso-logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/lasso-logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/lihuhu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/lihuhu-logo.png -------------------------------------------------------------------------------- /static/img/partners/liveramp-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/liveramp-logo-black.svg -------------------------------------------------------------------------------- /static/img/partners/logo_ThanhNien-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/logo_ThanhNien-580x250.png -------------------------------------------------------------------------------- /static/img/partners/lotame-epsilon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/lotame-epsilon-logo.png -------------------------------------------------------------------------------- /static/img/partners/lotame-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/lotame-logo.png -------------------------------------------------------------------------------- /static/img/partners/lottemembers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/lottemembers.png -------------------------------------------------------------------------------- /static/img/partners/mainichi580x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/mainichi580x250.jpg -------------------------------------------------------------------------------- /static/img/partners/mcc-logo-horizontal-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/mcc-logo-horizontal-black.svg -------------------------------------------------------------------------------- /static/img/partners/media-prima-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/media-prima-logo.png -------------------------------------------------------------------------------- /static/img/partners/medianet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/medianet-logo.png -------------------------------------------------------------------------------- /static/img/partners/mingpao-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/mingpao-logo.png -------------------------------------------------------------------------------- /static/img/partners/mparticle-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/mparticle-logo.png -------------------------------------------------------------------------------- /static/img/partners/narrative-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/narrative-logo.png -------------------------------------------------------------------------------- /static/img/partners/networld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/networld.png -------------------------------------------------------------------------------- /static/img/partners/newscafe-logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/newscafe-logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/next-partner-logo-580.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/next-partner-logo-580.png -------------------------------------------------------------------------------- /static/img/partners/ogury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/ogury.png -------------------------------------------------------------------------------- /static/img/partners/optable-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/optable-logo.png -------------------------------------------------------------------------------- /static/img/partners/partner-logo-lucid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/partner-logo-lucid.jpg -------------------------------------------------------------------------------- /static/img/partners/perion-lockup-black-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/perion-lockup-black-rgb.png -------------------------------------------------------------------------------- /static/img/partners/pixnet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/pixnet-logo.png -------------------------------------------------------------------------------- /static/img/partners/publift-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/publift-logo.png -------------------------------------------------------------------------------- /static/img/partners/rbb-today-logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/rbb-today-logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/rea-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/rea-group.png -------------------------------------------------------------------------------- /static/img/partners/revoptimal-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/revoptimal-logo.png -------------------------------------------------------------------------------- /static/img/partners/rudderstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/rudderstack.png -------------------------------------------------------------------------------- /static/img/partners/salesforce-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/salesforce-logo.png -------------------------------------------------------------------------------- /static/img/partners/salon_logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/salon_logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/sc-logo-horizontal-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/sc-logo-horizontal-black.svg -------------------------------------------------------------------------------- /static/img/partners/scripps.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/scripps.jpeg -------------------------------------------------------------------------------- /static/img/partners/simon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/simon.png -------------------------------------------------------------------------------- /static/img/partners/skyperfect-logo-700x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/skyperfect-logo-700x400.png -------------------------------------------------------------------------------- /static/img/partners/slate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/slate.png -------------------------------------------------------------------------------- /static/img/partners/sling-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/sling-logo.png -------------------------------------------------------------------------------- /static/img/partners/smrtr-logo-518x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/smrtr-logo-518x250.png -------------------------------------------------------------------------------- /static/img/partners/snowflake-logo-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/snowflake-logo-580x250.png -------------------------------------------------------------------------------- /static/img/partners/sports-illustrated_black_580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/sports-illustrated_black_580x250.png -------------------------------------------------------------------------------- /static/img/partners/str-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/str-logo.png -------------------------------------------------------------------------------- /static/img/partners/tealium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/tealium.png -------------------------------------------------------------------------------- /static/img/partners/tempo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/tempo-logo.png -------------------------------------------------------------------------------- /static/img/partners/treasure-data-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/treasure-data-logo.svg -------------------------------------------------------------------------------- /static/img/partners/triplelift-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/triplelift-logo.png -------------------------------------------------------------------------------- /static/img/partners/tubi-580x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/tubi-580x250.png -------------------------------------------------------------------------------- /static/img/partners/twilio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/twilio-logo.png -------------------------------------------------------------------------------- /static/img/partners/vidio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/vidio-logo.png -------------------------------------------------------------------------------- /static/img/partners/wb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/partners/wb-logo.png -------------------------------------------------------------------------------- /static/img/person-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/person-lock.svg -------------------------------------------------------------------------------- /static/img/right-arrow-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/right-arrow-icon.svg -------------------------------------------------------------------------------- /static/img/uid2-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/uid2-social-card.jpg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/static/robots.txt -------------------------------------------------------------------------------- /test/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/test/python/.gitignore -------------------------------------------------------------------------------- /test/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/test/python/README.md -------------------------------------------------------------------------------- /test/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/test/python/pyproject.toml -------------------------------------------------------------------------------- /test/python/test/test_post_identity_map_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/test/python/test/test_post_identity_map_v3.py -------------------------------------------------------------------------------- /test/python/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/test/python/uv.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IABTechLab/uid2docs/HEAD/tsconfig.json --------------------------------------------------------------------------------