Skip to content

Commit

Permalink
resolve alphabetical sorting for create interaction
Browse files Browse the repository at this point in the history
  • Loading branch information
milindchidrawar committed Aug 3, 2022
1 parent c1a30b8 commit 003fb7d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/context/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ The following are standard FDC3 context types:
- [`fdc3.country`](ref/Country) ([schema](/schemas/next/country.schema.json))
- [`fdc3.currency`](ref/Currency) ([schema](/schemas/next/currency.schema.json))
- [`fdc3.email`](ref/Email) ([schema](/schemas/next/email.schema.json))
- [`fdc3.interaction`](ref/Interaction) ([schema](/schemas/next/interaction.schema.json))
- [`fdc3.instrument`](ref/Instrument) ([schema](/schemas/next/instrument.schema.json))
- [`fdc3.instrumentList`](ref/InstrumentList) ([schema](/schemas/next/instrumentList.schema.json))
- [`fdc3.interaction`](ref/Interaction) ([schema](/schemas/next/interaction.schema.json))
- [`fdc3.organization`](ref/Organization) ([schema](/schemas/next/organization.schema.json))
- [`fdc3.portfolio`](ref/Portfolio) ([schema](/schemas/next/portfolio.schema.json))
- [`fdc3.position`](ref/Position) ([schema](/schemas/next/position.schema.json))
Expand Down
2 changes: 1 addition & 1 deletion src/context/schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"Country": ["https://fdc3.finos.org/schemas/next/country.schema.json"],
"Currency": ["https://fdc3.finos.org/schemas/next/currency.schema.json"],
"Email": ["https://fdc3.finos.org/schemas/next/email.schema.json"],
"Interaction": ["https://fdc3.finos.org/schemas/next/interaction.schema.json"],
"Instrument": ["https://fdc3.finos.org/schemas/next/instrument.schema.json"],
"InstrumentList": ["https://fdc3.finos.org/schemas/next/instrumentList.schema.json"],
"Interaction": ["https://fdc3.finos.org/schemas/next/interaction.schema.json"],
"Country": ["https://fdc3.finos.org/schemas/next/country.schema.json"],
"Organization": ["https://fdc3.finos.org/schemas/next/organization.schema.json"],
"Portfolio": ["https://fdc3.finos.org/schemas/next/portfolio.schema.json"],
Expand Down
8 changes: 4 additions & 4 deletions src/intents/standard intents.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"intents": [
{
"name": "CreateInteraction",
"displayName": "Create Interaction"
},
{
"name": "StartCall",
"displayName": "Call"
Expand Down Expand Up @@ -55,10 +59,6 @@
{
"name": "ViewOrders",
"displayName": "Orders"
},
{
"name": "CreateInteraction",
"displayName": "Create Interaction"
}
]
}
4 changes: 2 additions & 2 deletions website/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"label": "Intents Part",
"ids": [
"intents/spec",
"intents/ref/CreateInteraction",
"intents/ref/StartCall",
"intents/ref/StartChat",
"intents/ref/StartEmail",
Expand All @@ -52,7 +53,6 @@
"intents/ref/ViewProfile",
"intents/ref/ViewQuote",
"intents/ref/ViewResearch",
"intents/ref/CreateInteraction",
"intents/ref/ViewContact"
]
},
Expand All @@ -70,9 +70,9 @@
"context/ref/Country",
"context/ref/Currency",
"context/ref/Email",
"context/ref/Interaction",
"context/ref/Instrument",
"context/ref/InstrumentList",
"context/ref/Interaction",
"context/ref/Nothing",
"context/ref/Organization",
"context/ref/Portfolio",
Expand Down

0 comments on commit 003fb7d

Please sign in to comment.