@blocklet/server-js 1.16.52-beta-20251005-235515-42ad5caf → 1.16.52-beta-20251008-094601-8a853b5b
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/lib/node.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 {
|
package/lib/schema/graphql.json
CHANGED
|
@@ -7665,6 +7665,47 @@
|
|
|
7665
7665
|
"ofType": null
|
|
7666
7666
|
},
|
|
7667
7667
|
"defaultValue": null
|
|
7668
|
+
},
|
|
7669
|
+
{
|
|
7670
|
+
"name": "options",
|
|
7671
|
+
"description": null,
|
|
7672
|
+
"type": {
|
|
7673
|
+
"kind": "INPUT_OBJECT",
|
|
7674
|
+
"name": "RequestGetOrgsOptionsInput",
|
|
7675
|
+
"ofType": null
|
|
7676
|
+
},
|
|
7677
|
+
"defaultValue": null
|
|
7678
|
+
}
|
|
7679
|
+
],
|
|
7680
|
+
"interfaces": null,
|
|
7681
|
+
"enumValues": null,
|
|
7682
|
+
"possibleTypes": null
|
|
7683
|
+
},
|
|
7684
|
+
{
|
|
7685
|
+
"kind": "INPUT_OBJECT",
|
|
7686
|
+
"name": "RequestGetOrgsOptionsInput",
|
|
7687
|
+
"description": null,
|
|
7688
|
+
"fields": null,
|
|
7689
|
+
"inputFields": [
|
|
7690
|
+
{
|
|
7691
|
+
"name": "includeMembers",
|
|
7692
|
+
"description": null,
|
|
7693
|
+
"type": {
|
|
7694
|
+
"kind": "SCALAR",
|
|
7695
|
+
"name": "Boolean",
|
|
7696
|
+
"ofType": null
|
|
7697
|
+
},
|
|
7698
|
+
"defaultValue": null
|
|
7699
|
+
},
|
|
7700
|
+
{
|
|
7701
|
+
"name": "includePassports",
|
|
7702
|
+
"description": null,
|
|
7703
|
+
"type": {
|
|
7704
|
+
"kind": "SCALAR",
|
|
7705
|
+
"name": "Boolean",
|
|
7706
|
+
"ofType": null
|
|
7707
|
+
},
|
|
7708
|
+
"defaultValue": null
|
|
7668
7709
|
}
|
|
7669
7710
|
],
|
|
7670
7711
|
"interfaces": null,
|
package/lib/types.js
CHANGED
|
@@ -1884,6 +1884,16 @@
|
|
|
1884
1884
|
* @property {...ABTNodeClient.PagingInput} paging
|
|
1885
1885
|
* @property {...ABTNodeClient.OrgQueryType} type
|
|
1886
1886
|
* @property {string} userDid
|
|
1887
|
+
* @property {...ABTNodeClient.RequestGetOrgsOptionsInput} options
|
|
1888
|
+
*/
|
|
1889
|
+
|
|
1890
|
+
/**
|
|
1891
|
+
* Structure of ABTNodeClient.RequestGetOrgsOptionsInput
|
|
1892
|
+
*
|
|
1893
|
+
* @memberof ABTNodeClient
|
|
1894
|
+
* @typedef {object} ABTNodeClient.RequestGetOrgsOptionsInput
|
|
1895
|
+
* @property {boolean} includeMembers
|
|
1896
|
+
* @property {boolean} includePassports
|
|
1887
1897
|
*/
|
|
1888
1898
|
|
|
1889
1899
|
/**
|