eas-cli 18.4.0 → 18.6.0
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/README.md +92 -90
- package/build/build/android/prepareJob.js +2 -2
- package/build/build/ios/prepareJob.js +2 -2
- package/build/build/metadata.js +2 -1
- package/build/commandUtils/EasCommand.js +23 -2
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +2 -0
- package/build/commandUtils/pagination.d.ts +2 -1
- package/build/commandUtils/pagination.js +3 -2
- package/build/commandUtils/workflow/fetchLogs.js +11 -2
- package/build/commandUtils/workflow/types.d.ts +5 -1
- package/build/commandUtils/workflow/utils.js +22 -16
- package/build/commands/deploy/index.js +18 -2
- package/build/commands/metadata/pull.d.ts +1 -0
- package/build/commands/metadata/pull.js +9 -4
- package/build/commands/metadata/push.d.ts +1 -0
- package/build/commands/metadata/push.js +9 -4
- package/build/commands/observe/events.d.ts +27 -0
- package/build/commands/observe/events.js +140 -0
- package/build/commands/observe/metrics.d.ts +21 -0
- package/build/commands/observe/metrics.js +111 -0
- package/build/commands/observe/versions.d.ts +19 -0
- package/build/commands/observe/versions.js +69 -0
- package/build/commands/project/onboarding.js +3 -0
- package/build/commands/workflow/logs.js +12 -12
- package/build/credentials/ios/IosCredentialsProvider.js +8 -4
- package/build/credentials/ios/utils/provisioningProfile.d.ts +1 -0
- package/build/credentials/ios/utils/provisioningProfile.js +15 -1
- package/build/graphql/generated.d.ts +1273 -73
- package/build/graphql/generated.js +59 -19
- package/build/graphql/queries/ObserveQuery.d.ts +35 -0
- package/build/graphql/queries/ObserveQuery.js +109 -0
- package/build/graphql/queries/UserQuery.js +3 -0
- package/build/graphql/types/Observe.d.ts +3 -0
- package/build/graphql/types/Observe.js +84 -0
- package/build/graphql/types/Update.js +3 -0
- package/build/metadata/apple/config/reader.d.ts +13 -1
- package/build/metadata/apple/config/reader.js +33 -0
- package/build/metadata/apple/config/writer.d.ts +11 -1
- package/build/metadata/apple/config/writer.js +57 -0
- package/build/metadata/apple/data.d.ts +7 -2
- package/build/metadata/apple/rules/infoRestrictedWords.js +6 -1
- package/build/metadata/apple/tasks/age-rating.d.ts +1 -1
- package/build/metadata/apple/tasks/age-rating.js +19 -3
- package/build/metadata/apple/tasks/app-clip.d.ts +37 -0
- package/build/metadata/apple/tasks/app-clip.js +404 -0
- package/build/metadata/apple/tasks/app-review-detail.js +7 -2
- package/build/metadata/apple/tasks/index.js +6 -0
- package/build/metadata/apple/tasks/previews.d.ts +18 -0
- package/build/metadata/apple/tasks/previews.js +212 -0
- package/build/metadata/apple/tasks/screenshots.d.ts +18 -0
- package/build/metadata/apple/tasks/screenshots.js +235 -0
- package/build/metadata/apple/types.d.ts +61 -1
- package/build/metadata/auth.d.ts +11 -1
- package/build/metadata/auth.js +96 -2
- package/build/metadata/download.d.ts +5 -1
- package/build/metadata/download.js +16 -8
- package/build/metadata/upload.d.ts +5 -1
- package/build/metadata/upload.js +11 -4
- package/build/observe/fetchEvents.d.ts +27 -0
- package/build/observe/fetchEvents.js +83 -0
- package/build/observe/fetchMetrics.d.ts +11 -0
- package/build/observe/fetchMetrics.js +78 -0
- package/build/observe/fetchVersions.d.ts +7 -0
- package/build/observe/fetchVersions.js +31 -0
- package/build/observe/formatEvents.d.ts +31 -0
- package/build/observe/formatEvents.js +99 -0
- package/build/observe/formatMetrics.d.ts +38 -0
- package/build/observe/formatMetrics.js +206 -0
- package/build/observe/formatVersions.d.ts +32 -0
- package/build/observe/formatVersions.js +92 -0
- package/build/observe/metricNames.d.ts +4 -0
- package/build/observe/metricNames.js +33 -0
- package/build/observe/startAndEndTime.d.ts +18 -0
- package/build/observe/startAndEndTime.js +36 -0
- package/build/project/projectUtils.d.ts +0 -2
- package/build/project/projectUtils.js +0 -12
- package/build/project/workflow.js +1 -1
- package/build/sentry.d.ts +2 -0
- package/build/sentry.js +22 -0
- package/build/update/utils.d.ts +2 -2
- package/build/update/utils.js +1 -0
- package/build/user/SessionManager.js +11 -0
- package/build/user/User.d.ts +2 -2
- package/build/user/User.js +3 -0
- package/build/user/expoBrowserAuthFlowLauncher.js +70 -13
- package/build/worker/upload.js +15 -5
- package/oclif.manifest.json +1794 -1306
- package/package.json +15 -11
- package/schema/metadata-0.json +213 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.6.0",
|
|
4
4
|
"description": "EAS command line tool",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"postpack": "rimraf oclif.manifest.json",
|
|
30
30
|
"prepack": "yarn rebuild && node ./scripts/prepack.js",
|
|
31
|
-
"rebuild": "rimraf build *.tsbuildinfo && yarn build",
|
|
31
|
+
"rebuild": "rimraf build \"*.tsbuildinfo\" && yarn build",
|
|
32
32
|
"build": "yarn typecheck-for-build && yarn copy-new-templates",
|
|
33
33
|
"build-allow-unused": "tsc --project tsconfig.allowUnused.json",
|
|
34
34
|
"watch": "yarn typecheck-for-build --watch --preserveWatchOutput",
|
|
@@ -39,19 +39,19 @@
|
|
|
39
39
|
"version": "yarn run -T oclif readme && node scripts/patch-readme && git add README.md",
|
|
40
40
|
"generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
|
|
41
41
|
"verify-graphql-code": "./scripts/verify-graphql.sh",
|
|
42
|
-
"clean": "rimraf dist build tmp node_modules yarn-error.log *.tsbuildinfo",
|
|
42
|
+
"clean": "rimraf dist build tmp node_modules yarn-error.log \"*.tsbuildinfo\"",
|
|
43
43
|
"copy-new-templates": "rimraf build/commandUtils/new/templates && mkdir -p build/commandUtils/new && cp -r src/commandUtils/new/templates build/commandUtils/new"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@expo/apple-utils": "2.1.
|
|
46
|
+
"@expo/apple-utils": "2.1.19",
|
|
47
47
|
"@expo/code-signing-certificates": "0.0.5",
|
|
48
|
-
"@expo/config": "
|
|
49
|
-
"@expo/config-plugins": "
|
|
50
|
-
"@expo/eas-build-job": "18.
|
|
51
|
-
"@expo/eas-json": "18.
|
|
48
|
+
"@expo/config": "55.0.10",
|
|
49
|
+
"@expo/config-plugins": "55.0.7",
|
|
50
|
+
"@expo/eas-build-job": "18.6.0",
|
|
51
|
+
"@expo/eas-json": "18.6.0",
|
|
52
52
|
"@expo/env": "^1.0.0",
|
|
53
53
|
"@expo/json-file": "8.3.3",
|
|
54
|
-
"@expo/logger": "18.0
|
|
54
|
+
"@expo/logger": "18.5.0",
|
|
55
55
|
"@expo/multipart-body-parser": "2.0.0",
|
|
56
56
|
"@expo/osascript": "2.1.4",
|
|
57
57
|
"@expo/package-manager": "1.9.10",
|
|
@@ -63,11 +63,12 @@
|
|
|
63
63
|
"@expo/results": "1.0.0",
|
|
64
64
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
65
65
|
"@expo/spawn-async": "1.7.2",
|
|
66
|
-
"@expo/steps": "18.
|
|
66
|
+
"@expo/steps": "18.6.0",
|
|
67
67
|
"@expo/timeago.js": "1.0.0",
|
|
68
68
|
"@oclif/core": "^4.8.3",
|
|
69
69
|
"@oclif/plugin-autocomplete": "^3.2.40",
|
|
70
70
|
"@segment/ajv-human-errors": "^2.1.2",
|
|
71
|
+
"@sentry/node": "7.77.0",
|
|
71
72
|
"@urql/core": "4.0.11",
|
|
72
73
|
"@urql/exchange-retry": "1.2.0",
|
|
73
74
|
"ajv": "8.11.0",
|
|
@@ -203,6 +204,9 @@
|
|
|
203
204
|
"metadata": {
|
|
204
205
|
"description": "manage store configuration"
|
|
205
206
|
},
|
|
207
|
+
"observe": {
|
|
208
|
+
"description": "monitor app performance metrics"
|
|
209
|
+
},
|
|
206
210
|
"project": {
|
|
207
211
|
"description": "manage project"
|
|
208
212
|
},
|
|
@@ -243,5 +247,5 @@
|
|
|
243
247
|
"engines": {
|
|
244
248
|
"node": ">=20.0.0"
|
|
245
249
|
},
|
|
246
|
-
"gitHead": "
|
|
250
|
+
"gitHead": "0fb6dfc334f0e496d701ff2afad0d15da9a83478"
|
|
247
251
|
}
|
package/schema/metadata-0.json
CHANGED
|
@@ -315,6 +315,42 @@
|
|
|
315
315
|
"liveEdits": true,
|
|
316
316
|
"optional": true
|
|
317
317
|
}
|
|
318
|
+
},
|
|
319
|
+
"screenshots": {
|
|
320
|
+
"type": "object",
|
|
321
|
+
"description": "Screenshots for this locale, organized by display type (e.g., APP_IPHONE_67, APP_IPAD_PRO_129)",
|
|
322
|
+
"additionalProperties": {
|
|
323
|
+
"type": "array",
|
|
324
|
+
"items": {
|
|
325
|
+
"type": "string"
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"previews": {
|
|
330
|
+
"type": "object",
|
|
331
|
+
"description": "Video previews for this locale, organized by display type (e.g., IPHONE_67, IPAD_PRO_129)",
|
|
332
|
+
"additionalProperties": {
|
|
333
|
+
"oneOf": [
|
|
334
|
+
{
|
|
335
|
+
"type": "string"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"type": "object",
|
|
339
|
+
"properties": {
|
|
340
|
+
"path": {
|
|
341
|
+
"type": "string",
|
|
342
|
+
"description": "Video file path (relative to project root)"
|
|
343
|
+
},
|
|
344
|
+
"previewFrameTimeCode": {
|
|
345
|
+
"type": "string",
|
|
346
|
+
"description": "Optional preview frame time code (e.g., '00:05:00' for 5 seconds)"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"required": ["path"],
|
|
350
|
+
"additionalProperties": false
|
|
351
|
+
}
|
|
352
|
+
]
|
|
353
|
+
}
|
|
318
354
|
}
|
|
319
355
|
}
|
|
320
356
|
},
|
|
@@ -479,6 +515,57 @@
|
|
|
479
515
|
"lootBox": {
|
|
480
516
|
"type": "boolean",
|
|
481
517
|
"description": "Does your app contain purchasable loot boxes? These virtual containers provide players with in-game items, including functional cards or cosmetic modifications, based on random chance."
|
|
518
|
+
},
|
|
519
|
+
"advertising": {
|
|
520
|
+
"type": "boolean",
|
|
521
|
+
"description": "Does your app display advertising?"
|
|
522
|
+
},
|
|
523
|
+
"ageAssurance": {
|
|
524
|
+
"type": "boolean",
|
|
525
|
+
"description": "Does your app implement age assurance mechanisms?"
|
|
526
|
+
},
|
|
527
|
+
"ageRatingOverrideV2": {
|
|
528
|
+
"oneOf": [
|
|
529
|
+
{
|
|
530
|
+
"type": "null"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"$ref": "#/definitions/apple/AppleAgeRatingOverrideV2"
|
|
534
|
+
}
|
|
535
|
+
],
|
|
536
|
+
"description": "Override the age rating using the V2 rating system. Allows setting a more granular age rating than the auto-calculated value."
|
|
537
|
+
},
|
|
538
|
+
"developerAgeRatingInfoUrl": {
|
|
539
|
+
"oneOf": [
|
|
540
|
+
{
|
|
541
|
+
"type": "null"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"type": "string",
|
|
545
|
+
"format": "uri"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"description": "URL to additional developer-provided information about the app's age rating."
|
|
549
|
+
},
|
|
550
|
+
"gunsOrOtherWeapons": {
|
|
551
|
+
"$ref": "#/definitions/apple/AppleRating",
|
|
552
|
+
"description": "Does the app contain depictions of guns or other weapons?"
|
|
553
|
+
},
|
|
554
|
+
"healthOrWellnessTopics": {
|
|
555
|
+
"type": "boolean",
|
|
556
|
+
"description": "Does your app contain health or wellness topics?"
|
|
557
|
+
},
|
|
558
|
+
"messagingAndChat": {
|
|
559
|
+
"type": "boolean",
|
|
560
|
+
"description": "Does your app contain messaging or chat functionality?"
|
|
561
|
+
},
|
|
562
|
+
"parentalControls": {
|
|
563
|
+
"type": "boolean",
|
|
564
|
+
"description": "Does your app implement parental controls?"
|
|
565
|
+
},
|
|
566
|
+
"userGeneratedContent": {
|
|
567
|
+
"type": "boolean",
|
|
568
|
+
"description": "Does your app contain or display user-generated content?"
|
|
482
569
|
}
|
|
483
570
|
}
|
|
484
571
|
},
|
|
@@ -601,6 +688,118 @@
|
|
|
601
688
|
}
|
|
602
689
|
}
|
|
603
690
|
},
|
|
691
|
+
"AppleAppClip": {
|
|
692
|
+
"type": "object",
|
|
693
|
+
"additionalProperties": false,
|
|
694
|
+
"description": "App Clip metadata. Only applies to apps that ship an App Clip target.",
|
|
695
|
+
"properties": {
|
|
696
|
+
"defaultExperience": {
|
|
697
|
+
"$ref": "#/definitions/apple/AppleAppClipDefaultExperience",
|
|
698
|
+
"description": "The default experience for this App Clip. There is exactly one per app."
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"AppleAppClipDefaultExperience": {
|
|
703
|
+
"type": "object",
|
|
704
|
+
"additionalProperties": false,
|
|
705
|
+
"description": "Default experience for an App Clip - the configuration shown when invoked without a custom experience.",
|
|
706
|
+
"properties": {
|
|
707
|
+
"action": {
|
|
708
|
+
"enum": ["OPEN", "VIEW", "PLAY"],
|
|
709
|
+
"description": "Action button shown in the App Clip card."
|
|
710
|
+
},
|
|
711
|
+
"releaseWithAppStoreVersion": {
|
|
712
|
+
"type": "boolean",
|
|
713
|
+
"description": "Whether to release this default experience alongside the next App Store version."
|
|
714
|
+
},
|
|
715
|
+
"reviewDetail": {
|
|
716
|
+
"$ref": "#/definitions/apple/AppleAppClipReviewDetail",
|
|
717
|
+
"description": "App Store review information for the App Clip default experience."
|
|
718
|
+
},
|
|
719
|
+
"info": {
|
|
720
|
+
"$ref": "#/definitions/apple/AppleAppClipInfo",
|
|
721
|
+
"description": "Localized subtitle and header image for the App Clip default experience."
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
"AppleAppClipReviewDetail": {
|
|
726
|
+
"type": "object",
|
|
727
|
+
"additionalProperties": false,
|
|
728
|
+
"description": "App Store review detail for an App Clip default experience.",
|
|
729
|
+
"required": ["invocationUrls"],
|
|
730
|
+
"properties": {
|
|
731
|
+
"invocationUrls": {
|
|
732
|
+
"type": "array",
|
|
733
|
+
"description": "Invocation URLs that App Review will use to launch the App Clip during review.",
|
|
734
|
+
"items": {
|
|
735
|
+
"type": "string",
|
|
736
|
+
"format": "uri"
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
"AppleAppClipLocalizedInfo": {
|
|
742
|
+
"type": "object",
|
|
743
|
+
"additionalProperties": false,
|
|
744
|
+
"description": "Localized subtitle and header image for an App Clip default experience.",
|
|
745
|
+
"properties": {
|
|
746
|
+
"subtitle": {
|
|
747
|
+
"type": "string",
|
|
748
|
+
"description": "Subtitle shown in the App Clip card. Apple limits this to 43 characters.",
|
|
749
|
+
"maxLength": 43
|
|
750
|
+
},
|
|
751
|
+
"headerImage": {
|
|
752
|
+
"type": "string",
|
|
753
|
+
"description": "Relative path (from project root) to the App Clip header image PNG."
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"AppleAppClipInfo": {
|
|
758
|
+
"type": "object",
|
|
759
|
+
"description": "Localized App Clip information, keyed by locale.",
|
|
760
|
+
"additionalProperties": false,
|
|
761
|
+
"properties": {
|
|
762
|
+
"ar-SA": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Arabic" },
|
|
763
|
+
"ca": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Catalan" },
|
|
764
|
+
"zh-Hans": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Chinese (Simplified)" },
|
|
765
|
+
"zh-Hant": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Chinese (Traditional)" },
|
|
766
|
+
"hr": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Croatian" },
|
|
767
|
+
"cs": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Czech" },
|
|
768
|
+
"da": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Danish" },
|
|
769
|
+
"nl-NL": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Dutch" },
|
|
770
|
+
"en-AU": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "English (Australia)" },
|
|
771
|
+
"en-CA": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "English (Canada)" },
|
|
772
|
+
"en-GB": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "English (U.K.)" },
|
|
773
|
+
"en-US": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "English (U.S.)" },
|
|
774
|
+
"fi": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Finnish" },
|
|
775
|
+
"fr-FR": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "French" },
|
|
776
|
+
"fr-CA": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "French (Canada)" },
|
|
777
|
+
"de-DE": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "German" },
|
|
778
|
+
"el": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Greek" },
|
|
779
|
+
"he": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Hebrew" },
|
|
780
|
+
"hi": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Hindi" },
|
|
781
|
+
"hu": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Hungarian" },
|
|
782
|
+
"id": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Indonesian" },
|
|
783
|
+
"it": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Italian" },
|
|
784
|
+
"ja": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Japanese" },
|
|
785
|
+
"ko": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Korean" },
|
|
786
|
+
"ms": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Malay" },
|
|
787
|
+
"no": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Norwegian" },
|
|
788
|
+
"pl": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Polish" },
|
|
789
|
+
"pt-BR": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Portuguese (Brazil)" },
|
|
790
|
+
"pt-PT": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Portuguese (Portugal)" },
|
|
791
|
+
"ro": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Romanian" },
|
|
792
|
+
"ru": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Russian" },
|
|
793
|
+
"sk": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Slovak" },
|
|
794
|
+
"es-MX": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Spanish (Mexico)" },
|
|
795
|
+
"es-ES": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Spanish (Spain)" },
|
|
796
|
+
"sv": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Swedish" },
|
|
797
|
+
"th": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Thai" },
|
|
798
|
+
"tr": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Turkish" },
|
|
799
|
+
"uk": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Ukrainian" },
|
|
800
|
+
"vi": { "$ref": "#/definitions/apple/AppleAppClipLocalizedInfo", "description": "Vietnamese" }
|
|
801
|
+
}
|
|
802
|
+
},
|
|
604
803
|
"AppleAgeRatingOverride": {
|
|
605
804
|
"enum": [
|
|
606
805
|
"NONE",
|
|
@@ -614,6 +813,16 @@
|
|
|
614
813
|
"FIFTEEN_PLUS",
|
|
615
814
|
"NINETEEN_PLUS"
|
|
616
815
|
]
|
|
816
|
+
},
|
|
817
|
+
"AppleAgeRatingOverrideV2": {
|
|
818
|
+
"enum": [
|
|
819
|
+
"NONE",
|
|
820
|
+
"NINE_PLUS",
|
|
821
|
+
"THIRTEEN_PLUS",
|
|
822
|
+
"SIXTEEN_PLUS",
|
|
823
|
+
"EIGHTEEN_PLUS",
|
|
824
|
+
"UNRATED"
|
|
825
|
+
]
|
|
617
826
|
}
|
|
618
827
|
},
|
|
619
828
|
"AppleConfig": {
|
|
@@ -821,6 +1030,10 @@
|
|
|
821
1030
|
"review": {
|
|
822
1031
|
"$ref": "#/definitions/apple/AppleReview",
|
|
823
1032
|
"description": "Info for the App Store reviewer"
|
|
1033
|
+
},
|
|
1034
|
+
"appClip": {
|
|
1035
|
+
"$ref": "#/definitions/apple/AppleAppClip",
|
|
1036
|
+
"description": "App Clip metadata. Only applies to apps that ship an App Clip target."
|
|
824
1037
|
}
|
|
825
1038
|
}
|
|
826
1039
|
}
|