Skip to content

Commit 45a26e6

Browse files
authored
Merge branch 'main' into CEXT-3814
2 parents a651a4c + c1220fa commit 45a26e6

File tree

5 files changed

+52
-4
lines changed

5 files changed

+52
-4
lines changed

src/pages/admin-ui-sdk/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,9 @@ The following sequence diagram illustrates the authentication process.
3333
## Code samples
3434

3535
The [Adobe Commerce Samples repository](https://github.com/adobe/adobe-commerce-samples/tree/main/admin-ui-sdk) contains samples for different extension points of the Adobe Commerce Admin UI SDK. Use these samples to gain insight on how the Admin SDK injects menus and pages into the Admin.
36+
37+
## Admin UI SDK and Adobe Extensions
38+
39+
Adobe App Builder supports [extensions](https://developer.adobe.com/app-builder/docs/guides/extensions/), which allow developers to integrate their applications with specific Adobe products, such as the Admin UI SDK. Extensions act as a bridge between Adobe products and the applications built using Adobe App Builder. As a result, these applications can be easily integrated and extended within Adobe's ecosystem.
40+
41+
App Builder projects support `application` and `extension` configurations within the `app.config.yaml` file. The Admin UI SDK supports both of these types as well. The SDK is not affected if you [migrate](https://developer.adobe.com/app-builder/docs/guides/extensions/extension_migration_guide/) an existing App Builder project that uses an `application` configuration to use an `extension` configuration.

src/pages/events/api.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,35 @@ curl -i -X PUT \
140140
}' \
141141
'<ADOBE_COMMERCE_URL>/rest/all/V1/eventing/updateConfiguration'
142142
```
143+
144+
## Get configured event provider information
145+
146+
The `GET /rest/<store_view_code>/V1/eventing/getEventProviders` endpoint returns information about the event provider configured for the Commerce instance.
147+
148+
**Headers:**
149+
150+
`Authorization: Bearer <administrator token>`
151+
152+
The administrator must be granted access to the `Magento_AdobeIoEventsClient::event_provider_list` resource.
153+
154+
**Example usage:**
155+
156+
The following cURL command retrieves information about the configured event provider:
157+
158+
```bash
159+
curl -H "Authorization:Bearer <AUTH_TOKEN>" \
160+
'<ADOBE_COMMERCE_URL>/rest/all/V1/eventing/getEventProviders' \
161+
```
162+
163+
**Example response:**
164+
165+
```json
166+
[
167+
{
168+
"provider_id": "ad667bc6-1678-49ff-99fc-215d71ebf82f",
169+
"instance_id": "my_instance",
170+
"label": "my_provider",
171+
"description": "Provides out-of-process extensibility for Adobe Commerce"
172+
}
173+
]
174+
```

src/pages/events/release-notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ These release notes describe the latest version of Adobe I/O Events for Adobe Co
1212

1313
See [Update Adobe I/O Events for Adobe Commerce](installation.md#update-adobe-io-events-for-adobe-commerce) for upgrade instructions.
1414

15+
## Version 1.10.0
16+
17+
### Release date
18+
19+
December 10, 2024
20+
21+
### Enhancements
22+
23+
* Added the `GET /rest/<store_view_code>/V1/eventing/getEventProviders` REST endpoint for retrieving information about the configured event provider. <!---CEXT-3913 -->
24+
1525
## Version 1.9.0
1626

1727
### Release date

src/pages/webhooks/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The resolution of a remote call also determines whether you should implement a w
2727

2828
Use these guidelines to develop your own webhooks:
2929

30-
1. Identify the Adobe Commerce event that triggers a webhook. Adobe Commerce merchants can browse the available events from the Admin by selecting **System** > Events > **Events** to display the Events list page.
30+
1. Identify the Adobe Commerce event that triggers a webhook. Adobe Commerce merchants can browse the available events from the Admin by selecting **System** > Events > **Events List** to display the Events list page.
3131

3232
1. Understand the default payload of the corresponding webhook by running the [`bin/magento webhooks:info` command](commands.md#display-the-payload-of-a-webhook).
3333

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15352,11 +15352,11 @@ __metadata:
1535215352
linkType: hard
1535315353

1535415354
"nanoid@npm:^3.3.4":
15355-
version: 3.3.4
15356-
resolution: "nanoid@npm:3.3.4"
15355+
version: 3.3.8
15356+
resolution: "nanoid@npm:3.3.8"
1535715357
bin:
1535815358
nanoid: bin/nanoid.cjs
15359-
checksum: 2fddd6dee994b7676f008d3ffa4ab16035a754f4bb586c61df5a22cf8c8c94017aadd360368f47d653829e0569a92b129979152ff97af23a558331e47e37cd9c
15359+
checksum: dfe0adbc0c77e9655b550c333075f51bb28cfc7568afbf3237249904f9c86c9aaaed1f113f0fddddba75673ee31c758c30c43d4414f014a52a7a626efc5958c9
1536015360
languageName: node
1536115361
linkType: hard
1536215362

0 commit comments

Comments
 (0)