@azure/core-paging
Advanced tools
Comparing version 1.6.3-alpha.20240924.1 to 1.6.3-alpha.20240925.5
@@ -5,3 +5,3 @@ { | ||
"sdk-type": "client", | ||
"version": "1.6.3-alpha.20240924.1", | ||
"version": "1.6.3-alpha.20240925.5", | ||
"description": "Core types for paging async iterable iterators", | ||
@@ -63,7 +63,7 @@ "type": "module", | ||
"build:test": "echo skipped. actual commands inlined in browser test scripts", | ||
"build": "npm run clean && tshy && dev-tool run extract-api", | ||
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", | ||
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", | ||
"clean": "rimraf --glob dist dist-* temp *.tgz types *.log", | ||
"execute:samples": "echo skipped", | ||
"extract-api": "tshy && dev-tool run extract-api", | ||
"extract-api": "dev-tool run build-package && dev-tool run extract-api", | ||
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", | ||
@@ -77,7 +77,8 @@ "integration-test:browser": "echo skipped", | ||
"test:browser": "npm run clean && npm run unit-test:browser && npm run integration-test:browser", | ||
"test:node": "npm run clean && tshy && npm run unit-test:node && npm run integration-test:node", | ||
"test": "npm run clean && tshy && npm run unit-test:node && dev-tool run build-test && npm run unit-test:browser && npm run integration-test", | ||
"unit-test:browser": "npm run clean && tshy && dev-tool run build-test && dev-tool run test:vitest --no-test-proxy --browser", | ||
"test:node": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run integration-test:node", | ||
"test": "npm run clean && dev-tool run build-package && npm run unit-test:node && dev-tool run build-test && npm run unit-test:browser && npm run integration-test", | ||
"unit-test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --no-test-proxy --browser", | ||
"unit-test:node": "dev-tool run test:vitest --no-test-proxy", | ||
"unit-test": "npm run unit-test:node && npm run unit-test:browser" | ||
"unit-test": "npm run unit-test:node && npm run unit-test:browser", | ||
"update-snippets": "dev-tool run update-snippets" | ||
}, | ||
@@ -97,3 +98,2 @@ "dependencies": { | ||
"rimraf": "^5.0.5", | ||
"tshy": "^2.0.0", | ||
"typescript": "~5.6.2", | ||
@@ -100,0 +100,0 @@ "vitest": "^2.0.5" |
@@ -14,3 +14,3 @@ # Azure Core Paging client library for JavaScript | ||
```javascript | ||
``` | ||
npm install @azure/core-paging | ||
@@ -27,13 +27,22 @@ ``` | ||
```typescript | ||
public listSecrets( | ||
options: ListSecretsOptions = {} | ||
): PagedAsyncIterableIterator<SecretAttributes> { | ||
const iter = this.listSecretsAll(options); | ||
return { | ||
async next() { return iter.next(); }, | ||
[Symbol.asyncIterator]() { return this; }, | ||
byPage: (settings: PageSettings = {}) => this.listSecretsPage(settings, options), | ||
}; | ||
```typescript snippet:paging_example | ||
function listSecrets( | ||
options: ListSecretsOptions = {}, | ||
): PagedAsyncIterableIterator<SecretAttributes> { | ||
const iter = this.listSecretsAll(options); | ||
return { | ||
async next() { | ||
return iter.next(); | ||
}, | ||
[Symbol.asyncIterator]() { | ||
return this; | ||
}, | ||
byPage: (settings: PageSettings = {}) => this.listSecretsPage(settings, options), | ||
}; | ||
} | ||
for await (const page of listSecrets().byPage({ maxPageSize: 2 })) { | ||
for (const secret of page) { | ||
console.log("secret: ", secret); | ||
} | ||
} | ||
``` | ||
@@ -40,0 +49,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
80951
11
71