Skip to content

Commit

Permalink
relaunch (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarco authored Dec 4, 2024
1 parent 118e542 commit 236f71a
Show file tree
Hide file tree
Showing 17 changed files with 79 additions and 140 deletions.
7 changes: 3 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 6bff3a53-3f0b-40b4-942f-ff70dc583ae5
management:
docChecksum: 37e453d19f1a065616acdf6e1c39dd4b
docChecksum: 04a032015754ec0b90c933ea5ae6f382
docVersion: "1.0"
speakeasyVersion: 1.451.1
generationVersion: 2.470.1
releaseVersion: 0.0.1-alpha.55
configChecksum: c3ecc01bea58dd14195976fa039ac4e4
releaseVersion: 0.0.1-alpha.56
configChecksum: 9301154e8693dcd83a6f0d2f6c670a72
published: true
features:
typescript:
Expand Down Expand Up @@ -175,7 +175,6 @@ generatedFiles:
- docs/models/components/triggereventresponsedtostatus.md
- docs/models/components/triggereventtoallrequestdto.md
- docs/models/components/triggereventtoallrequestdtoactor.md
- docs/models/components/triggereventtoallrequestdtooverrides.md
- docs/models/components/triggereventtoallrequestdtotenant.md
- docs/models/components/type.md
- docs/models/components/unit.md
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ generation:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
typescript:
version: 0.0.1-alpha.55
version: 0.0.1-alpha.56
additionalDependencies:
dependencies: {}
devDependencies: {}
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ speakeasyVersion: 1.451.1
sources:
json-development:
sourceNamespace: json-development
sourceRevisionDigest: sha256:45929f558a8200813cd34fae6afb5d3661dfc7f97de7a7db26302eddbf17ce79
sourceBlobDigest: sha256:6f15f53f199b8feafdfbf88cd3ac16f44509e72c85c63d7861ae3325b173b6f5
sourceRevisionDigest: sha256:71cb063c317cd36893ef4811f77a3b40d2ed12a4c990b0f124248ebc6ecf8141
sourceBlobDigest: sha256:f20cf6b0c41450f85309356ed7f1b5e629221fcc4f71aa63a9981560b13ab2c5
tags:
- latest
- "1.0"
targets:
my-first-target:
source: json-development
sourceNamespace: json-development
sourceRevisionDigest: sha256:45929f558a8200813cd34fae6afb5d3661dfc7f97de7a7db26302eddbf17ce79
sourceBlobDigest: sha256:6f15f53f199b8feafdfbf88cd3ac16f44509e72c85c63d7861ae3325b173b6f5
sourceRevisionDigest: sha256:71cb063c317cd36893ef4811f77a3b40d2ed12a4c990b0f124248ebc6ecf8141
sourceBlobDigest: sha256:f20cf6b0c41450f85309356ed7f1b5e629221fcc4f71aa63a9981560b13ab2c5
codeSamplesNamespace: code-samples-typescript
codeSamplesRevisionDigest: sha256:98d2d614fa89e0ea42c1598bc5aebf0ca553f066077b9ba2607b931fc249cdb9
codeSamplesRevisionDigest: sha256:1cb116f82853be489e60ebee7f7ce22b3f2bc52e52e1ac636b904f4b9656ba30
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
8 changes: 7 additions & 1 deletion docs/models/components/bulktriggereventdto.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ let value: BulkTriggerEventDto = {
},
},
bridgeUrl: "https://example.com/bridge",
overrides: {},
overrides: {
"fcm": {
"data": {
"key": "value",
},
},
},
to: [
"SUBSCRIBER_ID",
],
Expand Down
10 changes: 8 additions & 2 deletions docs/models/components/triggereventrequestdto.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ let value: TriggerEventRequestDto = {
},
},
bridgeUrl: "https://example.com/bridge",
overrides: {},
overrides: {
"fcm": {
"data": {
"key": "value",
},
},
},
to: [
{
topicKey: "<value>",
Expand All @@ -31,7 +37,7 @@ let value: TriggerEventRequestDto = {
| `name` | *string* | :heavy_check_mark: | The trigger identifier of the workflow you wish to send. This identifier can be found on the workflow page. | workflow_identifier |
| `payload` | Record<string, *any*> | :heavy_minus_sign: | The payload object is used to pass additional custom information that could be <br/> used to render the workflow, or perform routing rules based on it. <br/> This data will also be available when fetching the notifications feed from the API to display certain parts of the UI. | {<br/>"comment_id": "string",<br/>"post": {<br/>"text": "string"<br/>}<br/>} |
| `bridgeUrl` | *string* | :heavy_minus_sign: | A URL to bridge for additional processing. | https://example.com/bridge |
| `overrides` | [components.Overrides](../../models/components/overrides.md) | :heavy_minus_sign: | This could be used to override provider specific configurations | {<br/>"fcm": {<br/>"data": {<br/>"key": "value"<br/>}<br/>}<br/>} |
| `overrides` | Record<string, Record<string, *any*>> | :heavy_minus_sign: | This could be used to override provider specific configurations | {<br/>"fcm": {<br/>"data": {<br/>"key": "value"<br/>}<br/>}<br/>} |
| `to` | *components.To*[] | :heavy_check_mark: | The recipients list of people who will receive the notification. | |
| `transactionId` | *string* | :heavy_minus_sign: | A unique identifier for this transaction, we will generate a UUID if not provided. | |
| `actor` | *components.Actor* | :heavy_minus_sign: | It is used to display the Avatar of the provided actor's subscriber id or actor object.<br/><br/> If a new actor object is provided, we will create a new subscriber in our system | |
Expand Down
2 changes: 1 addition & 1 deletion docs/models/components/triggereventresponsedto.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ let value: TriggerEventResponseDto = {
| `acknowledged` | *boolean* | :heavy_check_mark: | Indicates whether the trigger was acknowledged or not |
| `status` | [components.TriggerEventResponseDtoStatus](../../models/components/triggereventresponsedtostatus.md) | :heavy_check_mark: | Status of the trigger |
| `error` | *string*[] | :heavy_minus_sign: | In case of an error, this field will contain the error message(s) |
| `transactionId` | *string* | :heavy_minus_sign: | Transaction ID for the trigger |
| `transactionId` | *string* | :heavy_minus_sign: | The returned transaction ID of the trigger |
Loading

0 comments on commit 236f71a

Please sign in to comment.