Skip to content

Commit cf874d4

Browse files
authored
Merge pull request #133 from erincdustin/11.0.2
11.0.2
2 parents 62f394e + c6ec665 commit cf874d4

File tree

122 files changed

+472
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+472
-62
lines changed

.github/workflows/tag-and-publish.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Tag, Release, & Publish
22

3+
permissions:
4+
contents: write
5+
36
on:
47
push:
58
branches:
@@ -16,6 +19,12 @@ jobs:
1619
with:
1720
node-version: 20
1821

22+
- name: Install Dependencies
23+
run: npm i
24+
25+
- name: Build
26+
run: npm run build
27+
1928
- name: Extract Changelog Entry
2029
id: extract_changelog
2130
shell: pwsh
@@ -70,7 +79,6 @@ jobs:
7079
7180
- name: Tag
7281
id: autotagger
73-
if: steps.check_changes.outputs.uncommitted == 'false'
7482
uses: Klemensas/action-autotag@stable
7583
with:
7684
tag_message: ${{ steps.extract_changelog.outputs.changelog_content }}
@@ -79,7 +87,7 @@ jobs:
7987

8088
- name: Release
8189
id: create_release
82-
if: steps.check_changes.outputs.uncommitted == 'false' && steps.autotagger.outputs.tagname != ''
90+
if: steps.autotagger.outputs.tagname != ''
8391
uses: actions/create-release@v1.0.0
8492
env:
8593
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -90,8 +98,7 @@ jobs:
9098
draft: false
9199

92100
- name: Publish to npm
93-
if: steps.check_changes.outputs.uncommitted == 'false'
94101
env:
95102
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
96103
run: |
97-
npm publish --dry-run --access public
104+
npm publish --access public

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to the ordercloud-javascript-sdk will be documented in this
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
# [11.0.2] - 2025-04-04
9+
- Bring SDK up to date with API v1.0.393
10+
811
# [11.0.1] - 2025-03-05
912
- Introduce github action workflows
1013

docs/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/classes/Resources.AdminUsers.html

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

docs/classes/Resources.OrderReturns.html

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

docs/classes/Resources.Orders.html

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

docs/classes/Resources.SupplierUsers.html

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

docs/classes/Resources.Users.html

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

docs/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@ <h3 class="tsd-index-heading">Interfaces</h3>
167167
<a href="interfaces/RequestOptions.html" class="tsd-index-link tsd-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Request<wbr/>Options</span></a>
168168
<a href="interfaces/SdkConfiguration.html" class="tsd-index-link tsd-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Sdk<wbr/>Configuration</span></a>
169169
<a href="interfaces/SearchIngestion.html" class="tsd-index-link tsd-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Search<wbr/>Ingestion</span></a>
170+
<a href="interfaces/SearchIngestionContent.html" class="tsd-index-link tsd-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Search<wbr/>Ingestion<wbr/>Content</span></a>
171+
<a href="interfaces/SearchIngestionHttpContent.html" class="tsd-index-link tsd-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Search<wbr/>Ingestion<wbr/>Http<wbr/>Content</span></a>
170172
<a href="interfaces/SecurityProfile.html" class="tsd-index-link tsd-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Security<wbr/>Profile</span></a>
171173
<a href="interfaces/SecurityProfileAssignment.html" class="tsd-index-link tsd-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Security<wbr/>Profile<wbr/>Assignment</span></a>
172174
<a href="interfaces/SellerApprovalRule.html" class="tsd-index-link tsd-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>Seller<wbr/>Approval<wbr/>Rule</span></a>

docs/interfaces/ApiClient.html

Lines changed: 25 additions & 18 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)