Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sub clients #171

Merged
merged 6 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 1 addition & 3 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
{
"extends": [
"@commitlint/config-conventional"
]
"extends": ["@commitlint/config-conventional"]
}
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

27 changes: 14 additions & 13 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,7 @@
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"unicorn",
"import",
"prefer-arrow-functions"
],
"plugins": ["@typescript-eslint", "unicorn", "import", "prefer-arrow-functions"],
"parserOptions": {
"project": "tsconfig.eslint.json"
},
Expand All @@ -42,14 +37,20 @@
"no-plusplus": "off",
"unicorn/import-style": "off",
"@typescript-eslint/no-var-requires": "off",
"no-underscore-dangle": ["error", {
"allowAfterThis": true,
"allowAfterSuper": false
}],
"no-underscore-dangle": [
"error",
{
"allowAfterThis": true,
"allowAfterSuper": false
}
],
"unicorn/no-null": "off",
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true
}],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"import/no-cycle": "off"
}
}
78 changes: 78 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,81 @@
.idea
node_modules
dist

# generate_services start
/ai-assistants-v1
/ai-files-v1
/ai-foundation_models-v1
/ai-llm-v1alpha
/ai-ocr-v1
/ai-stt-v2
/ai-stt-v3
/ai-translate-v2
/ai-tts-v3
/ai-vision-v1
/ai-vision-v2
/airflow-v1
/apploadbalancer-v1
/audittrails-v1
/backup-v1
/billing-v1
/cdn-v1
/certificatemanager-v1
/cic-v1
/cloudapps-workload-v1
/cloudrouter-v1
/compute-v1
/containerregistry-v1
/dataproc-manager-v1
/dataproc-v1
/datasphere-v1
/datasphere-v2
/datatransfer-v1
/dns-v1
/endpoint
/iam-v1
/iot-broker-v1
/iot-devices-v1
/k8s-marketplace-v1
/k8s-v1
/kms-v1
/loadbalancer-v1
/loadtesting-agent-v1
/loadtesting-api-v1
/lockbox-v1
/logging-v1
/marketplace-licensemanager-saas-v1
/marketplace-licensemanager-v1
/marketplace-metering-v1
/marketplace-v1
/mdb-clickhouse-v1
/mdb-elasticsearch-v1
/mdb-greenplum-v1
/mdb-kafka-v1
/mdb-mongodb-v1
/mdb-mysql-v1
/mdb-mysql-v1alpha
/mdb-opensearch-v1
/mdb-postgresql-v1
/mdb-redis-v1
/mdb-sqlserver-v1
/monitoring-v3
/operation
/organizationmanager-v1
/resourcemanager-v1
/serverless-apigateway-v1
/serverless-apigateway-websocket-v1
/serverless-containers-v1
/serverless-eventrouter-v1
/serverless-functions-v1
/serverless-mdbproxy-v1
/serverless-triggers-v1
/serverless-workflows-v1
/smartcaptcha-v1
/smartwebsecurity-v1
/speechsense-v1
/storage-v1
/video-v1
/vpc-v1
/ydb-v1
# generate_services end
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/generated/**
21 changes: 21 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
tabWidth: 4,
printWidth: 100,
singleQuote: true,
trailingComma: 'all',
bracketSpacing: true,
overrides: [
{
files: ['*.js', '*.jsx', '*.ts', '*.tsx'],
options: {
parser: 'typescript',
},
},
{
files: ['*.md', '*.json', '*.yaml', '*.yml'],
options: {
tabWidth: 2,
},
},
],
};
3 changes: 3 additions & 0 deletions clients/ai-assistants-v1/export-alias.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"./generated/yandex/cloud/ai/assistants/v1/searchindex/common": "searchIndexCommon"
}
10 changes: 10 additions & 0 deletions clients/ai-assistants-v1/generated/google/api/annotations.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* eslint-disable */
import Long from 'long';
import _m0 from 'protobufjs/minimal';

export const protobufPackage = 'google.api';

if (_m0.util.Long !== Long) {
_m0.util.Long = Long as any;
_m0.configure();
}
Loading
Loading