@bcrumbs.net/bc-api 0.0.3 → 0.0.4
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/index.d.ts +22 -20
- package/index.esm.js +556 -3619
- package/index.umd.js +481 -3581
- package/lib/clients/dconfigClient.d.ts +4 -4
- package/lib/clients/dqueryClient.d.ts +13 -13
- package/lib/clients/showcaseClient.d.ts +12 -12
- package/lib/config/index.d.ts +19 -17
- package/lib/endpoints/graphql/showcase/index.d.ts +17 -16
- package/lib/endpoints/rest/auth/index.d.ts +22 -22
- package/lib/endpoints/rest/billing/index.d.ts +2 -2
- package/lib/endpoints/rest/companies/index.d.ts +10 -10
- package/lib/endpoints/rest/contents/index.d.ts +17 -17
- package/lib/endpoints/rest/files/index.d.ts +14 -14
- package/lib/endpoints/rest/models/index.d.ts +39 -39
- package/lib/endpoints/rest/showcase/index.d.ts +27 -16
- package/lib/models/config.d.ts +13 -0
- package/lib/models/content.d.ts +35 -27
- package/lib/models/contentInstance.d.ts +32 -32
- package/lib/models/file.d.ts +12 -12
- package/lib/models/folder.d.ts +11 -11
- package/lib/models/model.d.ts +33 -33
- package/lib/models/usage.d.ts +16 -0
- package/lib/services/auth/index.d.ts +123 -120
- package/lib/services/i18n/index.d.ts +11 -11
- package/lib/services/validators/index.d.ts +20 -20
- package/lib/utils/httpStatusCode.d.ts +381 -381
- package/lib/utils/index.d.ts +2 -2
- package/lib/utils/strings.d.ts +5 -5
- package/package.json +3 -3
- package/lib/endpoints/graphql/usage/index.d.ts +0 -1
package/index.d.ts
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
|
-
export * from './lib/endpoints/rest/models';
|
|
2
|
-
export * from './lib/endpoints/graphql/showcase';
|
|
3
|
-
export * from './lib/endpoints/
|
|
4
|
-
export * from './lib/endpoints/rest/
|
|
5
|
-
export * from './lib/endpoints/rest/
|
|
6
|
-
export * from './lib/endpoints/rest/
|
|
7
|
-
export * from './lib/endpoints/rest/
|
|
8
|
-
export * from './lib/endpoints/rest/
|
|
9
|
-
export * from './lib/
|
|
10
|
-
export * from './lib/clients/
|
|
11
|
-
export * from './lib/clients/
|
|
12
|
-
export * from './lib/
|
|
13
|
-
export * from './lib/models/
|
|
14
|
-
export * from './lib/models/
|
|
15
|
-
export * from './lib/models/
|
|
16
|
-
export * from './lib/models/
|
|
17
|
-
export * from './lib/models/
|
|
18
|
-
export * from './lib/
|
|
19
|
-
export * from './lib/
|
|
20
|
-
export * from './lib/services/
|
|
1
|
+
export * from './lib/endpoints/rest/models';
|
|
2
|
+
export * from './lib/endpoints/graphql/showcase';
|
|
3
|
+
export * from './lib/endpoints/rest/auth';
|
|
4
|
+
export * from './lib/endpoints/rest/companies';
|
|
5
|
+
export * from './lib/endpoints/rest/billing';
|
|
6
|
+
export * from './lib/endpoints/rest/contents';
|
|
7
|
+
export * from './lib/endpoints/rest/showcase';
|
|
8
|
+
export * from './lib/endpoints/rest/files';
|
|
9
|
+
export * from './lib/clients/dconfigClient';
|
|
10
|
+
export * from './lib/clients/dqueryClient';
|
|
11
|
+
export * from './lib/clients/showcaseClient';
|
|
12
|
+
export * from './lib/models/contentInstance';
|
|
13
|
+
export * from './lib/models/model';
|
|
14
|
+
export * from './lib/models/file';
|
|
15
|
+
export * from './lib/models/folder';
|
|
16
|
+
export * from './lib/models/content';
|
|
17
|
+
export * from './lib/models/usage';
|
|
18
|
+
export * from './lib/models/config';
|
|
19
|
+
export * from './lib/utils';
|
|
20
|
+
export * from './lib/services/i18n';
|
|
21
|
+
export * from './lib/services/auth';
|
|
22
|
+
export * from './lib/config';
|