diff --git a/.github/preview-index/package.json b/.github/preview-index/package.json index de2a1635d..307331e45 100644 --- a/.github/preview-index/package.json +++ b/.github/preview-index/package.json @@ -5,7 +5,8 @@ "type": "commonjs", "sideEffects": false, "scripts": { - "index": "node src/update.js" + "index": "node src/update.js", + "testevent": "node src/testevent.js" }, "dependencies": { "@azure/msal-node": "^2.11.0", diff --git a/.github/preview-index/src/testevent.js b/.github/preview-index/src/testevent.js new file mode 100644 index 000000000..0749f8e17 --- /dev/null +++ b/.github/preview-index/src/testevent.js @@ -0,0 +1,2 @@ +console.log('PREVIEW EVENT'); +console.log(process.env.npm_config_payload); diff --git a/.github/workflows/fg-sync-repos.yml b/.github/workflows/fg-sync-repos.yml index 99c2278c9..3a47bf89d 100644 --- a/.github/workflows/fg-sync-repos.yml +++ b/.github/workflows/fg-sync-repos.yml @@ -1,6 +1,10 @@ name: Floodgate Repo Sync on: + push: + branches: + - stage + - main workflow_dispatch: inputs: syncBranch: @@ -28,7 +32,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@v3 with: - ref: ${{ inputs.syncBranch }} + ref: ${{ inputs.syncBranch || github.ref_name }} - name: Clone Floodgate Repository and Checkout Selected Branch run: | @@ -41,7 +45,7 @@ jobs: echo "cc branch" git branch env: - FG_SYNC_BRANCH: ${{ inputs.syncBranch }} + FG_SYNC_BRANCH: ${{ inputs.syncBranch || github.ref_name }} - name: Overwrite floodgate repo files with latest from source repo run: | @@ -54,14 +58,19 @@ jobs: git branch git config user.email "$FG_SYNC_BOT_EMAIL" git config user.name "$FG_SYNC_BOT_NAME" - git status - git remote set-url origin https://oauth2:$GITHUB_TOKEN@github.com/adobecom/cc-pink.git - git remote -v - git add . - git commit -m "Syncing cc to cc-pink" - git push origin $FG_SYNC_BRANCH --force + git status + if [[ -n $(git status -s) ]]; then + git remote set-url origin https://oauth2:$GITHUB_TOKEN@github.com/adobecom/cc-pink.git + git remote -v + git add . + git commit -m "Syncing cc to cc-pink" + git push origin $FG_SYNC_BRANCH --force + echo ":heavy_check_mark: Syncing branch $FG_SYNC_BRANCH on cc to cc-pink completed successfully." >> $GITHUB_STEP_SUMMARY + else + echo ":heavy_minus_sign: No changes detected on branch $FG_SYNC_BRANCH, nothing to sync." >> $GITHUB_STEP_SUMMARY + fi env: GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} FG_SYNC_BOT_EMAIL: ${{ secrets.FG_SYNC_BOT_EMAIL }} FG_SYNC_BOT_NAME: ${{ secrets.FG_SYNC_BOT_NAME }} - FG_SYNC_BRANCH: ${{ inputs.syncBranch }} + FG_SYNC_BRANCH: ${{ inputs.syncBranch || github.ref_name }} diff --git a/.github/workflows/graybox-sync-repos.yml b/.github/workflows/graybox-sync-repos.yml index 58d1f9091..fd72e8738 100644 --- a/.github/workflows/graybox-sync-repos.yml +++ b/.github/workflows/graybox-sync-repos.yml @@ -1,6 +1,10 @@ name: Graybox Repo Sync on: + push: + branches: + - stage + - main workflow_dispatch: inputs: syncBranch: @@ -10,6 +14,7 @@ on: type: choice options: - 'stage' + - 'main' jobs: build: @@ -28,7 +33,7 @@ jobs: uses: actions/checkout@v2 with: persist-credentials: false - ref: ${{ inputs.syncBranch }} + ref: ${{ inputs.syncBranch || github.ref_name }} - name: Clone Graybox Repository and Checkout Stage Branch run: | @@ -41,7 +46,7 @@ jobs: echo "cc branch" git branch env: - GB_SYNC_BRANCH: ${{ inputs.syncBranch }} + GB_SYNC_BRANCH: ${{ inputs.syncBranch || github.ref_name }} - name: Overwrite graybox repo files with latest from source repo run: | @@ -55,12 +60,17 @@ jobs: git config user.email "$FG_SYNC_BOT_EMAIL" git config user.name "milo-repo-sync[bot]" git status - git remote set-url origin https://oauth2:$GITHUB_TOKEN@github.com/adobecom/cc-graybox.git - git remote -v - git add . - git commit -m "Syncing cc to cc-graybox" - git push origin $GB_SYNC_BRANCH --force + if [[ -n $(git status -s) ]]; then + git remote set-url origin https://oauth2:$GITHUB_TOKEN@github.com/adobecom/cc-graybox.git + git remote -v + git add . + git commit -m "Syncing cc to cc-graybox" + git push origin $GB_SYNC_BRANCH --force + echo ":heavy_check_mark: Syncing branch $GB_SYNC_BRANCH on cc to cc-graybox completed successfully." >> $GITHUB_STEP_SUMMARY + else + echo ":heavy_minus_sign: No changes detected on branch $GB_SYNC_BRANCH, nothing to sync." >> $GITHUB_STEP_SUMMARY + fi env: GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} FG_SYNC_BOT_EMAIL: ${{ secrets.FG_SYNC_BOT_EMAIL }} - GB_SYNC_BRANCH: ${{ inputs.syncBranch }} + GB_SYNC_BRANCH: ${{ inputs.syncBranch || github.ref_name }} diff --git a/.github/workflows/run-preview-index-test.yaml b/.github/workflows/run-preview-index-test.yaml new file mode 100644 index 000000000..738791d8f --- /dev/null +++ b/.github/workflows/run-preview-index-test.yaml @@ -0,0 +1,40 @@ +name: Run preview index test + +on: + workflow_dispatch: # Allow manual trigger + repository_dispatch: + types: + - resource-previewed + +jobs: + print: + runs-on: ubuntu-latest + steps: + - run: | + echo "Status: ${{ github.event.client_payload.status }}" + echo "Path: ${{ github.event.client_payload.path }}" + run-preview-index-test: + name: Test reindexing preview resources + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [18.x] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + + - name: Install dependencies + run: | + cd .github/preview-index + npm install + + - name: Test reindex preview resources + run: | + cd .github/preview-index + npm run testevent --payload=${{ toJson(github.event.client_payload) }} diff --git a/creativecloud/blocks/unity/unity.css b/creativecloud/blocks/unity/unity.css new file mode 100644 index 000000000..96faea54b --- /dev/null +++ b/creativecloud/blocks/unity/unity.css @@ -0,0 +1,3 @@ +.unity { + display: none; +} diff --git a/creativecloud/blocks/unity/unity.js b/creativecloud/blocks/unity/unity.js new file mode 100644 index 000000000..a40e5e2ba --- /dev/null +++ b/creativecloud/blocks/unity/unity.js @@ -0,0 +1,23 @@ +import { loadStyle } from '../../scripts/utils.js'; + +function getUnityLibs(prodLibs = '/unitylibs') { + const { hostname } = window.location; + if (!hostname.includes('hlx.page') + && !hostname.includes('hlx.live') + && !hostname.includes('localhost')) { + return prodLibs; + } + const branch = new URLSearchParams(window.location.search).get('unitylibs') || 'main'; + if (branch.indexOf('--') > -1) return `https://${branch}.hlx.live/unitylibs`; + return `https://${branch}--unity--adobecom.hlx.live/unitylibs`; +} + +export default async function init(el) { + const unitylibs = getUnityLibs(); + const stylePromise = new Promise((resolve) => { + loadStyle(`${unitylibs}/core/styles/styles.css`, resolve); + }); + await stylePromise; + const { default: wfinit } = await import(`${unitylibs}/core/workflow/workflow.js`); + await wfinit(el, 'cc', unitylibs); +} diff --git a/creativecloud/scripts/scripts.js b/creativecloud/scripts/scripts.js index cf1773466..f947dbe29 100644 --- a/creativecloud/scripts/scripts.js +++ b/creativecloud/scripts/scripts.js @@ -142,6 +142,11 @@ const CONFIG = { prodDomains: ['www.adobe.com', 'helpx.adobe.com', 'business.adobe.com'], stageDomainsMap, decorateArea, + adobeid: { + api_parameters: { check_token: { guest_allowed: true } }, + enableGuestAccounts: true, + enableGuestTokenForceRefresh: true, + }, stage: { pdfViewerClientId: '9f7f19a46bd542e2b8548411e51eb4d4', pdfViewerReportSuite: 'adbadobenonacdcqa', diff --git a/helix-query.yaml b/helix-query.yaml index 7c81378ae..d50e6cffb 100644 --- a/helix-query.yaml +++ b/helix-query.yaml @@ -15,6 +15,13 @@ indices: - /education/** - /partnerpromo/** - /downloads/** + - /careers/** + - /affiliates/** + - /check-in/** + - /communities/** + - /confirmation/** + - /devnet/** + - /diversity/** target: /cc-shared/assets/query-index.xlsx properties: title: @@ -69,6 +76,13 @@ indices: - /au/education/** - /au/partnerpromo/** - /au/downloads/** + - /au/careers/** + - /au/affiliates/** + - /au/check-in/** + - /au/communities/** + - /au/confirmation/** + - /au/devnet/** + - /au/diversity/** target: /au/cc-shared/assets/query-index.xlsx cards-au: @@ -86,6 +100,13 @@ indices: - /de/education/** - /de/partnerpromo/** - /de/downloads/** + - /de/careers/** + - /de/affiliates/** + - /de/check-in/** + - /de/communities/** + - /de/confirmation/** + - /de/devnet/** + - /de/diversity/** target: /de/cc-shared/assets/query-index.xlsx cards-de: @@ -103,6 +124,13 @@ indices: - /es/education/** - /es/partnerpromo/** - /es/downloads/** + - /es/careers/** + - /es/affiliates/** + - /es/check-in/** + - /es/communities/** + - /es/confirmation/** + - /es/devnet/** + - /es/diversity/** target: /es/cc-shared/assets/query-index.xlsx cards-es: @@ -120,6 +148,13 @@ indices: - /fr/education/** - /fr/partnerpromo/** - /fr/downloads/** + - /fr/careers/** + - /fr/affiliates/** + - /fr/check-in/** + - /fr/communities/** + - /fr/confirmation/** + - /fr/devnet/** + - /fr/diversity/** target: /fr/cc-shared/assets/query-index.xlsx cards-fr: @@ -137,6 +172,13 @@ indices: - /it/education/** - /it/partnerpromo/** - /it/downloads/** + - /it/careers/** + - /it/affiliates/** + - /it/check-in/** + - /it/communities/** + - /it/confirmation/** + - /it/devnet/** + - /it/diversity/** target: /it/cc-shared/assets/query-index.xlsx cards-it: @@ -154,6 +196,13 @@ indices: - /jp/education/** - /jp/partnerpromo/** - /jp/downloads/** + - /jp/careers/** + - /jp/affiliates/** + - /jp/check-in/** + - /jp/communities/** + - /jp/confirmation/** + - /jp/devnet/** + - /jp/diversity/** target: /jp/cc-shared/assets/query-index.xlsx cards-jp: @@ -171,6 +220,13 @@ indices: - /kr/education/** - /kr/partnerpromo/** - /kr/downloads/** + - /kr/careers/** + - /kr/affiliates/** + - /kr/check-in/** + - /kr/communities/** + - /kr/confirmation/** + - /kr/devnet/** + - /kr/diversity/** target: /kr/cc-shared/assets/query-index.xlsx cards-kr: @@ -188,6 +244,13 @@ indices: - /ru/education/** - /ru/partnerpromo/** - /ru/downloads/** + - /ru/careers/** + - /ru/affiliates/** + - /ru/check-in/** + - /ru/communities/** + - /ru/confirmation/** + - /ru/devnet/** + - /ru/diversity/** target: /ru/cc-shared/assets/query-index.xlsx cards-ru: @@ -205,6 +268,13 @@ indices: - /hk_zh/education/** - /hk_zh/partnerpromo/** - /hk_zh/downloads/** + - /hk_zh/careers/** + - /hk_zh/affiliates/** + - /hk_zh/check-in/** + - /hk_zh/communities/** + - /hk_zh/confirmation/** + - /hk_zh/devnet/** + - /hk_zh/diversity/** target: /hk_zh/cc-shared/assets/query-index.xlsx cards-hk_zh: @@ -222,6 +292,13 @@ indices: - /tw/education/** - /tw/partnerpromo/** - /tw/downloads/** + - /tw/careers/** + - /tw/affiliates/** + - /tw/check-in/** + - /tw/communities/** + - /tw/confirmation/** + - /tw/devnet/** + - /tw/diversity/** target: /tw/cc-shared/assets/query-index.xlsx cards-tw: @@ -239,6 +316,13 @@ indices: - /nl/education/** - /nl/partnerpromo/** - /nl/downloads/** + - /nl/careers/** + - /nl/affiliates/** + - /nl/check-in/** + - /nl/communities/** + - /nl/confirmation/** + - /nl/devnet/** + - /nl/diversity/** target: /nl/cc-shared/assets/query-index.xlsx cards-nl: @@ -256,6 +340,13 @@ indices: - /pl/education/** - /pl/partnerpromo/** - /pl/downloads/** + - /pl/careers/** + - /pl/affiliates/** + - /pl/check-in/** + - /pl/communities/** + - /pl/confirmation/** + - /pl/devnet/** + - /pl/diversity/** target: /pl/cc-shared/assets/query-index.xlsx cards-pl: @@ -273,6 +364,13 @@ indices: - /tr/education/** - /tr/partnerpromo/** - /tr/downloads/** + - /tr/careers/** + - /tr/affiliates/** + - /tr/check-in/** + - /tr/communities/** + - /tr/confirmation/** + - /tr/devnet/** + - /tr/diversity/** target: /tr/cc-shared/assets/query-index.xlsx cards-tr: @@ -290,6 +388,13 @@ indices: - /uk/education/** - /uk/partnerpromo/** - /uk/downloads/** + - /uk/careers/** + - /uk/affiliates/** + - /uk/check-in/** + - /uk/communities/** + - /uk/confirmation/** + - /uk/devnet/** + - /uk/diversity/** target: /uk/cc-shared/assets/query-index.xlsx cards-uk: @@ -307,6 +412,13 @@ indices: - /ca/education/** - /ca/partnerpromo/** - /ca/downloads/** + - /ca/careers/** + - /ca/affiliates/** + - /ca/check-in/** + - /ca/communities/** + - /ca/confirmation/** + - /ca/devnet/** + - /ca/diversity/** target: /ca/cc-shared/assets/query-index.xlsx cards-ca: @@ -324,6 +436,13 @@ indices: - /cn/education/** - /cn/partnerpromo/** - /cn/downloads/** + - /cn/careers/** + - /cn/affiliates/** + - /cn/check-in/** + - /cn/communities/** + - /cn/confirmation/** + - /cn/devnet/** + - /cn/diversity/** target: /cn/cc-shared/assets/query-index.xlsx cards-cn: @@ -341,6 +460,13 @@ indices: - /ae_ar/education/** - /ae_ar/partnerpromo/** - /ae_ar/downloads/** + - /ae_ar/careers/** + - /ae_ar/affiliates/** + - /ae_ar/check-in/** + - /ae_ar/communities/** + - /ae_ar/confirmation/** + - /ae_ar/devnet/** + - /ae_ar/diversity/** target: /ae_ar/cc-shared/assets/query-index.xlsx cards-ae_ar: @@ -358,6 +484,13 @@ indices: - /ae_en/education/** - /ae_en/partnerpromo/** - /ae_en/downloads/** + - /ae_en/careers/** + - /ae_en/affiliates/** + - /ae_en/check-in/** + - /ae_en/communities/** + - /ae_en/confirmation/** + - /ae_en/devnet/** + - /ae_en/diversity/** target: /ae_en/cc-shared/assets/query-index.xlsx cards-ae_en: @@ -375,6 +508,13 @@ indices: - /at/education/** - /at/partnerpromo/** - /at/downloads/** + - /at/careers/** + - /at/affiliates/** + - /at/check-in/** + - /at/communities/** + - /at/confirmation/** + - /at/devnet/** + - /at/diversity/** target: /at/cc-shared/assets/query-index.xlsx cards-at: @@ -392,6 +532,13 @@ indices: - /be_en/education/** - /be_en/partnerpromo/** - /be_en/downloads/** + - /be_en/careers/** + - /be_en/affiliates/** + - /be_en/check-in/** + - /be_en/communities/** + - /be_en/confirmation/** + - /be_en/devnet/** + - /be_en/diversity/** target: /be_en/cc-shared/assets/query-index.xlsx cards-be_en: @@ -409,6 +556,13 @@ indices: - /be_fr/education/** - /be_fr/partnerpromo/** - /be_fr/downloads/** + - /be_fr/careers/** + - /be_fr/affiliates/** + - /be_fr/check-in/** + - /be_fr/communities/** + - /be_fr/confirmation/** + - /be_fr/devnet/** + - /be_fr/diversity/** target: /be_fr/cc-shared/assets/query-index.xlsx cards-be_fr: @@ -426,6 +580,13 @@ indices: - /ca_fr/education/** - /ca_fr/partnerpromo/** - /ca_fr/downloads/** + - /ca_fr/careers/** + - /ca_fr/affiliates/** + - /ca_fr/check-in/** + - /ca_fr/communities/** + - /ca_fr/confirmation/** + - /ca_fr/devnet/** + - /ca_fr/diversity/** target: /ca_fr/cc-shared/assets/query-index.xlsx cards-ca_fr: @@ -443,6 +604,13 @@ indices: - /ch_de/education/** - /ch_de/partnerpromo/** - /ch_de/downloads/** + - /ch_de/careers/** + - /ch_de/affiliates/** + - /ch_de/check-in/** + - /ch_de/communities/** + - /ch_de/confirmation/** + - /ch_de/devnet/** + - /ch_de/diversity/** target: /ch_de/cc-shared/assets/query-index.xlsx cards-ch_de: @@ -460,6 +628,13 @@ indices: - /ch_fr/education/** - /ch_fr/partnerpromo/** - /ch_fr/downloads/** + - /ch_fr/careers/** + - /ch_fr/affiliates/** + - /ch_fr/check-in/** + - /ch_fr/communities/** + - /ch_fr/confirmation/** + - /ch_fr/devnet/** + - /ch_fr/diversity/** target: /ch_fr/cc-shared/assets/query-index.xlsx cards-ch_fr: @@ -477,6 +652,13 @@ indices: - /cl/education/** - /cl/partnerpromo/** - /cl/downloads/** + - /cl/careers/** + - /cl/affiliates/** + - /cl/check-in/** + - /cl/communities/** + - /cl/confirmation/** + - /cl/devnet/** + - /cl/diversity/** target: /cl/cc-shared/assets/query-index.xlsx cards-cl: @@ -494,6 +676,13 @@ indices: - /gr_en/education/** - /gr_en/partnerpromo/** - /gr_en/downloads/** + - /gr_en/careers/** + - /gr_en/affiliates/** + - /gr_en/check-in/** + - /gr_en/communities/** + - /gr_en/confirmation/** + - /gr_en/devnet/** + - /gr_en/diversity/** target: /gr_en/cc-shared/assets/query-index.xlsx cards-gr_en: @@ -511,6 +700,13 @@ indices: - /hk_en/education/** - /hk_en/partnerpromo/** - /hk_en/downloads/** + - /hk_en/careers/** + - /hk_en/affiliates/** + - /hk_en/check-in/** + - /hk_en/communities/** + - /hk_en/confirmation/** + - /hk_en/devnet/** + - /hk_en/diversity/** target: /hk_en/cc-shared/assets/query-index.xlsx cards-hk_en: @@ -528,6 +724,13 @@ indices: - /ie/education/** - /ie/partnerpromo/** - /ie/downloads/** + - /ie/careers/** + - /ie/affiliates/** + - /ie/check-in/** + - /ie/communities/** + - /ie/confirmation/** + - /ie/devnet/** + - /ie/diversity/** target: /ie/cc-shared/assets/query-index.xlsx cards-ie: @@ -545,6 +748,13 @@ indices: - /il_en/education/** - /il_en/partnerpromo/** - /il_en/downloads/** + - /il_en/careers/** + - /il_en/affiliates/** + - /il_en/check-in/** + - /il_en/communities/** + - /il_en/confirmation/** + - /il_en/devnet/** + - /il_en/diversity/** target: /il_en/cc-shared/assets/query-index.xlsx cards-il_en: @@ -562,6 +772,13 @@ indices: - /in/education/** - /in/partnerpromo/** - /in/downloads/** + - /in/careers/** + - /in/affiliates/** + - /in/check-in/** + - /in/communities/** + - /in/confirmation/** + - /in/devnet/** + - /in/diversity/** target: /in/cc-shared/assets/query-index.xlsx cards-in: @@ -579,6 +796,13 @@ indices: - /lt/education/** - /lt/partnerpromo/** - /lt/downloads/** + - /lt/careers/** + - /lt/affiliates/** + - /lt/check-in/** + - /lt/communities/** + - /lt/confirmation/** + - /lt/devnet/** + - /lt/diversity/** target: /lt/cc-shared/assets/query-index.xlsx cards-lt: @@ -596,6 +820,13 @@ indices: - /lu_de/education/** - /lu_de/partnerpromo/** - /lu_de/downloads/** + - /lu_de/careers/** + - /lu_de/affiliates/** + - /lu_de/check-in/** + - /lu_de/communities/** + - /lu_de/confirmation/** + - /lu_de/devnet/** + - /lu_de/diversity/** target: /lu_de/cc-shared/assets/query-index.xlsx cards-lu_de: @@ -613,6 +844,13 @@ indices: - /lu_en/education/** - /lu_en/partnerpromo/** - /lu_en/downloads/** + - /lu_en/careers/** + - /lu_en/affiliates/** + - /lu_en/check-in/** + - /lu_en/communities/** + - /lu_en/confirmation/** + - /lu_en/devnet/** + - /lu_en/diversity/** target: /lu_en/cc-shared/assets/query-index.xlsx cards-lu_en: @@ -630,6 +868,13 @@ indices: - /lu_fr/education/** - /lu_fr/partnerpromo/** - /lu_fr/downloads/** + - /lu_fr/careers/** + - /lu_fr/affiliates/** + - /lu_fr/check-in/** + - /lu_fr/communities/** + - /lu_fr/confirmation/** + - /lu_fr/devnet/** + - /lu_fr/diversity/** target: /lu_fr/cc-shared/assets/query-index.xlsx cards-lu_fr: @@ -647,6 +892,13 @@ indices: - /mena_en/education/** - /mena_en/partnerpromo/** - /mena_en/downloads/** + - /mena_en/careers/** + - /mena_en/affiliates/** + - /mena_en/check-in/** + - /mena_en/communities/** + - /mena_en/confirmation/** + - /mena_en/devnet/** + - /mena_en/diversity/** target: /mena_en/cc-shared/assets/query-index.xlsx cards-mena_en: @@ -664,6 +916,13 @@ indices: - /nz/education/** - /nz/partnerpromo/** - /nz/downloads/** + - /nz/careers/** + - /nz/affiliates/** + - /nz/check-in/** + - /nz/communities/** + - /nz/confirmation/** + - /nz/devnet/** + - /nz/diversity/** target: /nz/cc-shared/assets/query-index.xlsx cards-nz: @@ -681,6 +940,13 @@ indices: - /sa_ar/education/** - /sa_ar/partnerpromo/** - /sa_ar/downloads/** + - /sa_ar/careers/** + - /sa_ar/affiliates/** + - /sa_ar/check-in/** + - /sa_ar/communities/** + - /sa_ar/confirmation/** + - /sa_ar/devnet/** + - /sa_ar/diversity/** target: /sa_ar/cc-shared/assets/query-index.xlsx cards-sa_ar: @@ -698,6 +964,13 @@ indices: - /sa_en/education/** - /sa_en/partnerpromo/** - /sa_en/downloads/** + - /sa_en/careers/** + - /sa_en/affiliates/** + - /sa_en/check-in/** + - /sa_en/communities/** + - /sa_en/confirmation/** + - /sa_en/devnet/** + - /sa_en/diversity/** target: /sa_en/cc-shared/assets/query-index.xlsx cards-sa_en: @@ -715,6 +988,13 @@ indices: - /th_en/education/** - /th_en/partnerpromo/** - /th_en/downloads/** + - /th_en/careers/** + - /th_en/affiliates/** + - /th_en/check-in/** + - /th_en/communities/** + - /th_en/confirmation/** + - /th_en/devnet/** + - /th_en/diversity/** target: /th_en/cc-shared/assets/query-index.xlsx cards-th_en: @@ -732,6 +1012,13 @@ indices: - /th_th/education/** - /th_th/partnerpromo/** - /th_th/downloads/** + - /th_th/careers/** + - /th_th/affiliates/** + - /th_th/check-in/** + - /th_th/communities/** + - /th_th/confirmation/** + - /th_th/devnet/** + - /th_th/diversity/** target: /th_th/cc-shared/assets/query-index.xlsx cards-th_th: @@ -749,6 +1036,13 @@ indices: - /za/education/** - /za/partnerpromo/** - /za/downloads/** + - /za/careers/** + - /za/affiliates/** + - /za/check-in/** + - /za/communities/** + - /za/confirmation/** + - /za/devnet/** + - /za/diversity/** target: /za/cc-shared/assets/query-index.xlsx cards-za: @@ -766,6 +1060,13 @@ indices: - /africa/education/** - /africa/partnerpromo/** - /africa/downloads/** + - /africa/careers/** + - /africa/affiliates/** + - /africa/check-in/** + - /africa/communities/** + - /africa/confirmation/** + - /africa/devnet/** + - /africa/diversity/** target: /africa/cc-shared/assets/query-index.xlsx cards-africa: @@ -783,6 +1084,13 @@ indices: - /ar/education/** - /ar/partnerpromo/** - /ar/downloads/** + - /careers/** + - /ar/affiliates/** + - /ar/check-in/** + - /ar/communities/** + - /ar/confirmation/** + - /ar/devnet/** + - /ar/diversity/** target: /ar/cc-shared/assets/query-index.xlsx cards-ar: @@ -800,6 +1108,13 @@ indices: - /co/education/** - /co/partnerpromo/** - /co/downloads/** + - /co/careers/** + - /co/affiliates/** + - /co/check-in/** + - /co/communities/** + - /co/confirmation/** + - /co/devnet/** + - /co/diversity/** target: /co/cc-shared/assets/query-index.xlsx cards-co: @@ -817,6 +1132,13 @@ indices: - /cr/education/** - /cr/partnerpromo/** - /cr/downloads/** + - /cr/careers/** + - /cr/affiliates/** + - /cr/check-in/** + - /cr/communities/** + - /cr/confirmation/** + - /cr/devnet/** + - /cr/diversity/** target: /cr/cc-shared/assets/query-index.xlsx cards-cr: @@ -834,6 +1156,13 @@ indices: - /ec/education/** - /ec/partnerpromo/** - /ec/downloads/** + - /ec/careers/** + - /ec/affiliates/** + - /ec/check-in/** + - /ec/communities/** + - /ec/confirmation/** + - /ec/devnet/** + - /ec/diversity/** target: /ec/cc-shared/assets/query-index.xlsx cards-ec: @@ -851,6 +1180,13 @@ indices: - /eg_ar/education/** - /eg_ar/partnerpromo/** - /eg_ar/downloads/** + - /eg_ar/careers/** + - /eg_ar/affiliates/** + - /eg_ar/check-in/** + - /eg_ar/communities/** + - /eg_ar/confirmation/** + - /eg_ar/devnet/** + - /eg_ar/diversity/** target: /eg_ar/cc-shared/assets/query-index.xlsx cards-eg_ar: @@ -868,6 +1204,13 @@ indices: - /eg_en/education/** - /eg_en/partnerpromo/** - /eg_en/downloads/** + - /eg_en/careers/** + - /eg_en/affiliates/** + - /eg_en/check-in/** + - /eg_en/communities/** + - /eg_en/confirmation/** + - /eg_en/devnet/** + - /eg_en/diversity/** target: /eg_en/cc-shared/assets/query-index.xlsx cards-eg_en: @@ -885,6 +1228,13 @@ indices: - /gr_el/education/** - /gr_el/partnerpromo/** - /gr_el/downloads/** + - /gr_el/careers/** + - /gr_el/affiliates/** + - /gr_el/check-in/** + - /gr_el/communities/** + - /gr_el/confirmation/** + - /gr_el/devnet/** + - /gr_el/diversity/** target: /gr_el/cc-shared/assets/query-index.xlsx cards-gr_el: @@ -902,6 +1252,13 @@ indices: - /gt/education/** - /gt/partnerpromo/** - /gt/downloads/** + - /gt/careers/** + - /gt/affiliates/** + - /gt/check-in/** + - /gt/communities/** + - /gt/confirmation/** + - /gt/devnet/** + - /gt/diversity/** target: /gt/cc-shared/assets/query-index.xlsx cards-gt: @@ -919,6 +1276,13 @@ indices: - /id_en/education/** - /id_en/partnerpromo/** - /id_en/downloads/** + - /id_en/careers/** + - /id_en/affiliates/** + - /id_en/check-in/** + - /id_en/communities/** + - /id_en/confirmation/** + - /id_en/devnet/** + - /id_en/diversity/** target: /id_en/cc-shared/assets/query-index.xlsx cards-id_en: @@ -936,6 +1300,13 @@ indices: - /id_id/education/** - /id_id/partnerpromo/** - /id_id/downloads/** + - /id_id/careers/** + - /id_id/affiliates/** + - /id_id/check-in/** + - /id_id/communities/** + - /id_id/confirmation/** + - /id_id/devnet/** + - /id_id/diversity/** target: /id_id/cc-shared/assets/query-index.xlsx cards-id_id: @@ -953,6 +1324,13 @@ indices: - /in_hi/education/** - /in_hi/partnerpromo/** - /in_hi/downloads/** + - /in_hi/careers/** + - /in_hi/affiliates/** + - /in_hi/check-in/** + - /in_hi/communities/** + - /in_hi/confirmation/** + - /in_hi/devnet/** + - /in_hi/diversity/** target: /in_hi/cc-shared/assets/query-index.xlsx cards-in_hi: @@ -970,6 +1348,13 @@ indices: - /kw_ar/education/** - /kw_ar/partnerpromo/** - /kw_ar/downloads/** + - /kw_ar/careers/** + - /kw_ar/affiliates/** + - /kw_ar/check-in/** + - /kw_ar/communities/** + - /kw_ar/confirmation/** + - /kw_ar/devnet/** + - /kw_ar/diversity/** target: /kw_ar/cc-shared/assets/query-index.xlsx cards-kw_ar: @@ -987,6 +1372,13 @@ indices: - /kw_en/education/** - /kw_en/partnerpromo/** - /kw_en/downloads/** + - /kw_en/careers/** + - /kw_en/affiliates/** + - /kw_en/check-in/** + - /kw_en/communities/** + - /kw_en/confirmation/** + - /kw_en/devnet/** + - /kw_en/diversity/** target: /kw_en/cc-shared/assets/query-index.xlsx cards-kw_en: @@ -1004,6 +1396,13 @@ indices: - /my_en/education/** - /my_en/partnerpromo/** - /my_en/downloads/** + - /my_en/careers/** + - /my_en/affiliates/** + - /my_en/check-in/** + - /my_en/communities/** + - /my_en/confirmation/** + - /my_en/devnet/** + - /my_en/diversity/** target: /my_en/cc-shared/assets/query-index.xlsx cards-my_en: @@ -1021,6 +1420,13 @@ indices: - /my_ms/education/** - /my_ms/partnerpromo/** - /my_ms/downloads/** + - /my_ms/careers/** + - /my_ms/affiliates/** + - /my_ms/check-in/** + - /my_ms/communities/** + - /my_ms/confirmation/** + - /my_ms/devnet/** + - /my_ms/diversity/** target: /my_ms/cc-shared/assets/query-index.xlsx cards-my_ms: @@ -1038,6 +1444,13 @@ indices: - /ng/education/** - /ng/partnerpromo/** - /ng/downloads/** + - /ng/careers/** + - /ng/affiliates/** + - /ng/check-in/** + - /ng/communities/** + - /ng/confirmation/** + - /ng/devnet/** + - /ng/diversity/** target: /ng/cc-shared/assets/query-index.xlsx cards-ng: @@ -1055,6 +1468,13 @@ indices: - /pe/education/** - /pe/partnerpromo/** - /pe/downloads/** + - /pe/careers/** + - /pe/affiliates/** + - /pe/check-in/** + - /pe/communities/** + - /pe/confirmation/** + - /pe/devnet/** + - /pe/diversity/** target: /pe/cc-shared/assets/query-index.xlsx cards-pe: @@ -1072,6 +1492,13 @@ indices: - /ph_en/education/** - /ph_en/partnerpromo/** - /ph_en/downloads/** + - /ph_en/careers/** + - /ph_en/affiliates/** + - /ph_en/check-in/** + - /ph_en/communities/** + - /ph_en/confirmation/** + - /ph_en/devnet/** + - /ph_en/diversity/** target: /ph_en/cc-shared/assets/query-index.xlsx cards-ph_en: @@ -1089,6 +1516,13 @@ indices: - /ph_fil/education/** - /ph_fil/partnerpromo/** - /ph_fil/downloads/** + - /ph_fil/careers/** + - /ph_fil/affiliates/** + - /ph_fil/check-in/** + - /ph_fil/communities/** + - /ph_fil/confirmation/** + - /ph_fil/devnet/** + - /ph_fil/diversity/** target: /ph_fil/cc-shared/assets/query-index.xlsx cards-ph_fil: @@ -1106,6 +1540,13 @@ indices: - /pr/education/** - /pr/partnerpromo/** - /pr/downloads/** + - /pr/careers/** + - /pr/affiliates/** + - /pr/check-in/** + - /pr/communities/** + - /pr/confirmation/** + - /pr/devnet/** + - /pr/diversity/** target: /pr/cc-shared/assets/query-index.xlsx cards-pr: @@ -1123,6 +1564,13 @@ indices: - /qa_ar/education/** - /qa_ar/partnerpromo/** - /qa_ar/downloads/** + - /qa_ar/careers/** + - /qa_ar/affiliates/** + - /qa_ar/check-in/** + - /qa_ar/communities/** + - /qa_ar/confirmation/** + - /qa_ar/devnet/** + - /qa_ar/diversity/** target: /qa_ar/cc-shared/assets/query-index.xlsx cards-qa_ar: @@ -1140,6 +1588,13 @@ indices: - /qa_en/education/** - /qa_en/partnerpromo/** - /qa_en/downloads/** + - /qa_en/careers/** + - /qa_en/affiliates/** + - /qa_en/check-in/** + - /qa_en/communities/** + - /qa_en/confirmation/** + - /qa_en/devnet/** + - /qa_en/diversity/** target: /qa_en/cc-shared/assets/query-index.xlsx cards-qa_en: @@ -1157,6 +1612,13 @@ indices: - /vn_en/education/** - /vn_en/partnerpromo/** - /vn_en/downloads/** + - /vn_en/careers/** + - /vn_en/affiliates/** + - /vn_en/check-in/** + - /vn_en/communities/** + - /vn_en/confirmation/** + - /vn_en/devnet/** + - /vn_en/diversity/** target: /vn_en/cc-shared/assets/query-index.xlsx cards-vn_en: @@ -1174,6 +1636,13 @@ indices: - /vn_vi/education/** - /vn_vi/partnerpromo/** - /vn_vi/downloads/** + - /vn_vi/careers/** + - /vn_vi/affiliates/** + - /vn_vi/check-in/** + - /vn_vi/communities/** + - /vn_vi/confirmation/** + - /vn_vi/devnet/** + - /vn_vi/diversity/** target: /vn_vi/cc-shared/assets/query-index.xlsx cards-vn_vi: @@ -1191,6 +1660,13 @@ indices: - /dk/education/** - /dk/partnerpromo/** - /dk/downloads/** + - /dk/careers/** + - /dk/affiliates/** + - /dk/check-in/** + - /dk/communities/** + - /dk/confirmation/** + - /dk/devnet/** + - /dk/diversity/** target: /dk/cc-shared/assets/query-index.xlsx cards-dk: @@ -1208,6 +1684,13 @@ indices: - /fi/education/** - /fi/partnerpromo/** - /fi/downloads/** + - /fi/careers/** + - /fi/affiliates/** + - /fi/check-in/** + - /fi/communities/** + - /fi/confirmation/** + - /fi/devnet/** + - /fi/diversity/** target: /fi/cc-shared/assets/query-index.xlsx cards-fi: @@ -1225,6 +1708,13 @@ indices: - /no/education/** - /no/partnerpromo/** - /no/downloads/** + - /no/careers/** + - /no/affiliates/** + - /no/check-in/** + - /no/communities/** + - /no/confirmation/** + - /no/devnet/** + - /no/diversity/** target: /no/cc-shared/assets/query-index.xlsx cards-no: @@ -1242,6 +1732,13 @@ indices: - /se/education/** - /se/partnerpromo/** - /se/downloads/** + - /se/careers/** + - /se/affiliates/** + - /se/check-in/** + - /se/communities/** + - /se/confirmation/** + - /se/devnet/** + - /se/diversity/** target: /se/cc-shared/assets/query-index.xlsx cards-se: @@ -1259,6 +1756,13 @@ indices: - /la/education/** - /la/partnerpromo/** - /la/downloads/** + - /la/careers/** + - /la/affiliates/** + - /la/check-in/** + - /la/communities/** + - /la/confirmation/** + - /la/devnet/** + - /la/diversity/** target: /la/cc-shared/assets/query-index.xlsx cards-la: @@ -1276,6 +1780,13 @@ indices: - /mx/education/** - /mx/partnerpromo/** - /mx/downloads/** + - /mx/careers/** + - /mx/affiliates/** + - /mx/check-in/** + - /mx/communities/** + - /mx/confirmation/** + - /mx/devnet/** + - /mx/diversity/** target: /mx/cc-shared/assets/query-index.xlsx cards-mx: @@ -1293,6 +1804,13 @@ indices: - /be_nl/education/** - /be_nl/partnerpromo/** - /be_nl/downloads/** + - /be_nl/careers/** + - /be_nl/affiliates/** + - /be_nl/check-in/** + - /be_nl/communities/** + - /be_nl/confirmation/** + - /be_nl/devnet/** + - /be_nl/diversity/** target: /be_nl/cc-shared/assets/query-index.xlsx cards-be_nl: @@ -1310,6 +1828,13 @@ indices: - /bg/education/** - /bg/partnerpromo/** - /bg/downloads/** + - /bg/careers/** + - /bg/affiliates/** + - /bg/check-in/** + - /bg/communities/** + - /bg/confirmation/** + - /bg/devnet/** + - /bg/diversity/** target: /bg/cc-shared/assets/query-index.xlsx cards-bg: @@ -1327,6 +1852,13 @@ indices: - /ch_it/education/** - /ch_it/partnerpromo/** - /ch_it/downloads/** + - /ch_it/careers/** + - /ch_it/affiliates/** + - /ch_it/check-in/** + - /ch_it/communities/** + - /ch_it/confirmation/** + - /ch_it/devnet/** + - /ch_it/diversity/** target: /ch_it/cc-shared/assets/query-index.xlsx cards-ch_it: @@ -1344,6 +1876,13 @@ indices: - /cz/education/** - /cz/partnerpromo/** - /cz/downloads/** + - /cz/careers/** + - /cz/affiliates/** + - /cz/check-in/** + - /cz/communities/** + - /cz/confirmation/** + - /cz/devnet/** + - /cz/diversity/** target: /cz/cc-shared/assets/query-index.xlsx cards-cz: @@ -1361,6 +1900,13 @@ indices: - /ee/education/** - /ee/partnerpromo/** - /ee/downloads/** + - /ee/careers/** + - /ee/affiliates/** + - /ee/check-in/** + - /ee/communities/** + - /ee/confirmation/** + - /ee/devnet/** + - /ee/diversity/** target: /ee/cc-shared/assets/query-index.xlsx cards-ee: @@ -1378,6 +1924,13 @@ indices: - /hu/education/** - /hu/partnerpromo/** - /hu/downloads/** + - /hu/careers/** + - /hu/affiliates/** + - /hu/check-in/** + - /hu/communities/** + - /hu/confirmation/** + - /hu/devnet/** + - /hu/diversity/** target: /hu/cc-shared/assets/query-index.xlsx cards-hu: @@ -1395,6 +1948,13 @@ indices: - /il_he/education/** - /il_he/partnerpromo/** - /il_he/downloads/** + - /il_he/careers/** + - /il_he/affiliates/** + - /il_he/check-in/** + - /il_he/communities/** + - /il_he/confirmation/** + - /il_he/devnet/** + - /il_he/diversity/** target: /il_he/cc-shared/assets/query-index.xlsx cards-il_he: @@ -1412,6 +1972,13 @@ indices: - /lv/education/** - /lv/partnerpromo/** - /lv/downloads/** + - /lv/careers/** + - /lv/affiliates/** + - /lv/check-in/** + - /lv/communities/** + - /lv/confirmation/** + - /lv/devnet/** + - /lv/diversity/** target: /lv/cc-shared/assets/query-index.xlsx cards-lv: @@ -1429,6 +1996,13 @@ indices: - /mena_ar/education/** - /mena_ar/partnerpromo/** - /mena_ar/downloads/** + - /mena_ar/careers/** + - /mena_ar/affiliates/** + - /mena_ar/check-in/** + - /mena_ar/communities/** + - /mena_ar/confirmation/** + - /mena_ar/devnet/** + - /mena_ar/diversity/** target: /mena_ar/cc-shared/assets/query-index.xlsx cards-mena_ar: @@ -1446,6 +2020,13 @@ indices: - /pt/education/** - /pt/partnerpromo/** - /pt/downloads/** + - /pt/careers/** + - /pt/affiliates/** + - /pt/check-in/** + - /pt/communities/** + - /pt/confirmation/** + - /pt/devnet/** + - /pt/diversity/** target: /pt/cc-shared/assets/query-index.xlsx cards-pt: @@ -1463,6 +2044,13 @@ indices: - /ro/education/** - /ro/partnerpromo/** - /ro/downloads/** + - /ro/careers/** + - /ro/affiliates/** + - /ro/check-in/** + - /ro/communities/** + - /ro/confirmation/** + - /ro/devnet/** + - /ro/diversity/** target: /ro/cc-shared/assets/query-index.xlsx cards-ro: @@ -1480,6 +2068,13 @@ indices: - /si/education/** - /si/partnerpromo/** - /si/downloads/** + - /si/careers/** + - /si/affiliates/** + - /si/check-in/** + - /si/communities/** + - /si/confirmation/** + - /si/devnet/** + - /si/diversity/** target: /si/cc-shared/assets/query-index.xlsx cards-si: @@ -1497,6 +2092,13 @@ indices: - /sk/education/** - /sk/partnerpromo/** - /sk/downloads/** + - /sk/careers/** + - /sk/affiliates/** + - /sk/check-in/** + - /sk/communities/** + - /sk/confirmation/** + - /sk/devnet/** + - /sk/diversity/** target: /sk/cc-shared/assets/query-index.xlsx cards-sk: @@ -1514,6 +2116,13 @@ indices: - /ua/education/** - /ua/partnerpromo/** - /ua/downloads/** + - /ua/careers/** + - /ua/affiliates/** + - /ua/check-in/** + - /ua/communities/** + - /ua/confirmation/** + - /ua/devnet/** + - /ua/diversity/** target: /ua/cc-shared/assets/query-index.xlsx cards-ua: @@ -1531,6 +2140,13 @@ indices: - /sg/education/** - /sg/partnerpromo/** - /sg/downloads/** + - /sg/careers/** + - /sg/affiliates/** + - /sg/check-in/** + - /sg/communities/** + - /sg/confirmation/** + - /sg/devnet/** + - /sg/diversity/** target: /sg/cc-shared/assets/query-index.xlsx cards-sg: @@ -1548,6 +2164,13 @@ indices: - /br/education/** - /br/partnerpromo/** - /br/downloads/** + - /br/careers/** + - /br/affiliates/** + - /br/check-in/** + - /br/communities/** + - /br/confirmation/** + - /br/devnet/** + - /br/diversity/** target: /br/cc-shared/assets/query-index.xlsx cards-br: @@ -1565,6 +2188,13 @@ indices: - /cis_en/education/** - /cis_en/partnerpromo/** - /cis_en/downloads/** + - /cis_en/careers/** + - /cis_en/affiliates/** + - /cis_en/check-in/** + - /cis_en/communities/** + - /cis_en/confirmation/** + - /cis_en/devnet/** + - /cis_en/diversity/** target: /cis_en/cc-shared/assets/query-index.xlsx cards-cis_en: @@ -1582,6 +2212,13 @@ indices: - /cis_ru/education/** - /cis_ru/partnerpromo/** - /cis_ru/downloads/** + - /cis_ru/careers/** + - /cis_ru/affiliates/** + - /cis_ru/check-in/** + - /cis_ru/communities/** + - /cis_ru/confirmation/** + - /cis_ru/devnet/** + - /cis_ru/diversity/** target: /cis_ru/cc-shared/assets/query-index.xlsx cards-cis_ru: