Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(generated): update generator to 3.81.0 #1371

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ const client = CloudantV1.newInstance({});
// Start from a previously persisted seq
// Normally this would be read by the app from persistent storage
// e.g. previouslyPersistedSeq = yourAppPersistenceReadFunc()
const previouslyPersistedSeq = '3-g1AG3...'
const previouslyPersistedSeq = '3-g1AG3...';
const changesParams: PostChangesParams = {
db: 'example',
since: previouslyPersistedSeq
Expand All @@ -1259,10 +1259,10 @@ const destinationStream = new Writable({
// do something with change item
console.log(changesItem.id);
for (const change of changesItem.changes) {
console.log(change.rev)
console.log(change.rev);
}
// when change item processing is complete app can store seq
const seq = changesItem.seq
const seq = changesItem.seq;
// write seq to persistent storage for use as since if required to resume later
// e.g. yourAppPersistenceWriteFunc()
callback();
Expand Down Expand Up @@ -1294,7 +1294,7 @@ const client = CloudantV1.newInstance();
// Start from a previously persisted seq
// Normally this would be read by the app from persistent storage
// e.g. previouslyPersistedSeq = yourAppPersistenceReadFunc()
const previouslyPersistedSeq = '3-g1AG3...'
const previouslyPersistedSeq = '3-g1AG3...';
const changesParams = {
db: 'example',
since: previouslyPersistedSeq
Expand All @@ -1308,10 +1308,10 @@ const destinationStream = new Writable({
// do something with change item
console.log(changesItem.id);
for (const change of changesItem.changes) {
console.log(change.rev)
console.log(change.rev);
}
// when change item processing is complete app can store seq
const seq = changesItem.seq
const seq = changesItem.seq;
// write seq to persistent storage for use as since if required to resume later
// e.g. yourAppPersistenceWriteFunc()
callback();
Expand Down Expand Up @@ -1346,7 +1346,7 @@ const client = CloudantV1.newInstance({});
// Start from a previously persisted seq
// Normally this would be read by the app from persistent storage
// e.g. previouslyPersistedSeq = yourAppPersistenceReadFunc()
const previouslyPersistedSeq = '3-g1AG3...'
const previouslyPersistedSeq = '3-g1AG3...';
const changesParams: PostChangesParams = {
db: 'example',
since: previouslyPersistedSeq
Expand All @@ -1360,10 +1360,10 @@ const destinationStream = new Writable({
// do something with change item
console.log(changesItem.id);
for (const change of changesItem.changes) {
console.log(change.rev)
console.log(change.rev);
}
// when change item processing is complete app can store seq
const seq = changesItem.seq
const seq = changesItem.seq;
// write seq to persistent storage for use as since if required to resume later
// e.g. yourAppPersistenceWriteFunc()
callback();
Expand All @@ -1387,12 +1387,12 @@ async function getChangesFromFollower(changesItemsStream: Stream<CloudantV1.Chan
// write seq to persistent storage for use as since
console.log(changesItem.id);
for (const change of changesItem.changes) {
console.log(change.rev)
console.log(change.rev);
}
// when change item processing is complete app can store seq
seq = changesItem.seq
seq = changesItem.seq;
// write seq to persistent storage for use as since if required to resume later
// e.g. yourAppPersistenceWriteFunc()
// e.g. yourAppPersistenceWriteFunc();
}
}
*/
Expand All @@ -1413,7 +1413,7 @@ const client = CloudantV1.newInstance();
// Start from a previously persisted seq
// Normally this would be read by the app from persistent storage
// e.g. previouslyPersistedSeq = yourAppPersistenceReadFunc()
const previouslyPersistedSeq = '3-g1AG3...'
const previouslyPersistedSeq = '3-g1AG3...';
const changesParams = {
db: 'example',
since: previouslyPersistedSeq
Expand All @@ -1427,10 +1427,10 @@ const destinationStream = new Writable({
// do something with change item
console.log(changesItem.id);
for (const change of changesItem.changes) {
console.log(change.rev)
console.log(change.rev);
}
// when change item processing is complete app can store seq
const seq = changesItem.seq
const seq = changesItem.seq;
// write seq to persistent storage for use as since if required to resume later
// e.g. yourAppPersistenceWriteFunc()
callback();
Expand All @@ -1454,12 +1454,12 @@ async function getChangesFromFollower(changesItemsStream) {
// write seq to persistent storage for use as since
console.log(changesItem.id);
for (const change of changesItem.changes) {
console.log(change.rev)
console.log(change.rev);
}
// when change item processing is complete app can store seq
seq = changesItem.seq
seq = changesItem.seq;
// write seq to persistent storage for use as since if required to resume later
// e.g. yourAppPersistenceWriteFunc()
// e.g. yourAppPersistenceWriteFunc();
}
}
*/
Expand Down
Loading