Skip to content

Commit

Permalink
v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bohdan Krokhmaliuk committed Jul 29, 2022
0 parents commit 34b1f58
Show file tree
Hide file tree
Showing 4,482 changed files with 575,861 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# See https://dart.dev/guides/libraries/private-files

# Files and directories created by pub
.dart_tool/
.buildlog
.packages
.project
.pub/
build/
**/packages/

# Files created by dart2js
# (Most Dart developers will use pub build to compile Dart, use/modify these
# rules if you intend to use dart2js directly
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
# differentiate from explicit Javascript files)
*.dart.js
*.part.js
*.js.deps
*.js.map
*.info.json

# Directory created by dartdoc
doc/api/

# Don't commit pubspec lock file
# (Library packages only! Remove pattern if developing an application package)
pubspec.lock

# Don’t commit files and directories created by other development environments.
# For example, if your development environment creates any of the following files,
# consider putting them in a global ignore file:

# IntelliJ
*.iml
*.ipr
*.iws
.idea/

# Mac
.DS_Store
23 changes: 23 additions & 0 deletions .openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
4,582 changes: 4,582 additions & 0 deletions .openapi-generator/FILES

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
unset
82 changes: 82 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
// Melos block for automatic pub get updates
"dart.runPubGetOnPubspecChanges": false,
// Editor
"git.ignoreLimitWarning": true,
"editor.wordWrapColumn": 120,
"editor.formatOnSave": true,
"editor.rulers": [
120
],
// Dart
"dart.lineLength": 120,
"dart.previewFlutterUiGuides": true,
"dart.previewUpdateImportsOnRename": true,
"dart.previewFlutterUiGuidesCustomTracking": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false,
"editor.rulers": [
120
],
},
// Material icons
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.activeIconPack": "none",
"material-icon-theme.folders.associations": {
"intl": "I18n",
"l10n": "I18n",
"blocs": "api",
"bloc": "api",
"pages": "layout",
"src": "less",
"lib": "src",
"assets": "images",
"images": "images",
"main": "app",
"mixins": "functions",
"providers": "global",
"repositories": "routes",
"resolvers": "tasks"
},
"material-icon-theme.saturation": 0.9,
"material-icon-theme.folders.color": "#90a4ae",
// Psi-header
"psi-header.changes-tracking": {
"autoHeader": "manualSave"
},
"psi-header.lang-config": [
{
"language": "dart",
"begin": "/*",
"end": "*/",
"prefix": "* // "
}
],
// Add to user settings
// "psi-header.config.author": "Name Surname",
"psi-header.config": {
"forceToTop": true,
"blankLinesAfter": 1,
"company": "elopage",
},
"psi-header.templates": [
{
"language": "dart",
"template": [
"",
"<<filename>>",
"<<company>>",
"",
"Created by <<author>> on <<filecreated('YYYY-MM-DD')>>",
"Copyright (c) <<year>> <<company>>. All rights reserved.",
""
]
},
],
}
2,005 changes: 2,005 additions & 0 deletions README.md

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
analyzer:
language:
strict-inference: true
strict-raw-types: true
strong-mode:
implicit-dynamic: false
implicit-casts: false
exclude:
- test/*.dart
18 changes: 18 additions & 0 deletions doc/AgeRatingDeclaration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# app_store_connect.model.AgeRatingDeclaration

## Load the model package
```dart
import 'package:app_store_connect/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **String** | |
**id** | **String** | |
**attributes** | [**AgeRatingDeclarationAttributes**](AgeRatingDeclarationAttributes.md) | | [optional]
**links** | [**ResourceLinks**](ResourceLinks.md) | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


31 changes: 31 additions & 0 deletions doc/AgeRatingDeclarationAttributes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# app_store_connect.model.AgeRatingDeclarationAttributes

## Load the model package
```dart
import 'package:app_store_connect/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**alcoholTobaccoOrDrugUseOrReferences** | **String** | | [optional]
**contests** | **String** | | [optional]
**gamblingAndContests** | **bool** | | [optional]
**gambling** | **bool** | | [optional]
**gamblingSimulated** | **String** | | [optional]
**kidsAgeBand** | [**KidsAgeBand**](KidsAgeBand.md) | | [optional]
**medicalOrTreatmentInformation** | **String** | | [optional]
**profanityOrCrudeHumor** | **String** | | [optional]
**sexualContentGraphicAndNudity** | **String** | | [optional]
**sexualContentOrNudity** | **String** | | [optional]
**seventeenPlus** | **bool** | | [optional]
**horrorOrFearThemes** | **String** | | [optional]
**matureOrSuggestiveThemes** | **String** | | [optional]
**unrestrictedWebAccess** | **bool** | | [optional]
**violenceCartoonOrFantasy** | **String** | | [optional]
**violenceRealisticProlongedGraphicOrSadistic** | **String** | | [optional]
**violenceRealistic** | **String** | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


16 changes: 16 additions & 0 deletions doc/AgeRatingDeclarationResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# app_store_connect.model.AgeRatingDeclarationResponse

## Load the model package
```dart
import 'package:app_store_connect/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data** | [**AgeRatingDeclaration**](AgeRatingDeclaration.md) | |
**links** | [**DocumentLinks**](DocumentLinks.md) | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


15 changes: 15 additions & 0 deletions doc/AgeRatingDeclarationUpdateRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# app_store_connect.model.AgeRatingDeclarationUpdateRequest

## Load the model package
```dart
import 'package:app_store_connect/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data** | [**AgeRatingDeclarationUpdateRequestData**](AgeRatingDeclarationUpdateRequestData.md) | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


17 changes: 17 additions & 0 deletions doc/AgeRatingDeclarationUpdateRequestData.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# app_store_connect.model.AgeRatingDeclarationUpdateRequestData

## Load the model package
```dart
import 'package:app_store_connect/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **String** | |
**id** | **String** | |
**attributes** | [**AgeRatingDeclarationAttributes**](AgeRatingDeclarationAttributes.md) | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


60 changes: 60 additions & 0 deletions doc/AgeRatingDeclarationsApi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# app_store_connect.api.AgeRatingDeclarationsApi

## Load the API package
```dart
import 'package:app_store_connect/api.dart';
```

All URIs are relative to *https://api.appstoreconnect.apple.com*

Method | HTTP request | Description
------------- | ------------- | -------------
[**ageRatingDeclarationsUpdateInstance**](AgeRatingDeclarationsApi.md#ageratingdeclarationsupdateinstance) | **PATCH** /v1/ageRatingDeclarations/{id} |


# **ageRatingDeclarationsUpdateInstance**
> AgeRatingDeclarationResponse ageRatingDeclarationsUpdateInstance(id, ageRatingDeclarationUpdateRequest)


### Example
```dart
import 'package:app_store_connect/api.dart';
// TODO Configure HTTP basic authorization: itc-bearer-token
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('itc-bearer-token').password = 'YOUR_PASSWORD';
final api = AppStoreConnect().getAgeRatingDeclarationsApi();
final String id = id_example; // String | the id of the requested resource
final AgeRatingDeclarationUpdateRequest ageRatingDeclarationUpdateRequest = ; // AgeRatingDeclarationUpdateRequest | AgeRatingDeclaration representation
try {
final response = api.ageRatingDeclarationsUpdateInstance(id, ageRatingDeclarationUpdateRequest);
print(response);
} catch on DioError (e) {
print('Exception when calling AgeRatingDeclarationsApi->ageRatingDeclarationsUpdateInstance: $e\n');
}
```

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **String**| the id of the requested resource |
**ageRatingDeclarationUpdateRequest** | [**AgeRatingDeclarationUpdateRequest**](AgeRatingDeclarationUpdateRequest.md)| AgeRatingDeclaration representation |

### Return type

[**AgeRatingDeclarationResponse**](AgeRatingDeclarationResponse.md)

### Authorization

[itc-bearer-token](../README.md#itc-bearer-token)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

19 changes: 19 additions & 0 deletions doc/App.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# app_store_connect.model.App

## Load the model package
```dart
import 'package:app_store_connect/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **String** | |
**id** | **String** | |
**attributes** | [**AppAttributes**](AppAttributes.md) | | [optional]
**relationships** | [**AppRelationships**](AppRelationships.md) | | [optional]
**links** | [**ResourceLinks**](ResourceLinks.md) | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


25 changes: 25 additions & 0 deletions doc/AppAttributes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# app_store_connect.model.AppAttributes

## Load the model package
```dart
import 'package:app_store_connect/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | | [optional]
**bundleId** | **String** | | [optional]
**sku** | **String** | | [optional]
**primaryLocale** | **String** | | [optional]
**isOrEverWasMadeForKids** | **bool** | | [optional]
**subscriptionStatusUrl** | **String** | | [optional]
**subscriptionStatusUrlVersion** | [**SubscriptionStatusUrlVersion**](SubscriptionStatusUrlVersion.md) | | [optional]
**subscriptionStatusUrlForSandbox** | **String** | | [optional]
**subscriptionStatusUrlVersionForSandbox** | [**SubscriptionStatusUrlVersion**](SubscriptionStatusUrlVersion.md) | | [optional]
**availableInNewTerritories** | **bool** | | [optional]
**contentRightsDeclaration** | **String** | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


15 changes: 15 additions & 0 deletions doc/AppBetaTestersLinkagesRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# app_store_connect.model.AppBetaTestersLinkagesRequest

## Load the model package
```dart
import 'package:app_store_connect/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data** | [**BuiltList&lt;BetaGroupRelationshipsBetaTestersDataInner&gt;**](BetaGroupRelationshipsBetaTestersDataInner.md) | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Loading

0 comments on commit 34b1f58

Please sign in to comment.