Skip to content

Commit cb0f258

Browse files
committed
fixup! fix: add scheduling meta data
1 parent 07f50ba commit cb0f258

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

openapi-full.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1979,7 +1979,8 @@
19791979
},
19801980
"originalSendAt": {
19811981
"type": "integer",
1982-
"format": "int64"
1982+
"format": "int64",
1983+
"description": "Set only if sending failed to persist the original timestamp and expose it"
19831984
}
19841985
}
19851986
},

openapi.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1884,7 +1884,8 @@
18841884
},
18851885
"originalSendAt": {
18861886
"type": "integer",
1887-
"format": "int64"
1887+
"format": "int64",
1888+
"description": "Set only if sending failed to persist the original timestamp and expose it"
18881889
}
18891890
}
18901891
},

src/types/openapi/openapi-full.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3074,7 +3074,10 @@ export type components = {
30743074
/** Format: int64 */
30753075
sendAt: number;
30763076
silent: boolean;
3077-
/** Format: int64 */
3077+
/**
3078+
* Format: int64
3079+
* @description Set only if sending failed to persist the original timestamp and expose it
3080+
*/
30783081
originalSendAt?: number;
30793082
};
30803083
SignalingFederationSettings: {

src/types/openapi/openapi.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2536,7 +2536,10 @@ export type components = {
25362536
/** Format: int64 */
25372537
sendAt: number;
25382538
silent: boolean;
2539-
/** Format: int64 */
2539+
/**
2540+
* Format: int64
2541+
* @description Set only if sending failed to persist the original timestamp and expose it
2542+
*/
25402543
originalSendAt?: number;
25412544
};
25422545
SignalingFederationSettings: {

0 commit comments

Comments
 (0)