@workbuddy/sdk-js-vnext 1.0.76 → 1.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1134,6 +1134,10 @@ export interface WorkBuddyJobsStagesItemsCreateStageItemsParams extends WorkBudd
|
|
|
1134
1134
|
* Stage ID
|
|
1135
1135
|
*/
|
|
1136
1136
|
stageId: string;
|
|
1137
|
+
/**
|
|
1138
|
+
* For optimistic concurrency — update fails if entity was modified after this timestamp
|
|
1139
|
+
*/
|
|
1140
|
+
updatedAt: string;
|
|
1137
1141
|
|
|
1138
1142
|
items: {
|
|
1139
1143
|
integrationId?: string;
|
|
@@ -1182,7 +1186,7 @@ export interface WorkBuddyJobsStagesItemsUpdateStageItemParams extends WorkBuddy
|
|
|
1182
1186
|
/**
|
|
1183
1187
|
* For optimistic concurrency — update fails if entity was modified after this timestamp
|
|
1184
1188
|
*/
|
|
1185
|
-
updatedAt
|
|
1189
|
+
updatedAt: string;
|
|
1186
1190
|
|
|
1187
1191
|
quantity?: number;
|
|
1188
1192
|
|