Skip to content

Commit 33a9bad

Browse files
updates for code overlay for each lang to make merging possible on developer portal
1 parent 5b35728 commit 33a9bad

File tree

9 files changed

+5668
-5
lines changed

9 files changed

+5668
-5
lines changed

.github/workflows/push_sdk_docs_to_dev_portal.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,21 @@ jobs:
3232
3333
- name: Sync files between folders
3434
run: |
35-
CURRENT_V3_CODE_EXAMPLES_PATH="powershell-sdk/PSSailpoint/v3/docs/Examples/code_examples_overlay.yaml"
35+
CURRENT_V3_CODE_EXAMPLES_PATH="powershell-sdk/PSSailpoint/v3/docs/Examples/powershell_code_examples_overlay.yaml"
3636
NEW_V3_CODE_EXAMPLES_PATH="developer-community/static/code-examples/v3"
3737
CURRENT_V3_SPEC_PATH_METHODS="powershell-sdk/PSSailpoint/v3/docs/Methods"
3838
NEW_V3_API_SPEC_PATH_METHODS="developer-community/docs/tools/sdk/powershell/Reference/V3"
3939
CURRENT_V3_SPEC_PATH_MODELS="powershell-sdk/PSSailpoint/v3/docs/Models"
4040
NEW_V3_API_SPEC_PATH_MODELS="developer-community/docs/tools/sdk/powershell/Reference/V3"
4141
42-
CURRENT_BETA_CODE_EXAMPLES_PATH="powershell-sdk/PSSailpoint/beta/docs/Examples/code_examples_overlay.yaml"
42+
CURRENT_BETA_CODE_EXAMPLES_PATH="powershell-sdk/PSSailpoint/beta/docs/Examples/powershell_code_examples_overlay.yaml"
4343
NEW_BETA_CODE_EXAMPLES_PATH="developer-community/static/code-examples/beta"
4444
CURRENT_BETA_SPEC_PATH_METHODS="powershell-sdk/PSSailpoint/beta/docs/Methods"
4545
NEW_BETA_API_SPEC_PATH_METHODS="developer-community/docs/tools/sdk/powershell/Reference/Beta"
4646
CURRENT_BETA_SPEC_PATH_MODELS="powershell-sdk/PSSailpoint/beta/docs/Models"
4747
NEW_BETA_API_SPEC_PATH_MODELS="developer-community/docs/tools/sdk/powershell/Reference/Beta"
4848
49-
CURRENT_V2024_CODE_EXAMPLES_PATH="powershell-sdk/PSSailpoint/v2024/docs/Examples/code_examples_overlay.yaml"
49+
CURRENT_V2024_CODE_EXAMPLES_PATH="powershell-sdk/PSSailpoint/v2024/docs/Examples/powershell_code_examples_overlay.yaml"
5050
NEW_V2024_CODE_EXAMPLES_PATH="developer-community/static/code-examples/v2024"
5151
CURRENT_V2024_SPEC_PATH_METHODS="powershell-sdk/PSSailpoint/v2024/docs/Methods"
5252
NEW_V2024_API_SPEC_PATH_METHODS="developer-community/docs/tools/sdk/powershell/Reference/V2024"

PSSailpoint/PSSailpoint.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Sailpoint Developer Relations
55
#
6-
# Generated on: 02/18/2025
6+
# Generated on: 2/19/2025
77
#
88

99
@{

PSSailpoint/beta/src/PSSailpoint.Beta/PSSailpoint.Beta.psd1

Lines changed: 2043 additions & 0 deletions
Large diffs are not rendered by default.

PSSailpoint/v2024/src/PSSailpoint.V2024/PSSailpoint.V2024.psd1

Lines changed: 2423 additions & 0 deletions
Large diffs are not rendered by default.

PSSailpoint/v3/src/PSSailpoint.V3/PSSailpoint.V3.psd1

Lines changed: 1197 additions & 0 deletions
Large diffs are not rendered by default.

sdk-resources/postscript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const mergeCodeExampleFiles = async (srcDir) => {
2020
// Check if the source directory exists asynchronously
2121
await fs.access(srcDir);
2222

23-
const destFile = path.join(srcDir, 'code_examples_overlay.yaml');
23+
const destFile = path.join(srcDir, 'powershell_code_examples_overlay.yaml');
2424
const files = await fs.readdir(srcDir);
2525

2626
// Use writeFile instead of createWriteStream to simplify handling in async/await context

0 commit comments

Comments
 (0)