@blocklet/server-js 1.16.52-beta-20251005-235515-42ad5caf → 1.16.52-beta-20251008-091027-c46c73e3
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/dist/browser.d.ts +6 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +41 -0
- package/dist/types.js +10 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +1 -214
- package/lib/node.d.ts +6 -0
- package/lib/schema/graphql.json +41 -0
- package/lib/types.js +10 -0
- package/lib/types.js.map +1 -1
- package/package.json +2 -2
package/dist/browser.d.ts
CHANGED
|
@@ -1694,6 +1694,12 @@ declare namespace ABTNodeClient {
|
|
|
1694
1694
|
paging: ABTNodeClient.PagingInput;
|
|
1695
1695
|
type: ABTNodeClient.OrgQueryType;
|
|
1696
1696
|
userDid: string;
|
|
1697
|
+
options: ABTNodeClient.RequestGetOrgsOptionsInput;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
interface RequestGetOrgsOptionsInput {
|
|
1701
|
+
includeMembers: boolean;
|
|
1702
|
+
includePassports: boolean;
|
|
1697
1703
|
}
|
|
1698
1704
|
|
|
1699
1705
|
interface RequestGetPassportIssuancesInput {
|