@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/lib/utils/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './httpStatusCode';
|
|
2
|
-
export * from './strings';
|
|
1
|
+
export * from './httpStatusCode';
|
|
2
|
+
export * from './strings';
|
package/lib/utils/strings.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare class StringsUtils {
|
|
2
|
-
static localCompareStrings(a: string, b: string): number;
|
|
3
|
-
static localeIncludeString(a: string, b: string): boolean;
|
|
4
|
-
static isStringHasCharacters(text?: string | null): boolean | "" | null | undefined;
|
|
5
|
-
}
|
|
1
|
+
export declare class StringsUtils {
|
|
2
|
+
static localCompareStrings(a: string, b: string): number;
|
|
3
|
+
static localeIncludeString(a: string, b: string): boolean;
|
|
4
|
+
static isStringHasCharacters(text?: string | null): boolean | "" | null | undefined;
|
|
5
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcrumbs.net/bc-api",
|
|
3
3
|
"description": "The SDK that helps to work with Bread Crumbs APIs",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"keyword": [
|
|
6
6
|
"bcrumbs",
|
|
7
7
|
"bc-api"
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"i18next": "^21.6.14",
|
|
12
12
|
"react-i18next": "^11.15.6",
|
|
13
13
|
"date-fns": "^2.28.0",
|
|
14
|
-
"apollo-link-error": "^1.1.13",
|
|
15
14
|
"apollo-cache-inmemory": "^1.6.6",
|
|
16
|
-
"apollo-link-http": "^1.5.17"
|
|
15
|
+
"apollo-link-http": "^1.5.17",
|
|
16
|
+
"graphql-tag": "^2.12.6"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"apollo-link-rest": "^0.9.0-rc.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const usageQuery: import("graphql").DocumentNode;
|