Skip to content

Commit

Permalink
missing var
Browse files Browse the repository at this point in the history
  • Loading branch information
kgeller committed Oct 7, 2024
1 parent 6a60536 commit b3a23d1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ export const celTestState = {
results: { test: 'testResults' },
};

export const celQuerySummaryMockedResponse = ``;
export const celQuerySummaryMockedResponse = `To cover all events in a chronological manner for the device_tasks endpoint, you should use the /v1/device_tasks GET route with pagination parameters. Specifically, use the pageSize and pageToken query parameters. Start with a large pageSize and use the nextPageToken from each response to fetch subsequent pages until all events are retrieved.
Sample URL path:
/v1/device_tasks?pageSize=1000&pageToken={nextPageToken}
Replace {nextPageToken} with the actual token received from the previous response. Repeat this process, updating the pageToken each time, until you've retrieved all events.`;

export const celProgramMockedResponse = `Based on the provided context and requirements, here's the CEL program section for the device_tasks datastream:
Expand Down

0 comments on commit b3a23d1

Please sign in to comment.