@vaultgig/vaultgig-api-client 0.0.3 → 0.0.5
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/.openapi-generator/FILES +50 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/.versions.json +1 -0
- package/README.md +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.gitignore
|
|
2
|
+
.npmignore
|
|
3
|
+
.openapi-generator-ignore
|
|
4
|
+
README.md
|
|
5
|
+
docs/BusinessClassification.md
|
|
6
|
+
docs/ContractorCreateData.md
|
|
7
|
+
docs/ContractorCreatePayload.md
|
|
8
|
+
docs/ContractorData.md
|
|
9
|
+
docs/ContractorResponse.md
|
|
10
|
+
docs/ContractorStatus.md
|
|
11
|
+
docs/ContractorType.md
|
|
12
|
+
docs/ContractorUpdatePayload.md
|
|
13
|
+
docs/ContractorsApi.md
|
|
14
|
+
docs/HTTPValidationError.md
|
|
15
|
+
docs/PaginatedResponseContractorResponse.md
|
|
16
|
+
docs/PaginationMeta.md
|
|
17
|
+
docs/ResponseContractorCreateData.md
|
|
18
|
+
docs/ResponseContractorData.md
|
|
19
|
+
docs/ResponsePaginatedResponseContractorResponse.md
|
|
20
|
+
docs/SchemaApi.md
|
|
21
|
+
docs/SuccessResponse.md
|
|
22
|
+
docs/TinType.md
|
|
23
|
+
docs/ValidationError.md
|
|
24
|
+
docs/ValidationErrorLocInner.md
|
|
25
|
+
package.json
|
|
26
|
+
src/apis/ContractorsApi.ts
|
|
27
|
+
src/apis/SchemaApi.ts
|
|
28
|
+
src/apis/index.ts
|
|
29
|
+
src/index.ts
|
|
30
|
+
src/models/BusinessClassification.ts
|
|
31
|
+
src/models/ContractorCreateData.ts
|
|
32
|
+
src/models/ContractorCreatePayload.ts
|
|
33
|
+
src/models/ContractorData.ts
|
|
34
|
+
src/models/ContractorResponse.ts
|
|
35
|
+
src/models/ContractorStatus.ts
|
|
36
|
+
src/models/ContractorType.ts
|
|
37
|
+
src/models/ContractorUpdatePayload.ts
|
|
38
|
+
src/models/HTTPValidationError.ts
|
|
39
|
+
src/models/PaginatedResponseContractorResponse.ts
|
|
40
|
+
src/models/PaginationMeta.ts
|
|
41
|
+
src/models/ResponseContractorCreateData.ts
|
|
42
|
+
src/models/ResponseContractorData.ts
|
|
43
|
+
src/models/ResponsePaginatedResponseContractorResponse.ts
|
|
44
|
+
src/models/SuccessResponse.ts
|
|
45
|
+
src/models/TinType.ts
|
|
46
|
+
src/models/ValidationError.ts
|
|
47
|
+
src/models/ValidationErrorLocInner.ts
|
|
48
|
+
src/models/index.ts
|
|
49
|
+
src/runtime.ts
|
|
50
|
+
tsconfig.json
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
7.18.0-SNAPSHOT
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# OpenAPI Generator Ignore
|
|
2
|
+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
|
|
3
|
+
|
|
4
|
+
# Use this file to prevent files from being overwritten by the generator.
|
|
5
|
+
# The patterns follow closely to .gitignore or .dockerignore.
|
|
6
|
+
|
|
7
|
+
# As an example, the C# client generator defines ApiClient.cs.
|
|
8
|
+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
|
|
9
|
+
#ApiClient.cs
|
|
10
|
+
|
|
11
|
+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
|
|
12
|
+
#foo/*/qux
|
|
13
|
+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
|
|
14
|
+
|
|
15
|
+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
|
|
16
|
+
#foo/**/qux
|
|
17
|
+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
|
|
18
|
+
|
|
19
|
+
# You can also negate patterns with an exclamation (!).
|
|
20
|
+
# For example, you can ignore all files in a docs folder with the file extension .md:
|
|
21
|
+
#docs/*.md
|
|
22
|
+
# Then explicitly reverse the ignore rule for a single file:
|
|
23
|
+
#!docs/README.md
|
package/.versions.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"vaultgig-api-client": {"typescript": "0.0.5"}}
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @vaultgig/vaultgig-api-client@0.0.
|
|
1
|
+
# @vaultgig/vaultgig-api-client@0.0.5
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -101,7 +101,7 @@ and is automatically generated by the
|
|
|
101
101
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
102
102
|
|
|
103
103
|
- API version: `1.0.0`
|
|
104
|
-
- Package version: `0.0.
|
|
104
|
+
- Package version: `0.0.5`
|
|
105
105
|
- Generator version: `7.18.0-SNAPSHOT`
|
|
106
106
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
107
107
|
|