diff --git a/app_store_connect_api_openapi.json b/app_store_connect_api_openapi.json index 3921da1..f834303 100644 --- a/app_store_connect_api_openapi.json +++ b/app_store_connect_api_openapi.json @@ -2,7 +2,7 @@ "openapi" : "3.0.1", "info" : { "title" : "App Store Connect API", - "version" : "3.6.0", + "version" : "3.7.0", "x-platform" : "app_store_connect_api" }, "servers" : [ { @@ -589,7 +589,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "publicKey", "app" ] + "enum" : [ "publicKey" ] } }, "style" : "form", @@ -738,7 +738,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "publicKey", "app" ] + "enum" : [ "publicKey" ] } }, "style" : "form", @@ -1270,7 +1270,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersion", "versions" ] + "enum" : [ "versions" ] } }, "style" : "form", @@ -1553,7 +1553,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "accessType", "stoppedDueToInactivity", "app", "reports" ] + "enum" : [ "accessType", "stoppedDueToInactivity", "reports" ] } }, "style" : "form", @@ -1978,7 +1978,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "app", "territoryAvailabilities" ] + "enum" : [ "availableInNewTerritories", "territoryAvailabilities" ] } }, "style" : "form", @@ -2087,119 +2087,57 @@ "required" : true } ] }, - "/v1/appAvailabilities" : { - "post" : { - "tags" : [ "AppAvailabilities" ], - "operationId" : "appAvailabilities_createInstance", - "deprecated" : true, - "requestBody" : { - "description" : "AppAvailability representation", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppAvailabilityCreateRequest" - } - } - }, - "required" : true - }, - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "422" : { - "description" : "Unprocessable request entity error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "201" : { - "description" : "Single AppAvailability", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppAvailabilityResponse" - } - } - } - }, - "409" : { - "description" : "Request entity error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - } - } - } - }, - "/v1/appAvailabilities/{id}" : { + "/v1/appCategories" : { "get" : { - "tags" : [ "AppAvailabilities" ], - "operationId" : "appAvailabilities_getInstance", - "deprecated" : true, + "tags" : [ "AppCategories" ], + "operationId" : "appCategories_getCollection", "parameters" : [ { - "name" : "fields[appAvailabilities]", + "name" : "filter[platforms]", "in" : "query", - "description" : "the fields to include for returned resources of type appAvailabilities", + "description" : "filter by attribute 'platforms'", "schema" : { "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "app", "availableTerritories" ] + "enum" : [ "IOS", "MAC_OS", "TV_OS", "VISION_OS" ] } }, "style" : "form", "explode" : false, "required" : false }, { - "name" : "fields[territories]", + "name" : "exists[parent]", "in" : "query", - "description" : "the fields to include for returned resources of type territories", + "description" : "filter by existence or non-existence of related 'parent'", + "schema" : { + "type" : "boolean" + }, + "style" : "form", + "explode" : false, + "required" : false + }, { + "name" : "fields[appCategories]", + "in" : "query", + "description" : "the fields to include for returned resources of type appCategories", "schema" : { "type" : "array", "items" : { "type" : "string", - "enum" : [ "currency" ] + "enum" : [ "platforms", "subcategories", "parent" ] } }, "style" : "form", "explode" : false, "required" : false + }, { + "name" : "limit", + "in" : "query", + "description" : "maximum resources per page", + "schema" : { + "type" : "integer", + "maximum" : 200 + }, + "style" : "form" }, { "name" : "include", "in" : "query", @@ -2208,16 +2146,16 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "app", "availableTerritories" ] + "enum" : [ "subcategories", "parent" ] } }, "style" : "form", "explode" : false, "required" : false }, { - "name" : "limit[availableTerritories]", + "name" : "limit[subcategories]", "in" : "query", - "description" : "maximum number of related availableTerritories returned (when they are included)", + "description" : "maximum number of related subcategories returned (when they are included)", "schema" : { "type" : "integer", "maximum" : 50 @@ -2256,68 +2194,24 @@ } } }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, "200" : { - "description" : "Single AppAvailability", + "description" : "List of AppCategories", "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/AppAvailabilityResponse" + "$ref" : "#/components/schemas/AppCategoriesResponse" } } } } } - }, - "parameters" : [ { - "name" : "id", - "in" : "path", - "description" : "the id of the requested resource", - "schema" : { - "type" : "string" - }, - "style" : "simple", - "required" : true - } ] + } }, - "/v1/appCategories" : { + "/v1/appCategories/{id}" : { "get" : { "tags" : [ "AppCategories" ], - "operationId" : "appCategories_getCollection", + "operationId" : "appCategories_getInstance", "parameters" : [ { - "name" : "filter[platforms]", - "in" : "query", - "description" : "filter by attribute 'platforms'", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "IOS", "MAC_OS", "TV_OS", "VISION_OS" ] - } - }, - "style" : "form", - "explode" : false, - "required" : false - }, { - "name" : "exists[parent]", - "in" : "query", - "description" : "filter by existence or non-existence of related 'parent'", - "schema" : { - "type" : "boolean" - }, - "style" : "form", - "explode" : false, - "required" : false - }, { "name" : "fields[appCategories]", "in" : "query", "description" : "the fields to include for returned resources of type appCategories", @@ -2331,15 +2225,6 @@ "style" : "form", "explode" : false, "required" : false - }, { - "name" : "limit", - "in" : "query", - "description" : "maximum resources per page", - "schema" : { - "type" : "integer", - "maximum" : 200 - }, - "style" : "form" }, { "name" : "include", "in" : "query", @@ -2396,141 +2281,54 @@ } } }, + "404" : { + "description" : "Not found error", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, "200" : { - "description" : "List of AppCategories", + "description" : "Single AppCategory", "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/AppCategoriesResponse" + "$ref" : "#/components/schemas/AppCategoryResponse" } } } } } - } + }, + "parameters" : [ { + "name" : "id", + "in" : "path", + "description" : "the id of the requested resource", + "schema" : { + "type" : "string" + }, + "style" : "simple", + "required" : true + } ] }, - "/v1/appCategories/{id}" : { - "get" : { - "tags" : [ "AppCategories" ], - "operationId" : "appCategories_getInstance", - "parameters" : [ { - "name" : "fields[appCategories]", - "in" : "query", - "description" : "the fields to include for returned resources of type appCategories", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "platforms", "subcategories", "parent" ] - } - }, - "style" : "form", - "explode" : false, - "required" : false - }, { - "name" : "include", - "in" : "query", - "description" : "comma-separated list of relationships to include", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "subcategories", "parent" ] + "/v1/appClipAdvancedExperienceImages" : { + "post" : { + "tags" : [ "AppClipAdvancedExperienceImages" ], + "operationId" : "appClipAdvancedExperienceImages_createInstance", + "requestBody" : { + "description" : "AppClipAdvancedExperienceImage representation", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AppClipAdvancedExperienceImageCreateRequest" + } } }, - "style" : "form", - "explode" : false, - "required" : false - }, { - "name" : "limit[subcategories]", - "in" : "query", - "description" : "maximum number of related subcategories returned (when they are included)", - "schema" : { - "type" : "integer", - "maximum" : 50 - }, - "style" : "form", - "required" : false - } ], - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "200" : { - "description" : "Single AppCategory", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppCategoryResponse" - } - } - } - } - } - }, - "parameters" : [ { - "name" : "id", - "in" : "path", - "description" : "the id of the requested resource", - "schema" : { - "type" : "string" - }, - "style" : "simple", - "required" : true - } ] - }, - "/v1/appClipAdvancedExperienceImages" : { - "post" : { - "tags" : [ "AppClipAdvancedExperienceImages" ], - "operationId" : "appClipAdvancedExperienceImages_createInstance", - "requestBody" : { - "description" : "AppClipAdvancedExperienceImage representation", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppClipAdvancedExperienceImageCreateRequest" - } - } - }, - "required" : true - }, + "required" : true + }, "responses" : { "400" : { "description" : "Parameter error(s)", @@ -2607,7 +2405,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState" ] } }, "style" : "form", @@ -2856,7 +2654,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "link", "version", "status", "action", "isPoweredBy", "place", "placeStatus", "businessCategory", "defaultLanguage", "removed", "appClip", "headerImage", "localizations" ] + "enum" : [ "link", "version", "status", "action", "isPoweredBy", "place", "placeStatus", "businessCategory", "defaultLanguage", "appClip", "headerImage", "localizations" ] } }, "style" : "form", @@ -3406,7 +3204,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "appClipDefaultExperienceLocalization" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "appClipDefaultExperienceLocalization" ] } }, "style" : "form", @@ -3728,7 +3526,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -4102,7 +3900,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "appClipDefaultExperienceLocalization" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "appClipDefaultExperienceLocalization" ] } }, "style" : "form", @@ -4359,7 +4157,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -5202,7 +5000,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions", "appStoreVersionTemplate", "customProductPageTemplate" ] + "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions" ] } }, "style" : "form", @@ -5548,7 +5346,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appEncryptionDeclaration" ] + "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState" ] } }, "style" : "form", @@ -5772,7 +5570,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -5787,7 +5585,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appEncryptionDeclaration" ] + "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState" ] } }, "style" : "form", @@ -5974,7 +5772,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -5989,7 +5787,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appEncryptionDeclaration" ] + "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState" ] } }, "style" : "form", @@ -6189,7 +5987,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "assetToken", "uploadOperations", "assetDeliveryState", "uploaded", "appEventAssetType", "appEventLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "assetToken", "uploadOperations", "assetDeliveryState", "appEventAssetType", "appEventLocalization" ] } }, "style" : "form", @@ -6203,7 +6001,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "previewFrameTimeCode", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appEventAssetType", "appEventLocalization" ] + "enum" : [ "fileSize", "fileName", "previewFrameTimeCode", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appEventAssetType", "appEventLocalization" ] } }, "style" : "form", @@ -6545,7 +6343,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "assetToken", "uploadOperations", "assetDeliveryState", "uploaded", "appEventAssetType", "appEventLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "assetToken", "uploadOperations", "assetDeliveryState", "appEventAssetType", "appEventLocalization" ] } }, "style" : "form", @@ -6867,7 +6665,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "previewFrameTimeCode", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appEventAssetType", "appEventLocalization" ] + "enum" : [ "fileSize", "fileName", "previewFrameTimeCode", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appEventAssetType", "appEventLocalization" ] } }, "style" : "form", @@ -7189,7 +6987,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "app", "localizations" ] + "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "localizations" ] } }, "style" : "form", @@ -7778,7 +7576,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] + "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "franceAgeRating", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] } }, "style" : "form", @@ -8002,17 +7800,16 @@ "required" : true } ] }, - "/v1/appPreOrders" : { + "/v1/appPreviewSets" : { "post" : { - "tags" : [ "AppPreOrders" ], - "operationId" : "appPreOrders_createInstance", - "deprecated" : true, + "tags" : [ "AppPreviewSets" ], + "operationId" : "appPreviewSets_createInstance", "requestBody" : { - "description" : "AppPreOrder representation", + "description" : "AppPreviewSet representation", "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/AppPreOrderCreateRequest" + "$ref" : "#/components/schemas/AppPreviewSetCreateRequest" } } }, @@ -8060,11 +7857,11 @@ } }, "201" : { - "description" : "Single AppPreOrder", + "description" : "Single AppPreviewSet", "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/AppPreOrderResponse" + "$ref" : "#/components/schemas/AppPreviewSetResponse" } } } @@ -8082,108 +7879,63 @@ } } }, - "/v1/appPreOrders/{id}" : { + "/v1/appPreviewSets/{id}" : { "get" : { - "tags" : [ "AppPreOrders" ], - "operationId" : "appPreOrders_getInstance", - "deprecated" : true, + "tags" : [ "AppPreviewSets" ], + "operationId" : "appPreviewSets_getInstance", "parameters" : [ { - "name" : "fields[appPreOrders]", + "name" : "fields[appPreviewSets]", "in" : "query", - "description" : "the fields to include for returned resources of type appPreOrders", + "description" : "the fields to include for returned resources of type appPreviewSets", "schema" : { "type" : "array", "items" : { "type" : "string", - "enum" : [ "preOrderAvailableDate", "appReleaseDate", "app" ] + "enum" : [ "previewType", "appStoreVersionLocalization", "appCustomProductPageLocalization", "appStoreVersionExperimentTreatmentLocalization", "appPreviews" ] } }, "style" : "form", "explode" : false, "required" : false }, { - "name" : "include", + "name" : "fields[appPreviews]", "in" : "query", - "description" : "comma-separated list of relationships to include", + "description" : "the fields to include for returned resources of type appPreviews", "schema" : { "type" : "array", "items" : { "type" : "string", - "enum" : [ "app" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appPreviewSet" ] } }, "style" : "form", "explode" : false, "required" : false - } ], - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } + }, { + "name" : "include", + "in" : "query", + "description" : "comma-separated list of relationships to include", + "schema" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "appStoreVersionLocalization", "appCustomProductPageLocalization", "appStoreVersionExperimentTreatmentLocalization", "appPreviews" ] } }, - "200" : { - "description" : "Single AppPreOrder", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppPreOrderResponse" - } - } - } - } - } - }, - "patch" : { - "tags" : [ "AppPreOrders" ], - "operationId" : "appPreOrders_updateInstance", - "deprecated" : true, - "requestBody" : { - "description" : "AppPreOrder representation", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppPreOrderUpdateRequest" - } - } + "style" : "form", + "explode" : false, + "required" : false + }, { + "name" : "limit[appPreviews]", + "in" : "query", + "description" : "maximum number of related appPreviews returned (when they are included)", + "schema" : { + "type" : "integer", + "maximum" : 50 }, - "required" : true - }, + "style" : "form", + "required" : false + } ], "responses" : { "400" : { "description" : "Parameter error(s)", @@ -8225,32 +7977,12 @@ } } }, - "422" : { - "description" : "Unprocessable request entity error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, "200" : { - "description" : "Single AppPreOrder", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppPreOrderResponse" - } - } - } - }, - "409" : { - "description" : "Request entity error(s)", + "description" : "Single AppPreviewSet", "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" + "$ref" : "#/components/schemas/AppPreviewSetResponse" } } } @@ -8258,9 +7990,8 @@ } }, "delete" : { - "tags" : [ "AppPreOrders" ], - "operationId" : "appPreOrders_deleteInstance", - "deprecated" : true, + "tags" : [ "AppPreviewSets" ], + "operationId" : "appPreviewSets_deleteInstance", "responses" : { "400" : { "description" : "Parameter error(s)", @@ -8328,16 +8059,16 @@ "required" : true } ] }, - "/v1/appPreviewSets" : { + "/v1/appPreviews" : { "post" : { - "tags" : [ "AppPreviewSets" ], - "operationId" : "appPreviewSets_createInstance", + "tags" : [ "AppPreviews" ], + "operationId" : "appPreviews_createInstance", "requestBody" : { - "description" : "AppPreviewSet representation", + "description" : "AppPreview representation", "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/AppPreviewSetCreateRequest" + "$ref" : "#/components/schemas/AppPreviewCreateRequest" } } }, @@ -8385,11 +8116,11 @@ } }, "201" : { - "description" : "Single AppPreviewSet", + "description" : "Single AppPreview", "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/AppPreviewSetResponse" + "$ref" : "#/components/schemas/AppPreviewResponse" } } } @@ -8407,25 +8138,11 @@ } } }, - "/v1/appPreviewSets/{id}" : { + "/v1/appPreviews/{id}" : { "get" : { - "tags" : [ "AppPreviewSets" ], - "operationId" : "appPreviewSets_getInstance", + "tags" : [ "AppPreviews" ], + "operationId" : "appPreviews_getInstance", "parameters" : [ { - "name" : "fields[appPreviewSets]", - "in" : "query", - "description" : "the fields to include for returned resources of type appPreviewSets", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "previewType", "appStoreVersionLocalization", "appCustomProductPageLocalization", "appStoreVersionExperimentTreatmentLocalization", "appPreviews" ] - } - }, - "style" : "form", - "explode" : false, - "required" : false - }, { "name" : "fields[appPreviews]", "in" : "query", "description" : "the fields to include for returned resources of type appPreviews", @@ -8433,7 +8150,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appPreviewSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appPreviewSet" ] } }, "style" : "form", @@ -8447,22 +8164,12 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersionLocalization", "appCustomProductPageLocalization", "appStoreVersionExperimentTreatmentLocalization", "appPreviews" ] + "enum" : [ "appPreviewSet" ] } }, "style" : "form", "explode" : false, "required" : false - }, { - "name" : "limit[appPreviews]", - "in" : "query", - "description" : "maximum number of related appPreviews returned (when they are included)", - "schema" : { - "type" : "integer", - "maximum" : 50 - }, - "style" : "form", - "required" : false } ], "responses" : { "400" : { @@ -8506,266 +8213,31 @@ } }, "200" : { - "description" : "Single AppPreviewSet", + "description" : "Single AppPreview", "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/AppPreviewSetResponse" + "$ref" : "#/components/schemas/AppPreviewResponse" } } } } } }, - "delete" : { - "tags" : [ "AppPreviewSets" ], - "operationId" : "appPreviewSets_deleteInstance", - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "409" : { - "description" : "Request entity error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "204" : { - "description" : "Success (no content)" - } - } - }, - "parameters" : [ { - "name" : "id", - "in" : "path", - "description" : "the id of the requested resource", - "schema" : { - "type" : "string" - }, - "style" : "simple", - "required" : true - } ] - }, - "/v1/appPreviews" : { - "post" : { - "tags" : [ "AppPreviews" ], - "operationId" : "appPreviews_createInstance", - "requestBody" : { - "description" : "AppPreview representation", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppPreviewCreateRequest" - } - } - }, - "required" : true - }, - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "422" : { - "description" : "Unprocessable request entity error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "201" : { - "description" : "Single AppPreview", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppPreviewResponse" - } - } - } - }, - "409" : { - "description" : "Request entity error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - } - } - } - }, - "/v1/appPreviews/{id}" : { - "get" : { - "tags" : [ "AppPreviews" ], - "operationId" : "appPreviews_getInstance", - "parameters" : [ { - "name" : "fields[appPreviews]", - "in" : "query", - "description" : "the fields to include for returned resources of type appPreviews", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appPreviewSet" ] - } - }, - "style" : "form", - "explode" : false, - "required" : false - }, { - "name" : "include", - "in" : "query", - "description" : "comma-separated list of relationships to include", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "appPreviewSet" ] - } - }, - "style" : "form", - "explode" : false, - "required" : false - } ], - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "200" : { - "description" : "Single AppPreview", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppPreviewResponse" - } - } - } - } - } - }, - "patch" : { - "tags" : [ "AppPreviews" ], - "operationId" : "appPreviews_updateInstance", - "requestBody" : { - "description" : "AppPreview representation", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppPreviewUpdateRequest" - } - } - }, - "required" : true - }, + "patch" : { + "tags" : [ "AppPreviews" ], + "operationId" : "appPreviews_updateInstance", + "requestBody" : { + "description" : "AppPreview representation", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AppPreviewUpdateRequest" + } + } + }, + "required" : true + }, "responses" : { "400" : { "description" : "Parameter error(s)", @@ -9335,7 +8807,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "appScreenshotSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "appScreenshotSet" ] } }, "style" : "form", @@ -9580,7 +9052,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "appScreenshotSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "appScreenshotSet" ] } }, "style" : "form", @@ -9902,7 +9374,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreReviewDetail" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreReviewDetail" ] } }, "style" : "form", @@ -10238,7 +9710,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreReviewDetail" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreReviewDetail" ] } }, "style" : "form", @@ -11140,7 +10612,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] + "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] } }, "style" : "form", @@ -11498,7 +10970,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments" ] } }, "style" : "form", @@ -12820,7 +12292,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber", "appStoreVersion" ] + "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber" ] } }, "style" : "form", @@ -12848,7 +12320,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreVersion" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreVersion" ] } }, "style" : "form", @@ -12891,7 +12363,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -12905,7 +12377,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] } }, "style" : "form", @@ -12919,7 +12391,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersion", "versions" ] + "enum" : [ "versions" ] } }, "style" : "form", @@ -13353,7 +12825,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -13493,7 +12965,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] + "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "franceAgeRating", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] } }, "style" : "form", @@ -13527,21 +12999,6 @@ "style" : "form", "explode" : false, "required" : false - }, { - "name" : "fields[appPreOrders]", - "in" : "query", - "description" : "the fields to include for returned resources of type appPreOrders", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "preOrderAvailableDate", "appReleaseDate", "app" ] - } - }, - "style" : "form", - "explode" : false, - "required" : false, - "deprecated" : true }, { "name" : "fields[inAppPurchases]", "in" : "query", @@ -13550,7 +13007,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "productId", "inAppPurchaseType", "state", "apps", "name", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "referenceName", "productId", "inAppPurchaseType", "state", "apps", "name", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -13564,7 +13021,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "app", "subscriptions", "subscriptionGroupLocalizations" ] + "enum" : [ "referenceName", "subscriptions", "subscriptionGroupLocalizations" ] } }, "style" : "form", @@ -13593,7 +13050,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions", "appStoreVersionTemplate", "customProductPageTemplate" ] + "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions" ] } }, "style" : "form", @@ -13607,7 +13064,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -13621,7 +13078,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "app", "localizations" ] + "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "localizations" ] } }, "style" : "form", @@ -13635,7 +13092,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "platform", "submittedDate", "state", "submitted", "canceled", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] + "enum" : [ "platform", "submittedDate", "state", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] } }, "style" : "form", @@ -13677,7 +13134,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] + "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] } }, "style" : "form", @@ -13700,7 +13157,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appEncryptionDeclarations", "ciProduct", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "endUserLicenseAgreement", "preOrder", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "gameCenterDetail", "appStoreVersionExperimentsV2" ] + "enum" : [ "appEncryptionDeclarations", "ciProduct", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "endUserLicenseAgreement", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "gameCenterDetail", "appStoreVersionExperimentsV2" ] } }, "style" : "form", @@ -13935,7 +13392,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -14075,7 +13532,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] + "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "franceAgeRating", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] } }, "style" : "form", @@ -14109,21 +13566,6 @@ "style" : "form", "explode" : false, "required" : false - }, { - "name" : "fields[appPreOrders]", - "in" : "query", - "description" : "the fields to include for returned resources of type appPreOrders", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "preOrderAvailableDate", "appReleaseDate", "app" ] - } - }, - "style" : "form", - "explode" : false, - "required" : false, - "deprecated" : true }, { "name" : "fields[inAppPurchases]", "in" : "query", @@ -14132,7 +13574,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "productId", "inAppPurchaseType", "state", "apps", "name", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "referenceName", "productId", "inAppPurchaseType", "state", "apps", "name", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -14146,7 +13588,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "app", "subscriptions", "subscriptionGroupLocalizations" ] + "enum" : [ "referenceName", "subscriptions", "subscriptionGroupLocalizations" ] } }, "style" : "form", @@ -14175,7 +13617,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions", "appStoreVersionTemplate", "customProductPageTemplate" ] + "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions" ] } }, "style" : "form", @@ -14189,7 +13631,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -14203,7 +13645,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "app", "localizations" ] + "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "localizations" ] } }, "style" : "form", @@ -14217,7 +13659,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "platform", "submittedDate", "state", "submitted", "canceled", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] + "enum" : [ "platform", "submittedDate", "state", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] } }, "style" : "form", @@ -14259,7 +13701,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] + "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] } }, "style" : "form", @@ -14273,7 +13715,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appEncryptionDeclarations", "ciProduct", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "endUserLicenseAgreement", "preOrder", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "gameCenterDetail", "appStoreVersionExperimentsV2" ] + "enum" : [ "appEncryptionDeclarations", "ciProduct", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "endUserLicenseAgreement", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "gameCenterDetail", "appStoreVersionExperimentsV2" ] } }, "style" : "form", @@ -14931,7 +14373,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "url", "buildBundle", "betaAppClipInvocationLocalizations" ] + "enum" : [ "url", "betaAppClipInvocationLocalizations" ] } }, "style" : "form", @@ -15224,7 +14666,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -15401,7 +14843,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -15671,7 +15113,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -15771,7 +15213,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -16862,7 +16304,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -17087,7 +16529,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -17405,7 +16847,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -17505,7 +16947,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -17901,7 +17343,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -18136,7 +17578,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -19027,7 +18469,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -19289,7 +18731,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -19815,7 +19257,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "IOS", "MAC_OS" ] + "enum" : [ "IOS", "MAC_OS", "UNIVERSAL" ] } }, "style" : "form", @@ -19910,7 +19352,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "capabilityType", "settings", "bundleId" ] + "enum" : [ "capabilityType", "settings" ] } }, "style" : "form", @@ -19924,7 +19366,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -20135,7 +19577,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "capabilityType", "settings", "bundleId" ] + "enum" : [ "capabilityType", "settings" ] } }, "style" : "form", @@ -20149,7 +19591,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -20425,7 +19867,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "IOS_DEVELOPMENT", "IOS_DISTRIBUTION", "MAC_APP_DISTRIBUTION", "MAC_INSTALLER_DISTRIBUTION", "MAC_APP_DEVELOPMENT", "DEVELOPER_ID_KEXT", "DEVELOPER_ID_APPLICATION", "DEVELOPMENT", "DISTRIBUTION", "PASS_TYPE_ID", "PASS_TYPE_ID_WITH_NFC" ] + "enum" : [ "IOS_DEVELOPMENT", "IOS_DISTRIBUTION", "MAC_APP_DISTRIBUTION", "MAC_INSTALLER_DISTRIBUTION", "MAC_APP_DEVELOPMENT", "DEVELOPER_ID_KEXT", "DEVELOPER_ID_KEXT_G2", "DEVELOPER_ID_APPLICATION", "DEVELOPER_ID_APPLICATION_G2", "DEVELOPMENT", "DISTRIBUTION", "PASS_TYPE_ID", "PASS_TYPE_ID_WITH_NFC" ] } }, "style" : "form", @@ -20479,7 +19921,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "csrContent", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] + "enum" : [ "name", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] } }, "style" : "form", @@ -20628,7 +20070,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "csrContent", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] + "enum" : [ "name", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] } }, "style" : "form", @@ -20867,7 +20309,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "clean", "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "buildRun", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] + "enum" : [ "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] } }, "style" : "form", @@ -21043,7 +20485,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "clean", "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "buildRun", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] + "enum" : [ "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] } }, "style" : "form", @@ -21519,7 +20961,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -21643,7 +21085,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -22832,7 +22274,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "IOS", "MAC_OS" ] + "enum" : [ "IOS", "MAC_OS", "UNIVERSAL" ] } }, "style" : "form", @@ -23825,7 +23267,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterAchievementLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterAchievementLocalization" ] } }, "style" : "form", @@ -24175,7 +23617,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterAchievementLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterAchievementLocalization" ] } }, "style" : "form", @@ -26524,7 +25966,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterLeaderboardLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterLeaderboardLocalization" ] } }, "style" : "form", @@ -26860,7 +26302,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterLeaderboardLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterLeaderboardLocalization" ] } }, "style" : "form", @@ -27417,7 +26859,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterLeaderboardSetLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterLeaderboardSetLocalization" ] } }, "style" : "form", @@ -27753,7 +27195,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterLeaderboardSetLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterLeaderboardSetLocalization" ] } }, "style" : "form", @@ -29879,7 +29321,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "minPlayers", "maxPlayers", "ruleSet" ] + "enum" : [ "referenceName", "minPlayers", "maxPlayers" ] } }, "style" : "form", @@ -29893,7 +29335,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "description", "type", "expression", "weight", "ruleSet" ] + "enum" : [ "referenceName", "description", "type", "expression", "weight" ] } }, "style" : "form", @@ -30114,7 +29556,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "minPlayers", "maxPlayers", "ruleSet" ] + "enum" : [ "referenceName", "minPlayers", "maxPlayers" ] } }, "style" : "form", @@ -30128,7 +29570,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "description", "type", "expression", "weight", "ruleSet" ] + "enum" : [ "referenceName", "description", "type", "expression", "weight" ] } }, "style" : "form", @@ -31047,7 +30489,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "inAppPurchaseV2" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "inAppPurchaseV2" ] } }, "style" : "form", @@ -31369,7 +30811,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "inAppPurchase", "availableTerritories" ] + "enum" : [ "availableInNewTerritories", "availableTerritories" ] } }, "style" : "form", @@ -31666,7 +31108,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "uploaded", "state", "inAppPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "state", "inAppPurchase" ] } }, "style" : "form", @@ -32310,7 +31752,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "inAppPurchase", "baseTerritory", "manualPrices", "automaticPrices" ] + "enum" : [ "baseTerritory", "manualPrices", "automaticPrices" ] } }, "style" : "form", @@ -32338,7 +31780,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "startDate", "endDate", "manual", "inAppPurchaseV2", "inAppPurchasePricePoint", "territory" ] + "enum" : [ "startDate", "endDate", "manual", "inAppPurchasePricePoint", "territory" ] } }, "style" : "form", @@ -32352,7 +31794,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "inAppPurchase", "baseTerritory", "manualPrices", "automaticPrices" ] + "enum" : [ "baseTerritory", "manualPrices", "automaticPrices" ] } }, "style" : "form", @@ -32721,7 +32163,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -32749,7 +32191,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "territory", "inAppPurchaseV2" ] + "enum" : [ "customerPrice", "proceeds", "territory", "equalizations" ] } }, "style" : "form", @@ -32777,7 +32219,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "inAppPurchaseV2" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "inAppPurchaseV2" ] } }, "style" : "form", @@ -32791,7 +32233,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -32805,7 +32247,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "inAppPurchase", "baseTerritory", "manualPrices", "automaticPrices" ] + "enum" : [ "baseTerritory", "manualPrices", "automaticPrices" ] } }, "style" : "form", @@ -32819,7 +32261,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "inAppPurchase", "availableTerritories" ] + "enum" : [ "availableInNewTerritories", "availableTerritories" ] } }, "style" : "form", @@ -32833,7 +32275,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "uploaded", "state", "inAppPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "state", "inAppPurchase" ] } }, "style" : "form", @@ -33638,7 +33080,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "endpointUrl", "secret" ] + "enum" : [ "endpointUrl" ] } }, "style" : "form", @@ -34080,7 +33522,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -34204,7 +33646,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -34421,7 +33863,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "csrContent", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] + "enum" : [ "name", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] } }, "style" : "form", @@ -34646,7 +34088,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "csrContent", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] + "enum" : [ "name", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] } }, "style" : "form", @@ -34903,7 +34345,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "uploaded", "state", "promotedPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "state", "promotedPurchase" ] } }, "style" : "form", @@ -35227,7 +34669,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -35241,7 +34683,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "uploaded", "state", "promotedPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "state", "promotedPurchase" ] } }, "style" : "form", @@ -35774,7 +35216,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "platform", "submittedDate", "state", "submitted", "canceled", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] + "enum" : [ "platform", "submittedDate", "state", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] } }, "style" : "form", @@ -35788,7 +35230,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "state", "resolved", "removed", "reviewSubmission", "appStoreVersion", "appCustomProductPageVersion", "appStoreVersionExperiment", "appStoreVersionExperimentV2", "appEvent" ] + "enum" : [ "state", "appStoreVersion", "appCustomProductPageVersion", "appStoreVersionExperiment", "appStoreVersionExperimentV2", "appEvent" ] } }, "style" : "form", @@ -35961,7 +35403,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "platform", "submittedDate", "state", "submitted", "canceled", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] + "enum" : [ "platform", "submittedDate", "state", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] } }, "style" : "form", @@ -35975,7 +35417,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "state", "resolved", "removed", "reviewSubmission", "appStoreVersion", "appCustomProductPageVersion", "appStoreVersionExperiment", "appStoreVersionExperimentV2", "appEvent" ] + "enum" : [ "state", "appStoreVersion", "appCustomProductPageVersion", "appStoreVersionExperiment", "appStoreVersionExperimentV2", "appEvent" ] } }, "style" : "form", @@ -36248,7 +35690,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreVersion" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreVersion" ] } }, "style" : "form", @@ -36504,7 +35946,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "SALES", "PRE_ORDER", "NEWSSTAND", "SUBSCRIPTION", "SUBSCRIPTION_EVENT", "SUBSCRIBER", "SUBSCRIPTION_OFFER_CODE_REDEMPTION", "INSTALLS", "FIRST_ANNUAL" ] + "enum" : [ "SALES", "PRE_ORDER", "NEWSSTAND", "SUBSCRIPTION", "SUBSCRIPTION_EVENT", "SUBSCRIBER", "SUBSCRIPTION_OFFER_CODE_REDEMPTION", "INSTALLS", "FIRST_ANNUAL", "WIN_BACK_ELIGIBILITY" ] } }, "style" : "form", @@ -37495,7 +36937,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "subscription" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "subscription" ] } }, "style" : "form", @@ -37817,7 +37259,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "subscription", "availableTerritories" ] + "enum" : [ "availableInNewTerritories", "availableTerritories" ] } }, "style" : "form", @@ -37845,7 +37287,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "subscription", "availableTerritories" ] + "enum" : [ "availableTerritories" ] } }, "style" : "form", @@ -38588,7 +38030,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "app", "subscriptions", "subscriptionGroupLocalizations" ] + "enum" : [ "referenceName", "subscriptions", "subscriptionGroupLocalizations" ] } }, "style" : "form", @@ -38958,7 +38400,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "uploaded", "state", "subscription" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "state", "subscription" ] } }, "style" : "form", @@ -40621,7 +40063,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "subscription", "equalizations" ] + "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "equalizations" ] } }, "style" : "form", @@ -41400,7 +40842,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "subscription" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "subscription" ] } }, "style" : "form", @@ -41456,7 +40898,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "startDate", "preserved", "preserveCurrentPrice", "subscription", "territory", "subscriptionPricePoint" ] + "enum" : [ "startDate", "preserved", "territory", "subscriptionPricePoint" ] } }, "style" : "form", @@ -41470,7 +40912,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -41484,7 +40926,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "subscription", "availableTerritories" ] + "enum" : [ "availableInNewTerritories", "availableTerritories" ] } }, "style" : "form", @@ -41498,7 +40940,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "offerId", "duration", "offerMode", "periodCount", "customerEligibilityPaidSubscriptionDurationInMonths", "customerEligibilityTimeSinceLastSubscribedInMonths", "customerEligibilityWaitBetweenOffersInMonths", "startDate", "endDate", "priority", "promotionIntent", "subscription", "prices" ] + "enum" : [ "referenceName", "offerId", "duration", "offerMode", "periodCount", "customerEligibilityPaidSubscriptionDurationInMonths", "customerEligibilityTimeSinceLastSubscribedInMonths", "customerEligibilityWaitBetweenOffersInMonths", "startDate", "endDate", "priority", "promotionIntent", "prices" ] } }, "style" : "form", @@ -41512,7 +40954,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "uploaded", "state", "subscription" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "state", "subscription" ] } }, "style" : "form", @@ -42064,7 +41506,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -42251,7 +41693,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -42485,7 +41927,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -42595,7 +42037,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -42927,7 +42369,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "offerId", "duration", "offerMode", "periodCount", "customerEligibilityPaidSubscriptionDurationInMonths", "customerEligibilityTimeSinceLastSubscribedInMonths", "customerEligibilityWaitBetweenOffersInMonths", "startDate", "endDate", "priority", "promotionIntent", "subscription", "prices" ] + "enum" : [ "referenceName", "offerId", "duration", "offerMode", "periodCount", "customerEligibilityPaidSubscriptionDurationInMonths", "customerEligibilityTimeSinceLastSubscribedInMonths", "customerEligibilityWaitBetweenOffersInMonths", "startDate", "endDate", "priority", "promotionIntent", "prices" ] } }, "style" : "form", @@ -43428,7 +42870,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersion", "versions" ] + "enum" : [ "versions" ] } }, "style" : "form", @@ -43978,98 +43420,6 @@ "required" : true } ] }, - "/v1/appAvailabilities/{id}/availableTerritories" : { - "get" : { - "tags" : [ "AppAvailabilities" ], - "operationId" : "appAvailabilities_availableTerritories_getToManyRelated", - "deprecated" : true, - "parameters" : [ { - "name" : "fields[territories]", - "in" : "query", - "description" : "the fields to include for returned resources of type territories", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "currency" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "limit", - "in" : "query", - "description" : "maximum resources per page", - "schema" : { - "type" : "integer", - "maximum" : 200 - }, - "style" : "form" - } ], - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "200" : { - "description" : "List of Territories", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/TerritoriesResponse" - } - } - } - } - } - }, - "parameters" : [ { - "name" : "id", - "in" : "path", - "description" : "the id of the requested resource", - "schema" : { - "type" : "string" - }, - "style" : "simple", - "required" : true - } ] - }, "/v1/appCategories/{id}/parent" : { "get" : { "tags" : [ "AppCategories" ], @@ -44255,7 +43605,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "appClipDefaultExperienceLocalization" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "appClipDefaultExperienceLocalization" ] } }, "style" : "form", @@ -44376,7 +43726,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -44496,7 +43846,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -44509,7 +43859,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "appClipDefaultExperienceLocalization" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "appClipDefaultExperienceLocalization" ] } }, "style" : "form", @@ -44765,7 +44115,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -44817,7 +44167,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber", "appStoreVersion" ] + "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber" ] } }, "style" : "form", @@ -44843,7 +44193,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreVersion" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreVersion" ] } }, "style" : "form", @@ -44882,7 +44232,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -44895,7 +44245,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] } }, "style" : "form", @@ -44908,7 +44258,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersion", "versions" ] + "enum" : [ "versions" ] } }, "style" : "form", @@ -45070,7 +44420,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "link", "version", "status", "action", "isPoweredBy", "place", "placeStatus", "businessCategory", "defaultLanguage", "removed", "appClip", "headerImage", "localizations" ] + "enum" : [ "link", "version", "status", "action", "isPoweredBy", "place", "placeStatus", "businessCategory", "defaultLanguage", "appClip", "headerImage", "localizations" ] } }, "style" : "form", @@ -45096,7 +44446,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "uploadOperations", "assetDeliveryState" ] } }, "style" : "form", @@ -45231,7 +44581,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -45485,7 +44835,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appPreviewSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appPreviewSet" ] } }, "style" : "form", @@ -45687,7 +45037,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "appScreenshotSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "appScreenshotSet" ] } }, "style" : "form", @@ -45999,7 +45349,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions", "appStoreVersionTemplate", "customProductPageTemplate" ] + "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions" ] } }, "style" : "form", @@ -46126,7 +45476,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -46208,7 +45558,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appEncryptionDeclaration" ] + "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState" ] } }, "style" : "form", @@ -46373,7 +45723,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "assetToken", "uploadOperations", "assetDeliveryState", "uploaded", "appEventAssetType", "appEventLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "assetToken", "uploadOperations", "assetDeliveryState", "appEventAssetType", "appEventLocalization" ] } }, "style" : "form", @@ -46490,7 +45840,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "previewFrameTimeCode", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appEventAssetType", "appEventLocalization" ] + "enum" : [ "fileSize", "fileName", "previewFrameTimeCode", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appEventAssetType", "appEventLocalization" ] } }, "style" : "form", @@ -46620,7 +45970,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "app", "localizations" ] + "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "localizations" ] } }, "style" : "form", @@ -46633,7 +45983,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "assetToken", "uploadOperations", "assetDeliveryState", "uploaded", "appEventAssetType", "appEventLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "assetToken", "uploadOperations", "assetDeliveryState", "appEventAssetType", "appEventLocalization" ] } }, "style" : "form", @@ -46646,7 +45996,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "previewFrameTimeCode", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appEventAssetType", "appEventLocalization" ] + "enum" : [ "fileSize", "fileName", "previewFrameTimeCode", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appEventAssetType", "appEventLocalization" ] } }, "style" : "form", @@ -46875,7 +46225,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] + "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "franceAgeRating", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] } }, "style" : "form", @@ -47751,7 +47101,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appPreviewSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appPreviewSet" ] } }, "style" : "form", @@ -47893,7 +47243,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -48577,7 +47927,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "appScreenshotSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "appScreenshotSet" ] } }, "style" : "form", @@ -48694,7 +48044,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreReviewDetail" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreReviewDetail" ] } }, "style" : "form", @@ -48900,7 +48250,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appPreviewSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appPreviewSet" ] } }, "style" : "form", @@ -49102,7 +48452,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "appScreenshotSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "appScreenshotSet" ] } }, "style" : "form", @@ -49401,7 +48751,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] } }, "style" : "form", @@ -49541,7 +48891,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] } }, "style" : "form", @@ -49756,7 +49106,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewImage", "uploadOperations", "assetDeliveryState", "uploaded", "appPreviewSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "previewFrameTimeCode", "mimeType", "videoUrl", "previewFrameImage", "previewImage", "uploadOperations", "assetDeliveryState", "videoDeliveryState", "appPreviewSet" ] } }, "style" : "form", @@ -49958,7 +49308,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "appScreenshotSet" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "appScreenshotSet" ] } }, "style" : "form", @@ -50154,7 +49504,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersion", "versions" ] + "enum" : [ "versions" ] } }, "style" : "form", @@ -50410,7 +49760,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -50592,7 +49942,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreReviewDetail" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreReviewDetail" ] } }, "style" : "form", @@ -50710,7 +50060,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments" ] } }, "style" : "form", @@ -50862,7 +50212,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] + "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] } }, "style" : "form", @@ -50875,7 +50225,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -51196,7 +50546,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber", "appStoreVersion" ] + "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber" ] } }, "style" : "form", @@ -51889,7 +51239,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreVersion" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreVersion" ] } }, "style" : "form", @@ -51971,7 +51321,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "publicKey", "app" ] + "enum" : [ "publicKey" ] } }, "style" : "form", @@ -52066,7 +51416,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "accessType", "stoppedDueToInactivity", "app", "reports" ] + "enum" : [ "accessType", "stoppedDueToInactivity", "reports" ] } }, "style" : "form", @@ -52180,11 +51530,10 @@ "required" : true } ] }, - "/v1/apps/{id}/appAvailability" : { + "/v1/apps/{id}/appAvailabilityV2" : { "get" : { "tags" : [ "Apps" ], - "operationId" : "apps_appAvailability_getToOneRelated", - "deprecated" : true, + "operationId" : "apps_appAvailabilityV2_getToOneRelated", "parameters" : [ { "name" : "fields[appAvailabilities]", "in" : "query", @@ -52193,7 +51542,136 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "app", "availableTerritories" ] + "enum" : [ "availableInNewTerritories", "territoryAvailabilities" ] + } + }, + "style" : "form", + "explode" : false + }, { + "name" : "fields[territoryAvailabilities]", + "in" : "query", + "description" : "the fields to include for returned resources of type territoryAvailabilities", + "schema" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "available", "releaseDate", "preOrderEnabled", "preOrderPublishDate", "contentStatuses", "territory" ] + } + }, + "style" : "form", + "explode" : false + }, { + "name" : "include", + "in" : "query", + "description" : "comma-separated list of relationships to include", + "schema" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "territoryAvailabilities" ] + } + }, + "style" : "form", + "explode" : false + }, { + "name" : "limit[territoryAvailabilities]", + "in" : "query", + "description" : "maximum number of related territoryAvailabilities returned (when they are included)", + "schema" : { + "type" : "integer", + "maximum" : 50 + }, + "style" : "form" + } ], + "responses" : { + "400" : { + "description" : "Parameter error(s)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, + "401" : { + "description" : "Unauthorized error(s)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, + "403" : { + "description" : "Forbidden error", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, + "404" : { + "description" : "Not found error", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, + "200" : { + "description" : "Single AppAvailability", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/AppAvailabilityV2Response" + } + } + } + } + } + }, + "parameters" : [ { + "name" : "id", + "in" : "path", + "description" : "the id of the requested resource", + "schema" : { + "type" : "string" + }, + "style" : "simple", + "required" : true + } ] + }, + "/v1/apps/{id}/appClips" : { + "get" : { + "tags" : [ "Apps" ], + "operationId" : "apps_appClips_getToManyRelated", + "parameters" : [ { + "name" : "filter[bundleId]", + "in" : "query", + "description" : "filter by attribute 'bundleId'", + "schema" : { + "type" : "array", + "items" : { + "type" : "string" + } + }, + "style" : "form", + "explode" : false + }, { + "name" : "fields[appClips]", + "in" : "query", + "description" : "the fields to include for returned resources of type appClips", + "schema" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "bundleId", "app", "appClipDefaultExperiences", "appClipAdvancedExperiences" ] } }, "style" : "form", @@ -52206,24 +51684,33 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", "explode" : false }, { - "name" : "fields[territories]", + "name" : "fields[appClipDefaultExperiences]", "in" : "query", - "description" : "the fields to include for returned resources of type territories", + "description" : "the fields to include for returned resources of type appClipDefaultExperiences", "schema" : { "type" : "array", "items" : { "type" : "string", - "enum" : [ "currency" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", "explode" : false + }, { + "name" : "limit", + "in" : "query", + "description" : "maximum resources per page", + "schema" : { + "type" : "integer", + "maximum" : 200 + }, + "style" : "form" }, { "name" : "include", "in" : "query", @@ -52232,283 +51719,15 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "app", "availableTerritories" ] + "enum" : [ "app", "appClipDefaultExperiences" ] } }, "style" : "form", "explode" : false }, { - "name" : "limit[availableTerritories]", + "name" : "limit[appClipDefaultExperiences]", "in" : "query", - "description" : "maximum number of related availableTerritories returned (when they are included)", - "schema" : { - "type" : "integer", - "maximum" : 50 - }, - "style" : "form" - } ], - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "200" : { - "description" : "Single AppAvailability", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppAvailabilityResponse" - } - } - } - } - } - }, - "parameters" : [ { - "name" : "id", - "in" : "path", - "description" : "the id of the requested resource", - "schema" : { - "type" : "string" - }, - "style" : "simple", - "required" : true - } ] - }, - "/v1/apps/{id}/appAvailabilityV2" : { - "get" : { - "tags" : [ "Apps" ], - "operationId" : "apps_appAvailabilityV2_getToOneRelated", - "parameters" : [ { - "name" : "fields[appAvailabilities]", - "in" : "query", - "description" : "the fields to include for returned resources of type appAvailabilities", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "availableInNewTerritories", "app", "territoryAvailabilities" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "fields[territoryAvailabilities]", - "in" : "query", - "description" : "the fields to include for returned resources of type territoryAvailabilities", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "available", "releaseDate", "preOrderEnabled", "preOrderPublishDate", "contentStatuses", "territory" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "include", - "in" : "query", - "description" : "comma-separated list of relationships to include", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "territoryAvailabilities" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "limit[territoryAvailabilities]", - "in" : "query", - "description" : "maximum number of related territoryAvailabilities returned (when they are included)", - "schema" : { - "type" : "integer", - "maximum" : 50 - }, - "style" : "form" - } ], - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "200" : { - "description" : "Single AppAvailability", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppAvailabilityV2Response" - } - } - } - } - } - }, - "parameters" : [ { - "name" : "id", - "in" : "path", - "description" : "the id of the requested resource", - "schema" : { - "type" : "string" - }, - "style" : "simple", - "required" : true - } ] - }, - "/v1/apps/{id}/appClips" : { - "get" : { - "tags" : [ "Apps" ], - "operationId" : "apps_appClips_getToManyRelated", - "parameters" : [ { - "name" : "filter[bundleId]", - "in" : "query", - "description" : "filter by attribute 'bundleId'", - "schema" : { - "type" : "array", - "items" : { - "type" : "string" - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "fields[appClips]", - "in" : "query", - "description" : "the fields to include for returned resources of type appClips", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "bundleId", "app", "appClipDefaultExperiences", "appClipAdvancedExperiences" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "fields[apps]", - "in" : "query", - "description" : "the fields to include for returned resources of type apps", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "fields[appClipDefaultExperiences]", - "in" : "query", - "description" : "the fields to include for returned resources of type appClipDefaultExperiences", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "limit", - "in" : "query", - "description" : "maximum resources per page", - "schema" : { - "type" : "integer", - "maximum" : 200 - }, - "style" : "form" - }, { - "name" : "include", - "in" : "query", - "description" : "comma-separated list of relationships to include", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "app", "appClipDefaultExperiences" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "limit[appClipDefaultExperiences]", - "in" : "query", - "description" : "maximum number of related appClipDefaultExperiences returned (when they are included)", + "description" : "maximum number of related appClipDefaultExperiences returned (when they are included)", "schema" : { "type" : "integer", "maximum" : 50 @@ -52603,7 +51822,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions", "appStoreVersionTemplate", "customProductPageTemplate" ] + "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions" ] } }, "style" : "form", @@ -52616,7 +51835,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -52780,7 +51999,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -52806,7 +52025,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appEncryptionDeclaration" ] + "enum" : [ "fileSize", "fileName", "assetToken", "downloadUrl", "sourceFileChecksum", "uploadOperations", "assetDeliveryState" ] } }, "style" : "form", @@ -52944,7 +52163,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "app", "localizations" ] + "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "localizations" ] } }, "style" : "form", @@ -53070,7 +52289,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] + "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "franceAgeRating", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] } }, "style" : "form", @@ -53083,7 +52302,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -53260,7 +52479,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -53395,7 +52614,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -53547,7 +52766,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] + "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] } }, "style" : "form", @@ -53560,7 +52779,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -53784,7 +53003,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -53836,7 +53055,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber", "appStoreVersion" ] + "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber" ] } }, "style" : "form", @@ -53862,7 +53081,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreVersion" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreVersion" ] } }, "style" : "form", @@ -53901,7 +53120,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -53914,7 +53133,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] } }, "style" : "form", @@ -53927,7 +53146,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersion", "versions" ] + "enum" : [ "versions" ] } }, "style" : "form", @@ -54594,7 +53813,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -54983,7 +54202,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -55309,7 +54528,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -55475,7 +54694,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -55651,7 +54870,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -55690,7 +54909,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "inAppPurchaseV2" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "inAppPurchaseV2" ] } }, "style" : "form", @@ -55703,7 +54922,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -55716,7 +54935,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "inAppPurchase", "baseTerritory", "manualPrices", "automaticPrices" ] + "enum" : [ "baseTerritory", "manualPrices", "automaticPrices" ] } }, "style" : "form", @@ -55729,7 +54948,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "inAppPurchase", "availableTerritories" ] + "enum" : [ "availableInNewTerritories", "availableTerritories" ] } }, "style" : "form", @@ -55742,7 +54961,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "uploaded", "state", "inAppPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "state", "inAppPurchase" ] } }, "style" : "form", @@ -55864,7 +55083,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "catalogUrl", "app" ] + "enum" : [ "catalogUrl" ] } }, "style" : "form", @@ -56041,89 +55260,6 @@ "required" : true } ] }, - "/v1/apps/{id}/preOrder" : { - "get" : { - "tags" : [ "Apps" ], - "operationId" : "apps_preOrder_getToOneRelated", - "deprecated" : true, - "parameters" : [ { - "name" : "fields[appPreOrders]", - "in" : "query", - "description" : "the fields to include for returned resources of type appPreOrders", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "preOrderAvailableDate", "appReleaseDate", "app" ] - } - }, - "style" : "form", - "explode" : false - } ], - "responses" : { - "400" : { - "description" : "Parameter error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "401" : { - "description" : "Unauthorized error(s)", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "403" : { - "description" : "Forbidden error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "404" : { - "description" : "Not found error", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ErrorResponse" - } - } - } - }, - "200" : { - "description" : "Single AppPreOrder with get", - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/AppPreOrderWithoutIncludesResponse" - } - } - } - } - } - }, - "parameters" : [ { - "name" : "id", - "in" : "path", - "description" : "the id of the requested resource", - "schema" : { - "type" : "string" - }, - "style" : "simple", - "required" : true - } ] - }, "/v1/apps/{id}/preReleaseVersions" : { "get" : { "tags" : [ "Apps" ], @@ -56375,7 +55511,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -56388,7 +55524,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -56414,7 +55550,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "uploaded", "state", "promotedPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "state", "promotedPurchase" ] } }, "style" : "form", @@ -56554,7 +55690,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "platform", "submittedDate", "state", "submitted", "canceled", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] + "enum" : [ "platform", "submittedDate", "state", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] } }, "style" : "form", @@ -56567,7 +55703,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -56580,7 +55716,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "state", "resolved", "removed", "reviewSubmission", "appStoreVersion", "appCustomProductPageVersion", "appStoreVersionExperiment", "appStoreVersionExperimentV2", "appEvent" ] + "enum" : [ "state", "appStoreVersion", "appCustomProductPageVersion", "appStoreVersionExperiment", "appStoreVersionExperimentV2", "appEvent" ] } }, "style" : "form", @@ -56839,7 +55975,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "app", "subscriptions", "subscriptionGroupLocalizations" ] + "enum" : [ "referenceName", "subscriptions", "subscriptionGroupLocalizations" ] } }, "style" : "form", @@ -56987,7 +56123,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -57069,7 +56205,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -57315,7 +56451,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -58015,7 +57151,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -58248,7 +57384,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -59203,7 +58339,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "url", "buildBundle", "betaAppClipInvocationLocalizations" ] + "enum" : [ "url", "betaAppClipInvocationLocalizations" ] } }, "style" : "form", @@ -59216,7 +58352,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "title", "locale", "betaAppClipInvocation" ] + "enum" : [ "title", "locale" ] } }, "style" : "form", @@ -59420,7 +58556,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -59736,7 +58872,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -59788,7 +58924,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber", "appStoreVersion" ] + "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber" ] } }, "style" : "form", @@ -59814,7 +58950,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreVersion" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreVersion" ] } }, "style" : "form", @@ -59853,7 +58989,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -59866,7 +59002,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] } }, "style" : "form", @@ -59879,7 +59015,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersion", "versions" ] + "enum" : [ "versions" ] } }, "style" : "form", @@ -61128,7 +60264,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -61210,7 +60346,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "capabilityType", "settings", "bundleId" ] + "enum" : [ "capabilityType", "settings" ] } }, "style" : "form", @@ -61483,7 +60619,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "clean", "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "buildRun", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] + "enum" : [ "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] } }, "style" : "form", @@ -61847,7 +60983,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "clean", "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "buildRun", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] + "enum" : [ "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] } }, "style" : "form", @@ -62215,7 +61351,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -62684,7 +61820,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -62814,7 +61950,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] + "enum" : [ "appStoreState", "state", "appStoreAgeRating", "australiaAgeRating", "brazilAgeRating", "brazilAgeRatingV2", "franceAgeRating", "koreaAgeRating", "kidsAgeBand", "app", "ageRatingDeclaration", "appInfoLocalizations", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo" ] } }, "style" : "form", @@ -62845,19 +61981,6 @@ }, "style" : "form", "explode" : false - }, { - "name" : "fields[appPreOrders]", - "in" : "query", - "description" : "the fields to include for returned resources of type appPreOrders", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "preOrderAvailableDate", "appReleaseDate", "app" ] - } - }, - "style" : "form", - "explode" : false }, { "name" : "fields[inAppPurchases]", "in" : "query", @@ -62866,7 +61989,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "productId", "inAppPurchaseType", "state", "apps", "name", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "referenceName", "productId", "inAppPurchaseType", "state", "apps", "name", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -62879,7 +62002,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "app", "subscriptions", "subscriptionGroupLocalizations" ] + "enum" : [ "referenceName", "subscriptions", "subscriptionGroupLocalizations" ] } }, "style" : "form", @@ -62905,7 +62028,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions", "appStoreVersionTemplate", "customProductPageTemplate" ] + "enum" : [ "name", "url", "visible", "app", "appCustomProductPageVersions" ] } }, "style" : "form", @@ -62918,7 +62041,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -62931,7 +62054,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "app", "localizations" ] + "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "localizations" ] } }, "style" : "form", @@ -62944,7 +62067,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "platform", "submittedDate", "state", "submitted", "canceled", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] + "enum" : [ "platform", "submittedDate", "state", "app", "items", "appStoreVersionForReview", "submittedByActor", "lastUpdatedByActor" ] } }, "style" : "form", @@ -62983,7 +62106,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] + "enum" : [ "name", "platform", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "app", "latestControlVersion", "controlVersions", "appStoreVersionExperimentTreatments" ] } }, "style" : "form", @@ -62996,7 +62119,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appEncryptionDeclarations", "ciProduct", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "endUserLicenseAgreement", "preOrder", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "gameCenterDetail", "appStoreVersionExperimentsV2" ] + "enum" : [ "appEncryptionDeclarations", "ciProduct", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "endUserLicenseAgreement", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "gameCenterDetail", "appStoreVersionExperimentsV2" ] } }, "style" : "form", @@ -63258,7 +62381,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "clean", "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "buildRun", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] + "enum" : [ "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] } }, "style" : "form", @@ -63759,7 +62882,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "clean", "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "buildRun", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] + "enum" : [ "number", "createdDate", "startedDate", "finishedDate", "sourceCommit", "destinationCommit", "isPullRequestBuild", "issueCounts", "executionProgress", "completionStatus", "startReason", "cancelReason", "builds", "workflow", "product", "sourceBranchOrTag", "destinationBranch", "actions", "pullRequest" ] } }, "style" : "form", @@ -64626,7 +63749,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterAchievementLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterAchievementLocalization" ] } }, "style" : "form", @@ -64726,6 +63849,7 @@ "get" : { "tags" : [ "GameCenterAchievements" ], "operationId" : "gameCenterAchievements_groupAchievement_getToOneRelationship", + "deprecated" : true, "parameters" : [ ], "responses" : { "400" : { @@ -64783,6 +63907,7 @@ "patch" : { "tags" : [ "GameCenterAchievements" ], "operationId" : "gameCenterAchievements_groupAchievement_updateToOneRelationship", + "deprecated" : true, "requestBody" : { "description" : "Related linkage", "content" : { @@ -64865,6 +63990,7 @@ "get" : { "tags" : [ "GameCenterAchievements" ], "operationId" : "gameCenterAchievements_groupAchievement_getToOneRelated", + "deprecated" : true, "parameters" : [ { "name" : "fields[gameCenterAchievements]", "in" : "query", @@ -65064,7 +64190,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterAchievementLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterAchievementLocalization" ] } }, "style" : "form", @@ -65335,7 +64461,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -65387,7 +64513,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber", "appStoreVersion" ] + "enum" : [ "phasedReleaseState", "startDate", "totalPauseDuration", "currentDayNumber" ] } }, "style" : "form", @@ -65413,7 +64539,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "uploaded", "appStoreVersion" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "uploadOperations", "assetDeliveryState", "appStoreVersion" ] } }, "style" : "form", @@ -65452,7 +64578,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail", "appClipDefaultExperienceTemplate" ] + "enum" : [ "action", "appClip", "releaseWithAppStoreVersion", "appClipDefaultExperienceLocalizations", "appClipAppStoreReviewDetail" ] } }, "style" : "form", @@ -65465,7 +64591,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] } }, "style" : "form", @@ -65478,7 +64604,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "appStoreVersion", "versions" ] + "enum" : [ "versions" ] } }, "style" : "form", @@ -68214,7 +67340,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -68711,7 +67837,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -69730,7 +68856,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterLeaderboardLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterLeaderboardLocalization" ] } }, "style" : "form", @@ -69838,7 +68964,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterLeaderboardSetLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterLeaderboardSetLocalization" ] } }, "style" : "form", @@ -70832,6 +69958,7 @@ "get" : { "tags" : [ "GameCenterLeaderboardSets" ], "operationId" : "gameCenterLeaderboardSets_groupLeaderboardSet_getToOneRelationship", + "deprecated" : true, "parameters" : [ ], "responses" : { "400" : { @@ -70889,6 +70016,7 @@ "patch" : { "tags" : [ "GameCenterLeaderboardSets" ], "operationId" : "gameCenterLeaderboardSets_groupLeaderboardSet_updateToOneRelationship", + "deprecated" : true, "requestBody" : { "description" : "Related linkage", "content" : { @@ -70971,6 +70099,7 @@ "get" : { "tags" : [ "GameCenterLeaderboardSets" ], "operationId" : "gameCenterLeaderboardSets_groupLeaderboardSet_getToOneRelated", + "deprecated" : true, "parameters" : [ { "name" : "fields[gameCenterLeaderboardSets]", "in" : "query", @@ -71192,7 +70321,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterLeaderboardSetLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterLeaderboardSetLocalization" ] } }, "style" : "form", @@ -71442,6 +70571,7 @@ "get" : { "tags" : [ "GameCenterLeaderboards" ], "operationId" : "gameCenterLeaderboards_groupLeaderboard_getToOneRelationship", + "deprecated" : true, "parameters" : [ ], "responses" : { "400" : { @@ -71499,6 +70629,7 @@ "patch" : { "tags" : [ "GameCenterLeaderboards" ], "operationId" : "gameCenterLeaderboards_groupLeaderboard_updateToOneRelationship", + "deprecated" : true, "requestBody" : { "description" : "Related linkage", "content" : { @@ -71581,6 +70712,7 @@ "get" : { "tags" : [ "GameCenterLeaderboards" ], "operationId" : "gameCenterLeaderboards_groupLeaderboard_getToOneRelated", + "deprecated" : true, "parameters" : [ { "name" : "fields[gameCenterLeaderboards]", "in" : "query", @@ -71802,7 +70934,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "uploaded", "gameCenterLeaderboardLocalization" ] + "enum" : [ "fileSize", "fileName", "imageAsset", "uploadOperations", "assetDeliveryState", "gameCenterLeaderboardLocalization" ] } }, "style" : "form", @@ -72177,7 +71309,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "description", "type", "expression", "weight", "ruleSet" ] + "enum" : [ "referenceName", "description", "type", "expression", "weight" ] } }, "style" : "form", @@ -72268,7 +71400,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "minPlayers", "maxPlayers", "ruleSet" ] + "enum" : [ "referenceName", "minPlayers", "maxPlayers" ] } }, "style" : "form", @@ -72438,6 +71570,152 @@ "required" : true } ] }, + "/v1/inAppPurchasePricePoints/{id}/equalizations" : { + "get" : { + "tags" : [ "InAppPurchasePricePoints" ], + "operationId" : "inAppPurchasePricePoints_equalizations_getToManyRelated", + "parameters" : [ { + "name" : "filter[territory]", + "in" : "query", + "description" : "filter by id(s) of related 'territory'", + "schema" : { + "type" : "array", + "items" : { + "type" : "string" + } + }, + "style" : "form", + "explode" : false + }, { + "name" : "filter[inAppPurchaseV2]", + "in" : "query", + "description" : "filter by id(s) of related 'inAppPurchaseV2'", + "schema" : { + "type" : "array", + "items" : { + "type" : "string" + } + }, + "style" : "form", + "explode" : false + }, { + "name" : "fields[inAppPurchasePricePoints]", + "in" : "query", + "description" : "the fields to include for returned resources of type inAppPurchasePricePoints", + "schema" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "customerPrice", "proceeds", "territory", "equalizations" ] + } + }, + "style" : "form", + "explode" : false + }, { + "name" : "fields[territories]", + "in" : "query", + "description" : "the fields to include for returned resources of type territories", + "schema" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "currency" ] + } + }, + "style" : "form", + "explode" : false + }, { + "name" : "limit", + "in" : "query", + "description" : "maximum resources per page", + "schema" : { + "type" : "integer", + "maximum" : 8000 + }, + "style" : "form" + }, { + "name" : "include", + "in" : "query", + "description" : "comma-separated list of relationships to include", + "schema" : { + "type" : "array", + "items" : { + "type" : "string", + "enum" : [ "territory" ] + } + }, + "style" : "form", + "explode" : false + } ], + "responses" : { + "400" : { + "description" : "Parameter error(s)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, + "401" : { + "description" : "Unauthorized error(s)", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, + "403" : { + "description" : "Forbidden error", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, + "404" : { + "description" : "Not found error", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorResponse" + } + } + } + }, + "200" : { + "description" : "List of InAppPurchasePricePoints", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/InAppPurchasePricePointsResponse" + } + }, + "text/csv" : { + "schema" : { + "$ref" : "#/components/schemas/csv" + } + } + } + } + } + }, + "parameters" : [ { + "name" : "id", + "in" : "path", + "description" : "the id of the requested resource", + "schema" : { + "type" : "string" + }, + "style" : "simple", + "required" : true + } ] + }, "/v1/inAppPurchasePriceSchedules/{id}/automaticPrices" : { "get" : { "tags" : [ "InAppPurchasePriceSchedules" ], @@ -72462,7 +71740,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "startDate", "endDate", "manual", "inAppPurchaseV2", "inAppPurchasePricePoint", "territory" ] + "enum" : [ "startDate", "endDate", "manual", "inAppPurchasePricePoint", "territory" ] } }, "style" : "form", @@ -72475,7 +71753,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "territory", "inAppPurchaseV2" ] + "enum" : [ "customerPrice", "proceeds", "territory", "equalizations" ] } }, "style" : "form", @@ -72686,7 +71964,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "startDate", "endDate", "manual", "inAppPurchaseV2", "inAppPurchasePricePoint", "territory" ] + "enum" : [ "startDate", "endDate", "manual", "inAppPurchasePricePoint", "territory" ] } }, "style" : "form", @@ -72699,7 +71977,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "territory", "inAppPurchaseV2" ] + "enum" : [ "customerPrice", "proceeds", "territory", "equalizations" ] } }, "style" : "form", @@ -72816,7 +72094,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "inAppPurchaseV2" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "inAppPurchaseV2" ] } }, "style" : "form", @@ -72829,7 +72107,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -72937,7 +72215,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -73032,20 +72310,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "inAppPurchase", "baseTerritory", "manualPrices", "automaticPrices" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "fields[inAppPurchases]", - "in" : "query", - "description" : "the fields to include for returned resources of type inAppPurchases", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "baseTerritory", "manualPrices", "automaticPrices" ] } }, "style" : "form", @@ -73071,7 +72336,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "startDate", "endDate", "manual", "inAppPurchaseV2", "inAppPurchasePricePoint", "territory" ] + "enum" : [ "startDate", "endDate", "manual", "inAppPurchasePricePoint", "territory" ] } }, "style" : "form", @@ -73084,7 +72349,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "inAppPurchase", "baseTerritory", "manualPrices", "automaticPrices" ] + "enum" : [ "baseTerritory", "manualPrices", "automaticPrices" ] } }, "style" : "form", @@ -73184,7 +72449,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "uploaded", "state", "inAppPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "state", "inAppPurchase" ] } }, "style" : "form", @@ -73197,7 +72462,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -73301,7 +72566,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "inAppPurchase", "availableTerritories" ] + "enum" : [ "availableInNewTerritories", "availableTerritories" ] } }, "style" : "form", @@ -73431,7 +72696,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -73547,7 +72812,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "territory", "inAppPurchaseV2" ] + "enum" : [ "customerPrice", "proceeds", "territory", "equalizations" ] } }, "style" : "form", @@ -73669,7 +72934,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -73682,7 +72947,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -73708,7 +72973,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "uploaded", "state", "promotedPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "state", "promotedPurchase" ] } }, "style" : "form", @@ -73813,7 +73078,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -74068,7 +73333,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "csrContent", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] + "enum" : [ "name", "certificateType", "displayName", "serialNumber", "platform", "expirationDate", "certificateContent" ] } }, "style" : "form", @@ -74251,7 +73516,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "uploaded", "state", "promotedPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "state", "promotedPurchase" ] } }, "style" : "form", @@ -74264,7 +73529,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -74368,7 +73633,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "state", "resolved", "removed", "reviewSubmission", "appStoreVersion", "appCustomProductPageVersion", "appStoreVersionExperiment", "appStoreVersionExperimentV2", "appEvent" ] + "enum" : [ "state", "appStoreVersion", "appCustomProductPageVersion", "appStoreVersionExperiment", "appStoreVersionExperimentV2", "appEvent" ] } }, "style" : "form", @@ -74407,7 +73672,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "started", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] + "enum" : [ "name", "trafficProportion", "state", "reviewRequired", "startDate", "endDate", "appStoreVersion", "appStoreVersionExperimentTreatments", "platform", "app", "latestControlVersion", "controlVersions" ] } }, "style" : "form", @@ -74420,7 +73685,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "app", "localizations" ] + "enum" : [ "referenceName", "badge", "eventState", "deepLink", "purchaseRequirement", "primaryLocale", "priority", "purpose", "territorySchedules", "archivedTerritorySchedules", "localizations" ] } }, "style" : "form", @@ -75004,7 +74269,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "app", "subscriptions", "subscriptionGroupLocalizations" ] + "enum" : [ "referenceName", "subscriptions", "subscriptionGroupLocalizations" ] } }, "style" : "form", @@ -75184,7 +74449,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "subscription" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "subscription" ] } }, "style" : "form", @@ -75197,7 +74462,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "app", "subscriptions", "subscriptionGroupLocalizations" ] + "enum" : [ "referenceName", "subscriptions", "subscriptionGroupLocalizations" ] } }, "style" : "form", @@ -75249,7 +74514,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "startDate", "preserved", "preserveCurrentPrice", "subscription", "territory", "subscriptionPricePoint" ] + "enum" : [ "startDate", "preserved", "territory", "subscriptionPricePoint" ] } }, "style" : "form", @@ -75262,7 +74527,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -75275,7 +74540,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "subscription", "availableTerritories" ] + "enum" : [ "availableInNewTerritories", "availableTerritories" ] } }, "style" : "form", @@ -75288,7 +74553,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "offerId", "duration", "offerMode", "periodCount", "customerEligibilityPaidSubscriptionDurationInMonths", "customerEligibilityTimeSinceLastSubscribedInMonths", "customerEligibilityWaitBetweenOffersInMonths", "startDate", "endDate", "priority", "promotionIntent", "subscription", "prices" ] + "enum" : [ "referenceName", "offerId", "duration", "offerMode", "periodCount", "customerEligibilityPaidSubscriptionDurationInMonths", "customerEligibilityTimeSinceLastSubscribedInMonths", "customerEligibilityWaitBetweenOffersInMonths", "startDate", "endDate", "priority", "promotionIntent", "prices" ] } }, "style" : "form", @@ -75301,7 +74566,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "uploaded", "state", "subscription" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "state", "subscription" ] } }, "style" : "form", @@ -75809,7 +75074,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "subscription", "equalizations" ] + "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "equalizations" ] } }, "style" : "form", @@ -75937,7 +75202,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "subscription", "equalizations" ] + "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "equalizations" ] } }, "style" : "form", @@ -76097,7 +75362,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "subscription", "equalizations" ] + "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "equalizations" ] } }, "style" : "form", @@ -76201,7 +75466,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "uploaded", "subscription" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "imageAsset", "assetToken", "assetType", "uploadOperations", "assetDeliveryState", "subscription" ] } }, "style" : "form", @@ -76309,7 +75574,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "uploaded", "state", "subscription" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "uploadOperations", "state", "subscription" ] } }, "style" : "form", @@ -76625,7 +75890,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "subscription", "equalizations" ] + "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "equalizations" ] } }, "style" : "form", @@ -76936,7 +76201,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "subscription", "equalizations" ] + "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "equalizations" ] } }, "style" : "form", @@ -77230,7 +76495,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "startDate", "preserved", "preserveCurrentPrice", "subscription", "territory", "subscriptionPricePoint" ] + "enum" : [ "startDate", "preserved", "territory", "subscriptionPricePoint" ] } }, "style" : "form", @@ -77256,7 +76521,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "subscription", "equalizations" ] + "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "equalizations" ] } }, "style" : "form", @@ -77360,7 +76625,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "visibleForAllUsers", "enabled", "state", "app", "inAppPurchaseV2", "subscription", "promotionImages" ] + "enum" : [ "visibleForAllUsers", "enabled", "state", "inAppPurchaseV2", "subscription", "promotionImages" ] } }, "style" : "form", @@ -77373,7 +76638,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "app", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] + "enum" : [ "name", "productId", "inAppPurchaseType", "state", "reviewNote", "familySharable", "contentHosting", "inAppPurchaseLocalizations", "pricePoints", "content", "appStoreReviewScreenshot", "promotedPurchase", "iapPriceSchedule", "inAppPurchaseAvailability", "images" ] } }, "style" : "form", @@ -77399,7 +76664,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "uploaded", "state", "promotedPurchase" ] + "enum" : [ "fileSize", "fileName", "sourceFileChecksum", "assetToken", "imageAsset", "assetType", "uploadOperations", "state", "promotedPurchase" ] } }, "style" : "form", @@ -77655,20 +76920,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "availableInNewTerritories", "subscription", "availableTerritories" ] - } - }, - "style" : "form", - "explode" : false - }, { - "name" : "fields[subscriptions]", - "in" : "query", - "description" : "the fields to include for returned resources of type subscriptions", - "schema" : { - "type" : "array", - "items" : { - "type" : "string", - "enum" : [ "name", "productId", "familySharable", "state", "subscriptionPeriod", "reviewNote", "groupLevel", "subscriptionLocalizations", "appStoreReviewScreenshot", "group", "introductoryOffers", "promotionalOffers", "offerCodes", "prices", "pricePoints", "promotedPurchase", "subscriptionAvailability", "winBackOffers", "images" ] + "enum" : [ "availableInNewTerritories", "availableTerritories" ] } }, "style" : "form", @@ -77694,7 +76946,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "subscription", "availableTerritories" ] + "enum" : [ "availableTerritories" ] } }, "style" : "form", @@ -77902,7 +77154,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "referenceName", "offerId", "duration", "offerMode", "periodCount", "customerEligibilityPaidSubscriptionDurationInMonths", "customerEligibilityTimeSinceLastSubscribedInMonths", "customerEligibilityWaitBetweenOffersInMonths", "startDate", "endDate", "priority", "promotionIntent", "subscription", "prices" ] + "enum" : [ "referenceName", "offerId", "duration", "offerMode", "periodCount", "customerEligibilityPaidSubscriptionDurationInMonths", "customerEligibilityTimeSinceLastSubscribedInMonths", "customerEligibilityWaitBetweenOffersInMonths", "startDate", "endDate", "priority", "promotionIntent", "prices" ] } }, "style" : "form", @@ -78028,7 +77280,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -78407,7 +77659,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "preOrder", "appPriceSchedule", "appAvailability", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] + "enum" : [ "name", "bundleId", "sku", "primaryLocale", "isOrEverWasMadeForKids", "subscriptionStatusUrl", "subscriptionStatusUrlVersion", "subscriptionStatusUrlForSandbox", "subscriptionStatusUrlVersionForSandbox", "contentRightsDeclaration", "streamlinedPurchasingEnabled", "appEncryptionDeclarations", "ciProduct", "betaTesters", "betaGroups", "appStoreVersions", "preReleaseVersions", "betaAppLocalizations", "builds", "betaLicenseAgreement", "betaAppReviewDetail", "appInfos", "appClips", "appPricePoints", "endUserLicenseAgreement", "appPriceSchedule", "appAvailabilityV2", "inAppPurchases", "subscriptionGroups", "gameCenterEnabledVersions", "perfPowerMetrics", "appCustomProductPages", "inAppPurchasesV2", "promotedPurchases", "appEvents", "reviewSubmissions", "subscriptionGracePeriod", "customerReviews", "gameCenterDetail", "appStoreVersionExperimentsV2", "alternativeDistributionKey", "analyticsReportRequests", "marketplaceSearchDetail" ] } }, "style" : "form", @@ -78536,7 +77788,7 @@ "type" : "array", "items" : { "type" : "string", - "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "subscription", "equalizations" ] + "enum" : [ "customerPrice", "proceeds", "proceedsYear2", "territory", "equalizations" ] } }, "style" : "form", @@ -81890,180 +81142,6 @@ }, "required" : [ "data" ] }, - "AppAvailability" : { - "type" : "object", - "title" : "AppAvailability", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "appAvailabilities" ] - }, - "id" : { - "type" : "string" - }, - "attributes" : { - "type" : "object", - "properties" : { - "availableInNewTerritories" : { - "type" : "boolean" - } - } - }, - "relationships" : { - "type" : "object", - "properties" : { - "app" : { - "type" : "object", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "apps" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - } - }, - "availableTerritories" : { - "type" : "object", - "properties" : { - "links" : { - "$ref" : "#/components/schemas/RelationshipLinks" - }, - "meta" : { - "$ref" : "#/components/schemas/PagingInformation" - }, - "data" : { - "type" : "array", - "items" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "territories" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - } - } - } - } - }, - "links" : { - "$ref" : "#/components/schemas/ResourceLinks" - } - }, - "required" : [ "id", "type" ], - "deprecated" : true - }, - "AppAvailabilityResponse" : { - "type" : "object", - "title" : "AppAvailabilityResponse", - "properties" : { - "data" : { - "$ref" : "#/components/schemas/AppAvailability" - }, - "included" : { - "type" : "array", - "items" : { - "oneOf" : [ { - "$ref" : "#/components/schemas/App" - }, { - "$ref" : "#/components/schemas/Territory" - } ] - } - }, - "links" : { - "$ref" : "#/components/schemas/DocumentLinks" - } - }, - "required" : [ "data", "links" ], - "deprecated" : true - }, - "AppAvailabilityCreateRequest" : { - "type" : "object", - "title" : "AppAvailabilityCreateRequest", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "appAvailabilities" ] - }, - "attributes" : { - "type" : "object", - "properties" : { - "availableInNewTerritories" : { - "type" : "boolean" - } - }, - "required" : [ "availableInNewTerritories" ] - }, - "relationships" : { - "type" : "object", - "properties" : { - "app" : { - "type" : "object", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "apps" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - }, - "required" : [ "data" ] - }, - "availableTerritories" : { - "type" : "object", - "properties" : { - "data" : { - "type" : "array", - "items" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "territories" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - } - }, - "required" : [ "data" ] - } - }, - "required" : [ "app", "availableTerritories" ] - } - }, - "required" : [ "relationships", "attributes", "type" ] - } - }, - "required" : [ "data" ], - "deprecated" : true - }, "AppCategory" : { "type" : "object", "title" : "AppCategory", @@ -85878,7 +84956,11 @@ "videoUrl" : { "type" : "string" }, + "previewFrameImage" : { + "$ref" : "#/components/schemas/PreviewFrameImage" + }, "previewImage" : { + "deprecated" : true, "$ref" : "#/components/schemas/ImageAsset" }, "uploadOperations" : { @@ -85888,8 +84970,12 @@ } }, "assetDeliveryState" : { + "deprecated" : true, "$ref" : "#/components/schemas/AppMediaAssetState" }, + "videoDeliveryState" : { + "$ref" : "#/components/schemas/AppMediaVideoState" + }, "appEventAssetType" : { "$ref" : "#/components/schemas/AppEventAssetType" } @@ -86553,7 +85639,7 @@ "type" : "string" } }, - "required" : [ "locale" ] + "required" : [ "name", "locale" ] }, "relationships" : { "type" : "object", @@ -86663,6 +85749,10 @@ "type" : "string", "enum" : [ "SELF_RATED_L", "SELF_RATED_TEN", "SELF_RATED_TWELVE", "SELF_RATED_FOURTEEN", "SELF_RATED_SIXTEEN", "SELF_RATED_EIGHTEEN", "OFFICIAL_L", "OFFICIAL_TEN", "OFFICIAL_TWELVE", "OFFICIAL_FOURTEEN", "OFFICIAL_SIXTEEN", "OFFICIAL_EIGHTEEN" ] }, + "franceAgeRating" : { + "type" : "string", + "enum" : [ "EIGHTEEN" ] + }, "koreaAgeRating" : { "type" : "string", "enum" : [ "ALL", "TWELVE", "FIFTEEN", "NINETEEN", "NOT_APPLICABLE" ] @@ -87068,162 +86158,6 @@ }, "required" : [ "data" ] }, - "AppPreOrder" : { - "type" : "object", - "title" : "AppPreOrder", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "appPreOrders" ] - }, - "id" : { - "type" : "string" - }, - "attributes" : { - "type" : "object", - "properties" : { - "preOrderAvailableDate" : { - "type" : "string", - "format" : "date" - }, - "appReleaseDate" : { - "type" : "string", - "format" : "date" - } - } - }, - "relationships" : { - "type" : "object", - "properties" : { - "app" : { - "type" : "object", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "apps" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - } - } - } - }, - "links" : { - "$ref" : "#/components/schemas/ResourceLinks" - } - }, - "required" : [ "id", "type" ], - "deprecated" : true - }, - "AppPreOrderResponse" : { - "type" : "object", - "title" : "AppPreOrderResponse", - "properties" : { - "data" : { - "$ref" : "#/components/schemas/AppPreOrder" - }, - "included" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/App" - } - }, - "links" : { - "$ref" : "#/components/schemas/DocumentLinks" - } - }, - "required" : [ "data", "links" ], - "deprecated" : true - }, - "AppPreOrderCreateRequest" : { - "type" : "object", - "title" : "AppPreOrderCreateRequest", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "appPreOrders" ] - }, - "attributes" : { - "type" : "object", - "properties" : { - "appReleaseDate" : { - "type" : "string", - "format" : "date" - } - } - }, - "relationships" : { - "type" : "object", - "properties" : { - "app" : { - "type" : "object", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "apps" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - }, - "required" : [ "data" ] - } - }, - "required" : [ "app" ] - } - }, - "required" : [ "relationships", "type" ] - } - }, - "required" : [ "data" ], - "deprecated" : true - }, - "AppPreOrderUpdateRequest" : { - "type" : "object", - "title" : "AppPreOrderUpdateRequest", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "appPreOrders" ] - }, - "id" : { - "type" : "string" - }, - "attributes" : { - "type" : "object", - "properties" : { - "appReleaseDate" : { - "type" : "string", - "format" : "date" - } - } - } - }, - "required" : [ "id", "type" ] - } - }, - "required" : [ "data" ], - "deprecated" : true - }, "AppPreviewSet" : { "type" : "object", "title" : "AppPreviewSet", @@ -87512,7 +86446,11 @@ "videoUrl" : { "type" : "string" }, + "previewFrameImage" : { + "$ref" : "#/components/schemas/PreviewFrameImage" + }, "previewImage" : { + "deprecated" : true, "$ref" : "#/components/schemas/ImageAsset" }, "uploadOperations" : { @@ -87522,7 +86460,11 @@ } }, "assetDeliveryState" : { + "deprecated" : true, "$ref" : "#/components/schemas/AppMediaAssetState" + }, + "videoDeliveryState" : { + "$ref" : "#/components/schemas/AppMediaVideoState" } } }, @@ -91759,27 +90701,6 @@ } } }, - "preOrder" : { - "type" : "object", - "properties" : { - "links" : { - "$ref" : "#/components/schemas/RelationshipLinks" - }, - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "appPreOrders" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - } - }, "appPriceSchedule" : { "type" : "object", "properties" : { @@ -91788,14 +90709,6 @@ } } }, - "appAvailability" : { - "type" : "object", - "properties" : { - "links" : { - "$ref" : "#/components/schemas/RelationshipLinks" - } - } - }, "appAvailabilityV2" : { "type" : "object", "properties" : { @@ -92175,8 +91088,6 @@ "$ref" : "#/components/schemas/AppClip" }, { "$ref" : "#/components/schemas/EndUserLicenseAgreement" - }, { - "$ref" : "#/components/schemas/AppPreOrder" }, { "$ref" : "#/components/schemas/InAppPurchase" }, { @@ -92245,8 +91156,6 @@ "$ref" : "#/components/schemas/AppClip" }, { "$ref" : "#/components/schemas/EndUserLicenseAgreement" - }, { - "$ref" : "#/components/schemas/AppPreOrder" }, { "$ref" : "#/components/schemas/InAppPurchase" }, { @@ -98794,7 +97703,8 @@ }, "required" : [ "id", "type" ] } - } + }, + "deprecated" : true }, "localizations" : { "type" : "object", @@ -101662,7 +100572,8 @@ }, "required" : [ "id", "type" ] } - } + }, + "deprecated" : true }, "localizations" : { "type" : "object", @@ -102053,7 +100964,8 @@ }, "required" : [ "id", "type" ] } - } + }, + "deprecated" : true }, "gameCenterLeaderboardSets" : { "type" : "object", @@ -104384,6 +103296,14 @@ "required" : [ "id", "type" ] } } + }, + "equalizations" : { + "type" : "object", + "properties" : { + "links" : { + "$ref" : "#/components/schemas/RelationshipLinks" + } + } } } }, @@ -104432,24 +103352,6 @@ "relationships" : { "type" : "object", "properties" : { - "inAppPurchase" : { - "type" : "object", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "inAppPurchases" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - } - }, "baseTerritory" : { "type" : "object", "properties" : { @@ -104544,8 +103446,6 @@ "type" : "array", "items" : { "oneOf" : [ { - "$ref" : "#/components/schemas/InAppPurchaseV2" - }, { "$ref" : "#/components/schemas/Territory" }, { "$ref" : "#/components/schemas/InAppPurchasePrice" @@ -108338,24 +107238,6 @@ "relationships" : { "type" : "object", "properties" : { - "subscription" : { - "type" : "object", - "properties" : { - "data" : { - "type" : "object", - "properties" : { - "type" : { - "type" : "string", - "enum" : [ "subscriptions" ] - }, - "id" : { - "type" : "string" - } - }, - "required" : [ "id", "type" ] - } - } - }, "availableTerritories" : { "type" : "object", "properties" : { @@ -108401,11 +107283,7 @@ "included" : { "type" : "array", "items" : { - "oneOf" : [ { - "$ref" : "#/components/schemas/Subscription" - }, { - "$ref" : "#/components/schemas/Territory" - } ] + "$ref" : "#/components/schemas/Territory" } }, "links" : { @@ -113798,19 +112676,6 @@ }, "required" : [ "data", "links" ] }, - "AppPreOrderWithoutIncludesResponse" : { - "type" : "object", - "title" : "AppPreOrderWithoutIncludesResponse", - "properties" : { - "data" : { - "$ref" : "#/components/schemas/AppPreOrder" - }, - "links" : { - "$ref" : "#/components/schemas/DocumentLinks" - } - }, - "required" : [ "data", "links" ] - }, "PreReleaseVersionsWithoutIncludesResponse" : { "type" : "object", "title" : "PreReleaseVersionsWithoutIncludesResponse", @@ -114435,7 +113300,8 @@ "$ref" : "#/components/schemas/DocumentLinks" } }, - "required" : [ "data", "links" ] + "required" : [ "data", "links" ], + "deprecated" : true }, "GameCenterAchievementGroupAchievementLinkageRequest" : { "type" : "object", @@ -114454,7 +113320,8 @@ "required" : [ "id", "type" ] } }, - "required" : [ "data" ] + "required" : [ "data" ], + "deprecated" : true }, "GameCenterAppVersionCompatibilityVersionsLinkagesResponse" : { "type" : "object", @@ -114928,7 +113795,8 @@ "$ref" : "#/components/schemas/DocumentLinks" } }, - "required" : [ "data", "links" ] + "required" : [ "data", "links" ], + "deprecated" : true }, "GameCenterLeaderboardSetGroupLeaderboardSetLinkageRequest" : { "type" : "object", @@ -114947,7 +113815,8 @@ "required" : [ "id", "type" ] } }, - "required" : [ "data" ] + "required" : [ "data" ], + "deprecated" : true }, "GameCenterLeaderboardGroupLeaderboardLinkageResponse" : { "type" : "object", @@ -114969,7 +113838,8 @@ "$ref" : "#/components/schemas/DocumentLinks" } }, - "required" : [ "data", "links" ] + "required" : [ "data", "links" ], + "deprecated" : true }, "GameCenterLeaderboardGroupLeaderboardLinkageRequest" : { "type" : "object", @@ -114988,7 +113858,8 @@ "required" : [ "id", "type" ] } }, - "required" : [ "data" ] + "required" : [ "data" ], + "deprecated" : true }, "BundleIdWithoutIncludesResponse" : { "type" : "object", @@ -116117,6 +114988,27 @@ } } }, + "AppMediaPreviewFrameImageState" : { + "type" : "object", + "properties" : { + "errors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AppMediaStateError" + } + }, + "warnings" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AppMediaStateError" + } + }, + "state" : { + "type" : "string", + "enum" : [ "PROCESSING", "COMPLETE", "FAILED" ] + } + } + }, "AppMediaStateError" : { "type" : "object", "properties" : { @@ -116128,6 +115020,27 @@ } } }, + "AppMediaVideoState" : { + "type" : "object", + "properties" : { + "errors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AppMediaStateError" + } + }, + "warnings" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/AppMediaStateError" + } + }, + "state" : { + "type" : "string", + "enum" : [ "AWAITING_UPLOAD", "UPLOAD_COMPLETE", "PROCESSING", "COMPLETE", "FAILED" ] + } + } + }, "AppStoreAgeRating" : { "type" : "string", "enum" : [ "FOUR_PLUS", "NINE_PLUS", "TWELVE_PLUS", "SEVENTEEN_PLUS", "UNRATED" ] @@ -116162,7 +115075,7 @@ }, "BundleIdPlatform" : { "type" : "string", - "enum" : [ "IOS", "MAC_OS" ] + "enum" : [ "IOS", "MAC_OS", "UNIVERSAL" ] }, "CapabilityOption" : { "type" : "object", @@ -116228,7 +115141,7 @@ }, "CertificateType" : { "type" : "string", - "enum" : [ "IOS_DEVELOPMENT", "IOS_DISTRIBUTION", "MAC_APP_DISTRIBUTION", "MAC_INSTALLER_DISTRIBUTION", "MAC_APP_DEVELOPMENT", "DEVELOPER_ID_KEXT", "DEVELOPER_ID_APPLICATION", "DEVELOPMENT", "DISTRIBUTION", "PASS_TYPE_ID", "PASS_TYPE_ID_WITH_NFC" ] + "enum" : [ "IOS_DEVELOPMENT", "IOS_DISTRIBUTION", "MAC_APP_DISTRIBUTION", "MAC_INSTALLER_DISTRIBUTION", "MAC_APP_DEVELOPMENT", "DEVELOPER_ID_KEXT", "DEVELOPER_ID_KEXT_G2", "DEVELOPER_ID_APPLICATION", "DEVELOPER_ID_APPLICATION_G2", "DEVELOPMENT", "DISTRIBUTION", "PASS_TYPE_ID", "PASS_TYPE_ID_WITH_NFC" ] }, "CiAction" : { "type" : "object", @@ -116771,6 +115684,17 @@ "type" : "string", "enum" : [ "IOS", "MAC_OS", "TV_OS", "VISION_OS" ] }, + "PreviewFrameImage" : { + "type" : "object", + "properties" : { + "image" : { + "$ref" : "#/components/schemas/ImageAsset" + }, + "state" : { + "$ref" : "#/components/schemas/AppMediaPreviewFrameImageState" + } + } + }, "PreviewType" : { "type" : "string", "enum" : [ "IPHONE_67", "IPHONE_61", "IPHONE_65", "IPHONE_58", "IPHONE_55", "IPHONE_47", "IPHONE_40", "IPHONE_35", "IPAD_PRO_3GEN_129", "IPAD_PRO_3GEN_11", "IPAD_PRO_129", "IPAD_105", "IPAD_97", "DESKTOP", "APPLE_TV", "APPLE_VISION_PRO" ] diff --git a/package-lock.json b/package-lock.json index 97bca21..da241cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@rage-against-the-pixel/app-store-connect-api", - "version": "3.6.0", + "version": "3.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@rage-against-the-pixel/app-store-connect-api", - "version": "3.6.0", + "version": "3.7.0", "license": "MIT", "dependencies": { "@hey-api/client-fetch": "^0.4.1", @@ -1752,10 +1752,11 @@ "dev": true }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", diff --git a/package.json b/package.json index 45f20e4..99addc7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rage-against-the-pixel/app-store-connect-api", - "version": "3.6.0", + "version": "3.7.0", "description": "A TypeScript package for communicating with Apple App Store Connect API", "author": "RageAgainstThePixel", "license": "MIT", @@ -46,4 +46,4 @@ "@hey-api/client-fetch": "^0.4.1", "jose": "^5.9.4" } -} \ No newline at end of file +} diff --git a/src/app_store_connect_api/client/index.ts b/src/app_store_connect_api/client/index.ts index c3de9ea..9e8f869 100644 --- a/src/app_store_connect_api/client/index.ts +++ b/src/app_store_connect_api/client/index.ts @@ -1,4 +1,3 @@ -// This file is auto-generated by @hey-api/openapi-ts import type { Client, Config, RequestOptions } from './types'; import { createConfig, diff --git a/src/app_store_connect_api/client/types.ts b/src/app_store_connect_api/client/types.ts index fba416e..1a3eb3e 100644 --- a/src/app_store_connect_api/client/types.ts +++ b/src/app_store_connect_api/client/types.ts @@ -1,4 +1,3 @@ -// This file is auto-generated by @hey-api/openapi-ts import type { BodySerializer, Middleware, @@ -21,11 +20,11 @@ export interface Config * {@link https://developer.mozilla.org/docs/Web/API/fetch#body} */ body?: - | RequestInit['body'] - | Record - | Array> - | Array - | number; + | RequestInit['body'] + | Record + | Array> + | Array + | number; /** * A function for serializing request body parameter. By default, * {@link JSON.stringify()} will be used. @@ -44,32 +43,32 @@ export interface Config * {@link https://developer.mozilla.org/docs/Web/API/Headers/Headers#init See more} */ headers?: - | RequestInit['headers'] - | Record< - string, - | string - | number - | boolean - | (string | number | boolean)[] - | null - | undefined - | unknown - >; + | RequestInit['headers'] + | Record< + string, + | string + | number + | boolean + | (string | number | boolean)[] + | null + | undefined + | unknown + >; /** * The request method. * * {@link https://developer.mozilla.org/docs/Web/API/fetch#method See more} */ method?: - | 'CONNECT' - | 'DELETE' - | 'GET' - | 'HEAD' - | 'OPTIONS' - | 'PATCH' - | 'POST' - | 'PUT' - | 'TRACE'; + | 'CONNECT' + | 'DELETE' + | 'GET' + | 'HEAD' + | 'OPTIONS' + | 'PATCH' + | 'POST' + | 'PUT' + | 'TRACE'; /** * Return the response data parsed in a specified format. By default, `auto` * will infer the appropriate method from the `Content-Type` response header. @@ -112,19 +111,19 @@ export type RequestResult< ThrowOnError extends boolean = boolean, > = ThrowOnError extends true ? Promise<{ - data: Data; - request: Request; - response: Response; - }> - : Promise< - ( - | { data: Data; error: undefined } - | { data: undefined; error: TError } - ) & { + data: Data; request: Request; response: Response; - } - >; + }> + : Promise< + ( + | { data: Data; error: undefined } + | { data: undefined; error: TError } + ) & { + request: Request; + response: Response; + } + >; type MethodFn = < Data = unknown, @@ -186,12 +185,12 @@ export type Options< ThrowOnError extends boolean = boolean, > = T extends { body?: any } ? T extends { headers?: any } - ? OmitKeys, 'body' | 'headers'> & T - : OmitKeys, 'body'> & - T & - Pick, 'headers'> + ? OmitKeys, 'body' | 'headers'> & T + : OmitKeys, 'body'> & + T & + Pick, 'headers'> : T extends { headers?: any } - ? OmitKeys, 'headers'> & - T & - Pick, 'body'> - : OptionsBase & T; + ? OmitKeys, 'headers'> & + T & + Pick, 'body'> + : OptionsBase & T; diff --git a/src/app_store_connect_api/client/utils.ts b/src/app_store_connect_api/client/utils.ts index bdd6436..8e51856 100644 --- a/src/app_store_connect_api/client/utils.ts +++ b/src/app_store_connect_api/client/utils.ts @@ -1,4 +1,3 @@ -// This file is auto-generated by @hey-api/openapi-ts import type { Config } from './types'; interface PathSerializer { @@ -28,7 +27,7 @@ interface SerializerOptions { interface SerializeOptions extends SerializePrimitiveOptions, - SerializerOptions { } + SerializerOptions {} interface SerializePrimitiveOptions { allowReserved?: boolean; name: string; diff --git a/src/app_store_connect_api/schemas.gen.ts b/src/app_store_connect_api/schemas.gen.ts index d2e2d7f..2a9a76a 100644 --- a/src/app_store_connect_api/schemas.gen.ts +++ b/src/app_store_connect_api/schemas.gen.ts @@ -1475,186 +1475,6 @@ export const AppAvailabilityV2CreateRequestSchema = { required: ['data'] } as const; -export const AppAvailabilitySchema = { - type: 'object', - title: 'AppAvailability', - properties: { - type: { - type: 'string', - enum: ['appAvailabilities'] - }, - id: { - type: 'string' - }, - attributes: { - type: 'object', - properties: { - availableInNewTerritories: { - type: 'boolean' - } - } - }, - relationships: { - type: 'object', - properties: { - app: { - type: 'object', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['apps'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - } - }, - availableTerritories: { - type: 'object', - properties: { - links: { - '$ref': '#/components/schemas/RelationshipLinks' - }, - meta: { - '$ref': '#/components/schemas/PagingInformation' - }, - data: { - type: 'array', - items: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['territories'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - } - } - } - } - }, - links: { - '$ref': '#/components/schemas/ResourceLinks' - } - }, - required: ['id', 'type'], - deprecated: true -} as const; - -export const AppAvailabilityResponseSchema = { - type: 'object', - title: 'AppAvailabilityResponse', - properties: { - data: { - '$ref': '#/components/schemas/AppAvailability' - }, - included: { - type: 'array', - items: { - oneOf: [ - { - '$ref': '#/components/schemas/App' - }, - { - '$ref': '#/components/schemas/Territory' - } - ] - } - }, - links: { - '$ref': '#/components/schemas/DocumentLinks' - } - }, - required: ['data', 'links'], - deprecated: true -} as const; - -export const AppAvailabilityCreateRequestSchema = { - type: 'object', - title: 'AppAvailabilityCreateRequest', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['appAvailabilities'] - }, - attributes: { - type: 'object', - properties: { - availableInNewTerritories: { - type: 'boolean' - } - }, - required: ['availableInNewTerritories'] - }, - relationships: { - type: 'object', - properties: { - app: { - type: 'object', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['apps'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - }, - required: ['data'] - }, - availableTerritories: { - type: 'object', - properties: { - data: { - type: 'array', - items: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['territories'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - } - }, - required: ['data'] - } - }, - required: ['app', 'availableTerritories'] - } - }, - required: ['relationships', 'attributes', 'type'] - } - }, - required: ['data'], - deprecated: true -} as const; - export const AppCategorySchema = { type: 'object', title: 'AppCategory', @@ -5610,7 +5430,11 @@ export const AppEventVideoClipSchema = { videoUrl: { type: 'string' }, + previewFrameImage: { + '$ref': '#/components/schemas/PreviewFrameImage' + }, previewImage: { + deprecated: true, '$ref': '#/components/schemas/ImageAsset' }, uploadOperations: { @@ -5620,8 +5444,12 @@ export const AppEventVideoClipSchema = { } }, assetDeliveryState: { + deprecated: true, '$ref': '#/components/schemas/AppMediaAssetState' }, + videoDeliveryState: { + '$ref': '#/components/schemas/AppMediaVideoState' + }, appEventAssetType: { '$ref': '#/components/schemas/AppEventAssetType' } @@ -6298,7 +6126,7 @@ export const AppInfoLocalizationCreateRequestSchema = { type: 'string' } }, - required: ['locale'] + required: ['name', 'locale'] }, relationships: { type: 'object', @@ -6410,6 +6238,10 @@ export const AppInfoSchema = { type: 'string', enum: ['SELF_RATED_L', 'SELF_RATED_TEN', 'SELF_RATED_TWELVE', 'SELF_RATED_FOURTEEN', 'SELF_RATED_SIXTEEN', 'SELF_RATED_EIGHTEEN', 'OFFICIAL_L', 'OFFICIAL_TEN', 'OFFICIAL_TWELVE', 'OFFICIAL_FOURTEEN', 'OFFICIAL_SIXTEEN', 'OFFICIAL_EIGHTEEN'] }, + franceAgeRating: { + type: 'string', + enum: ['EIGHTEEN'] + }, koreaAgeRating: { type: 'string', enum: ['ALL', 'TWELVE', 'FIFTEEN', 'NINETEEN', 'NOT_APPLICABLE'] @@ -6829,166 +6661,6 @@ export const AppInfoUpdateRequestSchema = { required: ['data'] } as const; -export const AppPreOrderSchema = { - type: 'object', - title: 'AppPreOrder', - properties: { - type: { - type: 'string', - enum: ['appPreOrders'] - }, - id: { - type: 'string' - }, - attributes: { - type: 'object', - properties: { - preOrderAvailableDate: { - type: 'string', - format: 'date' - }, - appReleaseDate: { - type: 'string', - format: 'date' - } - } - }, - relationships: { - type: 'object', - properties: { - app: { - type: 'object', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['apps'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - } - } - } - }, - links: { - '$ref': '#/components/schemas/ResourceLinks' - } - }, - required: ['id', 'type'], - deprecated: true -} as const; - -export const AppPreOrderResponseSchema = { - type: 'object', - title: 'AppPreOrderResponse', - properties: { - data: { - '$ref': '#/components/schemas/AppPreOrder' - }, - included: { - type: 'array', - items: { - '$ref': '#/components/schemas/App' - } - }, - links: { - '$ref': '#/components/schemas/DocumentLinks' - } - }, - required: ['data', 'links'], - deprecated: true -} as const; - -export const AppPreOrderCreateRequestSchema = { - type: 'object', - title: 'AppPreOrderCreateRequest', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['appPreOrders'] - }, - attributes: { - type: 'object', - properties: { - appReleaseDate: { - type: 'string', - format: 'date' - } - } - }, - relationships: { - type: 'object', - properties: { - app: { - type: 'object', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['apps'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - }, - required: ['data'] - } - }, - required: ['app'] - } - }, - required: ['relationships', 'type'] - } - }, - required: ['data'], - deprecated: true -} as const; - -export const AppPreOrderUpdateRequestSchema = { - type: 'object', - title: 'AppPreOrderUpdateRequest', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['appPreOrders'] - }, - id: { - type: 'string' - }, - attributes: { - type: 'object', - properties: { - appReleaseDate: { - type: 'string', - format: 'date' - } - } - } - }, - required: ['id', 'type'] - } - }, - required: ['data'], - deprecated: true -} as const; - export const AppPreviewSetSchema = { type: 'object', title: 'AppPreviewSet', @@ -7291,7 +6963,11 @@ export const AppPreviewSchema = { videoUrl: { type: 'string' }, + previewFrameImage: { + '$ref': '#/components/schemas/PreviewFrameImage' + }, previewImage: { + deprecated: true, '$ref': '#/components/schemas/ImageAsset' }, uploadOperations: { @@ -7301,7 +6977,11 @@ export const AppPreviewSchema = { } }, assetDeliveryState: { + deprecated: true, '$ref': '#/components/schemas/AppMediaAssetState' + }, + videoDeliveryState: { + '$ref': '#/components/schemas/AppMediaVideoState' } } }, @@ -11707,27 +11387,6 @@ export const AppSchema = { } } }, - preOrder: { - type: 'object', - properties: { - links: { - '$ref': '#/components/schemas/RelationshipLinks' - }, - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['appPreOrders'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - } - }, appPriceSchedule: { type: 'object', properties: { @@ -11736,14 +11395,6 @@ export const AppSchema = { } } }, - appAvailability: { - type: 'object', - properties: { - links: { - '$ref': '#/components/schemas/RelationshipLinks' - } - } - }, appAvailabilityV2: { type: 'object', properties: { @@ -12137,9 +11788,6 @@ export const AppsResponseSchema = { { '$ref': '#/components/schemas/EndUserLicenseAgreement' }, - { - '$ref': '#/components/schemas/AppPreOrder' - }, { '$ref': '#/components/schemas/InAppPurchase' }, @@ -12233,9 +11881,6 @@ export const AppResponseSchema = { { '$ref': '#/components/schemas/EndUserLicenseAgreement' }, - { - '$ref': '#/components/schemas/AppPreOrder' - }, { '$ref': '#/components/schemas/InAppPurchase' }, @@ -19027,7 +18672,8 @@ export const GameCenterAchievementSchema = { }, required: ['id', 'type'] } - } + }, + deprecated: true }, localizations: { type: 'object', @@ -22032,7 +21678,8 @@ export const GameCenterLeaderboardSetSchema = { }, required: ['id', 'type'] } - } + }, + deprecated: true }, localizations: { type: 'object', @@ -22442,7 +22089,8 @@ export const GameCenterLeaderboardSchema = { }, required: ['id', 'type'] } - } + }, + deprecated: true }, gameCenterLeaderboardSets: { type: 'object', @@ -24850,6 +24498,14 @@ export const InAppPurchasePricePointSchema = { required: ['id', 'type'] } } + }, + equalizations: { + type: 'object', + properties: { + links: { + '$ref': '#/components/schemas/RelationshipLinks' + } + } } } }, @@ -24900,24 +24556,6 @@ export const InAppPurchasePriceScheduleSchema = { relationships: { type: 'object', properties: { - inAppPurchase: { - type: 'object', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['inAppPurchases'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - } - }, baseTerritory: { type: 'object', properties: { @@ -25013,9 +24651,6 @@ export const InAppPurchasePriceScheduleResponseSchema = { type: 'array', items: { oneOf: [ - { - '$ref': '#/components/schemas/InAppPurchaseV2' - }, { '$ref': '#/components/schemas/Territory' }, @@ -28969,24 +28604,6 @@ export const SubscriptionAvailabilitySchema = { relationships: { type: 'object', properties: { - subscription: { - type: 'object', - properties: { - data: { - type: 'object', - properties: { - type: { - type: 'string', - enum: ['subscriptions'] - }, - id: { - type: 'string' - } - }, - required: ['id', 'type'] - } - } - }, availableTerritories: { type: 'object', properties: { @@ -29033,14 +28650,7 @@ export const SubscriptionAvailabilityResponseSchema = { included: { type: 'array', items: { - oneOf: [ - { - '$ref': '#/components/schemas/Subscription' - }, - { - '$ref': '#/components/schemas/Territory' - } - ] + '$ref': '#/components/schemas/Territory' } }, links: { @@ -34635,20 +34245,6 @@ export const EndUserLicenseAgreementWithoutIncludesResponseSchema = { required: ['data', 'links'] } as const; -export const AppPreOrderWithoutIncludesResponseSchema = { - type: 'object', - title: 'AppPreOrderWithoutIncludesResponse', - properties: { - data: { - '$ref': '#/components/schemas/AppPreOrder' - }, - links: { - '$ref': '#/components/schemas/DocumentLinks' - } - }, - required: ['data', 'links'] -} as const; - export const PreReleaseVersionsWithoutIncludesResponseSchema = { type: 'object', title: 'PreReleaseVersionsWithoutIncludesResponse', @@ -35301,7 +34897,8 @@ export const GameCenterAchievementGroupAchievementLinkageResponseSchema = { '$ref': '#/components/schemas/DocumentLinks' } }, - required: ['data', 'links'] + required: ['data', 'links'], + deprecated: true } as const; export const GameCenterAchievementGroupAchievementLinkageRequestSchema = { @@ -35321,7 +34918,8 @@ export const GameCenterAchievementGroupAchievementLinkageRequestSchema = { required: ['id', 'type'] } }, - required: ['data'] + required: ['data'], + deprecated: true } as const; export const GameCenterAppVersionCompatibilityVersionsLinkagesResponseSchema = { @@ -35814,7 +35412,8 @@ export const GameCenterLeaderboardSetGroupLeaderboardSetLinkageResponseSchema = '$ref': '#/components/schemas/DocumentLinks' } }, - required: ['data', 'links'] + required: ['data', 'links'], + deprecated: true } as const; export const GameCenterLeaderboardSetGroupLeaderboardSetLinkageRequestSchema = { @@ -35834,7 +35433,8 @@ export const GameCenterLeaderboardSetGroupLeaderboardSetLinkageRequestSchema = { required: ['id', 'type'] } }, - required: ['data'] + required: ['data'], + deprecated: true } as const; export const GameCenterLeaderboardGroupLeaderboardLinkageResponseSchema = { @@ -35857,7 +35457,8 @@ export const GameCenterLeaderboardGroupLeaderboardLinkageResponseSchema = { '$ref': '#/components/schemas/DocumentLinks' } }, - required: ['data', 'links'] + required: ['data', 'links'], + deprecated: true } as const; export const GameCenterLeaderboardGroupLeaderboardLinkageRequestSchema = { @@ -35877,7 +35478,8 @@ export const GameCenterLeaderboardGroupLeaderboardLinkageRequestSchema = { required: ['id', 'type'] } }, - required: ['data'] + required: ['data'], + deprecated: true } as const; export const BundleIdWithoutIncludesResponseSchema = { @@ -37046,6 +36648,28 @@ export const AppMediaAssetStateSchema = { } } as const; +export const AppMediaPreviewFrameImageStateSchema = { + type: 'object', + properties: { + errors: { + type: 'array', + items: { + '$ref': '#/components/schemas/AppMediaStateError' + } + }, + warnings: { + type: 'array', + items: { + '$ref': '#/components/schemas/AppMediaStateError' + } + }, + state: { + type: 'string', + enum: ['PROCESSING', 'COMPLETE', 'FAILED'] + } + } +} as const; + export const AppMediaStateErrorSchema = { type: 'object', properties: { @@ -37058,6 +36682,28 @@ export const AppMediaStateErrorSchema = { } } as const; +export const AppMediaVideoStateSchema = { + type: 'object', + properties: { + errors: { + type: 'array', + items: { + '$ref': '#/components/schemas/AppMediaStateError' + } + }, + warnings: { + type: 'array', + items: { + '$ref': '#/components/schemas/AppMediaStateError' + } + }, + state: { + type: 'string', + enum: ['AWAITING_UPLOAD', 'UPLOAD_COMPLETE', 'PROCESSING', 'COMPLETE', 'FAILED'] + } + } +} as const; + export const AppStoreAgeRatingSchema = { type: 'string', enum: ['FOUR_PLUS', 'NINE_PLUS', 'TWELVE_PLUS', 'SEVENTEEN_PLUS', 'UNRATED'] @@ -37100,7 +36746,7 @@ export const BuildAudienceTypeSchema = { export const BundleIdPlatformSchema = { type: 'string', - enum: ['IOS', 'MAC_OS'] + enum: ['IOS', 'MAC_OS', 'UNIVERSAL'] } as const; export const CapabilityOptionSchema = { @@ -37170,7 +36816,7 @@ export const CapabilityTypeSchema = { export const CertificateTypeSchema = { type: 'string', - enum: ['IOS_DEVELOPMENT', 'IOS_DISTRIBUTION', 'MAC_APP_DISTRIBUTION', 'MAC_INSTALLER_DISTRIBUTION', 'MAC_APP_DEVELOPMENT', 'DEVELOPER_ID_KEXT', 'DEVELOPER_ID_APPLICATION', 'DEVELOPMENT', 'DISTRIBUTION', 'PASS_TYPE_ID', 'PASS_TYPE_ID_WITH_NFC'] + enum: ['IOS_DEVELOPMENT', 'IOS_DISTRIBUTION', 'MAC_APP_DISTRIBUTION', 'MAC_INSTALLER_DISTRIBUTION', 'MAC_APP_DEVELOPMENT', 'DEVELOPER_ID_KEXT', 'DEVELOPER_ID_KEXT_G2', 'DEVELOPER_ID_APPLICATION', 'DEVELOPER_ID_APPLICATION_G2', 'DEVELOPMENT', 'DISTRIBUTION', 'PASS_TYPE_ID', 'PASS_TYPE_ID_WITH_NFC'] } as const; export const CiActionSchema = { @@ -37756,6 +37402,18 @@ export const PlatformSchema = { enum: ['IOS', 'MAC_OS', 'TV_OS', 'VISION_OS'] } as const; +export const PreviewFrameImageSchema = { + type: 'object', + properties: { + image: { + '$ref': '#/components/schemas/ImageAsset' + }, + state: { + '$ref': '#/components/schemas/AppMediaPreviewFrameImageState' + } + } +} as const; + export const PreviewTypeSchema = { type: 'string', enum: ['IPHONE_67', 'IPHONE_61', 'IPHONE_65', 'IPHONE_58', 'IPHONE_55', 'IPHONE_47', 'IPHONE_40', 'IPHONE_35', 'IPAD_PRO_3GEN_129', 'IPAD_PRO_3GEN_11', 'IPAD_PRO_129', 'IPAD_105', 'IPAD_97', 'DESKTOP', 'APPLE_TV', 'APPLE_VISION_PRO'] diff --git a/src/app_store_connect_api/services.gen.ts b/src/app_store_connect_api/services.gen.ts index ab60be5..b5a1b80 100644 --- a/src/app_store_connect_api/services.gen.ts +++ b/src/app_store_connect_api/services.gen.ts @@ -1,3885 +1,5901 @@ // This file is auto-generated by @hey-api/openapi-ts import { createClient, createConfig, type Options } from './client'; -import type { ActorsGetCollectionData, ActorsGetCollectionError, ActorsGetCollectionResponse, ActorsGetInstanceData, ActorsGetInstanceError, ActorsGetInstanceResponse, AgeRatingDeclarationsUpdateInstanceData, AgeRatingDeclarationsUpdateInstanceError, AgeRatingDeclarationsUpdateInstanceResponse, AlternativeDistributionDomainsGetCollectionData, AlternativeDistributionDomainsGetCollectionError, AlternativeDistributionDomainsGetCollectionResponse, AlternativeDistributionDomainsCreateInstanceData, AlternativeDistributionDomainsCreateInstanceError, AlternativeDistributionDomainsCreateInstanceResponse, AlternativeDistributionDomainsGetInstanceData, AlternativeDistributionDomainsGetInstanceError, AlternativeDistributionDomainsGetInstanceResponse, AlternativeDistributionDomainsDeleteInstanceData, AlternativeDistributionDomainsDeleteInstanceError, AlternativeDistributionDomainsDeleteInstanceResponse, AlternativeDistributionKeysGetCollectionData, AlternativeDistributionKeysGetCollectionError, AlternativeDistributionKeysGetCollectionResponse, AlternativeDistributionKeysCreateInstanceData, AlternativeDistributionKeysCreateInstanceError, AlternativeDistributionKeysCreateInstanceResponse, AlternativeDistributionKeysGetInstanceData, AlternativeDistributionKeysGetInstanceError, AlternativeDistributionKeysGetInstanceResponse, AlternativeDistributionKeysDeleteInstanceData, AlternativeDistributionKeysDeleteInstanceError, AlternativeDistributionKeysDeleteInstanceResponse, AlternativeDistributionPackageDeltasGetInstanceData, AlternativeDistributionPackageDeltasGetInstanceError, AlternativeDistributionPackageDeltasGetInstanceResponse, AlternativeDistributionPackageVariantsGetInstanceData, AlternativeDistributionPackageVariantsGetInstanceError, AlternativeDistributionPackageVariantsGetInstanceResponse, AlternativeDistributionPackageVersionsGetInstanceData, AlternativeDistributionPackageVersionsGetInstanceError, AlternativeDistributionPackageVersionsGetInstanceResponse, AlternativeDistributionPackagesCreateInstanceData, AlternativeDistributionPackagesCreateInstanceError, AlternativeDistributionPackagesCreateInstanceResponse, AlternativeDistributionPackagesGetInstanceData, AlternativeDistributionPackagesGetInstanceError, AlternativeDistributionPackagesGetInstanceResponse, AnalyticsReportInstancesGetInstanceData, AnalyticsReportInstancesGetInstanceError, AnalyticsReportInstancesGetInstanceResponse, AnalyticsReportRequestsCreateInstanceData, AnalyticsReportRequestsCreateInstanceError, AnalyticsReportRequestsCreateInstanceResponse, AnalyticsReportRequestsGetInstanceData, AnalyticsReportRequestsGetInstanceError, AnalyticsReportRequestsGetInstanceResponse, AnalyticsReportRequestsDeleteInstanceData, AnalyticsReportRequestsDeleteInstanceError, AnalyticsReportRequestsDeleteInstanceResponse, AnalyticsReportSegmentsGetInstanceData, AnalyticsReportSegmentsGetInstanceError, AnalyticsReportSegmentsGetInstanceResponse, AnalyticsReportsGetInstanceData, AnalyticsReportsGetInstanceError, AnalyticsReportsGetInstanceResponse, AppAvailabilitiesV2CreateInstanceData, AppAvailabilitiesV2CreateInstanceError, AppAvailabilitiesV2CreateInstanceResponse, AppAvailabilitiesV2GetInstanceData, AppAvailabilitiesV2GetInstanceError, AppAvailabilitiesV2GetInstanceResponse, AppAvailabilitiesCreateInstanceData, AppAvailabilitiesCreateInstanceError, AppAvailabilitiesCreateInstanceResponse, AppAvailabilitiesGetInstanceData, AppAvailabilitiesGetInstanceError, AppAvailabilitiesGetInstanceResponse, AppCategoriesGetCollectionData, AppCategoriesGetCollectionError, AppCategoriesGetCollectionResponse, AppCategoriesGetInstanceData, AppCategoriesGetInstanceError, AppCategoriesGetInstanceResponse, AppClipAdvancedExperienceImagesCreateInstanceData, AppClipAdvancedExperienceImagesCreateInstanceError, AppClipAdvancedExperienceImagesCreateInstanceResponse, AppClipAdvancedExperienceImagesGetInstanceData, AppClipAdvancedExperienceImagesGetInstanceError, AppClipAdvancedExperienceImagesGetInstanceResponse, AppClipAdvancedExperienceImagesUpdateInstanceData, AppClipAdvancedExperienceImagesUpdateInstanceError, AppClipAdvancedExperienceImagesUpdateInstanceResponse, AppClipAdvancedExperiencesCreateInstanceData, AppClipAdvancedExperiencesCreateInstanceError, AppClipAdvancedExperiencesCreateInstanceResponse, AppClipAdvancedExperiencesGetInstanceData, AppClipAdvancedExperiencesGetInstanceError, AppClipAdvancedExperiencesGetInstanceResponse, AppClipAdvancedExperiencesUpdateInstanceData, AppClipAdvancedExperiencesUpdateInstanceError, AppClipAdvancedExperiencesUpdateInstanceResponse, AppClipAppStoreReviewDetailsCreateInstanceData, AppClipAppStoreReviewDetailsCreateInstanceError, AppClipAppStoreReviewDetailsCreateInstanceResponse, AppClipAppStoreReviewDetailsGetInstanceData, AppClipAppStoreReviewDetailsGetInstanceError, AppClipAppStoreReviewDetailsGetInstanceResponse, AppClipAppStoreReviewDetailsUpdateInstanceData, AppClipAppStoreReviewDetailsUpdateInstanceError, AppClipAppStoreReviewDetailsUpdateInstanceResponse, AppClipDefaultExperienceLocalizationsCreateInstanceData, AppClipDefaultExperienceLocalizationsCreateInstanceError, AppClipDefaultExperienceLocalizationsCreateInstanceResponse, AppClipDefaultExperienceLocalizationsGetInstanceData, AppClipDefaultExperienceLocalizationsGetInstanceError, AppClipDefaultExperienceLocalizationsGetInstanceResponse, AppClipDefaultExperienceLocalizationsUpdateInstanceData, AppClipDefaultExperienceLocalizationsUpdateInstanceError, AppClipDefaultExperienceLocalizationsUpdateInstanceResponse, AppClipDefaultExperienceLocalizationsDeleteInstanceData, AppClipDefaultExperienceLocalizationsDeleteInstanceError, AppClipDefaultExperienceLocalizationsDeleteInstanceResponse, AppClipDefaultExperiencesCreateInstanceData, AppClipDefaultExperiencesCreateInstanceError, AppClipDefaultExperiencesCreateInstanceResponse, AppClipDefaultExperiencesGetInstanceData, AppClipDefaultExperiencesGetInstanceError, AppClipDefaultExperiencesGetInstanceResponse, AppClipDefaultExperiencesUpdateInstanceData, AppClipDefaultExperiencesUpdateInstanceError, AppClipDefaultExperiencesUpdateInstanceResponse, AppClipDefaultExperiencesDeleteInstanceData, AppClipDefaultExperiencesDeleteInstanceError, AppClipDefaultExperiencesDeleteInstanceResponse, AppClipHeaderImagesCreateInstanceData, AppClipHeaderImagesCreateInstanceError, AppClipHeaderImagesCreateInstanceResponse, AppClipHeaderImagesGetInstanceData, AppClipHeaderImagesGetInstanceError, AppClipHeaderImagesGetInstanceResponse, AppClipHeaderImagesUpdateInstanceData, AppClipHeaderImagesUpdateInstanceError, AppClipHeaderImagesUpdateInstanceResponse, AppClipHeaderImagesDeleteInstanceData, AppClipHeaderImagesDeleteInstanceError, AppClipHeaderImagesDeleteInstanceResponse, AppClipsGetInstanceData, AppClipsGetInstanceError, AppClipsGetInstanceResponse, AppCustomProductPageLocalizationsCreateInstanceData, AppCustomProductPageLocalizationsCreateInstanceError, AppCustomProductPageLocalizationsCreateInstanceResponse, AppCustomProductPageLocalizationsGetInstanceData, AppCustomProductPageLocalizationsGetInstanceError, AppCustomProductPageLocalizationsGetInstanceResponse, AppCustomProductPageLocalizationsUpdateInstanceData, AppCustomProductPageLocalizationsUpdateInstanceError, AppCustomProductPageLocalizationsUpdateInstanceResponse, AppCustomProductPageLocalizationsDeleteInstanceData, AppCustomProductPageLocalizationsDeleteInstanceError, AppCustomProductPageLocalizationsDeleteInstanceResponse, AppCustomProductPageVersionsCreateInstanceData, AppCustomProductPageVersionsCreateInstanceError, AppCustomProductPageVersionsCreateInstanceResponse, AppCustomProductPageVersionsGetInstanceData, AppCustomProductPageVersionsGetInstanceError, AppCustomProductPageVersionsGetInstanceResponse, AppCustomProductPageVersionsUpdateInstanceData, AppCustomProductPageVersionsUpdateInstanceError, AppCustomProductPageVersionsUpdateInstanceResponse, AppCustomProductPagesCreateInstanceData, AppCustomProductPagesCreateInstanceError, AppCustomProductPagesCreateInstanceResponse, AppCustomProductPagesGetInstanceData, AppCustomProductPagesGetInstanceError, AppCustomProductPagesGetInstanceResponse, AppCustomProductPagesUpdateInstanceData, AppCustomProductPagesUpdateInstanceError, AppCustomProductPagesUpdateInstanceResponse, AppCustomProductPagesDeleteInstanceData, AppCustomProductPagesDeleteInstanceError, AppCustomProductPagesDeleteInstanceResponse, AppEncryptionDeclarationDocumentsCreateInstanceData, AppEncryptionDeclarationDocumentsCreateInstanceError, AppEncryptionDeclarationDocumentsCreateInstanceResponse, AppEncryptionDeclarationDocumentsGetInstanceData, AppEncryptionDeclarationDocumentsGetInstanceError, AppEncryptionDeclarationDocumentsGetInstanceResponse, AppEncryptionDeclarationDocumentsUpdateInstanceData, AppEncryptionDeclarationDocumentsUpdateInstanceError, AppEncryptionDeclarationDocumentsUpdateInstanceResponse, AppEncryptionDeclarationsGetCollectionData, AppEncryptionDeclarationsGetCollectionError, AppEncryptionDeclarationsGetCollectionResponse, AppEncryptionDeclarationsCreateInstanceData, AppEncryptionDeclarationsCreateInstanceError, AppEncryptionDeclarationsCreateInstanceResponse, AppEncryptionDeclarationsGetInstanceData, AppEncryptionDeclarationsGetInstanceError, AppEncryptionDeclarationsGetInstanceResponse, AppEventLocalizationsCreateInstanceData, AppEventLocalizationsCreateInstanceError, AppEventLocalizationsCreateInstanceResponse, AppEventLocalizationsGetInstanceData, AppEventLocalizationsGetInstanceError, AppEventLocalizationsGetInstanceResponse, AppEventLocalizationsUpdateInstanceData, AppEventLocalizationsUpdateInstanceError, AppEventLocalizationsUpdateInstanceResponse, AppEventLocalizationsDeleteInstanceData, AppEventLocalizationsDeleteInstanceError, AppEventLocalizationsDeleteInstanceResponse, AppEventScreenshotsCreateInstanceData, AppEventScreenshotsCreateInstanceError, AppEventScreenshotsCreateInstanceResponse, AppEventScreenshotsGetInstanceData, AppEventScreenshotsGetInstanceError, AppEventScreenshotsGetInstanceResponse, AppEventScreenshotsUpdateInstanceData, AppEventScreenshotsUpdateInstanceError, AppEventScreenshotsUpdateInstanceResponse, AppEventScreenshotsDeleteInstanceData, AppEventScreenshotsDeleteInstanceError, AppEventScreenshotsDeleteInstanceResponse, AppEventVideoClipsCreateInstanceData, AppEventVideoClipsCreateInstanceError, AppEventVideoClipsCreateInstanceResponse, AppEventVideoClipsGetInstanceData, AppEventVideoClipsGetInstanceError, AppEventVideoClipsGetInstanceResponse, AppEventVideoClipsUpdateInstanceData, AppEventVideoClipsUpdateInstanceError, AppEventVideoClipsUpdateInstanceResponse, AppEventVideoClipsDeleteInstanceData, AppEventVideoClipsDeleteInstanceError, AppEventVideoClipsDeleteInstanceResponse, AppEventsCreateInstanceData, AppEventsCreateInstanceError, AppEventsCreateInstanceResponse, AppEventsGetInstanceData, AppEventsGetInstanceError, AppEventsGetInstanceResponse, AppEventsUpdateInstanceData, AppEventsUpdateInstanceError, AppEventsUpdateInstanceResponse, AppEventsDeleteInstanceData, AppEventsDeleteInstanceError, AppEventsDeleteInstanceResponse, AppInfoLocalizationsCreateInstanceData, AppInfoLocalizationsCreateInstanceError, AppInfoLocalizationsCreateInstanceResponse, AppInfoLocalizationsGetInstanceData, AppInfoLocalizationsGetInstanceError, AppInfoLocalizationsGetInstanceResponse, AppInfoLocalizationsUpdateInstanceData, AppInfoLocalizationsUpdateInstanceError, AppInfoLocalizationsUpdateInstanceResponse, AppInfoLocalizationsDeleteInstanceData, AppInfoLocalizationsDeleteInstanceError, AppInfoLocalizationsDeleteInstanceResponse, AppInfosGetInstanceData, AppInfosGetInstanceError, AppInfosGetInstanceResponse, AppInfosUpdateInstanceData, AppInfosUpdateInstanceError, AppInfosUpdateInstanceResponse, AppPreOrdersCreateInstanceData, AppPreOrdersCreateInstanceError, AppPreOrdersCreateInstanceResponse, AppPreOrdersGetInstanceData, AppPreOrdersGetInstanceError, AppPreOrdersGetInstanceResponse, AppPreOrdersUpdateInstanceData, AppPreOrdersUpdateInstanceError, AppPreOrdersUpdateInstanceResponse, AppPreOrdersDeleteInstanceData, AppPreOrdersDeleteInstanceError, AppPreOrdersDeleteInstanceResponse, AppPreviewSetsCreateInstanceData, AppPreviewSetsCreateInstanceError, AppPreviewSetsCreateInstanceResponse, AppPreviewSetsGetInstanceData, AppPreviewSetsGetInstanceError, AppPreviewSetsGetInstanceResponse, AppPreviewSetsDeleteInstanceData, AppPreviewSetsDeleteInstanceError, AppPreviewSetsDeleteInstanceResponse, AppPreviewsCreateInstanceData, AppPreviewsCreateInstanceError, AppPreviewsCreateInstanceResponse, AppPreviewsGetInstanceData, AppPreviewsGetInstanceError, AppPreviewsGetInstanceResponse, AppPreviewsUpdateInstanceData, AppPreviewsUpdateInstanceError, AppPreviewsUpdateInstanceResponse, AppPreviewsDeleteInstanceData, AppPreviewsDeleteInstanceError, AppPreviewsDeleteInstanceResponse, AppPricePointsV3GetInstanceData, AppPricePointsV3GetInstanceError, AppPricePointsV3GetInstanceResponse, AppPriceSchedulesCreateInstanceData, AppPriceSchedulesCreateInstanceError, AppPriceSchedulesCreateInstanceResponse, AppPriceSchedulesGetInstanceData, AppPriceSchedulesGetInstanceError, AppPriceSchedulesGetInstanceResponse, AppScreenshotSetsCreateInstanceData, AppScreenshotSetsCreateInstanceError, AppScreenshotSetsCreateInstanceResponse, AppScreenshotSetsGetInstanceData, AppScreenshotSetsGetInstanceError, AppScreenshotSetsGetInstanceResponse, AppScreenshotSetsDeleteInstanceData, AppScreenshotSetsDeleteInstanceError, AppScreenshotSetsDeleteInstanceResponse, AppScreenshotsCreateInstanceData, AppScreenshotsCreateInstanceError, AppScreenshotsCreateInstanceResponse, AppScreenshotsGetInstanceData, AppScreenshotsGetInstanceError, AppScreenshotsGetInstanceResponse, AppScreenshotsUpdateInstanceData, AppScreenshotsUpdateInstanceError, AppScreenshotsUpdateInstanceResponse, AppScreenshotsDeleteInstanceData, AppScreenshotsDeleteInstanceError, AppScreenshotsDeleteInstanceResponse, AppStoreReviewAttachmentsCreateInstanceData, AppStoreReviewAttachmentsCreateInstanceError, AppStoreReviewAttachmentsCreateInstanceResponse, AppStoreReviewAttachmentsGetInstanceData, AppStoreReviewAttachmentsGetInstanceError, AppStoreReviewAttachmentsGetInstanceResponse, AppStoreReviewAttachmentsUpdateInstanceData, AppStoreReviewAttachmentsUpdateInstanceError, AppStoreReviewAttachmentsUpdateInstanceResponse, AppStoreReviewAttachmentsDeleteInstanceData, AppStoreReviewAttachmentsDeleteInstanceError, AppStoreReviewAttachmentsDeleteInstanceResponse, AppStoreReviewDetailsCreateInstanceData, AppStoreReviewDetailsCreateInstanceError, AppStoreReviewDetailsCreateInstanceResponse, AppStoreReviewDetailsGetInstanceData, AppStoreReviewDetailsGetInstanceError, AppStoreReviewDetailsGetInstanceResponse, AppStoreReviewDetailsUpdateInstanceData, AppStoreReviewDetailsUpdateInstanceError, AppStoreReviewDetailsUpdateInstanceResponse, AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceData, AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceError, AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceResponse, AppStoreVersionExperimentTreatmentLocalizationsGetInstanceData, AppStoreVersionExperimentTreatmentLocalizationsGetInstanceError, AppStoreVersionExperimentTreatmentLocalizationsGetInstanceResponse, AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceData, AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceError, AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceResponse, AppStoreVersionExperimentTreatmentsCreateInstanceData, AppStoreVersionExperimentTreatmentsCreateInstanceError, AppStoreVersionExperimentTreatmentsCreateInstanceResponse, AppStoreVersionExperimentTreatmentsGetInstanceData, AppStoreVersionExperimentTreatmentsGetInstanceError, AppStoreVersionExperimentTreatmentsGetInstanceResponse, AppStoreVersionExperimentTreatmentsUpdateInstanceData, AppStoreVersionExperimentTreatmentsUpdateInstanceError, AppStoreVersionExperimentTreatmentsUpdateInstanceResponse, AppStoreVersionExperimentTreatmentsDeleteInstanceData, AppStoreVersionExperimentTreatmentsDeleteInstanceError, AppStoreVersionExperimentTreatmentsDeleteInstanceResponse, AppStoreVersionExperimentsV2CreateInstanceData, AppStoreVersionExperimentsV2CreateInstanceError, AppStoreVersionExperimentsV2CreateInstanceResponse, AppStoreVersionExperimentsV2GetInstanceData, AppStoreVersionExperimentsV2GetInstanceError, AppStoreVersionExperimentsV2GetInstanceResponse, AppStoreVersionExperimentsV2UpdateInstanceData, AppStoreVersionExperimentsV2UpdateInstanceError, AppStoreVersionExperimentsV2UpdateInstanceResponse, AppStoreVersionExperimentsV2DeleteInstanceData, AppStoreVersionExperimentsV2DeleteInstanceError, AppStoreVersionExperimentsV2DeleteInstanceResponse, AppStoreVersionExperimentsCreateInstanceData, AppStoreVersionExperimentsCreateInstanceError, AppStoreVersionExperimentsCreateInstanceResponse, AppStoreVersionExperimentsGetInstanceData, AppStoreVersionExperimentsGetInstanceError, AppStoreVersionExperimentsGetInstanceResponse, AppStoreVersionExperimentsUpdateInstanceData, AppStoreVersionExperimentsUpdateInstanceError, AppStoreVersionExperimentsUpdateInstanceResponse, AppStoreVersionExperimentsDeleteInstanceData, AppStoreVersionExperimentsDeleteInstanceError, AppStoreVersionExperimentsDeleteInstanceResponse, AppStoreVersionLocalizationsCreateInstanceData, AppStoreVersionLocalizationsCreateInstanceError, AppStoreVersionLocalizationsCreateInstanceResponse, AppStoreVersionLocalizationsGetInstanceData, AppStoreVersionLocalizationsGetInstanceError, AppStoreVersionLocalizationsGetInstanceResponse, AppStoreVersionLocalizationsUpdateInstanceData, AppStoreVersionLocalizationsUpdateInstanceError, AppStoreVersionLocalizationsUpdateInstanceResponse, AppStoreVersionLocalizationsDeleteInstanceData, AppStoreVersionLocalizationsDeleteInstanceError, AppStoreVersionLocalizationsDeleteInstanceResponse, AppStoreVersionPhasedReleasesCreateInstanceData, AppStoreVersionPhasedReleasesCreateInstanceError, AppStoreVersionPhasedReleasesCreateInstanceResponse, AppStoreVersionPhasedReleasesUpdateInstanceData, AppStoreVersionPhasedReleasesUpdateInstanceError, AppStoreVersionPhasedReleasesUpdateInstanceResponse, AppStoreVersionPhasedReleasesDeleteInstanceData, AppStoreVersionPhasedReleasesDeleteInstanceError, AppStoreVersionPhasedReleasesDeleteInstanceResponse, AppStoreVersionPromotionsCreateInstanceData, AppStoreVersionPromotionsCreateInstanceError, AppStoreVersionPromotionsCreateInstanceResponse, AppStoreVersionReleaseRequestsCreateInstanceData, AppStoreVersionReleaseRequestsCreateInstanceError, AppStoreVersionReleaseRequestsCreateInstanceResponse, AppStoreVersionSubmissionsCreateInstanceData, AppStoreVersionSubmissionsCreateInstanceError, AppStoreVersionSubmissionsCreateInstanceResponse, AppStoreVersionSubmissionsDeleteInstanceData, AppStoreVersionSubmissionsDeleteInstanceError, AppStoreVersionSubmissionsDeleteInstanceResponse, AppStoreVersionsCreateInstanceData, AppStoreVersionsCreateInstanceError, AppStoreVersionsCreateInstanceResponse, AppStoreVersionsGetInstanceData, AppStoreVersionsGetInstanceError, AppStoreVersionsGetInstanceResponse, AppStoreVersionsUpdateInstanceData, AppStoreVersionsUpdateInstanceError, AppStoreVersionsUpdateInstanceResponse, AppStoreVersionsDeleteInstanceData, AppStoreVersionsDeleteInstanceError, AppStoreVersionsDeleteInstanceResponse, AppsGetCollectionData, AppsGetCollectionError, AppsGetCollectionResponse, AppsGetInstanceData, AppsGetInstanceError, AppsGetInstanceResponse, AppsUpdateInstanceData, AppsUpdateInstanceError, AppsUpdateInstanceResponse, BetaAppClipInvocationLocalizationsCreateInstanceData, BetaAppClipInvocationLocalizationsCreateInstanceError, BetaAppClipInvocationLocalizationsCreateInstanceResponse, BetaAppClipInvocationLocalizationsUpdateInstanceData, BetaAppClipInvocationLocalizationsUpdateInstanceError, BetaAppClipInvocationLocalizationsUpdateInstanceResponse, BetaAppClipInvocationLocalizationsDeleteInstanceData, BetaAppClipInvocationLocalizationsDeleteInstanceError, BetaAppClipInvocationLocalizationsDeleteInstanceResponse, BetaAppClipInvocationsCreateInstanceData, BetaAppClipInvocationsCreateInstanceError, BetaAppClipInvocationsCreateInstanceResponse, BetaAppClipInvocationsGetInstanceData, BetaAppClipInvocationsGetInstanceError, BetaAppClipInvocationsGetInstanceResponse, BetaAppClipInvocationsUpdateInstanceData, BetaAppClipInvocationsUpdateInstanceError, BetaAppClipInvocationsUpdateInstanceResponse, BetaAppClipInvocationsDeleteInstanceData, BetaAppClipInvocationsDeleteInstanceError, BetaAppClipInvocationsDeleteInstanceResponse, BetaAppLocalizationsGetCollectionData, BetaAppLocalizationsGetCollectionError, BetaAppLocalizationsGetCollectionResponse, BetaAppLocalizationsCreateInstanceData, BetaAppLocalizationsCreateInstanceError, BetaAppLocalizationsCreateInstanceResponse, BetaAppLocalizationsGetInstanceData, BetaAppLocalizationsGetInstanceError, BetaAppLocalizationsGetInstanceResponse, BetaAppLocalizationsUpdateInstanceData, BetaAppLocalizationsUpdateInstanceError, BetaAppLocalizationsUpdateInstanceResponse, BetaAppLocalizationsDeleteInstanceData, BetaAppLocalizationsDeleteInstanceError, BetaAppLocalizationsDeleteInstanceResponse, BetaAppReviewDetailsGetCollectionData, BetaAppReviewDetailsGetCollectionError, BetaAppReviewDetailsGetCollectionResponse, BetaAppReviewDetailsGetInstanceData, BetaAppReviewDetailsGetInstanceError, BetaAppReviewDetailsGetInstanceResponse, BetaAppReviewDetailsUpdateInstanceData, BetaAppReviewDetailsUpdateInstanceError, BetaAppReviewDetailsUpdateInstanceResponse, BetaAppReviewSubmissionsGetCollectionData, BetaAppReviewSubmissionsGetCollectionError, BetaAppReviewSubmissionsGetCollectionResponse, BetaAppReviewSubmissionsCreateInstanceData, BetaAppReviewSubmissionsCreateInstanceError, BetaAppReviewSubmissionsCreateInstanceResponse, BetaAppReviewSubmissionsGetInstanceData, BetaAppReviewSubmissionsGetInstanceError, BetaAppReviewSubmissionsGetInstanceResponse, BetaBuildLocalizationsGetCollectionData, BetaBuildLocalizationsGetCollectionError, BetaBuildLocalizationsGetCollectionResponse, BetaBuildLocalizationsCreateInstanceData, BetaBuildLocalizationsCreateInstanceError, BetaBuildLocalizationsCreateInstanceResponse, BetaBuildLocalizationsGetInstanceData, BetaBuildLocalizationsGetInstanceError, BetaBuildLocalizationsGetInstanceResponse, BetaBuildLocalizationsUpdateInstanceData, BetaBuildLocalizationsUpdateInstanceError, BetaBuildLocalizationsUpdateInstanceResponse, BetaBuildLocalizationsDeleteInstanceData, BetaBuildLocalizationsDeleteInstanceError, BetaBuildLocalizationsDeleteInstanceResponse, BetaGroupsGetCollectionData, BetaGroupsGetCollectionError, BetaGroupsGetCollectionResponse, BetaGroupsCreateInstanceData, BetaGroupsCreateInstanceError, BetaGroupsCreateInstanceResponse, BetaGroupsGetInstanceData, BetaGroupsGetInstanceError, BetaGroupsGetInstanceResponse, BetaGroupsUpdateInstanceData, BetaGroupsUpdateInstanceError, BetaGroupsUpdateInstanceResponse, BetaGroupsDeleteInstanceData, BetaGroupsDeleteInstanceError, BetaGroupsDeleteInstanceResponse, BetaLicenseAgreementsGetCollectionData, BetaLicenseAgreementsGetCollectionError, BetaLicenseAgreementsGetCollectionResponse, BetaLicenseAgreementsGetInstanceData, BetaLicenseAgreementsGetInstanceError, BetaLicenseAgreementsGetInstanceResponse, BetaLicenseAgreementsUpdateInstanceData, BetaLicenseAgreementsUpdateInstanceError, BetaLicenseAgreementsUpdateInstanceResponse, BetaTesterInvitationsCreateInstanceData, BetaTesterInvitationsCreateInstanceError, BetaTesterInvitationsCreateInstanceResponse, BetaTestersGetCollectionData, BetaTestersGetCollectionError, BetaTestersGetCollectionResponse, BetaTestersCreateInstanceData, BetaTestersCreateInstanceError, BetaTestersCreateInstanceResponse, BetaTestersGetInstanceData, BetaTestersGetInstanceError, BetaTestersGetInstanceResponse, BetaTestersDeleteInstanceData, BetaTestersDeleteInstanceError, BetaTestersDeleteInstanceResponse, BuildBetaDetailsGetCollectionData, BuildBetaDetailsGetCollectionError, BuildBetaDetailsGetCollectionResponse, BuildBetaDetailsGetInstanceData, BuildBetaDetailsGetInstanceError, BuildBetaDetailsGetInstanceResponse, BuildBetaDetailsUpdateInstanceData, BuildBetaDetailsUpdateInstanceError, BuildBetaDetailsUpdateInstanceResponse, BuildBetaNotificationsCreateInstanceData, BuildBetaNotificationsCreateInstanceError, BuildBetaNotificationsCreateInstanceResponse, BuildsGetCollectionData, BuildsGetCollectionError, BuildsGetCollectionResponse, BuildsGetInstanceData, BuildsGetInstanceError, BuildsGetInstanceResponse, BuildsUpdateInstanceData, BuildsUpdateInstanceError, BuildsUpdateInstanceResponse, BundleIdCapabilitiesCreateInstanceData, BundleIdCapabilitiesCreateInstanceError, BundleIdCapabilitiesCreateInstanceResponse, BundleIdCapabilitiesUpdateInstanceData, BundleIdCapabilitiesUpdateInstanceError, BundleIdCapabilitiesUpdateInstanceResponse, BundleIdCapabilitiesDeleteInstanceData, BundleIdCapabilitiesDeleteInstanceError, BundleIdCapabilitiesDeleteInstanceResponse, BundleIdsGetCollectionData, BundleIdsGetCollectionError, BundleIdsGetCollectionResponse, BundleIdsCreateInstanceData, BundleIdsCreateInstanceError, BundleIdsCreateInstanceResponse, BundleIdsGetInstanceData, BundleIdsGetInstanceError, BundleIdsGetInstanceResponse, BundleIdsUpdateInstanceData, BundleIdsUpdateInstanceError, BundleIdsUpdateInstanceResponse, BundleIdsDeleteInstanceData, BundleIdsDeleteInstanceError, BundleIdsDeleteInstanceResponse, CertificatesGetCollectionData, CertificatesGetCollectionError, CertificatesGetCollectionResponse, CertificatesCreateInstanceData, CertificatesCreateInstanceError, CertificatesCreateInstanceResponse, CertificatesGetInstanceData, CertificatesGetInstanceError, CertificatesGetInstanceResponse, CertificatesDeleteInstanceData, CertificatesDeleteInstanceError, CertificatesDeleteInstanceResponse, CiArtifactsGetInstanceData, CiArtifactsGetInstanceError, CiArtifactsGetInstanceResponse, CiBuildActionsGetInstanceData, CiBuildActionsGetInstanceError, CiBuildActionsGetInstanceResponse, CiBuildRunsCreateInstanceData, CiBuildRunsCreateInstanceError, CiBuildRunsCreateInstanceResponse, CiBuildRunsGetInstanceData, CiBuildRunsGetInstanceError, CiBuildRunsGetInstanceResponse, CiIssuesGetInstanceData, CiIssuesGetInstanceError, CiIssuesGetInstanceResponse, CiMacOsVersionsGetCollectionData, CiMacOsVersionsGetCollectionError, CiMacOsVersionsGetCollectionResponse, CiMacOsVersionsGetInstanceData, CiMacOsVersionsGetInstanceError, CiMacOsVersionsGetInstanceResponse, CiProductsGetCollectionData, CiProductsGetCollectionError, CiProductsGetCollectionResponse, CiProductsGetInstanceData, CiProductsGetInstanceError, CiProductsGetInstanceResponse, CiProductsDeleteInstanceData, CiProductsDeleteInstanceError, CiProductsDeleteInstanceResponse, CiTestResultsGetInstanceData, CiTestResultsGetInstanceError, CiTestResultsGetInstanceResponse, CiWorkflowsCreateInstanceData, CiWorkflowsCreateInstanceError, CiWorkflowsCreateInstanceResponse, CiWorkflowsGetInstanceData, CiWorkflowsGetInstanceError, CiWorkflowsGetInstanceResponse, CiWorkflowsUpdateInstanceData, CiWorkflowsUpdateInstanceError, CiWorkflowsUpdateInstanceResponse, CiWorkflowsDeleteInstanceData, CiWorkflowsDeleteInstanceError, CiWorkflowsDeleteInstanceResponse, CiXcodeVersionsGetCollectionData, CiXcodeVersionsGetCollectionError, CiXcodeVersionsGetCollectionResponse, CiXcodeVersionsGetInstanceData, CiXcodeVersionsGetInstanceError, CiXcodeVersionsGetInstanceResponse, CustomerReviewResponsesCreateInstanceData, CustomerReviewResponsesCreateInstanceError, CustomerReviewResponsesCreateInstanceResponse, CustomerReviewResponsesGetInstanceData, CustomerReviewResponsesGetInstanceError, CustomerReviewResponsesGetInstanceResponse, CustomerReviewResponsesDeleteInstanceData, CustomerReviewResponsesDeleteInstanceError, CustomerReviewResponsesDeleteInstanceResponse, CustomerReviewsGetInstanceData, CustomerReviewsGetInstanceError, CustomerReviewsGetInstanceResponse, DevicesGetCollectionData, DevicesGetCollectionError, DevicesGetCollectionResponse, DevicesCreateInstanceData, DevicesCreateInstanceError, DevicesCreateInstanceResponse, DevicesGetInstanceData, DevicesGetInstanceError, DevicesGetInstanceResponse, DevicesUpdateInstanceData, DevicesUpdateInstanceError, DevicesUpdateInstanceResponse, EndAppAvailabilityPreOrdersCreateInstanceData, EndAppAvailabilityPreOrdersCreateInstanceError, EndAppAvailabilityPreOrdersCreateInstanceResponse, EndUserLicenseAgreementsCreateInstanceData, EndUserLicenseAgreementsCreateInstanceError, EndUserLicenseAgreementsCreateInstanceResponse, EndUserLicenseAgreementsGetInstanceData, EndUserLicenseAgreementsGetInstanceError, EndUserLicenseAgreementsGetInstanceResponse, EndUserLicenseAgreementsUpdateInstanceData, EndUserLicenseAgreementsUpdateInstanceError, EndUserLicenseAgreementsUpdateInstanceResponse, EndUserLicenseAgreementsDeleteInstanceData, EndUserLicenseAgreementsDeleteInstanceError, EndUserLicenseAgreementsDeleteInstanceResponse, FinanceReportsGetCollectionData, FinanceReportsGetCollectionError, FinanceReportsGetCollectionResponse, GameCenterAchievementImagesCreateInstanceData, GameCenterAchievementImagesCreateInstanceError, GameCenterAchievementImagesCreateInstanceResponse, GameCenterAchievementImagesGetInstanceData, GameCenterAchievementImagesGetInstanceError, GameCenterAchievementImagesGetInstanceResponse, GameCenterAchievementImagesUpdateInstanceData, GameCenterAchievementImagesUpdateInstanceError, GameCenterAchievementImagesUpdateInstanceResponse, GameCenterAchievementImagesDeleteInstanceData, GameCenterAchievementImagesDeleteInstanceError, GameCenterAchievementImagesDeleteInstanceResponse, GameCenterAchievementLocalizationsCreateInstanceData, GameCenterAchievementLocalizationsCreateInstanceError, GameCenterAchievementLocalizationsCreateInstanceResponse, GameCenterAchievementLocalizationsGetInstanceData, GameCenterAchievementLocalizationsGetInstanceError, GameCenterAchievementLocalizationsGetInstanceResponse, GameCenterAchievementLocalizationsUpdateInstanceData, GameCenterAchievementLocalizationsUpdateInstanceError, GameCenterAchievementLocalizationsUpdateInstanceResponse, GameCenterAchievementLocalizationsDeleteInstanceData, GameCenterAchievementLocalizationsDeleteInstanceError, GameCenterAchievementLocalizationsDeleteInstanceResponse, GameCenterAchievementReleasesCreateInstanceData, GameCenterAchievementReleasesCreateInstanceError, GameCenterAchievementReleasesCreateInstanceResponse, GameCenterAchievementReleasesGetInstanceData, GameCenterAchievementReleasesGetInstanceError, GameCenterAchievementReleasesGetInstanceResponse, GameCenterAchievementReleasesDeleteInstanceData, GameCenterAchievementReleasesDeleteInstanceError, GameCenterAchievementReleasesDeleteInstanceResponse, GameCenterAchievementsCreateInstanceData, GameCenterAchievementsCreateInstanceError, GameCenterAchievementsCreateInstanceResponse, GameCenterAchievementsGetInstanceData, GameCenterAchievementsGetInstanceError, GameCenterAchievementsGetInstanceResponse, GameCenterAchievementsUpdateInstanceData, GameCenterAchievementsUpdateInstanceError, GameCenterAchievementsUpdateInstanceResponse, GameCenterAchievementsDeleteInstanceData, GameCenterAchievementsDeleteInstanceError, GameCenterAchievementsDeleteInstanceResponse, GameCenterAppVersionsCreateInstanceData, GameCenterAppVersionsCreateInstanceError, GameCenterAppVersionsCreateInstanceResponse, GameCenterAppVersionsGetInstanceData, GameCenterAppVersionsGetInstanceError, GameCenterAppVersionsGetInstanceResponse, GameCenterAppVersionsUpdateInstanceData, GameCenterAppVersionsUpdateInstanceError, GameCenterAppVersionsUpdateInstanceResponse, GameCenterDetailsCreateInstanceData, GameCenterDetailsCreateInstanceError, GameCenterDetailsCreateInstanceResponse, GameCenterDetailsGetInstanceData, GameCenterDetailsGetInstanceError, GameCenterDetailsGetInstanceResponse, GameCenterDetailsUpdateInstanceData, GameCenterDetailsUpdateInstanceError, GameCenterDetailsUpdateInstanceResponse, GameCenterGroupsGetCollectionData, GameCenterGroupsGetCollectionError, GameCenterGroupsGetCollectionResponse, GameCenterGroupsCreateInstanceData, GameCenterGroupsCreateInstanceError, GameCenterGroupsCreateInstanceResponse, GameCenterGroupsGetInstanceData, GameCenterGroupsGetInstanceError, GameCenterGroupsGetInstanceResponse, GameCenterGroupsUpdateInstanceData, GameCenterGroupsUpdateInstanceError, GameCenterGroupsUpdateInstanceResponse, GameCenterGroupsDeleteInstanceData, GameCenterGroupsDeleteInstanceError, GameCenterGroupsDeleteInstanceResponse, GameCenterLeaderboardEntrySubmissionsCreateInstanceData, GameCenterLeaderboardEntrySubmissionsCreateInstanceError, GameCenterLeaderboardEntrySubmissionsCreateInstanceResponse, GameCenterLeaderboardImagesCreateInstanceData, GameCenterLeaderboardImagesCreateInstanceError, GameCenterLeaderboardImagesCreateInstanceResponse, GameCenterLeaderboardImagesGetInstanceData, GameCenterLeaderboardImagesGetInstanceError, GameCenterLeaderboardImagesGetInstanceResponse, GameCenterLeaderboardImagesUpdateInstanceData, GameCenterLeaderboardImagesUpdateInstanceError, GameCenterLeaderboardImagesUpdateInstanceResponse, GameCenterLeaderboardImagesDeleteInstanceData, GameCenterLeaderboardImagesDeleteInstanceError, GameCenterLeaderboardImagesDeleteInstanceResponse, GameCenterLeaderboardLocalizationsCreateInstanceData, GameCenterLeaderboardLocalizationsCreateInstanceError, GameCenterLeaderboardLocalizationsCreateInstanceResponse, GameCenterLeaderboardLocalizationsGetInstanceData, GameCenterLeaderboardLocalizationsGetInstanceError, GameCenterLeaderboardLocalizationsGetInstanceResponse, GameCenterLeaderboardLocalizationsUpdateInstanceData, GameCenterLeaderboardLocalizationsUpdateInstanceError, GameCenterLeaderboardLocalizationsUpdateInstanceResponse, GameCenterLeaderboardLocalizationsDeleteInstanceData, GameCenterLeaderboardLocalizationsDeleteInstanceError, GameCenterLeaderboardLocalizationsDeleteInstanceResponse, GameCenterLeaderboardReleasesCreateInstanceData, GameCenterLeaderboardReleasesCreateInstanceError, GameCenterLeaderboardReleasesCreateInstanceResponse, GameCenterLeaderboardReleasesGetInstanceData, GameCenterLeaderboardReleasesGetInstanceError, GameCenterLeaderboardReleasesGetInstanceResponse, GameCenterLeaderboardReleasesDeleteInstanceData, GameCenterLeaderboardReleasesDeleteInstanceError, GameCenterLeaderboardReleasesDeleteInstanceResponse, GameCenterLeaderboardSetImagesCreateInstanceData, GameCenterLeaderboardSetImagesCreateInstanceError, GameCenterLeaderboardSetImagesCreateInstanceResponse, GameCenterLeaderboardSetImagesGetInstanceData, GameCenterLeaderboardSetImagesGetInstanceError, GameCenterLeaderboardSetImagesGetInstanceResponse, GameCenterLeaderboardSetImagesUpdateInstanceData, GameCenterLeaderboardSetImagesUpdateInstanceError, GameCenterLeaderboardSetImagesUpdateInstanceResponse, GameCenterLeaderboardSetImagesDeleteInstanceData, GameCenterLeaderboardSetImagesDeleteInstanceError, GameCenterLeaderboardSetImagesDeleteInstanceResponse, GameCenterLeaderboardSetLocalizationsCreateInstanceData, GameCenterLeaderboardSetLocalizationsCreateInstanceError, GameCenterLeaderboardSetLocalizationsCreateInstanceResponse, GameCenterLeaderboardSetLocalizationsGetInstanceData, GameCenterLeaderboardSetLocalizationsGetInstanceError, GameCenterLeaderboardSetLocalizationsGetInstanceResponse, GameCenterLeaderboardSetLocalizationsUpdateInstanceData, GameCenterLeaderboardSetLocalizationsUpdateInstanceError, GameCenterLeaderboardSetLocalizationsUpdateInstanceResponse, GameCenterLeaderboardSetLocalizationsDeleteInstanceData, GameCenterLeaderboardSetLocalizationsDeleteInstanceError, GameCenterLeaderboardSetLocalizationsDeleteInstanceResponse, GameCenterLeaderboardSetMemberLocalizationsGetCollectionData, GameCenterLeaderboardSetMemberLocalizationsGetCollectionError, GameCenterLeaderboardSetMemberLocalizationsGetCollectionResponse, GameCenterLeaderboardSetMemberLocalizationsCreateInstanceData, GameCenterLeaderboardSetMemberLocalizationsCreateInstanceError, GameCenterLeaderboardSetMemberLocalizationsCreateInstanceResponse, GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceData, GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceError, GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceResponse, GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceData, GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceError, GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceResponse, GameCenterLeaderboardSetReleasesCreateInstanceData, GameCenterLeaderboardSetReleasesCreateInstanceError, GameCenterLeaderboardSetReleasesCreateInstanceResponse, GameCenterLeaderboardSetReleasesGetInstanceData, GameCenterLeaderboardSetReleasesGetInstanceError, GameCenterLeaderboardSetReleasesGetInstanceResponse, GameCenterLeaderboardSetReleasesDeleteInstanceData, GameCenterLeaderboardSetReleasesDeleteInstanceError, GameCenterLeaderboardSetReleasesDeleteInstanceResponse, GameCenterLeaderboardSetsCreateInstanceData, GameCenterLeaderboardSetsCreateInstanceError, GameCenterLeaderboardSetsCreateInstanceResponse, GameCenterLeaderboardSetsGetInstanceData, GameCenterLeaderboardSetsGetInstanceError, GameCenterLeaderboardSetsGetInstanceResponse, GameCenterLeaderboardSetsUpdateInstanceData, GameCenterLeaderboardSetsUpdateInstanceError, GameCenterLeaderboardSetsUpdateInstanceResponse, GameCenterLeaderboardSetsDeleteInstanceData, GameCenterLeaderboardSetsDeleteInstanceError, GameCenterLeaderboardSetsDeleteInstanceResponse, GameCenterLeaderboardsCreateInstanceData, GameCenterLeaderboardsCreateInstanceError, GameCenterLeaderboardsCreateInstanceResponse, GameCenterLeaderboardsGetInstanceData, GameCenterLeaderboardsGetInstanceError, GameCenterLeaderboardsGetInstanceResponse, GameCenterLeaderboardsUpdateInstanceData, GameCenterLeaderboardsUpdateInstanceError, GameCenterLeaderboardsUpdateInstanceResponse, GameCenterLeaderboardsDeleteInstanceData, GameCenterLeaderboardsDeleteInstanceError, GameCenterLeaderboardsDeleteInstanceResponse, GameCenterMatchmakingQueuesGetCollectionData, GameCenterMatchmakingQueuesGetCollectionError, GameCenterMatchmakingQueuesGetCollectionResponse, GameCenterMatchmakingQueuesCreateInstanceData, GameCenterMatchmakingQueuesCreateInstanceError, GameCenterMatchmakingQueuesCreateInstanceResponse, GameCenterMatchmakingQueuesGetInstanceData, GameCenterMatchmakingQueuesGetInstanceError, GameCenterMatchmakingQueuesGetInstanceResponse, GameCenterMatchmakingQueuesUpdateInstanceData, GameCenterMatchmakingQueuesUpdateInstanceError, GameCenterMatchmakingQueuesUpdateInstanceResponse, GameCenterMatchmakingQueuesDeleteInstanceData, GameCenterMatchmakingQueuesDeleteInstanceError, GameCenterMatchmakingQueuesDeleteInstanceResponse, GameCenterMatchmakingRuleSetTestsCreateInstanceData, GameCenterMatchmakingRuleSetTestsCreateInstanceError, GameCenterMatchmakingRuleSetTestsCreateInstanceResponse, GameCenterMatchmakingRuleSetsGetCollectionData, GameCenterMatchmakingRuleSetsGetCollectionError, GameCenterMatchmakingRuleSetsGetCollectionResponse, GameCenterMatchmakingRuleSetsCreateInstanceData, GameCenterMatchmakingRuleSetsCreateInstanceError, GameCenterMatchmakingRuleSetsCreateInstanceResponse, GameCenterMatchmakingRuleSetsGetInstanceData, GameCenterMatchmakingRuleSetsGetInstanceError, GameCenterMatchmakingRuleSetsGetInstanceResponse, GameCenterMatchmakingRuleSetsUpdateInstanceData, GameCenterMatchmakingRuleSetsUpdateInstanceError, GameCenterMatchmakingRuleSetsUpdateInstanceResponse, GameCenterMatchmakingRuleSetsDeleteInstanceData, GameCenterMatchmakingRuleSetsDeleteInstanceError, GameCenterMatchmakingRuleSetsDeleteInstanceResponse, GameCenterMatchmakingRulesCreateInstanceData, GameCenterMatchmakingRulesCreateInstanceError, GameCenterMatchmakingRulesCreateInstanceResponse, GameCenterMatchmakingRulesUpdateInstanceData, GameCenterMatchmakingRulesUpdateInstanceError, GameCenterMatchmakingRulesUpdateInstanceResponse, GameCenterMatchmakingRulesDeleteInstanceData, GameCenterMatchmakingRulesDeleteInstanceError, GameCenterMatchmakingRulesDeleteInstanceResponse, GameCenterMatchmakingTeamsCreateInstanceData, GameCenterMatchmakingTeamsCreateInstanceError, GameCenterMatchmakingTeamsCreateInstanceResponse, GameCenterMatchmakingTeamsUpdateInstanceData, GameCenterMatchmakingTeamsUpdateInstanceError, GameCenterMatchmakingTeamsUpdateInstanceResponse, GameCenterMatchmakingTeamsDeleteInstanceData, GameCenterMatchmakingTeamsDeleteInstanceError, GameCenterMatchmakingTeamsDeleteInstanceResponse, GameCenterPlayerAchievementSubmissionsCreateInstanceData, GameCenterPlayerAchievementSubmissionsCreateInstanceError, GameCenterPlayerAchievementSubmissionsCreateInstanceResponse, InAppPurchaseAppStoreReviewScreenshotsCreateInstanceData, InAppPurchaseAppStoreReviewScreenshotsCreateInstanceError, InAppPurchaseAppStoreReviewScreenshotsCreateInstanceResponse, InAppPurchaseAppStoreReviewScreenshotsGetInstanceData, InAppPurchaseAppStoreReviewScreenshotsGetInstanceError, InAppPurchaseAppStoreReviewScreenshotsGetInstanceResponse, InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceData, InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceError, InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceResponse, InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceData, InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceError, InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceResponse, InAppPurchaseAvailabilitiesCreateInstanceData, InAppPurchaseAvailabilitiesCreateInstanceError, InAppPurchaseAvailabilitiesCreateInstanceResponse, InAppPurchaseAvailabilitiesGetInstanceData, InAppPurchaseAvailabilitiesGetInstanceError, InAppPurchaseAvailabilitiesGetInstanceResponse, InAppPurchaseContentsGetInstanceData, InAppPurchaseContentsGetInstanceError, InAppPurchaseContentsGetInstanceResponse, InAppPurchaseImagesCreateInstanceData, InAppPurchaseImagesCreateInstanceError, InAppPurchaseImagesCreateInstanceResponse, InAppPurchaseImagesGetInstanceData, InAppPurchaseImagesGetInstanceError, InAppPurchaseImagesGetInstanceResponse, InAppPurchaseImagesUpdateInstanceData, InAppPurchaseImagesUpdateInstanceError, InAppPurchaseImagesUpdateInstanceResponse, InAppPurchaseImagesDeleteInstanceData, InAppPurchaseImagesDeleteInstanceError, InAppPurchaseImagesDeleteInstanceResponse, InAppPurchaseLocalizationsCreateInstanceData, InAppPurchaseLocalizationsCreateInstanceError, InAppPurchaseLocalizationsCreateInstanceResponse, InAppPurchaseLocalizationsGetInstanceData, InAppPurchaseLocalizationsGetInstanceError, InAppPurchaseLocalizationsGetInstanceResponse, InAppPurchaseLocalizationsUpdateInstanceData, InAppPurchaseLocalizationsUpdateInstanceError, InAppPurchaseLocalizationsUpdateInstanceResponse, InAppPurchaseLocalizationsDeleteInstanceData, InAppPurchaseLocalizationsDeleteInstanceError, InAppPurchaseLocalizationsDeleteInstanceResponse, InAppPurchasePriceSchedulesCreateInstanceData, InAppPurchasePriceSchedulesCreateInstanceError, InAppPurchasePriceSchedulesCreateInstanceResponse, InAppPurchasePriceSchedulesGetInstanceData, InAppPurchasePriceSchedulesGetInstanceError, InAppPurchasePriceSchedulesGetInstanceResponse, InAppPurchaseSubmissionsCreateInstanceData, InAppPurchaseSubmissionsCreateInstanceError, InAppPurchaseSubmissionsCreateInstanceResponse, InAppPurchasesGetInstanceData, InAppPurchasesGetInstanceError, InAppPurchasesGetInstanceResponse, InAppPurchasesV2CreateInstanceData, InAppPurchasesV2CreateInstanceError, InAppPurchasesV2CreateInstanceResponse, InAppPurchasesV2GetInstanceData, InAppPurchasesV2GetInstanceError, InAppPurchasesV2GetInstanceResponse, InAppPurchasesV2UpdateInstanceData, InAppPurchasesV2UpdateInstanceError, InAppPurchasesV2UpdateInstanceResponse, InAppPurchasesV2DeleteInstanceData, InAppPurchasesV2DeleteInstanceError, InAppPurchasesV2DeleteInstanceResponse, MarketplaceDomainsGetCollectionData, MarketplaceDomainsGetCollectionError, MarketplaceDomainsGetCollectionResponse, MarketplaceDomainsCreateInstanceData, MarketplaceDomainsCreateInstanceError, MarketplaceDomainsCreateInstanceResponse, MarketplaceDomainsGetInstanceData, MarketplaceDomainsGetInstanceError, MarketplaceDomainsGetInstanceResponse, MarketplaceDomainsDeleteInstanceData, MarketplaceDomainsDeleteInstanceError, MarketplaceDomainsDeleteInstanceResponse, MarketplaceSearchDetailsCreateInstanceData, MarketplaceSearchDetailsCreateInstanceError, MarketplaceSearchDetailsCreateInstanceResponse, MarketplaceSearchDetailsUpdateInstanceData, MarketplaceSearchDetailsUpdateInstanceError, MarketplaceSearchDetailsUpdateInstanceResponse, MarketplaceSearchDetailsDeleteInstanceData, MarketplaceSearchDetailsDeleteInstanceError, MarketplaceSearchDetailsDeleteInstanceResponse, MarketplaceWebhooksGetCollectionData, MarketplaceWebhooksGetCollectionError, MarketplaceWebhooksGetCollectionResponse, MarketplaceWebhooksCreateInstanceData, MarketplaceWebhooksCreateInstanceError, MarketplaceWebhooksCreateInstanceResponse, MarketplaceWebhooksUpdateInstanceData, MarketplaceWebhooksUpdateInstanceError, MarketplaceWebhooksUpdateInstanceResponse, MarketplaceWebhooksDeleteInstanceData, MarketplaceWebhooksDeleteInstanceError, MarketplaceWebhooksDeleteInstanceResponse, PreReleaseVersionsGetCollectionData, PreReleaseVersionsGetCollectionError, PreReleaseVersionsGetCollectionResponse, PreReleaseVersionsGetInstanceData, PreReleaseVersionsGetInstanceError, PreReleaseVersionsGetInstanceResponse, ProfilesGetCollectionData, ProfilesGetCollectionError, ProfilesGetCollectionResponse, ProfilesCreateInstanceData, ProfilesCreateInstanceError, ProfilesCreateInstanceResponse, ProfilesGetInstanceData, ProfilesGetInstanceError, ProfilesGetInstanceResponse, ProfilesDeleteInstanceData, ProfilesDeleteInstanceError, ProfilesDeleteInstanceResponse, PromotedPurchaseImagesCreateInstanceData, PromotedPurchaseImagesCreateInstanceError, PromotedPurchaseImagesCreateInstanceResponse, PromotedPurchaseImagesGetInstanceData, PromotedPurchaseImagesGetInstanceError, PromotedPurchaseImagesGetInstanceResponse, PromotedPurchaseImagesUpdateInstanceData, PromotedPurchaseImagesUpdateInstanceError, PromotedPurchaseImagesUpdateInstanceResponse, PromotedPurchaseImagesDeleteInstanceData, PromotedPurchaseImagesDeleteInstanceError, PromotedPurchaseImagesDeleteInstanceResponse, PromotedPurchasesCreateInstanceData, PromotedPurchasesCreateInstanceError, PromotedPurchasesCreateInstanceResponse, PromotedPurchasesGetInstanceData, PromotedPurchasesGetInstanceError, PromotedPurchasesGetInstanceResponse, PromotedPurchasesUpdateInstanceData, PromotedPurchasesUpdateInstanceError, PromotedPurchasesUpdateInstanceResponse, PromotedPurchasesDeleteInstanceData, PromotedPurchasesDeleteInstanceError, PromotedPurchasesDeleteInstanceResponse, ReviewSubmissionItemsCreateInstanceData, ReviewSubmissionItemsCreateInstanceError, ReviewSubmissionItemsCreateInstanceResponse, ReviewSubmissionItemsUpdateInstanceData, ReviewSubmissionItemsUpdateInstanceError, ReviewSubmissionItemsUpdateInstanceResponse, ReviewSubmissionItemsDeleteInstanceData, ReviewSubmissionItemsDeleteInstanceError, ReviewSubmissionItemsDeleteInstanceResponse, ReviewSubmissionsGetCollectionData, ReviewSubmissionsGetCollectionError, ReviewSubmissionsGetCollectionResponse, ReviewSubmissionsCreateInstanceData, ReviewSubmissionsCreateInstanceError, ReviewSubmissionsCreateInstanceResponse, ReviewSubmissionsGetInstanceData, ReviewSubmissionsGetInstanceError, ReviewSubmissionsGetInstanceResponse, ReviewSubmissionsUpdateInstanceData, ReviewSubmissionsUpdateInstanceError, ReviewSubmissionsUpdateInstanceResponse, RoutingAppCoveragesCreateInstanceData, RoutingAppCoveragesCreateInstanceError, RoutingAppCoveragesCreateInstanceResponse, RoutingAppCoveragesGetInstanceData, RoutingAppCoveragesGetInstanceError, RoutingAppCoveragesGetInstanceResponse, RoutingAppCoveragesUpdateInstanceData, RoutingAppCoveragesUpdateInstanceError, RoutingAppCoveragesUpdateInstanceResponse, RoutingAppCoveragesDeleteInstanceData, RoutingAppCoveragesDeleteInstanceError, RoutingAppCoveragesDeleteInstanceResponse, SalesReportsGetCollectionData, SalesReportsGetCollectionError, SalesReportsGetCollectionResponse, SandboxTestersV2GetCollectionData, SandboxTestersV2GetCollectionError, SandboxTestersV2GetCollectionResponse, SandboxTestersV2UpdateInstanceData, SandboxTestersV2UpdateInstanceError, SandboxTestersV2UpdateInstanceResponse, SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceData, SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceError, SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceResponse, ScmGitReferencesGetInstanceData, ScmGitReferencesGetInstanceError, ScmGitReferencesGetInstanceResponse, ScmProvidersGetCollectionData, ScmProvidersGetCollectionError, ScmProvidersGetCollectionResponse, ScmProvidersGetInstanceData, ScmProvidersGetInstanceError, ScmProvidersGetInstanceResponse, ScmPullRequestsGetInstanceData, ScmPullRequestsGetInstanceError, ScmPullRequestsGetInstanceResponse, ScmRepositoriesGetCollectionData, ScmRepositoriesGetCollectionError, ScmRepositoriesGetCollectionResponse, ScmRepositoriesGetInstanceData, ScmRepositoriesGetInstanceError, ScmRepositoriesGetInstanceResponse, SubscriptionAppStoreReviewScreenshotsCreateInstanceData, SubscriptionAppStoreReviewScreenshotsCreateInstanceError, SubscriptionAppStoreReviewScreenshotsCreateInstanceResponse, SubscriptionAppStoreReviewScreenshotsGetInstanceData, SubscriptionAppStoreReviewScreenshotsGetInstanceError, SubscriptionAppStoreReviewScreenshotsGetInstanceResponse, SubscriptionAppStoreReviewScreenshotsUpdateInstanceData, SubscriptionAppStoreReviewScreenshotsUpdateInstanceError, SubscriptionAppStoreReviewScreenshotsUpdateInstanceResponse, SubscriptionAppStoreReviewScreenshotsDeleteInstanceData, SubscriptionAppStoreReviewScreenshotsDeleteInstanceError, SubscriptionAppStoreReviewScreenshotsDeleteInstanceResponse, SubscriptionAvailabilitiesCreateInstanceData, SubscriptionAvailabilitiesCreateInstanceError, SubscriptionAvailabilitiesCreateInstanceResponse, SubscriptionAvailabilitiesGetInstanceData, SubscriptionAvailabilitiesGetInstanceError, SubscriptionAvailabilitiesGetInstanceResponse, SubscriptionGracePeriodsGetInstanceData, SubscriptionGracePeriodsGetInstanceError, SubscriptionGracePeriodsGetInstanceResponse, SubscriptionGracePeriodsUpdateInstanceData, SubscriptionGracePeriodsUpdateInstanceError, SubscriptionGracePeriodsUpdateInstanceResponse, SubscriptionGroupLocalizationsCreateInstanceData, SubscriptionGroupLocalizationsCreateInstanceError, SubscriptionGroupLocalizationsCreateInstanceResponse, SubscriptionGroupLocalizationsGetInstanceData, SubscriptionGroupLocalizationsGetInstanceError, SubscriptionGroupLocalizationsGetInstanceResponse, SubscriptionGroupLocalizationsUpdateInstanceData, SubscriptionGroupLocalizationsUpdateInstanceError, SubscriptionGroupLocalizationsUpdateInstanceResponse, SubscriptionGroupLocalizationsDeleteInstanceData, SubscriptionGroupLocalizationsDeleteInstanceError, SubscriptionGroupLocalizationsDeleteInstanceResponse, SubscriptionGroupSubmissionsCreateInstanceData, SubscriptionGroupSubmissionsCreateInstanceError, SubscriptionGroupSubmissionsCreateInstanceResponse, SubscriptionGroupsCreateInstanceData, SubscriptionGroupsCreateInstanceError, SubscriptionGroupsCreateInstanceResponse, SubscriptionGroupsGetInstanceData, SubscriptionGroupsGetInstanceError, SubscriptionGroupsGetInstanceResponse, SubscriptionGroupsUpdateInstanceData, SubscriptionGroupsUpdateInstanceError, SubscriptionGroupsUpdateInstanceResponse, SubscriptionGroupsDeleteInstanceData, SubscriptionGroupsDeleteInstanceError, SubscriptionGroupsDeleteInstanceResponse, SubscriptionImagesCreateInstanceData, SubscriptionImagesCreateInstanceError, SubscriptionImagesCreateInstanceResponse, SubscriptionImagesGetInstanceData, SubscriptionImagesGetInstanceError, SubscriptionImagesGetInstanceResponse, SubscriptionImagesUpdateInstanceData, SubscriptionImagesUpdateInstanceError, SubscriptionImagesUpdateInstanceResponse, SubscriptionImagesDeleteInstanceData, SubscriptionImagesDeleteInstanceError, SubscriptionImagesDeleteInstanceResponse, SubscriptionIntroductoryOffersCreateInstanceData, SubscriptionIntroductoryOffersCreateInstanceError, SubscriptionIntroductoryOffersCreateInstanceResponse, SubscriptionIntroductoryOffersUpdateInstanceData, SubscriptionIntroductoryOffersUpdateInstanceError, SubscriptionIntroductoryOffersUpdateInstanceResponse, SubscriptionIntroductoryOffersDeleteInstanceData, SubscriptionIntroductoryOffersDeleteInstanceError, SubscriptionIntroductoryOffersDeleteInstanceResponse, SubscriptionLocalizationsCreateInstanceData, SubscriptionLocalizationsCreateInstanceError, SubscriptionLocalizationsCreateInstanceResponse, SubscriptionLocalizationsGetInstanceData, SubscriptionLocalizationsGetInstanceError, SubscriptionLocalizationsGetInstanceResponse, SubscriptionLocalizationsUpdateInstanceData, SubscriptionLocalizationsUpdateInstanceError, SubscriptionLocalizationsUpdateInstanceResponse, SubscriptionLocalizationsDeleteInstanceData, SubscriptionLocalizationsDeleteInstanceError, SubscriptionLocalizationsDeleteInstanceResponse, SubscriptionOfferCodeCustomCodesCreateInstanceData, SubscriptionOfferCodeCustomCodesCreateInstanceError, SubscriptionOfferCodeCustomCodesCreateInstanceResponse, SubscriptionOfferCodeCustomCodesGetInstanceData, SubscriptionOfferCodeCustomCodesGetInstanceError, SubscriptionOfferCodeCustomCodesGetInstanceResponse, SubscriptionOfferCodeCustomCodesUpdateInstanceData, SubscriptionOfferCodeCustomCodesUpdateInstanceError, SubscriptionOfferCodeCustomCodesUpdateInstanceResponse, SubscriptionOfferCodeOneTimeUseCodesCreateInstanceData, SubscriptionOfferCodeOneTimeUseCodesCreateInstanceError, SubscriptionOfferCodeOneTimeUseCodesCreateInstanceResponse, SubscriptionOfferCodeOneTimeUseCodesGetInstanceData, SubscriptionOfferCodeOneTimeUseCodesGetInstanceError, SubscriptionOfferCodeOneTimeUseCodesGetInstanceResponse, SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceData, SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceError, SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceResponse, SubscriptionOfferCodesCreateInstanceData, SubscriptionOfferCodesCreateInstanceError, SubscriptionOfferCodesCreateInstanceResponse, SubscriptionOfferCodesGetInstanceData, SubscriptionOfferCodesGetInstanceError, SubscriptionOfferCodesGetInstanceResponse, SubscriptionOfferCodesUpdateInstanceData, SubscriptionOfferCodesUpdateInstanceError, SubscriptionOfferCodesUpdateInstanceResponse, SubscriptionPricePointsGetInstanceData, SubscriptionPricePointsGetInstanceError, SubscriptionPricePointsGetInstanceResponse, SubscriptionPricesCreateInstanceData, SubscriptionPricesCreateInstanceError, SubscriptionPricesCreateInstanceResponse, SubscriptionPricesDeleteInstanceData, SubscriptionPricesDeleteInstanceError, SubscriptionPricesDeleteInstanceResponse, SubscriptionPromotionalOffersCreateInstanceData, SubscriptionPromotionalOffersCreateInstanceError, SubscriptionPromotionalOffersCreateInstanceResponse, SubscriptionPromotionalOffersGetInstanceData, SubscriptionPromotionalOffersGetInstanceError, SubscriptionPromotionalOffersGetInstanceResponse, SubscriptionPromotionalOffersUpdateInstanceData, SubscriptionPromotionalOffersUpdateInstanceError, SubscriptionPromotionalOffersUpdateInstanceResponse, SubscriptionPromotionalOffersDeleteInstanceData, SubscriptionPromotionalOffersDeleteInstanceError, SubscriptionPromotionalOffersDeleteInstanceResponse, SubscriptionSubmissionsCreateInstanceData, SubscriptionSubmissionsCreateInstanceError, SubscriptionSubmissionsCreateInstanceResponse, SubscriptionsCreateInstanceData, SubscriptionsCreateInstanceError, SubscriptionsCreateInstanceResponse, SubscriptionsGetInstanceData, SubscriptionsGetInstanceError, SubscriptionsGetInstanceResponse, SubscriptionsUpdateInstanceData, SubscriptionsUpdateInstanceError, SubscriptionsUpdateInstanceResponse, SubscriptionsDeleteInstanceData, SubscriptionsDeleteInstanceError, SubscriptionsDeleteInstanceResponse, TerritoriesGetCollectionData, TerritoriesGetCollectionError, TerritoriesGetCollectionResponse, TerritoryAvailabilitiesUpdateInstanceData, TerritoryAvailabilitiesUpdateInstanceError, TerritoryAvailabilitiesUpdateInstanceResponse, UserInvitationsGetCollectionData, UserInvitationsGetCollectionError, UserInvitationsGetCollectionResponse, UserInvitationsCreateInstanceData, UserInvitationsCreateInstanceError, UserInvitationsCreateInstanceResponse, UserInvitationsGetInstanceData, UserInvitationsGetInstanceError, UserInvitationsGetInstanceResponse, UserInvitationsDeleteInstanceData, UserInvitationsDeleteInstanceError, UserInvitationsDeleteInstanceResponse, UsersGetCollectionData, UsersGetCollectionError, UsersGetCollectionResponse, UsersGetInstanceData, UsersGetInstanceError, UsersGetInstanceResponse, UsersUpdateInstanceData, UsersUpdateInstanceError, UsersUpdateInstanceResponse, UsersDeleteInstanceData, UsersDeleteInstanceError, UsersDeleteInstanceResponse, WinBackOffersCreateInstanceData, WinBackOffersCreateInstanceError, WinBackOffersCreateInstanceResponse, WinBackOffersGetInstanceData, WinBackOffersGetInstanceError, WinBackOffersGetInstanceResponse, WinBackOffersUpdateInstanceData, WinBackOffersUpdateInstanceError, WinBackOffersUpdateInstanceResponse, WinBackOffersDeleteInstanceData, WinBackOffersDeleteInstanceError, WinBackOffersDeleteInstanceResponse, AlternativeDistributionPackageVersionsDeltasGetToManyRelatedData, AlternativeDistributionPackageVersionsDeltasGetToManyRelatedError, AlternativeDistributionPackageVersionsDeltasGetToManyRelatedResponse, AlternativeDistributionPackageVersionsVariantsGetToManyRelatedData, AlternativeDistributionPackageVersionsVariantsGetToManyRelatedError, AlternativeDistributionPackageVersionsVariantsGetToManyRelatedResponse, AlternativeDistributionPackagesVersionsGetToManyRelatedData, AlternativeDistributionPackagesVersionsGetToManyRelatedError, AlternativeDistributionPackagesVersionsGetToManyRelatedResponse, AnalyticsReportInstancesSegmentsGetToManyRelatedData, AnalyticsReportInstancesSegmentsGetToManyRelatedError, AnalyticsReportInstancesSegmentsGetToManyRelatedResponse, AnalyticsReportRequestsReportsGetToManyRelatedData, AnalyticsReportRequestsReportsGetToManyRelatedError, AnalyticsReportRequestsReportsGetToManyRelatedResponse, AnalyticsReportsInstancesGetToManyRelatedData, AnalyticsReportsInstancesGetToManyRelatedError, AnalyticsReportsInstancesGetToManyRelatedResponse, AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedData, AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedError, AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedResponse, AppAvailabilitiesAvailableTerritoriesGetToManyRelatedData, AppAvailabilitiesAvailableTerritoriesGetToManyRelatedError, AppAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse, AppCategoriesParentGetToOneRelatedData, AppCategoriesParentGetToOneRelatedError, AppCategoriesParentGetToOneRelatedResponse, AppCategoriesSubcategoriesGetToManyRelatedData, AppCategoriesSubcategoriesGetToManyRelatedError, AppCategoriesSubcategoriesGetToManyRelatedResponse, AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedData, AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedError, AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedResponse, AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedData, AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedError, AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedResponse, AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedData, AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedError, AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedResponse, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipData, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipError, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipResponse, AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipData, AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipError, AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipResponse, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedData, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedError, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedResponse, AppClipsAppClipAdvancedExperiencesGetToManyRelatedData, AppClipsAppClipAdvancedExperiencesGetToManyRelatedError, AppClipsAppClipAdvancedExperiencesGetToManyRelatedResponse, AppClipsAppClipDefaultExperiencesGetToManyRelatedData, AppClipsAppClipDefaultExperiencesGetToManyRelatedError, AppClipsAppClipDefaultExperiencesGetToManyRelatedResponse, AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedData, AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedError, AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedResponse, AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedData, AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedError, AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedResponse, AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedData, AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedError, AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedResponse, AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedData, AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedError, AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedResponse, AppEncryptionDeclarationsAppGetToOneRelatedData, AppEncryptionDeclarationsAppGetToOneRelatedError, AppEncryptionDeclarationsAppGetToOneRelatedResponse, AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedData, AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedError, AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedResponse, AppEncryptionDeclarationsBuildsCreateToManyRelationshipData, AppEncryptionDeclarationsBuildsCreateToManyRelationshipError, AppEncryptionDeclarationsBuildsCreateToManyRelationshipResponse, AppEventLocalizationsAppEventScreenshotsGetToManyRelatedData, AppEventLocalizationsAppEventScreenshotsGetToManyRelatedError, AppEventLocalizationsAppEventScreenshotsGetToManyRelatedResponse, AppEventLocalizationsAppEventVideoClipsGetToManyRelatedData, AppEventLocalizationsAppEventVideoClipsGetToManyRelatedError, AppEventLocalizationsAppEventVideoClipsGetToManyRelatedResponse, AppEventsLocalizationsGetToManyRelatedData, AppEventsLocalizationsGetToManyRelatedError, AppEventsLocalizationsGetToManyRelatedResponse, AppInfosAgeRatingDeclarationGetToOneRelatedData, AppInfosAgeRatingDeclarationGetToOneRelatedError, AppInfosAgeRatingDeclarationGetToOneRelatedResponse, AppInfosAppInfoLocalizationsGetToManyRelatedData, AppInfosAppInfoLocalizationsGetToManyRelatedError, AppInfosAppInfoLocalizationsGetToManyRelatedResponse, AppInfosPrimaryCategoryGetToOneRelatedData, AppInfosPrimaryCategoryGetToOneRelatedError, AppInfosPrimaryCategoryGetToOneRelatedResponse, AppInfosPrimarySubcategoryOneGetToOneRelatedData, AppInfosPrimarySubcategoryOneGetToOneRelatedError, AppInfosPrimarySubcategoryOneGetToOneRelatedResponse, AppInfosPrimarySubcategoryTwoGetToOneRelatedData, AppInfosPrimarySubcategoryTwoGetToOneRelatedError, AppInfosPrimarySubcategoryTwoGetToOneRelatedResponse, AppInfosSecondaryCategoryGetToOneRelatedData, AppInfosSecondaryCategoryGetToOneRelatedError, AppInfosSecondaryCategoryGetToOneRelatedResponse, AppInfosSecondarySubcategoryOneGetToOneRelatedData, AppInfosSecondarySubcategoryOneGetToOneRelatedError, AppInfosSecondarySubcategoryOneGetToOneRelatedResponse, AppInfosSecondarySubcategoryTwoGetToOneRelatedData, AppInfosSecondarySubcategoryTwoGetToOneRelatedError, AppInfosSecondarySubcategoryTwoGetToOneRelatedResponse, AppPreviewSetsAppPreviewsGetToManyRelationshipData, AppPreviewSetsAppPreviewsGetToManyRelationshipError, AppPreviewSetsAppPreviewsGetToManyRelationshipResponse, AppPreviewSetsAppPreviewsReplaceToManyRelationshipData, AppPreviewSetsAppPreviewsReplaceToManyRelationshipError, AppPreviewSetsAppPreviewsReplaceToManyRelationshipResponse, AppPreviewSetsAppPreviewsGetToManyRelatedData, AppPreviewSetsAppPreviewsGetToManyRelatedError, AppPreviewSetsAppPreviewsGetToManyRelatedResponse, AppPricePointsV3EqualizationsGetToManyRelatedData, AppPricePointsV3EqualizationsGetToManyRelatedError, AppPricePointsV3EqualizationsGetToManyRelatedResponse, AppPriceSchedulesAutomaticPricesGetToManyRelatedData, AppPriceSchedulesAutomaticPricesGetToManyRelatedError, AppPriceSchedulesAutomaticPricesGetToManyRelatedResponse, AppPriceSchedulesBaseTerritoryGetToOneRelatedData, AppPriceSchedulesBaseTerritoryGetToOneRelatedError, AppPriceSchedulesBaseTerritoryGetToOneRelatedResponse, AppPriceSchedulesManualPricesGetToManyRelatedData, AppPriceSchedulesManualPricesGetToManyRelatedError, AppPriceSchedulesManualPricesGetToManyRelatedResponse, AppScreenshotSetsAppScreenshotsGetToManyRelationshipData, AppScreenshotSetsAppScreenshotsGetToManyRelationshipError, AppScreenshotSetsAppScreenshotsGetToManyRelationshipResponse, AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipData, AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipError, AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipResponse, AppScreenshotSetsAppScreenshotsGetToManyRelatedData, AppScreenshotSetsAppScreenshotsGetToManyRelatedError, AppScreenshotSetsAppScreenshotsGetToManyRelatedResponse, AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedData, AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedError, AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedResponse, AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedData, AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedError, AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedResponse, AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedData, AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedError, AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedResponse, AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedData, AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedError, AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedResponse, AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedData, AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedError, AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedResponse, AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedData, AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedError, AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedResponse, AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedData, AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedError, AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedResponse, AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedData, AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedError, AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedResponse, AppStoreVersionsAgeRatingDeclarationGetToOneRelatedData, AppStoreVersionsAgeRatingDeclarationGetToOneRelatedError, AppStoreVersionsAgeRatingDeclarationGetToOneRelatedResponse, AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedData, AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedError, AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedResponse, AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipData, AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipError, AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipResponse, AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipData, AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipError, AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipResponse, AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedData, AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedError, AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedResponse, AppStoreVersionsAppStoreReviewDetailGetToOneRelatedData, AppStoreVersionsAppStoreReviewDetailGetToOneRelatedError, AppStoreVersionsAppStoreReviewDetailGetToOneRelatedResponse, AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedData, AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedError, AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedResponse, AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedData, AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedError, AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedResponse, AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedData, AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedError, AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedResponse, AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedData, AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedError, AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedResponse, AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedData, AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedError, AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedResponse, AppStoreVersionsBuildGetToOneRelationshipData, AppStoreVersionsBuildGetToOneRelationshipError, AppStoreVersionsBuildGetToOneRelationshipResponse, AppStoreVersionsBuildUpdateToOneRelationshipData, AppStoreVersionsBuildUpdateToOneRelationshipError, AppStoreVersionsBuildUpdateToOneRelationshipResponse, AppStoreVersionsBuildGetToOneRelatedData, AppStoreVersionsBuildGetToOneRelatedError, AppStoreVersionsBuildGetToOneRelatedResponse, AppStoreVersionsCustomerReviewsGetToManyRelatedData, AppStoreVersionsCustomerReviewsGetToManyRelatedError, AppStoreVersionsCustomerReviewsGetToManyRelatedResponse, AppStoreVersionsGameCenterAppVersionGetToOneRelatedData, AppStoreVersionsGameCenterAppVersionGetToOneRelatedError, AppStoreVersionsGameCenterAppVersionGetToOneRelatedResponse, AppStoreVersionsRoutingAppCoverageGetToOneRelatedData, AppStoreVersionsRoutingAppCoverageGetToOneRelatedError, AppStoreVersionsRoutingAppCoverageGetToOneRelatedResponse, AppsAlternativeDistributionKeyGetToOneRelatedData, AppsAlternativeDistributionKeyGetToOneRelatedError, AppsAlternativeDistributionKeyGetToOneRelatedResponse, AppsAnalyticsReportRequestsGetToManyRelatedData, AppsAnalyticsReportRequestsGetToManyRelatedError, AppsAnalyticsReportRequestsGetToManyRelatedResponse, AppsAppAvailabilityGetToOneRelatedData, AppsAppAvailabilityGetToOneRelatedError, AppsAppAvailabilityGetToOneRelatedResponse, AppsAppAvailabilityV2GetToOneRelatedData, AppsAppAvailabilityV2GetToOneRelatedError, AppsAppAvailabilityV2GetToOneRelatedResponse, AppsAppClipsGetToManyRelatedData, AppsAppClipsGetToManyRelatedError, AppsAppClipsGetToManyRelatedResponse, AppsAppCustomProductPagesGetToManyRelatedData, AppsAppCustomProductPagesGetToManyRelatedError, AppsAppCustomProductPagesGetToManyRelatedResponse, AppsAppEncryptionDeclarationsGetToManyRelatedData, AppsAppEncryptionDeclarationsGetToManyRelatedError, AppsAppEncryptionDeclarationsGetToManyRelatedResponse, AppsAppEventsGetToManyRelatedData, AppsAppEventsGetToManyRelatedError, AppsAppEventsGetToManyRelatedResponse, AppsAppInfosGetToManyRelatedData, AppsAppInfosGetToManyRelatedError, AppsAppInfosGetToManyRelatedResponse, AppsAppPricePointsGetToManyRelatedData, AppsAppPricePointsGetToManyRelatedError, AppsAppPricePointsGetToManyRelatedResponse, AppsAppPriceScheduleGetToOneRelatedData, AppsAppPriceScheduleGetToOneRelatedError, AppsAppPriceScheduleGetToOneRelatedResponse, AppsAppStoreVersionExperimentsV2GetToManyRelatedData, AppsAppStoreVersionExperimentsV2GetToManyRelatedError, AppsAppStoreVersionExperimentsV2GetToManyRelatedResponse, AppsAppStoreVersionsGetToManyRelatedData, AppsAppStoreVersionsGetToManyRelatedError, AppsAppStoreVersionsGetToManyRelatedResponse, AppsBetaAppLocalizationsGetToManyRelatedData, AppsBetaAppLocalizationsGetToManyRelatedError, AppsBetaAppLocalizationsGetToManyRelatedResponse, AppsBetaAppReviewDetailGetToOneRelatedData, AppsBetaAppReviewDetailGetToOneRelatedError, AppsBetaAppReviewDetailGetToOneRelatedResponse, AppsBetaGroupsGetToManyRelatedData, AppsBetaGroupsGetToManyRelatedError, AppsBetaGroupsGetToManyRelatedResponse, AppsBetaLicenseAgreementGetToOneRelatedData, AppsBetaLicenseAgreementGetToOneRelatedError, AppsBetaLicenseAgreementGetToOneRelatedResponse, AppsBetaTestersDeleteToManyRelationshipData, AppsBetaTestersDeleteToManyRelationshipError, AppsBetaTestersDeleteToManyRelationshipResponse, AppsBuildsGetToManyRelatedData, AppsBuildsGetToManyRelatedError, AppsBuildsGetToManyRelatedResponse, AppsCiProductGetToOneRelatedData, AppsCiProductGetToOneRelatedError, AppsCiProductGetToOneRelatedResponse, AppsCustomerReviewsGetToManyRelatedData, AppsCustomerReviewsGetToManyRelatedError, AppsCustomerReviewsGetToManyRelatedResponse, AppsEndUserLicenseAgreementGetToOneRelatedData, AppsEndUserLicenseAgreementGetToOneRelatedError, AppsEndUserLicenseAgreementGetToOneRelatedResponse, AppsGameCenterDetailGetToOneRelatedData, AppsGameCenterDetailGetToOneRelatedError, AppsGameCenterDetailGetToOneRelatedResponse, AppsGameCenterEnabledVersionsGetToManyRelatedData, AppsGameCenterEnabledVersionsGetToManyRelatedError, AppsGameCenterEnabledVersionsGetToManyRelatedResponse, AppsInAppPurchasesGetToManyRelatedData, AppsInAppPurchasesGetToManyRelatedError, AppsInAppPurchasesGetToManyRelatedResponse, AppsInAppPurchasesV2GetToManyRelatedData, AppsInAppPurchasesV2GetToManyRelatedError, AppsInAppPurchasesV2GetToManyRelatedResponse, AppsMarketplaceSearchDetailGetToOneRelatedData, AppsMarketplaceSearchDetailGetToOneRelatedError, AppsMarketplaceSearchDetailGetToOneRelatedResponse, AppsPerfPowerMetricsGetToManyRelatedData, AppsPerfPowerMetricsGetToManyRelatedError, AppsPerfPowerMetricsGetToManyRelatedResponse, AppsPreOrderGetToOneRelatedData, AppsPreOrderGetToOneRelatedError, AppsPreOrderGetToOneRelatedResponse, AppsPreReleaseVersionsGetToManyRelatedData, AppsPreReleaseVersionsGetToManyRelatedError, AppsPreReleaseVersionsGetToManyRelatedResponse, AppsPromotedPurchasesGetToManyRelationshipData, AppsPromotedPurchasesGetToManyRelationshipError, AppsPromotedPurchasesGetToManyRelationshipResponse, AppsPromotedPurchasesReplaceToManyRelationshipData, AppsPromotedPurchasesReplaceToManyRelationshipError, AppsPromotedPurchasesReplaceToManyRelationshipResponse, AppsPromotedPurchasesGetToManyRelatedData, AppsPromotedPurchasesGetToManyRelatedError, AppsPromotedPurchasesGetToManyRelatedResponse, AppsReviewSubmissionsGetToManyRelatedData, AppsReviewSubmissionsGetToManyRelatedError, AppsReviewSubmissionsGetToManyRelatedResponse, AppsSubscriptionGracePeriodGetToOneRelatedData, AppsSubscriptionGracePeriodGetToOneRelatedError, AppsSubscriptionGracePeriodGetToOneRelatedResponse, AppsSubscriptionGroupsGetToManyRelatedData, AppsSubscriptionGroupsGetToManyRelatedError, AppsSubscriptionGroupsGetToManyRelatedResponse, BetaAppLocalizationsAppGetToOneRelatedData, BetaAppLocalizationsAppGetToOneRelatedError, BetaAppLocalizationsAppGetToOneRelatedResponse, BetaAppReviewDetailsAppGetToOneRelatedData, BetaAppReviewDetailsAppGetToOneRelatedError, BetaAppReviewDetailsAppGetToOneRelatedResponse, BetaAppReviewSubmissionsBuildGetToOneRelatedData, BetaAppReviewSubmissionsBuildGetToOneRelatedError, BetaAppReviewSubmissionsBuildGetToOneRelatedResponse, BetaBuildLocalizationsBuildGetToOneRelatedData, BetaBuildLocalizationsBuildGetToOneRelatedError, BetaBuildLocalizationsBuildGetToOneRelatedResponse, BetaGroupsAppGetToOneRelatedData, BetaGroupsAppGetToOneRelatedError, BetaGroupsAppGetToOneRelatedResponse, BetaGroupsBetaTestersGetToManyRelationshipData, BetaGroupsBetaTestersGetToManyRelationshipError, BetaGroupsBetaTestersGetToManyRelationshipResponse, BetaGroupsBetaTestersCreateToManyRelationshipData, BetaGroupsBetaTestersCreateToManyRelationshipError, BetaGroupsBetaTestersCreateToManyRelationshipResponse, BetaGroupsBetaTestersDeleteToManyRelationshipData, BetaGroupsBetaTestersDeleteToManyRelationshipError, BetaGroupsBetaTestersDeleteToManyRelationshipResponse, BetaGroupsBetaTestersGetToManyRelatedData, BetaGroupsBetaTestersGetToManyRelatedError, BetaGroupsBetaTestersGetToManyRelatedResponse, BetaGroupsBuildsGetToManyRelationshipData, BetaGroupsBuildsGetToManyRelationshipError, BetaGroupsBuildsGetToManyRelationshipResponse, BetaGroupsBuildsCreateToManyRelationshipData, BetaGroupsBuildsCreateToManyRelationshipError, BetaGroupsBuildsCreateToManyRelationshipResponse, BetaGroupsBuildsDeleteToManyRelationshipData, BetaGroupsBuildsDeleteToManyRelationshipError, BetaGroupsBuildsDeleteToManyRelationshipResponse, BetaGroupsBuildsGetToManyRelatedData, BetaGroupsBuildsGetToManyRelatedError, BetaGroupsBuildsGetToManyRelatedResponse, BetaLicenseAgreementsAppGetToOneRelatedData, BetaLicenseAgreementsAppGetToOneRelatedError, BetaLicenseAgreementsAppGetToOneRelatedResponse, BetaTestersAppsGetToManyRelationshipData, BetaTestersAppsGetToManyRelationshipError, BetaTestersAppsGetToManyRelationshipResponse, BetaTestersAppsDeleteToManyRelationshipData, BetaTestersAppsDeleteToManyRelationshipError, BetaTestersAppsDeleteToManyRelationshipResponse, BetaTestersAppsGetToManyRelatedData, BetaTestersAppsGetToManyRelatedError, BetaTestersAppsGetToManyRelatedResponse, BetaTestersBetaGroupsGetToManyRelationshipData, BetaTestersBetaGroupsGetToManyRelationshipError, BetaTestersBetaGroupsGetToManyRelationshipResponse, BetaTestersBetaGroupsCreateToManyRelationshipData, BetaTestersBetaGroupsCreateToManyRelationshipError, BetaTestersBetaGroupsCreateToManyRelationshipResponse, BetaTestersBetaGroupsDeleteToManyRelationshipData, BetaTestersBetaGroupsDeleteToManyRelationshipError, BetaTestersBetaGroupsDeleteToManyRelationshipResponse, BetaTestersBetaGroupsGetToManyRelatedData, BetaTestersBetaGroupsGetToManyRelatedError, BetaTestersBetaGroupsGetToManyRelatedResponse, BetaTestersBuildsGetToManyRelationshipData, BetaTestersBuildsGetToManyRelationshipError, BetaTestersBuildsGetToManyRelationshipResponse, BetaTestersBuildsCreateToManyRelationshipData, BetaTestersBuildsCreateToManyRelationshipError, BetaTestersBuildsCreateToManyRelationshipResponse, BetaTestersBuildsDeleteToManyRelationshipData, BetaTestersBuildsDeleteToManyRelationshipError, BetaTestersBuildsDeleteToManyRelationshipResponse, BetaTestersBuildsGetToManyRelatedData, BetaTestersBuildsGetToManyRelatedError, BetaTestersBuildsGetToManyRelatedResponse, BuildBetaDetailsBuildGetToOneRelatedData, BuildBetaDetailsBuildGetToOneRelatedError, BuildBetaDetailsBuildGetToOneRelatedResponse, BuildBundlesAppClipDomainCacheStatusGetToOneRelatedData, BuildBundlesAppClipDomainCacheStatusGetToOneRelatedError, BuildBundlesAppClipDomainCacheStatusGetToOneRelatedResponse, BuildBundlesAppClipDomainDebugStatusGetToOneRelatedData, BuildBundlesAppClipDomainDebugStatusGetToOneRelatedError, BuildBundlesAppClipDomainDebugStatusGetToOneRelatedResponse, BuildBundlesBetaAppClipInvocationsGetToManyRelatedData, BuildBundlesBetaAppClipInvocationsGetToManyRelatedError, BuildBundlesBetaAppClipInvocationsGetToManyRelatedResponse, BuildBundlesBuildBundleFileSizesGetToManyRelatedData, BuildBundlesBuildBundleFileSizesGetToManyRelatedError, BuildBundlesBuildBundleFileSizesGetToManyRelatedResponse, BuildsAppGetToOneRelatedData, BuildsAppGetToOneRelatedError, BuildsAppGetToOneRelatedResponse, BuildsAppEncryptionDeclarationGetToOneRelationshipData, BuildsAppEncryptionDeclarationGetToOneRelationshipError, BuildsAppEncryptionDeclarationGetToOneRelationshipResponse, BuildsAppEncryptionDeclarationUpdateToOneRelationshipData, BuildsAppEncryptionDeclarationUpdateToOneRelationshipError, BuildsAppEncryptionDeclarationUpdateToOneRelationshipResponse, BuildsAppEncryptionDeclarationGetToOneRelatedData, BuildsAppEncryptionDeclarationGetToOneRelatedError, BuildsAppEncryptionDeclarationGetToOneRelatedResponse, BuildsAppStoreVersionGetToOneRelatedData, BuildsAppStoreVersionGetToOneRelatedError, BuildsAppStoreVersionGetToOneRelatedResponse, BuildsBetaAppReviewSubmissionGetToOneRelatedData, BuildsBetaAppReviewSubmissionGetToOneRelatedError, BuildsBetaAppReviewSubmissionGetToOneRelatedResponse, BuildsBetaBuildLocalizationsGetToManyRelatedData, BuildsBetaBuildLocalizationsGetToManyRelatedError, BuildsBetaBuildLocalizationsGetToManyRelatedResponse, BuildsBetaGroupsCreateToManyRelationshipData, BuildsBetaGroupsCreateToManyRelationshipError, BuildsBetaGroupsCreateToManyRelationshipResponse, BuildsBetaGroupsDeleteToManyRelationshipData, BuildsBetaGroupsDeleteToManyRelationshipError, BuildsBetaGroupsDeleteToManyRelationshipResponse, BuildsBuildBetaDetailGetToOneRelatedData, BuildsBuildBetaDetailGetToOneRelatedError, BuildsBuildBetaDetailGetToOneRelatedResponse, BuildsDiagnosticSignaturesGetToManyRelatedData, BuildsDiagnosticSignaturesGetToManyRelatedError, BuildsDiagnosticSignaturesGetToManyRelatedResponse, BuildsIconsGetToManyRelatedData, BuildsIconsGetToManyRelatedError, BuildsIconsGetToManyRelatedResponse, BuildsIndividualTestersGetToManyRelationshipData, BuildsIndividualTestersGetToManyRelationshipError, BuildsIndividualTestersGetToManyRelationshipResponse, BuildsIndividualTestersCreateToManyRelationshipData, BuildsIndividualTestersCreateToManyRelationshipError, BuildsIndividualTestersCreateToManyRelationshipResponse, BuildsIndividualTestersDeleteToManyRelationshipData, BuildsIndividualTestersDeleteToManyRelationshipError, BuildsIndividualTestersDeleteToManyRelationshipResponse, BuildsIndividualTestersGetToManyRelatedData, BuildsIndividualTestersGetToManyRelatedError, BuildsIndividualTestersGetToManyRelatedResponse, BuildsPerfPowerMetricsGetToManyRelatedData, BuildsPerfPowerMetricsGetToManyRelatedError, BuildsPerfPowerMetricsGetToManyRelatedResponse, BuildsPreReleaseVersionGetToOneRelatedData, BuildsPreReleaseVersionGetToOneRelatedError, BuildsPreReleaseVersionGetToOneRelatedResponse, BundleIdsAppGetToOneRelatedData, BundleIdsAppGetToOneRelatedError, BundleIdsAppGetToOneRelatedResponse, BundleIdsBundleIdCapabilitiesGetToManyRelatedData, BundleIdsBundleIdCapabilitiesGetToManyRelatedError, BundleIdsBundleIdCapabilitiesGetToManyRelatedResponse, BundleIdsProfilesGetToManyRelatedData, BundleIdsProfilesGetToManyRelatedError, BundleIdsProfilesGetToManyRelatedResponse, CiBuildActionsArtifactsGetToManyRelatedData, CiBuildActionsArtifactsGetToManyRelatedError, CiBuildActionsArtifactsGetToManyRelatedResponse, CiBuildActionsBuildRunGetToOneRelatedData, CiBuildActionsBuildRunGetToOneRelatedError, CiBuildActionsBuildRunGetToOneRelatedResponse, CiBuildActionsIssuesGetToManyRelatedData, CiBuildActionsIssuesGetToManyRelatedError, CiBuildActionsIssuesGetToManyRelatedResponse, CiBuildActionsTestResultsGetToManyRelatedData, CiBuildActionsTestResultsGetToManyRelatedError, CiBuildActionsTestResultsGetToManyRelatedResponse, CiBuildRunsActionsGetToManyRelatedData, CiBuildRunsActionsGetToManyRelatedError, CiBuildRunsActionsGetToManyRelatedResponse, CiBuildRunsBuildsGetToManyRelatedData, CiBuildRunsBuildsGetToManyRelatedError, CiBuildRunsBuildsGetToManyRelatedResponse, CiMacOsVersionsXcodeVersionsGetToManyRelatedData, CiMacOsVersionsXcodeVersionsGetToManyRelatedError, CiMacOsVersionsXcodeVersionsGetToManyRelatedResponse, CiProductsAdditionalRepositoriesGetToManyRelatedData, CiProductsAdditionalRepositoriesGetToManyRelatedError, CiProductsAdditionalRepositoriesGetToManyRelatedResponse, CiProductsAppGetToOneRelatedData, CiProductsAppGetToOneRelatedError, CiProductsAppGetToOneRelatedResponse, CiProductsBuildRunsGetToManyRelatedData, CiProductsBuildRunsGetToManyRelatedError, CiProductsBuildRunsGetToManyRelatedResponse, CiProductsPrimaryRepositoriesGetToManyRelatedData, CiProductsPrimaryRepositoriesGetToManyRelatedError, CiProductsPrimaryRepositoriesGetToManyRelatedResponse, CiProductsWorkflowsGetToManyRelatedData, CiProductsWorkflowsGetToManyRelatedError, CiProductsWorkflowsGetToManyRelatedResponse, CiWorkflowsBuildRunsGetToManyRelatedData, CiWorkflowsBuildRunsGetToManyRelatedError, CiWorkflowsBuildRunsGetToManyRelatedResponse, CiWorkflowsRepositoryGetToOneRelatedData, CiWorkflowsRepositoryGetToOneRelatedError, CiWorkflowsRepositoryGetToOneRelatedResponse, CiXcodeVersionsMacOsVersionsGetToManyRelatedData, CiXcodeVersionsMacOsVersionsGetToManyRelatedError, CiXcodeVersionsMacOsVersionsGetToManyRelatedResponse, CustomerReviewsResponseGetToOneRelatedData, CustomerReviewsResponseGetToOneRelatedError, CustomerReviewsResponseGetToOneRelatedResponse, DiagnosticSignaturesLogsGetToManyRelatedData, DiagnosticSignaturesLogsGetToManyRelatedError, DiagnosticSignaturesLogsGetToManyRelatedResponse, EndUserLicenseAgreementsTerritoriesGetToManyRelatedData, EndUserLicenseAgreementsTerritoriesGetToManyRelatedError, EndUserLicenseAgreementsTerritoriesGetToManyRelatedResponse, GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedData, GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedError, GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedResponse, GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedData, GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedError, GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedResponse, GameCenterAchievementsGroupAchievementGetToOneRelationshipData, GameCenterAchievementsGroupAchievementGetToOneRelationshipError, GameCenterAchievementsGroupAchievementGetToOneRelationshipResponse, GameCenterAchievementsGroupAchievementUpdateToOneRelationshipData, GameCenterAchievementsGroupAchievementUpdateToOneRelationshipError, GameCenterAchievementsGroupAchievementUpdateToOneRelationshipResponse, GameCenterAchievementsGroupAchievementGetToOneRelatedData, GameCenterAchievementsGroupAchievementGetToOneRelatedError, GameCenterAchievementsGroupAchievementGetToOneRelatedResponse, GameCenterAchievementsLocalizationsGetToManyRelatedData, GameCenterAchievementsLocalizationsGetToManyRelatedError, GameCenterAchievementsLocalizationsGetToManyRelatedResponse, GameCenterAchievementsReleasesGetToManyRelatedData, GameCenterAchievementsReleasesGetToManyRelatedError, GameCenterAchievementsReleasesGetToManyRelatedResponse, GameCenterAppVersionsAppStoreVersionGetToOneRelatedData, GameCenterAppVersionsAppStoreVersionGetToOneRelatedError, GameCenterAppVersionsAppStoreVersionGetToOneRelatedResponse, GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipData, GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipError, GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipResponse, GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipData, GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipError, GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipResponse, GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipData, GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipError, GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipResponse, GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedData, GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedError, GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedResponse, GameCenterDetailsAchievementReleasesGetToManyRelatedData, GameCenterDetailsAchievementReleasesGetToManyRelatedError, GameCenterDetailsAchievementReleasesGetToManyRelatedResponse, GameCenterDetailsGameCenterAchievementsGetToManyRelationshipData, GameCenterDetailsGameCenterAchievementsGetToManyRelationshipError, GameCenterDetailsGameCenterAchievementsGetToManyRelationshipResponse, GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipData, GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipError, GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipResponse, GameCenterDetailsGameCenterAchievementsGetToManyRelatedData, GameCenterDetailsGameCenterAchievementsGetToManyRelatedError, GameCenterDetailsGameCenterAchievementsGetToManyRelatedResponse, GameCenterDetailsGameCenterAppVersionsGetToManyRelatedData, GameCenterDetailsGameCenterAppVersionsGetToManyRelatedError, GameCenterDetailsGameCenterAppVersionsGetToManyRelatedResponse, GameCenterDetailsGameCenterGroupGetToOneRelatedData, GameCenterDetailsGameCenterGroupGetToOneRelatedError, GameCenterDetailsGameCenterGroupGetToOneRelatedResponse, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipData, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipError, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipResponse, GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipData, GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipError, GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipResponse, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedData, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedError, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedResponse, GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipData, GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipError, GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipResponse, GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipData, GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipError, GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipResponse, GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedData, GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedError, GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedResponse, GameCenterDetailsLeaderboardReleasesGetToManyRelatedData, GameCenterDetailsLeaderboardReleasesGetToManyRelatedError, GameCenterDetailsLeaderboardReleasesGetToManyRelatedResponse, GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedData, GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedError, GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedResponse, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipData, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipError, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipResponse, GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipData, GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipError, GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipResponse, GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipData, GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipError, GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipResponse, GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipData, GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipError, GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipResponse, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedData, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedError, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedResponse, GameCenterGroupsGameCenterAchievementsGetToManyRelationshipData, GameCenterGroupsGameCenterAchievementsGetToManyRelationshipError, GameCenterGroupsGameCenterAchievementsGetToManyRelationshipResponse, GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipData, GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipError, GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipResponse, GameCenterGroupsGameCenterAchievementsGetToManyRelatedData, GameCenterGroupsGameCenterAchievementsGetToManyRelatedError, GameCenterGroupsGameCenterAchievementsGetToManyRelatedResponse, GameCenterGroupsGameCenterDetailsGetToManyRelatedData, GameCenterGroupsGameCenterDetailsGetToManyRelatedError, GameCenterGroupsGameCenterDetailsGetToManyRelatedResponse, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipData, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipError, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipResponse, GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipData, GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipError, GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipResponse, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedData, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedError, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedResponse, GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipData, GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipError, GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipResponse, GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipData, GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipError, GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipResponse, GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedData, GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedError, GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedResponse, GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedData, GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedError, GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedResponse, GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedData, GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedError, GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedResponse, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedData, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedError, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedResponse, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedData, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedError, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipData, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipError, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipData, GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipError, GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipData, GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipError, GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipData, GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipError, GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedData, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedError, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedResponse, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipData, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipError, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipResponse, GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipData, GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipError, GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipResponse, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedData, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedError, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedResponse, GameCenterLeaderboardSetsLocalizationsGetToManyRelatedData, GameCenterLeaderboardSetsLocalizationsGetToManyRelatedError, GameCenterLeaderboardSetsLocalizationsGetToManyRelatedResponse, GameCenterLeaderboardSetsReleasesGetToManyRelatedData, GameCenterLeaderboardSetsReleasesGetToManyRelatedError, GameCenterLeaderboardSetsReleasesGetToManyRelatedResponse, GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipData, GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipError, GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipResponse, GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipData, GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipError, GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipResponse, GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedData, GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedError, GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedResponse, GameCenterLeaderboardsLocalizationsGetToManyRelatedData, GameCenterLeaderboardsLocalizationsGetToManyRelatedError, GameCenterLeaderboardsLocalizationsGetToManyRelatedResponse, GameCenterLeaderboardsReleasesGetToManyRelatedData, GameCenterLeaderboardsReleasesGetToManyRelatedError, GameCenterLeaderboardsReleasesGetToManyRelatedResponse, GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedData, GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedError, GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedResponse, GameCenterMatchmakingRuleSetsRulesGetToManyRelatedData, GameCenterMatchmakingRuleSetsRulesGetToManyRelatedError, GameCenterMatchmakingRuleSetsRulesGetToManyRelatedResponse, GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedData, GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedError, GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedResponse, InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedData, InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedError, InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse, InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedData, InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedError, InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedResponse, InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedData, InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedError, InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedResponse, InAppPurchasePriceSchedulesManualPricesGetToManyRelatedData, InAppPurchasePriceSchedulesManualPricesGetToManyRelatedError, InAppPurchasePriceSchedulesManualPricesGetToManyRelatedResponse, InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedData, InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedError, InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedResponse, InAppPurchasesV2ContentGetToOneRelatedData, InAppPurchasesV2ContentGetToOneRelatedError, InAppPurchasesV2ContentGetToOneRelatedResponse, InAppPurchasesV2IapPriceScheduleGetToOneRelatedData, InAppPurchasesV2IapPriceScheduleGetToOneRelatedError, InAppPurchasesV2IapPriceScheduleGetToOneRelatedResponse, InAppPurchasesV2ImagesGetToManyRelatedData, InAppPurchasesV2ImagesGetToManyRelatedError, InAppPurchasesV2ImagesGetToManyRelatedResponse, InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedData, InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedError, InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedResponse, InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedData, InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedError, InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedResponse, InAppPurchasesV2PricePointsGetToManyRelatedData, InAppPurchasesV2PricePointsGetToManyRelatedError, InAppPurchasesV2PricePointsGetToManyRelatedResponse, InAppPurchasesV2PromotedPurchaseGetToOneRelatedData, InAppPurchasesV2PromotedPurchaseGetToOneRelatedError, InAppPurchasesV2PromotedPurchaseGetToOneRelatedResponse, PreReleaseVersionsAppGetToOneRelatedData, PreReleaseVersionsAppGetToOneRelatedError, PreReleaseVersionsAppGetToOneRelatedResponse, PreReleaseVersionsBuildsGetToManyRelatedData, PreReleaseVersionsBuildsGetToManyRelatedError, PreReleaseVersionsBuildsGetToManyRelatedResponse, ProfilesBundleIdGetToOneRelatedData, ProfilesBundleIdGetToOneRelatedError, ProfilesBundleIdGetToOneRelatedResponse, ProfilesCertificatesGetToManyRelatedData, ProfilesCertificatesGetToManyRelatedError, ProfilesCertificatesGetToManyRelatedResponse, ProfilesDevicesGetToManyRelatedData, ProfilesDevicesGetToManyRelatedError, ProfilesDevicesGetToManyRelatedResponse, PromotedPurchasesPromotionImagesGetToManyRelatedData, PromotedPurchasesPromotionImagesGetToManyRelatedError, PromotedPurchasesPromotionImagesGetToManyRelatedResponse, ReviewSubmissionsItemsGetToManyRelatedData, ReviewSubmissionsItemsGetToManyRelatedError, ReviewSubmissionsItemsGetToManyRelatedResponse, ScmProvidersRepositoriesGetToManyRelatedData, ScmProvidersRepositoriesGetToManyRelatedError, ScmProvidersRepositoriesGetToManyRelatedResponse, ScmRepositoriesGitReferencesGetToManyRelatedData, ScmRepositoriesGitReferencesGetToManyRelatedError, ScmRepositoriesGitReferencesGetToManyRelatedResponse, ScmRepositoriesPullRequestsGetToManyRelatedData, ScmRepositoriesPullRequestsGetToManyRelatedError, ScmRepositoriesPullRequestsGetToManyRelatedResponse, SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedData, SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedError, SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse, SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedData, SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedError, SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedResponse, SubscriptionGroupsSubscriptionsGetToManyRelatedData, SubscriptionGroupsSubscriptionsGetToManyRelatedError, SubscriptionGroupsSubscriptionsGetToManyRelatedResponse, SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedData, SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedError, SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedResponse, SubscriptionOfferCodesCustomCodesGetToManyRelatedData, SubscriptionOfferCodesCustomCodesGetToManyRelatedError, SubscriptionOfferCodesCustomCodesGetToManyRelatedResponse, SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedData, SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedError, SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedResponse, SubscriptionOfferCodesPricesGetToManyRelatedData, SubscriptionOfferCodesPricesGetToManyRelatedError, SubscriptionOfferCodesPricesGetToManyRelatedResponse, SubscriptionPricePointsEqualizationsGetToManyRelatedData, SubscriptionPricePointsEqualizationsGetToManyRelatedError, SubscriptionPricePointsEqualizationsGetToManyRelatedResponse, SubscriptionPromotionalOffersPricesGetToManyRelatedData, SubscriptionPromotionalOffersPricesGetToManyRelatedError, SubscriptionPromotionalOffersPricesGetToManyRelatedResponse, SubscriptionsAppStoreReviewScreenshotGetToOneRelatedData, SubscriptionsAppStoreReviewScreenshotGetToOneRelatedError, SubscriptionsAppStoreReviewScreenshotGetToOneRelatedResponse, SubscriptionsImagesGetToManyRelatedData, SubscriptionsImagesGetToManyRelatedError, SubscriptionsImagesGetToManyRelatedResponse, SubscriptionsIntroductoryOffersGetToManyRelationshipData, SubscriptionsIntroductoryOffersGetToManyRelationshipError, SubscriptionsIntroductoryOffersGetToManyRelationshipResponse, SubscriptionsIntroductoryOffersDeleteToManyRelationshipData, SubscriptionsIntroductoryOffersDeleteToManyRelationshipError, SubscriptionsIntroductoryOffersDeleteToManyRelationshipResponse, SubscriptionsIntroductoryOffersGetToManyRelatedData, SubscriptionsIntroductoryOffersGetToManyRelatedError, SubscriptionsIntroductoryOffersGetToManyRelatedResponse, SubscriptionsOfferCodesGetToManyRelatedData, SubscriptionsOfferCodesGetToManyRelatedError, SubscriptionsOfferCodesGetToManyRelatedResponse, SubscriptionsPricePointsGetToManyRelatedData, SubscriptionsPricePointsGetToManyRelatedError, SubscriptionsPricePointsGetToManyRelatedResponse, SubscriptionsPricesGetToManyRelationshipData, SubscriptionsPricesGetToManyRelationshipError, SubscriptionsPricesGetToManyRelationshipResponse, SubscriptionsPricesDeleteToManyRelationshipData, SubscriptionsPricesDeleteToManyRelationshipError, SubscriptionsPricesDeleteToManyRelationshipResponse, SubscriptionsPricesGetToManyRelatedData, SubscriptionsPricesGetToManyRelatedError, SubscriptionsPricesGetToManyRelatedResponse, SubscriptionsPromotedPurchaseGetToOneRelatedData, SubscriptionsPromotedPurchaseGetToOneRelatedError, SubscriptionsPromotedPurchaseGetToOneRelatedResponse, SubscriptionsPromotionalOffersGetToManyRelatedData, SubscriptionsPromotionalOffersGetToManyRelatedError, SubscriptionsPromotionalOffersGetToManyRelatedResponse, SubscriptionsSubscriptionAvailabilityGetToOneRelatedData, SubscriptionsSubscriptionAvailabilityGetToOneRelatedError, SubscriptionsSubscriptionAvailabilityGetToOneRelatedResponse, SubscriptionsSubscriptionLocalizationsGetToManyRelatedData, SubscriptionsSubscriptionLocalizationsGetToManyRelatedError, SubscriptionsSubscriptionLocalizationsGetToManyRelatedResponse, SubscriptionsWinBackOffersGetToManyRelatedData, SubscriptionsWinBackOffersGetToManyRelatedError, SubscriptionsWinBackOffersGetToManyRelatedResponse, UserInvitationsVisibleAppsGetToManyRelatedData, UserInvitationsVisibleAppsGetToManyRelatedError, UserInvitationsVisibleAppsGetToManyRelatedResponse, UsersVisibleAppsGetToManyRelationshipData, UsersVisibleAppsGetToManyRelationshipError, UsersVisibleAppsGetToManyRelationshipResponse, UsersVisibleAppsCreateToManyRelationshipData, UsersVisibleAppsCreateToManyRelationshipError, UsersVisibleAppsCreateToManyRelationshipResponse, UsersVisibleAppsReplaceToManyRelationshipData, UsersVisibleAppsReplaceToManyRelationshipError, UsersVisibleAppsReplaceToManyRelationshipResponse, UsersVisibleAppsDeleteToManyRelationshipData, UsersVisibleAppsDeleteToManyRelationshipError, UsersVisibleAppsDeleteToManyRelationshipResponse, UsersVisibleAppsGetToManyRelatedData, UsersVisibleAppsGetToManyRelatedError, UsersVisibleAppsGetToManyRelatedResponse, WinBackOffersPricesGetToManyRelatedData, WinBackOffersPricesGetToManyRelatedError, WinBackOffersPricesGetToManyRelatedResponse, AppsBetaTesterUsagesGetMetricsData, AppsBetaTesterUsagesGetMetricsError, AppsBetaTesterUsagesGetMetricsResponse, BetaGroupsBetaTesterUsagesGetMetricsData, BetaGroupsBetaTesterUsagesGetMetricsError, BetaGroupsBetaTesterUsagesGetMetricsResponse, BetaTestersBetaTesterUsagesGetMetricsData, BetaTestersBetaTesterUsagesGetMetricsError, BetaTestersBetaTesterUsagesGetMetricsResponse, BuildsBetaBuildUsagesGetMetricsData, BuildsBetaBuildUsagesGetMetricsError, BuildsBetaBuildUsagesGetMetricsResponse, GameCenterDetailsClassicMatchmakingRequestsGetMetricsData, GameCenterDetailsClassicMatchmakingRequestsGetMetricsError, GameCenterDetailsClassicMatchmakingRequestsGetMetricsResponse, GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsData, GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsError, GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsResponse, GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsData, GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsError, GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsResponse, GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsData, GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsError, GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsResponse, GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsData, GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsError, GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsResponse, GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsData, GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsError, GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsResponse, GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsData, GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsError, GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsResponse, GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsData, GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsError, GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsResponse, GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsData, GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsError, GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsResponse, GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsData, GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsError, GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsResponse } from './types.gen'; +import type { ActorsGetCollectionData, ActorsGetCollectionError, ActorsGetCollectionResponse, ActorsGetInstanceData, ActorsGetInstanceError, ActorsGetInstanceResponse, AgeRatingDeclarationsUpdateInstanceData, AgeRatingDeclarationsUpdateInstanceError, AgeRatingDeclarationsUpdateInstanceResponse, AlternativeDistributionDomainsGetCollectionData, AlternativeDistributionDomainsGetCollectionError, AlternativeDistributionDomainsGetCollectionResponse, AlternativeDistributionDomainsCreateInstanceData, AlternativeDistributionDomainsCreateInstanceError, AlternativeDistributionDomainsCreateInstanceResponse, AlternativeDistributionDomainsGetInstanceData, AlternativeDistributionDomainsGetInstanceError, AlternativeDistributionDomainsGetInstanceResponse, AlternativeDistributionDomainsDeleteInstanceData, AlternativeDistributionDomainsDeleteInstanceError, AlternativeDistributionDomainsDeleteInstanceResponse, AlternativeDistributionKeysGetCollectionData, AlternativeDistributionKeysGetCollectionError, AlternativeDistributionKeysGetCollectionResponse, AlternativeDistributionKeysCreateInstanceData, AlternativeDistributionKeysCreateInstanceError, AlternativeDistributionKeysCreateInstanceResponse, AlternativeDistributionKeysGetInstanceData, AlternativeDistributionKeysGetInstanceError, AlternativeDistributionKeysGetInstanceResponse, AlternativeDistributionKeysDeleteInstanceData, AlternativeDistributionKeysDeleteInstanceError, AlternativeDistributionKeysDeleteInstanceResponse, AlternativeDistributionPackageDeltasGetInstanceData, AlternativeDistributionPackageDeltasGetInstanceError, AlternativeDistributionPackageDeltasGetInstanceResponse, AlternativeDistributionPackageVariantsGetInstanceData, AlternativeDistributionPackageVariantsGetInstanceError, AlternativeDistributionPackageVariantsGetInstanceResponse, AlternativeDistributionPackageVersionsGetInstanceData, AlternativeDistributionPackageVersionsGetInstanceError, AlternativeDistributionPackageVersionsGetInstanceResponse, AlternativeDistributionPackageVersionsDeltasGetToManyRelatedData, AlternativeDistributionPackageVersionsDeltasGetToManyRelatedError, AlternativeDistributionPackageVersionsDeltasGetToManyRelatedResponse, AlternativeDistributionPackageVersionsVariantsGetToManyRelatedData, AlternativeDistributionPackageVersionsVariantsGetToManyRelatedError, AlternativeDistributionPackageVersionsVariantsGetToManyRelatedResponse, AlternativeDistributionPackagesCreateInstanceData, AlternativeDistributionPackagesCreateInstanceError, AlternativeDistributionPackagesCreateInstanceResponse, AlternativeDistributionPackagesGetInstanceData, AlternativeDistributionPackagesGetInstanceError, AlternativeDistributionPackagesGetInstanceResponse, AlternativeDistributionPackagesVersionsGetToManyRelatedData, AlternativeDistributionPackagesVersionsGetToManyRelatedError, AlternativeDistributionPackagesVersionsGetToManyRelatedResponse, AnalyticsReportInstancesGetInstanceData, AnalyticsReportInstancesGetInstanceError, AnalyticsReportInstancesGetInstanceResponse, AnalyticsReportInstancesSegmentsGetToManyRelatedData, AnalyticsReportInstancesSegmentsGetToManyRelatedError, AnalyticsReportInstancesSegmentsGetToManyRelatedResponse, AnalyticsReportRequestsCreateInstanceData, AnalyticsReportRequestsCreateInstanceError, AnalyticsReportRequestsCreateInstanceResponse, AnalyticsReportRequestsGetInstanceData, AnalyticsReportRequestsGetInstanceError, AnalyticsReportRequestsGetInstanceResponse, AnalyticsReportRequestsDeleteInstanceData, AnalyticsReportRequestsDeleteInstanceError, AnalyticsReportRequestsDeleteInstanceResponse, AnalyticsReportRequestsReportsGetToManyRelatedData, AnalyticsReportRequestsReportsGetToManyRelatedError, AnalyticsReportRequestsReportsGetToManyRelatedResponse, AnalyticsReportSegmentsGetInstanceData, AnalyticsReportSegmentsGetInstanceError, AnalyticsReportSegmentsGetInstanceResponse, AnalyticsReportsGetInstanceData, AnalyticsReportsGetInstanceError, AnalyticsReportsGetInstanceResponse, AnalyticsReportsInstancesGetToManyRelatedData, AnalyticsReportsInstancesGetToManyRelatedError, AnalyticsReportsInstancesGetToManyRelatedResponse, AppAvailabilitiesV2CreateInstanceData, AppAvailabilitiesV2CreateInstanceError, AppAvailabilitiesV2CreateInstanceResponse, AppAvailabilitiesV2GetInstanceData, AppAvailabilitiesV2GetInstanceError, AppAvailabilitiesV2GetInstanceResponse, AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedData, AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedError, AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedResponse, AppCategoriesGetCollectionData, AppCategoriesGetCollectionError, AppCategoriesGetCollectionResponse, AppCategoriesGetInstanceData, AppCategoriesGetInstanceError, AppCategoriesGetInstanceResponse, AppCategoriesParentGetToOneRelatedData, AppCategoriesParentGetToOneRelatedError, AppCategoriesParentGetToOneRelatedResponse, AppCategoriesSubcategoriesGetToManyRelatedData, AppCategoriesSubcategoriesGetToManyRelatedError, AppCategoriesSubcategoriesGetToManyRelatedResponse, AppClipAdvancedExperienceImagesCreateInstanceData, AppClipAdvancedExperienceImagesCreateInstanceError, AppClipAdvancedExperienceImagesCreateInstanceResponse, AppClipAdvancedExperienceImagesGetInstanceData, AppClipAdvancedExperienceImagesGetInstanceError, AppClipAdvancedExperienceImagesGetInstanceResponse, AppClipAdvancedExperienceImagesUpdateInstanceData, AppClipAdvancedExperienceImagesUpdateInstanceError, AppClipAdvancedExperienceImagesUpdateInstanceResponse, AppClipAdvancedExperiencesCreateInstanceData, AppClipAdvancedExperiencesCreateInstanceError, AppClipAdvancedExperiencesCreateInstanceResponse, AppClipAdvancedExperiencesGetInstanceData, AppClipAdvancedExperiencesGetInstanceError, AppClipAdvancedExperiencesGetInstanceResponse, AppClipAdvancedExperiencesUpdateInstanceData, AppClipAdvancedExperiencesUpdateInstanceError, AppClipAdvancedExperiencesUpdateInstanceResponse, AppClipAppStoreReviewDetailsCreateInstanceData, AppClipAppStoreReviewDetailsCreateInstanceError, AppClipAppStoreReviewDetailsCreateInstanceResponse, AppClipAppStoreReviewDetailsGetInstanceData, AppClipAppStoreReviewDetailsGetInstanceError, AppClipAppStoreReviewDetailsGetInstanceResponse, AppClipAppStoreReviewDetailsUpdateInstanceData, AppClipAppStoreReviewDetailsUpdateInstanceError, AppClipAppStoreReviewDetailsUpdateInstanceResponse, AppClipDefaultExperienceLocalizationsCreateInstanceData, AppClipDefaultExperienceLocalizationsCreateInstanceError, AppClipDefaultExperienceLocalizationsCreateInstanceResponse, AppClipDefaultExperienceLocalizationsGetInstanceData, AppClipDefaultExperienceLocalizationsGetInstanceError, AppClipDefaultExperienceLocalizationsGetInstanceResponse, AppClipDefaultExperienceLocalizationsUpdateInstanceData, AppClipDefaultExperienceLocalizationsUpdateInstanceError, AppClipDefaultExperienceLocalizationsUpdateInstanceResponse, AppClipDefaultExperienceLocalizationsDeleteInstanceData, AppClipDefaultExperienceLocalizationsDeleteInstanceError, AppClipDefaultExperienceLocalizationsDeleteInstanceResponse, AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedData, AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedError, AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedResponse, AppClipDefaultExperiencesCreateInstanceData, AppClipDefaultExperiencesCreateInstanceError, AppClipDefaultExperiencesCreateInstanceResponse, AppClipDefaultExperiencesGetInstanceData, AppClipDefaultExperiencesGetInstanceError, AppClipDefaultExperiencesGetInstanceResponse, AppClipDefaultExperiencesUpdateInstanceData, AppClipDefaultExperiencesUpdateInstanceError, AppClipDefaultExperiencesUpdateInstanceResponse, AppClipDefaultExperiencesDeleteInstanceData, AppClipDefaultExperiencesDeleteInstanceError, AppClipDefaultExperiencesDeleteInstanceResponse, AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedData, AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedError, AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedResponse, AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedData, AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedError, AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedResponse, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipData, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipError, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipResponse, AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipData, AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipError, AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipResponse, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedData, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedError, AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedResponse, AppClipHeaderImagesCreateInstanceData, AppClipHeaderImagesCreateInstanceError, AppClipHeaderImagesCreateInstanceResponse, AppClipHeaderImagesGetInstanceData, AppClipHeaderImagesGetInstanceError, AppClipHeaderImagesGetInstanceResponse, AppClipHeaderImagesUpdateInstanceData, AppClipHeaderImagesUpdateInstanceError, AppClipHeaderImagesUpdateInstanceResponse, AppClipHeaderImagesDeleteInstanceData, AppClipHeaderImagesDeleteInstanceError, AppClipHeaderImagesDeleteInstanceResponse, AppClipsGetInstanceData, AppClipsGetInstanceError, AppClipsGetInstanceResponse, AppClipsAppClipAdvancedExperiencesGetToManyRelatedData, AppClipsAppClipAdvancedExperiencesGetToManyRelatedError, AppClipsAppClipAdvancedExperiencesGetToManyRelatedResponse, AppClipsAppClipDefaultExperiencesGetToManyRelatedData, AppClipsAppClipDefaultExperiencesGetToManyRelatedError, AppClipsAppClipDefaultExperiencesGetToManyRelatedResponse, AppCustomProductPageLocalizationsCreateInstanceData, AppCustomProductPageLocalizationsCreateInstanceError, AppCustomProductPageLocalizationsCreateInstanceResponse, AppCustomProductPageLocalizationsGetInstanceData, AppCustomProductPageLocalizationsGetInstanceError, AppCustomProductPageLocalizationsGetInstanceResponse, AppCustomProductPageLocalizationsUpdateInstanceData, AppCustomProductPageLocalizationsUpdateInstanceError, AppCustomProductPageLocalizationsUpdateInstanceResponse, AppCustomProductPageLocalizationsDeleteInstanceData, AppCustomProductPageLocalizationsDeleteInstanceError, AppCustomProductPageLocalizationsDeleteInstanceResponse, AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedData, AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedError, AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedResponse, AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedData, AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedError, AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedResponse, AppCustomProductPageVersionsCreateInstanceData, AppCustomProductPageVersionsCreateInstanceError, AppCustomProductPageVersionsCreateInstanceResponse, AppCustomProductPageVersionsGetInstanceData, AppCustomProductPageVersionsGetInstanceError, AppCustomProductPageVersionsGetInstanceResponse, AppCustomProductPageVersionsUpdateInstanceData, AppCustomProductPageVersionsUpdateInstanceError, AppCustomProductPageVersionsUpdateInstanceResponse, AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedData, AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedError, AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedResponse, AppCustomProductPagesCreateInstanceData, AppCustomProductPagesCreateInstanceError, AppCustomProductPagesCreateInstanceResponse, AppCustomProductPagesGetInstanceData, AppCustomProductPagesGetInstanceError, AppCustomProductPagesGetInstanceResponse, AppCustomProductPagesUpdateInstanceData, AppCustomProductPagesUpdateInstanceError, AppCustomProductPagesUpdateInstanceResponse, AppCustomProductPagesDeleteInstanceData, AppCustomProductPagesDeleteInstanceError, AppCustomProductPagesDeleteInstanceResponse, AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedData, AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedError, AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedResponse, AppEncryptionDeclarationDocumentsCreateInstanceData, AppEncryptionDeclarationDocumentsCreateInstanceError, AppEncryptionDeclarationDocumentsCreateInstanceResponse, AppEncryptionDeclarationDocumentsGetInstanceData, AppEncryptionDeclarationDocumentsGetInstanceError, AppEncryptionDeclarationDocumentsGetInstanceResponse, AppEncryptionDeclarationDocumentsUpdateInstanceData, AppEncryptionDeclarationDocumentsUpdateInstanceError, AppEncryptionDeclarationDocumentsUpdateInstanceResponse, AppEncryptionDeclarationsGetCollectionData, AppEncryptionDeclarationsGetCollectionError, AppEncryptionDeclarationsGetCollectionResponse, AppEncryptionDeclarationsCreateInstanceData, AppEncryptionDeclarationsCreateInstanceError, AppEncryptionDeclarationsCreateInstanceResponse, AppEncryptionDeclarationsGetInstanceData, AppEncryptionDeclarationsGetInstanceError, AppEncryptionDeclarationsGetInstanceResponse, AppEncryptionDeclarationsAppGetToOneRelatedData, AppEncryptionDeclarationsAppGetToOneRelatedError, AppEncryptionDeclarationsAppGetToOneRelatedResponse, AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedData, AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedError, AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedResponse, AppEncryptionDeclarationsBuildsCreateToManyRelationshipData, AppEncryptionDeclarationsBuildsCreateToManyRelationshipError, AppEncryptionDeclarationsBuildsCreateToManyRelationshipResponse, AppEventLocalizationsCreateInstanceData, AppEventLocalizationsCreateInstanceError, AppEventLocalizationsCreateInstanceResponse, AppEventLocalizationsGetInstanceData, AppEventLocalizationsGetInstanceError, AppEventLocalizationsGetInstanceResponse, AppEventLocalizationsUpdateInstanceData, AppEventLocalizationsUpdateInstanceError, AppEventLocalizationsUpdateInstanceResponse, AppEventLocalizationsDeleteInstanceData, AppEventLocalizationsDeleteInstanceError, AppEventLocalizationsDeleteInstanceResponse, AppEventLocalizationsAppEventScreenshotsGetToManyRelatedData, AppEventLocalizationsAppEventScreenshotsGetToManyRelatedError, AppEventLocalizationsAppEventScreenshotsGetToManyRelatedResponse, AppEventLocalizationsAppEventVideoClipsGetToManyRelatedData, AppEventLocalizationsAppEventVideoClipsGetToManyRelatedError, AppEventLocalizationsAppEventVideoClipsGetToManyRelatedResponse, AppEventScreenshotsCreateInstanceData, AppEventScreenshotsCreateInstanceError, AppEventScreenshotsCreateInstanceResponse, AppEventScreenshotsGetInstanceData, AppEventScreenshotsGetInstanceError, AppEventScreenshotsGetInstanceResponse, AppEventScreenshotsUpdateInstanceData, AppEventScreenshotsUpdateInstanceError, AppEventScreenshotsUpdateInstanceResponse, AppEventScreenshotsDeleteInstanceData, AppEventScreenshotsDeleteInstanceError, AppEventScreenshotsDeleteInstanceResponse, AppEventVideoClipsCreateInstanceData, AppEventVideoClipsCreateInstanceError, AppEventVideoClipsCreateInstanceResponse, AppEventVideoClipsGetInstanceData, AppEventVideoClipsGetInstanceError, AppEventVideoClipsGetInstanceResponse, AppEventVideoClipsUpdateInstanceData, AppEventVideoClipsUpdateInstanceError, AppEventVideoClipsUpdateInstanceResponse, AppEventVideoClipsDeleteInstanceData, AppEventVideoClipsDeleteInstanceError, AppEventVideoClipsDeleteInstanceResponse, AppEventsCreateInstanceData, AppEventsCreateInstanceError, AppEventsCreateInstanceResponse, AppEventsGetInstanceData, AppEventsGetInstanceError, AppEventsGetInstanceResponse, AppEventsUpdateInstanceData, AppEventsUpdateInstanceError, AppEventsUpdateInstanceResponse, AppEventsDeleteInstanceData, AppEventsDeleteInstanceError, AppEventsDeleteInstanceResponse, AppEventsLocalizationsGetToManyRelatedData, AppEventsLocalizationsGetToManyRelatedError, AppEventsLocalizationsGetToManyRelatedResponse, AppInfoLocalizationsCreateInstanceData, AppInfoLocalizationsCreateInstanceError, AppInfoLocalizationsCreateInstanceResponse, AppInfoLocalizationsGetInstanceData, AppInfoLocalizationsGetInstanceError, AppInfoLocalizationsGetInstanceResponse, AppInfoLocalizationsUpdateInstanceData, AppInfoLocalizationsUpdateInstanceError, AppInfoLocalizationsUpdateInstanceResponse, AppInfoLocalizationsDeleteInstanceData, AppInfoLocalizationsDeleteInstanceError, AppInfoLocalizationsDeleteInstanceResponse, AppInfosGetInstanceData, AppInfosGetInstanceError, AppInfosGetInstanceResponse, AppInfosUpdateInstanceData, AppInfosUpdateInstanceError, AppInfosUpdateInstanceResponse, AppInfosAgeRatingDeclarationGetToOneRelatedData, AppInfosAgeRatingDeclarationGetToOneRelatedError, AppInfosAgeRatingDeclarationGetToOneRelatedResponse, AppInfosAppInfoLocalizationsGetToManyRelatedData, AppInfosAppInfoLocalizationsGetToManyRelatedError, AppInfosAppInfoLocalizationsGetToManyRelatedResponse, AppInfosPrimaryCategoryGetToOneRelatedData, AppInfosPrimaryCategoryGetToOneRelatedError, AppInfosPrimaryCategoryGetToOneRelatedResponse, AppInfosPrimarySubcategoryOneGetToOneRelatedData, AppInfosPrimarySubcategoryOneGetToOneRelatedError, AppInfosPrimarySubcategoryOneGetToOneRelatedResponse, AppInfosPrimarySubcategoryTwoGetToOneRelatedData, AppInfosPrimarySubcategoryTwoGetToOneRelatedError, AppInfosPrimarySubcategoryTwoGetToOneRelatedResponse, AppInfosSecondaryCategoryGetToOneRelatedData, AppInfosSecondaryCategoryGetToOneRelatedError, AppInfosSecondaryCategoryGetToOneRelatedResponse, AppInfosSecondarySubcategoryOneGetToOneRelatedData, AppInfosSecondarySubcategoryOneGetToOneRelatedError, AppInfosSecondarySubcategoryOneGetToOneRelatedResponse, AppInfosSecondarySubcategoryTwoGetToOneRelatedData, AppInfosSecondarySubcategoryTwoGetToOneRelatedError, AppInfosSecondarySubcategoryTwoGetToOneRelatedResponse, AppPreviewSetsCreateInstanceData, AppPreviewSetsCreateInstanceError, AppPreviewSetsCreateInstanceResponse, AppPreviewSetsGetInstanceData, AppPreviewSetsGetInstanceError, AppPreviewSetsGetInstanceResponse, AppPreviewSetsDeleteInstanceData, AppPreviewSetsDeleteInstanceError, AppPreviewSetsDeleteInstanceResponse, AppPreviewSetsAppPreviewsGetToManyRelationshipData, AppPreviewSetsAppPreviewsGetToManyRelationshipError, AppPreviewSetsAppPreviewsGetToManyRelationshipResponse, AppPreviewSetsAppPreviewsReplaceToManyRelationshipData, AppPreviewSetsAppPreviewsReplaceToManyRelationshipError, AppPreviewSetsAppPreviewsReplaceToManyRelationshipResponse, AppPreviewSetsAppPreviewsGetToManyRelatedData, AppPreviewSetsAppPreviewsGetToManyRelatedError, AppPreviewSetsAppPreviewsGetToManyRelatedResponse, AppPreviewsCreateInstanceData, AppPreviewsCreateInstanceError, AppPreviewsCreateInstanceResponse, AppPreviewsGetInstanceData, AppPreviewsGetInstanceError, AppPreviewsGetInstanceResponse, AppPreviewsUpdateInstanceData, AppPreviewsUpdateInstanceError, AppPreviewsUpdateInstanceResponse, AppPreviewsDeleteInstanceData, AppPreviewsDeleteInstanceError, AppPreviewsDeleteInstanceResponse, AppPricePointsV3GetInstanceData, AppPricePointsV3GetInstanceError, AppPricePointsV3GetInstanceResponse, AppPricePointsV3EqualizationsGetToManyRelatedData, AppPricePointsV3EqualizationsGetToManyRelatedError, AppPricePointsV3EqualizationsGetToManyRelatedResponse, AppPriceSchedulesCreateInstanceData, AppPriceSchedulesCreateInstanceError, AppPriceSchedulesCreateInstanceResponse, AppPriceSchedulesGetInstanceData, AppPriceSchedulesGetInstanceError, AppPriceSchedulesGetInstanceResponse, AppPriceSchedulesAutomaticPricesGetToManyRelatedData, AppPriceSchedulesAutomaticPricesGetToManyRelatedError, AppPriceSchedulesAutomaticPricesGetToManyRelatedResponse, AppPriceSchedulesBaseTerritoryGetToOneRelatedData, AppPriceSchedulesBaseTerritoryGetToOneRelatedError, AppPriceSchedulesBaseTerritoryGetToOneRelatedResponse, AppPriceSchedulesManualPricesGetToManyRelatedData, AppPriceSchedulesManualPricesGetToManyRelatedError, AppPriceSchedulesManualPricesGetToManyRelatedResponse, AppScreenshotSetsCreateInstanceData, AppScreenshotSetsCreateInstanceError, AppScreenshotSetsCreateInstanceResponse, AppScreenshotSetsGetInstanceData, AppScreenshotSetsGetInstanceError, AppScreenshotSetsGetInstanceResponse, AppScreenshotSetsDeleteInstanceData, AppScreenshotSetsDeleteInstanceError, AppScreenshotSetsDeleteInstanceResponse, AppScreenshotSetsAppScreenshotsGetToManyRelationshipData, AppScreenshotSetsAppScreenshotsGetToManyRelationshipError, AppScreenshotSetsAppScreenshotsGetToManyRelationshipResponse, AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipData, AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipError, AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipResponse, AppScreenshotSetsAppScreenshotsGetToManyRelatedData, AppScreenshotSetsAppScreenshotsGetToManyRelatedError, AppScreenshotSetsAppScreenshotsGetToManyRelatedResponse, AppScreenshotsCreateInstanceData, AppScreenshotsCreateInstanceError, AppScreenshotsCreateInstanceResponse, AppScreenshotsGetInstanceData, AppScreenshotsGetInstanceError, AppScreenshotsGetInstanceResponse, AppScreenshotsUpdateInstanceData, AppScreenshotsUpdateInstanceError, AppScreenshotsUpdateInstanceResponse, AppScreenshotsDeleteInstanceData, AppScreenshotsDeleteInstanceError, AppScreenshotsDeleteInstanceResponse, AppStoreReviewAttachmentsCreateInstanceData, AppStoreReviewAttachmentsCreateInstanceError, AppStoreReviewAttachmentsCreateInstanceResponse, AppStoreReviewAttachmentsGetInstanceData, AppStoreReviewAttachmentsGetInstanceError, AppStoreReviewAttachmentsGetInstanceResponse, AppStoreReviewAttachmentsUpdateInstanceData, AppStoreReviewAttachmentsUpdateInstanceError, AppStoreReviewAttachmentsUpdateInstanceResponse, AppStoreReviewAttachmentsDeleteInstanceData, AppStoreReviewAttachmentsDeleteInstanceError, AppStoreReviewAttachmentsDeleteInstanceResponse, AppStoreReviewDetailsCreateInstanceData, AppStoreReviewDetailsCreateInstanceError, AppStoreReviewDetailsCreateInstanceResponse, AppStoreReviewDetailsGetInstanceData, AppStoreReviewDetailsGetInstanceError, AppStoreReviewDetailsGetInstanceResponse, AppStoreReviewDetailsUpdateInstanceData, AppStoreReviewDetailsUpdateInstanceError, AppStoreReviewDetailsUpdateInstanceResponse, AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedData, AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedError, AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedResponse, AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceData, AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceError, AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceResponse, AppStoreVersionExperimentTreatmentLocalizationsGetInstanceData, AppStoreVersionExperimentTreatmentLocalizationsGetInstanceError, AppStoreVersionExperimentTreatmentLocalizationsGetInstanceResponse, AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceData, AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceError, AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceResponse, AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedData, AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedError, AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedResponse, AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedData, AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedError, AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedResponse, AppStoreVersionExperimentTreatmentsCreateInstanceData, AppStoreVersionExperimentTreatmentsCreateInstanceError, AppStoreVersionExperimentTreatmentsCreateInstanceResponse, AppStoreVersionExperimentTreatmentsGetInstanceData, AppStoreVersionExperimentTreatmentsGetInstanceError, AppStoreVersionExperimentTreatmentsGetInstanceResponse, AppStoreVersionExperimentTreatmentsUpdateInstanceData, AppStoreVersionExperimentTreatmentsUpdateInstanceError, AppStoreVersionExperimentTreatmentsUpdateInstanceResponse, AppStoreVersionExperimentTreatmentsDeleteInstanceData, AppStoreVersionExperimentTreatmentsDeleteInstanceError, AppStoreVersionExperimentTreatmentsDeleteInstanceResponse, AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedData, AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedError, AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedResponse, AppStoreVersionExperimentsV2CreateInstanceData, AppStoreVersionExperimentsV2CreateInstanceError, AppStoreVersionExperimentsV2CreateInstanceResponse, AppStoreVersionExperimentsV2GetInstanceData, AppStoreVersionExperimentsV2GetInstanceError, AppStoreVersionExperimentsV2GetInstanceResponse, AppStoreVersionExperimentsV2UpdateInstanceData, AppStoreVersionExperimentsV2UpdateInstanceError, AppStoreVersionExperimentsV2UpdateInstanceResponse, AppStoreVersionExperimentsV2DeleteInstanceData, AppStoreVersionExperimentsV2DeleteInstanceError, AppStoreVersionExperimentsV2DeleteInstanceResponse, AppStoreVersionExperimentsCreateInstanceData, AppStoreVersionExperimentsCreateInstanceError, AppStoreVersionExperimentsCreateInstanceResponse, AppStoreVersionExperimentsGetInstanceData, AppStoreVersionExperimentsGetInstanceError, AppStoreVersionExperimentsGetInstanceResponse, AppStoreVersionExperimentsUpdateInstanceData, AppStoreVersionExperimentsUpdateInstanceError, AppStoreVersionExperimentsUpdateInstanceResponse, AppStoreVersionExperimentsDeleteInstanceData, AppStoreVersionExperimentsDeleteInstanceError, AppStoreVersionExperimentsDeleteInstanceResponse, AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedData, AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedError, AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedResponse, AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedData, AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedError, AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedResponse, AppStoreVersionLocalizationsCreateInstanceData, AppStoreVersionLocalizationsCreateInstanceError, AppStoreVersionLocalizationsCreateInstanceResponse, AppStoreVersionLocalizationsGetInstanceData, AppStoreVersionLocalizationsGetInstanceError, AppStoreVersionLocalizationsGetInstanceResponse, AppStoreVersionLocalizationsUpdateInstanceData, AppStoreVersionLocalizationsUpdateInstanceError, AppStoreVersionLocalizationsUpdateInstanceResponse, AppStoreVersionLocalizationsDeleteInstanceData, AppStoreVersionLocalizationsDeleteInstanceError, AppStoreVersionLocalizationsDeleteInstanceResponse, AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedData, AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedError, AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedResponse, AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedData, AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedError, AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedResponse, AppStoreVersionPhasedReleasesCreateInstanceData, AppStoreVersionPhasedReleasesCreateInstanceError, AppStoreVersionPhasedReleasesCreateInstanceResponse, AppStoreVersionPhasedReleasesUpdateInstanceData, AppStoreVersionPhasedReleasesUpdateInstanceError, AppStoreVersionPhasedReleasesUpdateInstanceResponse, AppStoreVersionPhasedReleasesDeleteInstanceData, AppStoreVersionPhasedReleasesDeleteInstanceError, AppStoreVersionPhasedReleasesDeleteInstanceResponse, AppStoreVersionPromotionsCreateInstanceData, AppStoreVersionPromotionsCreateInstanceError, AppStoreVersionPromotionsCreateInstanceResponse, AppStoreVersionReleaseRequestsCreateInstanceData, AppStoreVersionReleaseRequestsCreateInstanceError, AppStoreVersionReleaseRequestsCreateInstanceResponse, AppStoreVersionSubmissionsCreateInstanceData, AppStoreVersionSubmissionsCreateInstanceError, AppStoreVersionSubmissionsCreateInstanceResponse, AppStoreVersionSubmissionsDeleteInstanceData, AppStoreVersionSubmissionsDeleteInstanceError, AppStoreVersionSubmissionsDeleteInstanceResponse, AppStoreVersionsCreateInstanceData, AppStoreVersionsCreateInstanceError, AppStoreVersionsCreateInstanceResponse, AppStoreVersionsGetInstanceData, AppStoreVersionsGetInstanceError, AppStoreVersionsGetInstanceResponse, AppStoreVersionsUpdateInstanceData, AppStoreVersionsUpdateInstanceError, AppStoreVersionsUpdateInstanceResponse, AppStoreVersionsDeleteInstanceData, AppStoreVersionsDeleteInstanceError, AppStoreVersionsDeleteInstanceResponse, AppStoreVersionsAgeRatingDeclarationGetToOneRelatedData, AppStoreVersionsAgeRatingDeclarationGetToOneRelatedError, AppStoreVersionsAgeRatingDeclarationGetToOneRelatedResponse, AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedData, AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedError, AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedResponse, AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipData, AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipError, AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipResponse, AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipData, AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipError, AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipResponse, AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedData, AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedError, AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedResponse, AppStoreVersionsAppStoreReviewDetailGetToOneRelatedData, AppStoreVersionsAppStoreReviewDetailGetToOneRelatedError, AppStoreVersionsAppStoreReviewDetailGetToOneRelatedResponse, AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedData, AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedError, AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedResponse, AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedData, AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedError, AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedResponse, AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedData, AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedError, AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedResponse, AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedData, AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedError, AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedResponse, AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedData, AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedError, AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedResponse, AppStoreVersionsBuildGetToOneRelationshipData, AppStoreVersionsBuildGetToOneRelationshipError, AppStoreVersionsBuildGetToOneRelationshipResponse, AppStoreVersionsBuildUpdateToOneRelationshipData, AppStoreVersionsBuildUpdateToOneRelationshipError, AppStoreVersionsBuildUpdateToOneRelationshipResponse, AppStoreVersionsBuildGetToOneRelatedData, AppStoreVersionsBuildGetToOneRelatedError, AppStoreVersionsBuildGetToOneRelatedResponse, AppStoreVersionsCustomerReviewsGetToManyRelatedData, AppStoreVersionsCustomerReviewsGetToManyRelatedError, AppStoreVersionsCustomerReviewsGetToManyRelatedResponse, AppStoreVersionsGameCenterAppVersionGetToOneRelatedData, AppStoreVersionsGameCenterAppVersionGetToOneRelatedError, AppStoreVersionsGameCenterAppVersionGetToOneRelatedResponse, AppStoreVersionsRoutingAppCoverageGetToOneRelatedData, AppStoreVersionsRoutingAppCoverageGetToOneRelatedError, AppStoreVersionsRoutingAppCoverageGetToOneRelatedResponse, AppsGetCollectionData, AppsGetCollectionError, AppsGetCollectionResponse, AppsGetInstanceData, AppsGetInstanceError, AppsGetInstanceResponse, AppsUpdateInstanceData, AppsUpdateInstanceError, AppsUpdateInstanceResponse, AppsAlternativeDistributionKeyGetToOneRelatedData, AppsAlternativeDistributionKeyGetToOneRelatedError, AppsAlternativeDistributionKeyGetToOneRelatedResponse, AppsAnalyticsReportRequestsGetToManyRelatedData, AppsAnalyticsReportRequestsGetToManyRelatedError, AppsAnalyticsReportRequestsGetToManyRelatedResponse, AppsAppAvailabilityV2GetToOneRelatedData, AppsAppAvailabilityV2GetToOneRelatedError, AppsAppAvailabilityV2GetToOneRelatedResponse, AppsAppClipsGetToManyRelatedData, AppsAppClipsGetToManyRelatedError, AppsAppClipsGetToManyRelatedResponse, AppsAppCustomProductPagesGetToManyRelatedData, AppsAppCustomProductPagesGetToManyRelatedError, AppsAppCustomProductPagesGetToManyRelatedResponse, AppsAppEncryptionDeclarationsGetToManyRelatedData, AppsAppEncryptionDeclarationsGetToManyRelatedError, AppsAppEncryptionDeclarationsGetToManyRelatedResponse, AppsAppEventsGetToManyRelatedData, AppsAppEventsGetToManyRelatedError, AppsAppEventsGetToManyRelatedResponse, AppsAppInfosGetToManyRelatedData, AppsAppInfosGetToManyRelatedError, AppsAppInfosGetToManyRelatedResponse, AppsAppPricePointsGetToManyRelatedData, AppsAppPricePointsGetToManyRelatedError, AppsAppPricePointsGetToManyRelatedResponse, AppsAppPriceScheduleGetToOneRelatedData, AppsAppPriceScheduleGetToOneRelatedError, AppsAppPriceScheduleGetToOneRelatedResponse, AppsAppStoreVersionExperimentsV2GetToManyRelatedData, AppsAppStoreVersionExperimentsV2GetToManyRelatedError, AppsAppStoreVersionExperimentsV2GetToManyRelatedResponse, AppsAppStoreVersionsGetToManyRelatedData, AppsAppStoreVersionsGetToManyRelatedError, AppsAppStoreVersionsGetToManyRelatedResponse, AppsBetaAppLocalizationsGetToManyRelatedData, AppsBetaAppLocalizationsGetToManyRelatedError, AppsBetaAppLocalizationsGetToManyRelatedResponse, AppsBetaAppReviewDetailGetToOneRelatedData, AppsBetaAppReviewDetailGetToOneRelatedError, AppsBetaAppReviewDetailGetToOneRelatedResponse, AppsBetaGroupsGetToManyRelatedData, AppsBetaGroupsGetToManyRelatedError, AppsBetaGroupsGetToManyRelatedResponse, AppsBetaLicenseAgreementGetToOneRelatedData, AppsBetaLicenseAgreementGetToOneRelatedError, AppsBetaLicenseAgreementGetToOneRelatedResponse, AppsBetaTestersDeleteToManyRelationshipData, AppsBetaTestersDeleteToManyRelationshipError, AppsBetaTestersDeleteToManyRelationshipResponse, AppsBuildsGetToManyRelatedData, AppsBuildsGetToManyRelatedError, AppsBuildsGetToManyRelatedResponse, AppsCiProductGetToOneRelatedData, AppsCiProductGetToOneRelatedError, AppsCiProductGetToOneRelatedResponse, AppsCustomerReviewsGetToManyRelatedData, AppsCustomerReviewsGetToManyRelatedError, AppsCustomerReviewsGetToManyRelatedResponse, AppsEndUserLicenseAgreementGetToOneRelatedData, AppsEndUserLicenseAgreementGetToOneRelatedError, AppsEndUserLicenseAgreementGetToOneRelatedResponse, AppsGameCenterDetailGetToOneRelatedData, AppsGameCenterDetailGetToOneRelatedError, AppsGameCenterDetailGetToOneRelatedResponse, AppsGameCenterEnabledVersionsGetToManyRelatedData, AppsGameCenterEnabledVersionsGetToManyRelatedError, AppsGameCenterEnabledVersionsGetToManyRelatedResponse, AppsInAppPurchasesGetToManyRelatedData, AppsInAppPurchasesGetToManyRelatedError, AppsInAppPurchasesGetToManyRelatedResponse, AppsInAppPurchasesV2GetToManyRelatedData, AppsInAppPurchasesV2GetToManyRelatedError, AppsInAppPurchasesV2GetToManyRelatedResponse, AppsMarketplaceSearchDetailGetToOneRelatedData, AppsMarketplaceSearchDetailGetToOneRelatedError, AppsMarketplaceSearchDetailGetToOneRelatedResponse, AppsPerfPowerMetricsGetToManyRelatedData, AppsPerfPowerMetricsGetToManyRelatedError, AppsPerfPowerMetricsGetToManyRelatedResponse, AppsPreReleaseVersionsGetToManyRelatedData, AppsPreReleaseVersionsGetToManyRelatedError, AppsPreReleaseVersionsGetToManyRelatedResponse, AppsPromotedPurchasesGetToManyRelationshipData, AppsPromotedPurchasesGetToManyRelationshipError, AppsPromotedPurchasesGetToManyRelationshipResponse, AppsPromotedPurchasesReplaceToManyRelationshipData, AppsPromotedPurchasesReplaceToManyRelationshipError, AppsPromotedPurchasesReplaceToManyRelationshipResponse, AppsPromotedPurchasesGetToManyRelatedData, AppsPromotedPurchasesGetToManyRelatedError, AppsPromotedPurchasesGetToManyRelatedResponse, AppsReviewSubmissionsGetToManyRelatedData, AppsReviewSubmissionsGetToManyRelatedError, AppsReviewSubmissionsGetToManyRelatedResponse, AppsSubscriptionGracePeriodGetToOneRelatedData, AppsSubscriptionGracePeriodGetToOneRelatedError, AppsSubscriptionGracePeriodGetToOneRelatedResponse, AppsSubscriptionGroupsGetToManyRelatedData, AppsSubscriptionGroupsGetToManyRelatedError, AppsSubscriptionGroupsGetToManyRelatedResponse, AppsBetaTesterUsagesGetMetricsData, AppsBetaTesterUsagesGetMetricsError, AppsBetaTesterUsagesGetMetricsResponse, BetaAppClipInvocationLocalizationsCreateInstanceData, BetaAppClipInvocationLocalizationsCreateInstanceError, BetaAppClipInvocationLocalizationsCreateInstanceResponse, BetaAppClipInvocationLocalizationsUpdateInstanceData, BetaAppClipInvocationLocalizationsUpdateInstanceError, BetaAppClipInvocationLocalizationsUpdateInstanceResponse, BetaAppClipInvocationLocalizationsDeleteInstanceData, BetaAppClipInvocationLocalizationsDeleteInstanceError, BetaAppClipInvocationLocalizationsDeleteInstanceResponse, BetaAppClipInvocationsCreateInstanceData, BetaAppClipInvocationsCreateInstanceError, BetaAppClipInvocationsCreateInstanceResponse, BetaAppClipInvocationsGetInstanceData, BetaAppClipInvocationsGetInstanceError, BetaAppClipInvocationsGetInstanceResponse, BetaAppClipInvocationsUpdateInstanceData, BetaAppClipInvocationsUpdateInstanceError, BetaAppClipInvocationsUpdateInstanceResponse, BetaAppClipInvocationsDeleteInstanceData, BetaAppClipInvocationsDeleteInstanceError, BetaAppClipInvocationsDeleteInstanceResponse, BetaAppLocalizationsGetCollectionData, BetaAppLocalizationsGetCollectionError, BetaAppLocalizationsGetCollectionResponse, BetaAppLocalizationsCreateInstanceData, BetaAppLocalizationsCreateInstanceError, BetaAppLocalizationsCreateInstanceResponse, BetaAppLocalizationsGetInstanceData, BetaAppLocalizationsGetInstanceError, BetaAppLocalizationsGetInstanceResponse, BetaAppLocalizationsUpdateInstanceData, BetaAppLocalizationsUpdateInstanceError, BetaAppLocalizationsUpdateInstanceResponse, BetaAppLocalizationsDeleteInstanceData, BetaAppLocalizationsDeleteInstanceError, BetaAppLocalizationsDeleteInstanceResponse, BetaAppLocalizationsAppGetToOneRelatedData, BetaAppLocalizationsAppGetToOneRelatedError, BetaAppLocalizationsAppGetToOneRelatedResponse, BetaAppReviewDetailsGetCollectionData, BetaAppReviewDetailsGetCollectionError, BetaAppReviewDetailsGetCollectionResponse, BetaAppReviewDetailsGetInstanceData, BetaAppReviewDetailsGetInstanceError, BetaAppReviewDetailsGetInstanceResponse, BetaAppReviewDetailsUpdateInstanceData, BetaAppReviewDetailsUpdateInstanceError, BetaAppReviewDetailsUpdateInstanceResponse, BetaAppReviewDetailsAppGetToOneRelatedData, BetaAppReviewDetailsAppGetToOneRelatedError, BetaAppReviewDetailsAppGetToOneRelatedResponse, BetaAppReviewSubmissionsGetCollectionData, BetaAppReviewSubmissionsGetCollectionError, BetaAppReviewSubmissionsGetCollectionResponse, BetaAppReviewSubmissionsCreateInstanceData, BetaAppReviewSubmissionsCreateInstanceError, BetaAppReviewSubmissionsCreateInstanceResponse, BetaAppReviewSubmissionsGetInstanceData, BetaAppReviewSubmissionsGetInstanceError, BetaAppReviewSubmissionsGetInstanceResponse, BetaAppReviewSubmissionsBuildGetToOneRelatedData, BetaAppReviewSubmissionsBuildGetToOneRelatedError, BetaAppReviewSubmissionsBuildGetToOneRelatedResponse, BetaBuildLocalizationsGetCollectionData, BetaBuildLocalizationsGetCollectionError, BetaBuildLocalizationsGetCollectionResponse, BetaBuildLocalizationsCreateInstanceData, BetaBuildLocalizationsCreateInstanceError, BetaBuildLocalizationsCreateInstanceResponse, BetaBuildLocalizationsGetInstanceData, BetaBuildLocalizationsGetInstanceError, BetaBuildLocalizationsGetInstanceResponse, BetaBuildLocalizationsUpdateInstanceData, BetaBuildLocalizationsUpdateInstanceError, BetaBuildLocalizationsUpdateInstanceResponse, BetaBuildLocalizationsDeleteInstanceData, BetaBuildLocalizationsDeleteInstanceError, BetaBuildLocalizationsDeleteInstanceResponse, BetaBuildLocalizationsBuildGetToOneRelatedData, BetaBuildLocalizationsBuildGetToOneRelatedError, BetaBuildLocalizationsBuildGetToOneRelatedResponse, BetaGroupsGetCollectionData, BetaGroupsGetCollectionError, BetaGroupsGetCollectionResponse, BetaGroupsCreateInstanceData, BetaGroupsCreateInstanceError, BetaGroupsCreateInstanceResponse, BetaGroupsGetInstanceData, BetaGroupsGetInstanceError, BetaGroupsGetInstanceResponse, BetaGroupsUpdateInstanceData, BetaGroupsUpdateInstanceError, BetaGroupsUpdateInstanceResponse, BetaGroupsDeleteInstanceData, BetaGroupsDeleteInstanceError, BetaGroupsDeleteInstanceResponse, BetaGroupsAppGetToOneRelatedData, BetaGroupsAppGetToOneRelatedError, BetaGroupsAppGetToOneRelatedResponse, BetaGroupsBetaTestersGetToManyRelationshipData, BetaGroupsBetaTestersGetToManyRelationshipError, BetaGroupsBetaTestersGetToManyRelationshipResponse, BetaGroupsBetaTestersCreateToManyRelationshipData, BetaGroupsBetaTestersCreateToManyRelationshipError, BetaGroupsBetaTestersCreateToManyRelationshipResponse, BetaGroupsBetaTestersDeleteToManyRelationshipData, BetaGroupsBetaTestersDeleteToManyRelationshipError, BetaGroupsBetaTestersDeleteToManyRelationshipResponse, BetaGroupsBetaTestersGetToManyRelatedData, BetaGroupsBetaTestersGetToManyRelatedError, BetaGroupsBetaTestersGetToManyRelatedResponse, BetaGroupsBuildsGetToManyRelationshipData, BetaGroupsBuildsGetToManyRelationshipError, BetaGroupsBuildsGetToManyRelationshipResponse, BetaGroupsBuildsCreateToManyRelationshipData, BetaGroupsBuildsCreateToManyRelationshipError, BetaGroupsBuildsCreateToManyRelationshipResponse, BetaGroupsBuildsDeleteToManyRelationshipData, BetaGroupsBuildsDeleteToManyRelationshipError, BetaGroupsBuildsDeleteToManyRelationshipResponse, BetaGroupsBuildsGetToManyRelatedData, BetaGroupsBuildsGetToManyRelatedError, BetaGroupsBuildsGetToManyRelatedResponse, BetaGroupsBetaTesterUsagesGetMetricsData, BetaGroupsBetaTesterUsagesGetMetricsError, BetaGroupsBetaTesterUsagesGetMetricsResponse, BetaLicenseAgreementsGetCollectionData, BetaLicenseAgreementsGetCollectionError, BetaLicenseAgreementsGetCollectionResponse, BetaLicenseAgreementsGetInstanceData, BetaLicenseAgreementsGetInstanceError, BetaLicenseAgreementsGetInstanceResponse, BetaLicenseAgreementsUpdateInstanceData, BetaLicenseAgreementsUpdateInstanceError, BetaLicenseAgreementsUpdateInstanceResponse, BetaLicenseAgreementsAppGetToOneRelatedData, BetaLicenseAgreementsAppGetToOneRelatedError, BetaLicenseAgreementsAppGetToOneRelatedResponse, BetaTesterInvitationsCreateInstanceData, BetaTesterInvitationsCreateInstanceError, BetaTesterInvitationsCreateInstanceResponse, BetaTestersGetCollectionData, BetaTestersGetCollectionError, BetaTestersGetCollectionResponse, BetaTestersCreateInstanceData, BetaTestersCreateInstanceError, BetaTestersCreateInstanceResponse, BetaTestersGetInstanceData, BetaTestersGetInstanceError, BetaTestersGetInstanceResponse, BetaTestersDeleteInstanceData, BetaTestersDeleteInstanceError, BetaTestersDeleteInstanceResponse, BetaTestersAppsGetToManyRelationshipData, BetaTestersAppsGetToManyRelationshipError, BetaTestersAppsGetToManyRelationshipResponse, BetaTestersAppsDeleteToManyRelationshipData, BetaTestersAppsDeleteToManyRelationshipError, BetaTestersAppsDeleteToManyRelationshipResponse, BetaTestersAppsGetToManyRelatedData, BetaTestersAppsGetToManyRelatedError, BetaTestersAppsGetToManyRelatedResponse, BetaTestersBetaGroupsGetToManyRelationshipData, BetaTestersBetaGroupsGetToManyRelationshipError, BetaTestersBetaGroupsGetToManyRelationshipResponse, BetaTestersBetaGroupsCreateToManyRelationshipData, BetaTestersBetaGroupsCreateToManyRelationshipError, BetaTestersBetaGroupsCreateToManyRelationshipResponse, BetaTestersBetaGroupsDeleteToManyRelationshipData, BetaTestersBetaGroupsDeleteToManyRelationshipError, BetaTestersBetaGroupsDeleteToManyRelationshipResponse, BetaTestersBetaGroupsGetToManyRelatedData, BetaTestersBetaGroupsGetToManyRelatedError, BetaTestersBetaGroupsGetToManyRelatedResponse, BetaTestersBuildsGetToManyRelationshipData, BetaTestersBuildsGetToManyRelationshipError, BetaTestersBuildsGetToManyRelationshipResponse, BetaTestersBuildsCreateToManyRelationshipData, BetaTestersBuildsCreateToManyRelationshipError, BetaTestersBuildsCreateToManyRelationshipResponse, BetaTestersBuildsDeleteToManyRelationshipData, BetaTestersBuildsDeleteToManyRelationshipError, BetaTestersBuildsDeleteToManyRelationshipResponse, BetaTestersBuildsGetToManyRelatedData, BetaTestersBuildsGetToManyRelatedError, BetaTestersBuildsGetToManyRelatedResponse, BetaTestersBetaTesterUsagesGetMetricsData, BetaTestersBetaTesterUsagesGetMetricsError, BetaTestersBetaTesterUsagesGetMetricsResponse, BuildBetaDetailsGetCollectionData, BuildBetaDetailsGetCollectionError, BuildBetaDetailsGetCollectionResponse, BuildBetaDetailsGetInstanceData, BuildBetaDetailsGetInstanceError, BuildBetaDetailsGetInstanceResponse, BuildBetaDetailsUpdateInstanceData, BuildBetaDetailsUpdateInstanceError, BuildBetaDetailsUpdateInstanceResponse, BuildBetaDetailsBuildGetToOneRelatedData, BuildBetaDetailsBuildGetToOneRelatedError, BuildBetaDetailsBuildGetToOneRelatedResponse, BuildBetaNotificationsCreateInstanceData, BuildBetaNotificationsCreateInstanceError, BuildBetaNotificationsCreateInstanceResponse, BuildsGetCollectionData, BuildsGetCollectionError, BuildsGetCollectionResponse, BuildsGetInstanceData, BuildsGetInstanceError, BuildsGetInstanceResponse, BuildsUpdateInstanceData, BuildsUpdateInstanceError, BuildsUpdateInstanceResponse, BuildsAppGetToOneRelatedData, BuildsAppGetToOneRelatedError, BuildsAppGetToOneRelatedResponse, BuildsAppEncryptionDeclarationGetToOneRelationshipData, BuildsAppEncryptionDeclarationGetToOneRelationshipError, BuildsAppEncryptionDeclarationGetToOneRelationshipResponse, BuildsAppEncryptionDeclarationUpdateToOneRelationshipData, BuildsAppEncryptionDeclarationUpdateToOneRelationshipError, BuildsAppEncryptionDeclarationUpdateToOneRelationshipResponse, BuildsAppEncryptionDeclarationGetToOneRelatedData, BuildsAppEncryptionDeclarationGetToOneRelatedError, BuildsAppEncryptionDeclarationGetToOneRelatedResponse, BuildsAppStoreVersionGetToOneRelatedData, BuildsAppStoreVersionGetToOneRelatedError, BuildsAppStoreVersionGetToOneRelatedResponse, BuildsBetaAppReviewSubmissionGetToOneRelatedData, BuildsBetaAppReviewSubmissionGetToOneRelatedError, BuildsBetaAppReviewSubmissionGetToOneRelatedResponse, BuildsBetaBuildLocalizationsGetToManyRelatedData, BuildsBetaBuildLocalizationsGetToManyRelatedError, BuildsBetaBuildLocalizationsGetToManyRelatedResponse, BuildsBetaGroupsCreateToManyRelationshipData, BuildsBetaGroupsCreateToManyRelationshipError, BuildsBetaGroupsCreateToManyRelationshipResponse, BuildsBetaGroupsDeleteToManyRelationshipData, BuildsBetaGroupsDeleteToManyRelationshipError, BuildsBetaGroupsDeleteToManyRelationshipResponse, BuildsBuildBetaDetailGetToOneRelatedData, BuildsBuildBetaDetailGetToOneRelatedError, BuildsBuildBetaDetailGetToOneRelatedResponse, BuildsDiagnosticSignaturesGetToManyRelatedData, BuildsDiagnosticSignaturesGetToManyRelatedError, BuildsDiagnosticSignaturesGetToManyRelatedResponse, BuildsIconsGetToManyRelatedData, BuildsIconsGetToManyRelatedError, BuildsIconsGetToManyRelatedResponse, BuildsIndividualTestersGetToManyRelationshipData, BuildsIndividualTestersGetToManyRelationshipError, BuildsIndividualTestersGetToManyRelationshipResponse, BuildsIndividualTestersCreateToManyRelationshipData, BuildsIndividualTestersCreateToManyRelationshipError, BuildsIndividualTestersCreateToManyRelationshipResponse, BuildsIndividualTestersDeleteToManyRelationshipData, BuildsIndividualTestersDeleteToManyRelationshipError, BuildsIndividualTestersDeleteToManyRelationshipResponse, BuildsIndividualTestersGetToManyRelatedData, BuildsIndividualTestersGetToManyRelatedError, BuildsIndividualTestersGetToManyRelatedResponse, BuildsPerfPowerMetricsGetToManyRelatedData, BuildsPerfPowerMetricsGetToManyRelatedError, BuildsPerfPowerMetricsGetToManyRelatedResponse, BuildsPreReleaseVersionGetToOneRelatedData, BuildsPreReleaseVersionGetToOneRelatedError, BuildsPreReleaseVersionGetToOneRelatedResponse, BuildsBetaBuildUsagesGetMetricsData, BuildsBetaBuildUsagesGetMetricsError, BuildsBetaBuildUsagesGetMetricsResponse, BundleIdCapabilitiesCreateInstanceData, BundleIdCapabilitiesCreateInstanceError, BundleIdCapabilitiesCreateInstanceResponse, BundleIdCapabilitiesUpdateInstanceData, BundleIdCapabilitiesUpdateInstanceError, BundleIdCapabilitiesUpdateInstanceResponse, BundleIdCapabilitiesDeleteInstanceData, BundleIdCapabilitiesDeleteInstanceError, BundleIdCapabilitiesDeleteInstanceResponse, BundleIdsGetCollectionData, BundleIdsGetCollectionError, BundleIdsGetCollectionResponse, BundleIdsCreateInstanceData, BundleIdsCreateInstanceError, BundleIdsCreateInstanceResponse, BundleIdsGetInstanceData, BundleIdsGetInstanceError, BundleIdsGetInstanceResponse, BundleIdsUpdateInstanceData, BundleIdsUpdateInstanceError, BundleIdsUpdateInstanceResponse, BundleIdsDeleteInstanceData, BundleIdsDeleteInstanceError, BundleIdsDeleteInstanceResponse, BundleIdsAppGetToOneRelatedData, BundleIdsAppGetToOneRelatedError, BundleIdsAppGetToOneRelatedResponse, BundleIdsBundleIdCapabilitiesGetToManyRelatedData, BundleIdsBundleIdCapabilitiesGetToManyRelatedError, BundleIdsBundleIdCapabilitiesGetToManyRelatedResponse, BundleIdsProfilesGetToManyRelatedData, BundleIdsProfilesGetToManyRelatedError, BundleIdsProfilesGetToManyRelatedResponse, CertificatesGetCollectionData, CertificatesGetCollectionError, CertificatesGetCollectionResponse, CertificatesCreateInstanceData, CertificatesCreateInstanceError, CertificatesCreateInstanceResponse, CertificatesGetInstanceData, CertificatesGetInstanceError, CertificatesGetInstanceResponse, CertificatesDeleteInstanceData, CertificatesDeleteInstanceError, CertificatesDeleteInstanceResponse, CiArtifactsGetInstanceData, CiArtifactsGetInstanceError, CiArtifactsGetInstanceResponse, CiBuildActionsGetInstanceData, CiBuildActionsGetInstanceError, CiBuildActionsGetInstanceResponse, CiBuildActionsArtifactsGetToManyRelatedData, CiBuildActionsArtifactsGetToManyRelatedError, CiBuildActionsArtifactsGetToManyRelatedResponse, CiBuildActionsBuildRunGetToOneRelatedData, CiBuildActionsBuildRunGetToOneRelatedError, CiBuildActionsBuildRunGetToOneRelatedResponse, CiBuildActionsIssuesGetToManyRelatedData, CiBuildActionsIssuesGetToManyRelatedError, CiBuildActionsIssuesGetToManyRelatedResponse, CiBuildActionsTestResultsGetToManyRelatedData, CiBuildActionsTestResultsGetToManyRelatedError, CiBuildActionsTestResultsGetToManyRelatedResponse, CiBuildRunsCreateInstanceData, CiBuildRunsCreateInstanceError, CiBuildRunsCreateInstanceResponse, CiBuildRunsGetInstanceData, CiBuildRunsGetInstanceError, CiBuildRunsGetInstanceResponse, CiBuildRunsActionsGetToManyRelatedData, CiBuildRunsActionsGetToManyRelatedError, CiBuildRunsActionsGetToManyRelatedResponse, CiBuildRunsBuildsGetToManyRelatedData, CiBuildRunsBuildsGetToManyRelatedError, CiBuildRunsBuildsGetToManyRelatedResponse, CiIssuesGetInstanceData, CiIssuesGetInstanceError, CiIssuesGetInstanceResponse, CiMacOsVersionsGetCollectionData, CiMacOsVersionsGetCollectionError, CiMacOsVersionsGetCollectionResponse, CiMacOsVersionsGetInstanceData, CiMacOsVersionsGetInstanceError, CiMacOsVersionsGetInstanceResponse, CiMacOsVersionsXcodeVersionsGetToManyRelatedData, CiMacOsVersionsXcodeVersionsGetToManyRelatedError, CiMacOsVersionsXcodeVersionsGetToManyRelatedResponse, CiProductsGetCollectionData, CiProductsGetCollectionError, CiProductsGetCollectionResponse, CiProductsGetInstanceData, CiProductsGetInstanceError, CiProductsGetInstanceResponse, CiProductsDeleteInstanceData, CiProductsDeleteInstanceError, CiProductsDeleteInstanceResponse, CiProductsAdditionalRepositoriesGetToManyRelatedData, CiProductsAdditionalRepositoriesGetToManyRelatedError, CiProductsAdditionalRepositoriesGetToManyRelatedResponse, CiProductsAppGetToOneRelatedData, CiProductsAppGetToOneRelatedError, CiProductsAppGetToOneRelatedResponse, CiProductsBuildRunsGetToManyRelatedData, CiProductsBuildRunsGetToManyRelatedError, CiProductsBuildRunsGetToManyRelatedResponse, CiProductsPrimaryRepositoriesGetToManyRelatedData, CiProductsPrimaryRepositoriesGetToManyRelatedError, CiProductsPrimaryRepositoriesGetToManyRelatedResponse, CiProductsWorkflowsGetToManyRelatedData, CiProductsWorkflowsGetToManyRelatedError, CiProductsWorkflowsGetToManyRelatedResponse, CiTestResultsGetInstanceData, CiTestResultsGetInstanceError, CiTestResultsGetInstanceResponse, CiWorkflowsCreateInstanceData, CiWorkflowsCreateInstanceError, CiWorkflowsCreateInstanceResponse, CiWorkflowsGetInstanceData, CiWorkflowsGetInstanceError, CiWorkflowsGetInstanceResponse, CiWorkflowsUpdateInstanceData, CiWorkflowsUpdateInstanceError, CiWorkflowsUpdateInstanceResponse, CiWorkflowsDeleteInstanceData, CiWorkflowsDeleteInstanceError, CiWorkflowsDeleteInstanceResponse, CiWorkflowsBuildRunsGetToManyRelatedData, CiWorkflowsBuildRunsGetToManyRelatedError, CiWorkflowsBuildRunsGetToManyRelatedResponse, CiWorkflowsRepositoryGetToOneRelatedData, CiWorkflowsRepositoryGetToOneRelatedError, CiWorkflowsRepositoryGetToOneRelatedResponse, CiXcodeVersionsGetCollectionData, CiXcodeVersionsGetCollectionError, CiXcodeVersionsGetCollectionResponse, CiXcodeVersionsGetInstanceData, CiXcodeVersionsGetInstanceError, CiXcodeVersionsGetInstanceResponse, CiXcodeVersionsMacOsVersionsGetToManyRelatedData, CiXcodeVersionsMacOsVersionsGetToManyRelatedError, CiXcodeVersionsMacOsVersionsGetToManyRelatedResponse, CustomerReviewResponsesCreateInstanceData, CustomerReviewResponsesCreateInstanceError, CustomerReviewResponsesCreateInstanceResponse, CustomerReviewResponsesGetInstanceData, CustomerReviewResponsesGetInstanceError, CustomerReviewResponsesGetInstanceResponse, CustomerReviewResponsesDeleteInstanceData, CustomerReviewResponsesDeleteInstanceError, CustomerReviewResponsesDeleteInstanceResponse, CustomerReviewsGetInstanceData, CustomerReviewsGetInstanceError, CustomerReviewsGetInstanceResponse, CustomerReviewsResponseGetToOneRelatedData, CustomerReviewsResponseGetToOneRelatedError, CustomerReviewsResponseGetToOneRelatedResponse, DevicesGetCollectionData, DevicesGetCollectionError, DevicesGetCollectionResponse, DevicesCreateInstanceData, DevicesCreateInstanceError, DevicesCreateInstanceResponse, DevicesGetInstanceData, DevicesGetInstanceError, DevicesGetInstanceResponse, DevicesUpdateInstanceData, DevicesUpdateInstanceError, DevicesUpdateInstanceResponse, EndAppAvailabilityPreOrdersCreateInstanceData, EndAppAvailabilityPreOrdersCreateInstanceError, EndAppAvailabilityPreOrdersCreateInstanceResponse, EndUserLicenseAgreementsCreateInstanceData, EndUserLicenseAgreementsCreateInstanceError, EndUserLicenseAgreementsCreateInstanceResponse, EndUserLicenseAgreementsGetInstanceData, EndUserLicenseAgreementsGetInstanceError, EndUserLicenseAgreementsGetInstanceResponse, EndUserLicenseAgreementsUpdateInstanceData, EndUserLicenseAgreementsUpdateInstanceError, EndUserLicenseAgreementsUpdateInstanceResponse, EndUserLicenseAgreementsDeleteInstanceData, EndUserLicenseAgreementsDeleteInstanceError, EndUserLicenseAgreementsDeleteInstanceResponse, EndUserLicenseAgreementsTerritoriesGetToManyRelatedData, EndUserLicenseAgreementsTerritoriesGetToManyRelatedError, EndUserLicenseAgreementsTerritoriesGetToManyRelatedResponse, FinanceReportsGetCollectionData, FinanceReportsGetCollectionError, FinanceReportsGetCollectionResponse, GameCenterAchievementImagesCreateInstanceData, GameCenterAchievementImagesCreateInstanceError, GameCenterAchievementImagesCreateInstanceResponse, GameCenterAchievementImagesGetInstanceData, GameCenterAchievementImagesGetInstanceError, GameCenterAchievementImagesGetInstanceResponse, GameCenterAchievementImagesUpdateInstanceData, GameCenterAchievementImagesUpdateInstanceError, GameCenterAchievementImagesUpdateInstanceResponse, GameCenterAchievementImagesDeleteInstanceData, GameCenterAchievementImagesDeleteInstanceError, GameCenterAchievementImagesDeleteInstanceResponse, GameCenterAchievementLocalizationsCreateInstanceData, GameCenterAchievementLocalizationsCreateInstanceError, GameCenterAchievementLocalizationsCreateInstanceResponse, GameCenterAchievementLocalizationsGetInstanceData, GameCenterAchievementLocalizationsGetInstanceError, GameCenterAchievementLocalizationsGetInstanceResponse, GameCenterAchievementLocalizationsUpdateInstanceData, GameCenterAchievementLocalizationsUpdateInstanceError, GameCenterAchievementLocalizationsUpdateInstanceResponse, GameCenterAchievementLocalizationsDeleteInstanceData, GameCenterAchievementLocalizationsDeleteInstanceError, GameCenterAchievementLocalizationsDeleteInstanceResponse, GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedData, GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedError, GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedResponse, GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedData, GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedError, GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedResponse, GameCenterAchievementReleasesCreateInstanceData, GameCenterAchievementReleasesCreateInstanceError, GameCenterAchievementReleasesCreateInstanceResponse, GameCenterAchievementReleasesGetInstanceData, GameCenterAchievementReleasesGetInstanceError, GameCenterAchievementReleasesGetInstanceResponse, GameCenterAchievementReleasesDeleteInstanceData, GameCenterAchievementReleasesDeleteInstanceError, GameCenterAchievementReleasesDeleteInstanceResponse, GameCenterAchievementsCreateInstanceData, GameCenterAchievementsCreateInstanceError, GameCenterAchievementsCreateInstanceResponse, GameCenterAchievementsGetInstanceData, GameCenterAchievementsGetInstanceError, GameCenterAchievementsGetInstanceResponse, GameCenterAchievementsUpdateInstanceData, GameCenterAchievementsUpdateInstanceError, GameCenterAchievementsUpdateInstanceResponse, GameCenterAchievementsDeleteInstanceData, GameCenterAchievementsDeleteInstanceError, GameCenterAchievementsDeleteInstanceResponse, GameCenterAchievementsGroupAchievementGetToOneRelationshipData, GameCenterAchievementsGroupAchievementGetToOneRelationshipError, GameCenterAchievementsGroupAchievementGetToOneRelationshipResponse, GameCenterAchievementsGroupAchievementUpdateToOneRelationshipData, GameCenterAchievementsGroupAchievementUpdateToOneRelationshipError, GameCenterAchievementsGroupAchievementUpdateToOneRelationshipResponse, GameCenterAchievementsGroupAchievementGetToOneRelatedData, GameCenterAchievementsGroupAchievementGetToOneRelatedError, GameCenterAchievementsGroupAchievementGetToOneRelatedResponse, GameCenterAchievementsLocalizationsGetToManyRelatedData, GameCenterAchievementsLocalizationsGetToManyRelatedError, GameCenterAchievementsLocalizationsGetToManyRelatedResponse, GameCenterAchievementsReleasesGetToManyRelatedData, GameCenterAchievementsReleasesGetToManyRelatedError, GameCenterAchievementsReleasesGetToManyRelatedResponse, GameCenterAppVersionsCreateInstanceData, GameCenterAppVersionsCreateInstanceError, GameCenterAppVersionsCreateInstanceResponse, GameCenterAppVersionsGetInstanceData, GameCenterAppVersionsGetInstanceError, GameCenterAppVersionsGetInstanceResponse, GameCenterAppVersionsUpdateInstanceData, GameCenterAppVersionsUpdateInstanceError, GameCenterAppVersionsUpdateInstanceResponse, GameCenterAppVersionsAppStoreVersionGetToOneRelatedData, GameCenterAppVersionsAppStoreVersionGetToOneRelatedError, GameCenterAppVersionsAppStoreVersionGetToOneRelatedResponse, GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipData, GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipError, GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipResponse, GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipData, GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipError, GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipResponse, GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipData, GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipError, GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipResponse, GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedData, GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedError, GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedResponse, GameCenterDetailsCreateInstanceData, GameCenterDetailsCreateInstanceError, GameCenterDetailsCreateInstanceResponse, GameCenterDetailsGetInstanceData, GameCenterDetailsGetInstanceError, GameCenterDetailsGetInstanceResponse, GameCenterDetailsUpdateInstanceData, GameCenterDetailsUpdateInstanceError, GameCenterDetailsUpdateInstanceResponse, GameCenterDetailsAchievementReleasesGetToManyRelatedData, GameCenterDetailsAchievementReleasesGetToManyRelatedError, GameCenterDetailsAchievementReleasesGetToManyRelatedResponse, GameCenterDetailsGameCenterAchievementsGetToManyRelationshipData, GameCenterDetailsGameCenterAchievementsGetToManyRelationshipError, GameCenterDetailsGameCenterAchievementsGetToManyRelationshipResponse, GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipData, GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipError, GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipResponse, GameCenterDetailsGameCenterAchievementsGetToManyRelatedData, GameCenterDetailsGameCenterAchievementsGetToManyRelatedError, GameCenterDetailsGameCenterAchievementsGetToManyRelatedResponse, GameCenterDetailsGameCenterAppVersionsGetToManyRelatedData, GameCenterDetailsGameCenterAppVersionsGetToManyRelatedError, GameCenterDetailsGameCenterAppVersionsGetToManyRelatedResponse, GameCenterDetailsGameCenterGroupGetToOneRelatedData, GameCenterDetailsGameCenterGroupGetToOneRelatedError, GameCenterDetailsGameCenterGroupGetToOneRelatedResponse, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipData, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipError, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipResponse, GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipData, GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipError, GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipResponse, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedData, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedError, GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedResponse, GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipData, GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipError, GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipResponse, GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipData, GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipError, GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipResponse, GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedData, GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedError, GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedResponse, GameCenterDetailsLeaderboardReleasesGetToManyRelatedData, GameCenterDetailsLeaderboardReleasesGetToManyRelatedError, GameCenterDetailsLeaderboardReleasesGetToManyRelatedResponse, GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedData, GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedError, GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedResponse, GameCenterDetailsClassicMatchmakingRequestsGetMetricsData, GameCenterDetailsClassicMatchmakingRequestsGetMetricsError, GameCenterDetailsClassicMatchmakingRequestsGetMetricsResponse, GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsData, GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsError, GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsResponse, GameCenterGroupsGetCollectionData, GameCenterGroupsGetCollectionError, GameCenterGroupsGetCollectionResponse, GameCenterGroupsCreateInstanceData, GameCenterGroupsCreateInstanceError, GameCenterGroupsCreateInstanceResponse, GameCenterGroupsGetInstanceData, GameCenterGroupsGetInstanceError, GameCenterGroupsGetInstanceResponse, GameCenterGroupsUpdateInstanceData, GameCenterGroupsUpdateInstanceError, GameCenterGroupsUpdateInstanceResponse, GameCenterGroupsDeleteInstanceData, GameCenterGroupsDeleteInstanceError, GameCenterGroupsDeleteInstanceResponse, GameCenterGroupsGameCenterAchievementsGetToManyRelationshipData, GameCenterGroupsGameCenterAchievementsGetToManyRelationshipError, GameCenterGroupsGameCenterAchievementsGetToManyRelationshipResponse, GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipData, GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipError, GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipResponse, GameCenterGroupsGameCenterAchievementsGetToManyRelatedData, GameCenterGroupsGameCenterAchievementsGetToManyRelatedError, GameCenterGroupsGameCenterAchievementsGetToManyRelatedResponse, GameCenterGroupsGameCenterDetailsGetToManyRelatedData, GameCenterGroupsGameCenterDetailsGetToManyRelatedError, GameCenterGroupsGameCenterDetailsGetToManyRelatedResponse, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipData, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipError, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipResponse, GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipData, GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipError, GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipResponse, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedData, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedError, GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedResponse, GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipData, GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipError, GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipResponse, GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipData, GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipError, GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipResponse, GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedData, GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedError, GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedResponse, GameCenterLeaderboardEntrySubmissionsCreateInstanceData, GameCenterLeaderboardEntrySubmissionsCreateInstanceError, GameCenterLeaderboardEntrySubmissionsCreateInstanceResponse, GameCenterLeaderboardImagesCreateInstanceData, GameCenterLeaderboardImagesCreateInstanceError, GameCenterLeaderboardImagesCreateInstanceResponse, GameCenterLeaderboardImagesGetInstanceData, GameCenterLeaderboardImagesGetInstanceError, GameCenterLeaderboardImagesGetInstanceResponse, GameCenterLeaderboardImagesUpdateInstanceData, GameCenterLeaderboardImagesUpdateInstanceError, GameCenterLeaderboardImagesUpdateInstanceResponse, GameCenterLeaderboardImagesDeleteInstanceData, GameCenterLeaderboardImagesDeleteInstanceError, GameCenterLeaderboardImagesDeleteInstanceResponse, GameCenterLeaderboardLocalizationsCreateInstanceData, GameCenterLeaderboardLocalizationsCreateInstanceError, GameCenterLeaderboardLocalizationsCreateInstanceResponse, GameCenterLeaderboardLocalizationsGetInstanceData, GameCenterLeaderboardLocalizationsGetInstanceError, GameCenterLeaderboardLocalizationsGetInstanceResponse, GameCenterLeaderboardLocalizationsUpdateInstanceData, GameCenterLeaderboardLocalizationsUpdateInstanceError, GameCenterLeaderboardLocalizationsUpdateInstanceResponse, GameCenterLeaderboardLocalizationsDeleteInstanceData, GameCenterLeaderboardLocalizationsDeleteInstanceError, GameCenterLeaderboardLocalizationsDeleteInstanceResponse, GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedData, GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedError, GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedResponse, GameCenterLeaderboardReleasesCreateInstanceData, GameCenterLeaderboardReleasesCreateInstanceError, GameCenterLeaderboardReleasesCreateInstanceResponse, GameCenterLeaderboardReleasesGetInstanceData, GameCenterLeaderboardReleasesGetInstanceError, GameCenterLeaderboardReleasesGetInstanceResponse, GameCenterLeaderboardReleasesDeleteInstanceData, GameCenterLeaderboardReleasesDeleteInstanceError, GameCenterLeaderboardReleasesDeleteInstanceResponse, GameCenterLeaderboardSetImagesCreateInstanceData, GameCenterLeaderboardSetImagesCreateInstanceError, GameCenterLeaderboardSetImagesCreateInstanceResponse, GameCenterLeaderboardSetImagesGetInstanceData, GameCenterLeaderboardSetImagesGetInstanceError, GameCenterLeaderboardSetImagesGetInstanceResponse, GameCenterLeaderboardSetImagesUpdateInstanceData, GameCenterLeaderboardSetImagesUpdateInstanceError, GameCenterLeaderboardSetImagesUpdateInstanceResponse, GameCenterLeaderboardSetImagesDeleteInstanceData, GameCenterLeaderboardSetImagesDeleteInstanceError, GameCenterLeaderboardSetImagesDeleteInstanceResponse, GameCenterLeaderboardSetLocalizationsCreateInstanceData, GameCenterLeaderboardSetLocalizationsCreateInstanceError, GameCenterLeaderboardSetLocalizationsCreateInstanceResponse, GameCenterLeaderboardSetLocalizationsGetInstanceData, GameCenterLeaderboardSetLocalizationsGetInstanceError, GameCenterLeaderboardSetLocalizationsGetInstanceResponse, GameCenterLeaderboardSetLocalizationsUpdateInstanceData, GameCenterLeaderboardSetLocalizationsUpdateInstanceError, GameCenterLeaderboardSetLocalizationsUpdateInstanceResponse, GameCenterLeaderboardSetLocalizationsDeleteInstanceData, GameCenterLeaderboardSetLocalizationsDeleteInstanceError, GameCenterLeaderboardSetLocalizationsDeleteInstanceResponse, GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedData, GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedError, GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedResponse, GameCenterLeaderboardSetMemberLocalizationsGetCollectionData, GameCenterLeaderboardSetMemberLocalizationsGetCollectionError, GameCenterLeaderboardSetMemberLocalizationsGetCollectionResponse, GameCenterLeaderboardSetMemberLocalizationsCreateInstanceData, GameCenterLeaderboardSetMemberLocalizationsCreateInstanceError, GameCenterLeaderboardSetMemberLocalizationsCreateInstanceResponse, GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceData, GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceError, GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceResponse, GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceData, GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceError, GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceResponse, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedData, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedError, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedResponse, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedData, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedError, GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedResponse, GameCenterLeaderboardSetReleasesCreateInstanceData, GameCenterLeaderboardSetReleasesCreateInstanceError, GameCenterLeaderboardSetReleasesCreateInstanceResponse, GameCenterLeaderboardSetReleasesGetInstanceData, GameCenterLeaderboardSetReleasesGetInstanceError, GameCenterLeaderboardSetReleasesGetInstanceResponse, GameCenterLeaderboardSetReleasesDeleteInstanceData, GameCenterLeaderboardSetReleasesDeleteInstanceError, GameCenterLeaderboardSetReleasesDeleteInstanceResponse, GameCenterLeaderboardSetsCreateInstanceData, GameCenterLeaderboardSetsCreateInstanceError, GameCenterLeaderboardSetsCreateInstanceResponse, GameCenterLeaderboardSetsGetInstanceData, GameCenterLeaderboardSetsGetInstanceError, GameCenterLeaderboardSetsGetInstanceResponse, GameCenterLeaderboardSetsUpdateInstanceData, GameCenterLeaderboardSetsUpdateInstanceError, GameCenterLeaderboardSetsUpdateInstanceResponse, GameCenterLeaderboardSetsDeleteInstanceData, GameCenterLeaderboardSetsDeleteInstanceError, GameCenterLeaderboardSetsDeleteInstanceResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipData, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipError, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipData, GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipError, GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipData, GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipError, GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipData, GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipError, GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipResponse, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedData, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedError, GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedResponse, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipData, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipError, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipResponse, GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipData, GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipError, GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipResponse, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedData, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedError, GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedResponse, GameCenterLeaderboardSetsLocalizationsGetToManyRelatedData, GameCenterLeaderboardSetsLocalizationsGetToManyRelatedError, GameCenterLeaderboardSetsLocalizationsGetToManyRelatedResponse, GameCenterLeaderboardSetsReleasesGetToManyRelatedData, GameCenterLeaderboardSetsReleasesGetToManyRelatedError, GameCenterLeaderboardSetsReleasesGetToManyRelatedResponse, GameCenterLeaderboardsCreateInstanceData, GameCenterLeaderboardsCreateInstanceError, GameCenterLeaderboardsCreateInstanceResponse, GameCenterLeaderboardsGetInstanceData, GameCenterLeaderboardsGetInstanceError, GameCenterLeaderboardsGetInstanceResponse, GameCenterLeaderboardsUpdateInstanceData, GameCenterLeaderboardsUpdateInstanceError, GameCenterLeaderboardsUpdateInstanceResponse, GameCenterLeaderboardsDeleteInstanceData, GameCenterLeaderboardsDeleteInstanceError, GameCenterLeaderboardsDeleteInstanceResponse, GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipData, GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipError, GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipResponse, GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipData, GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipError, GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipResponse, GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedData, GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedError, GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedResponse, GameCenterLeaderboardsLocalizationsGetToManyRelatedData, GameCenterLeaderboardsLocalizationsGetToManyRelatedError, GameCenterLeaderboardsLocalizationsGetToManyRelatedResponse, GameCenterLeaderboardsReleasesGetToManyRelatedData, GameCenterLeaderboardsReleasesGetToManyRelatedError, GameCenterLeaderboardsReleasesGetToManyRelatedResponse, GameCenterMatchmakingQueuesGetCollectionData, GameCenterMatchmakingQueuesGetCollectionError, GameCenterMatchmakingQueuesGetCollectionResponse, GameCenterMatchmakingQueuesCreateInstanceData, GameCenterMatchmakingQueuesCreateInstanceError, GameCenterMatchmakingQueuesCreateInstanceResponse, GameCenterMatchmakingQueuesGetInstanceData, GameCenterMatchmakingQueuesGetInstanceError, GameCenterMatchmakingQueuesGetInstanceResponse, GameCenterMatchmakingQueuesUpdateInstanceData, GameCenterMatchmakingQueuesUpdateInstanceError, GameCenterMatchmakingQueuesUpdateInstanceResponse, GameCenterMatchmakingQueuesDeleteInstanceData, GameCenterMatchmakingQueuesDeleteInstanceError, GameCenterMatchmakingQueuesDeleteInstanceResponse, GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsData, GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsError, GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsResponse, GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsData, GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsError, GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsResponse, GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsData, GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsError, GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsResponse, GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsData, GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsError, GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsResponse, GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsData, GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsError, GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsResponse, GameCenterMatchmakingRuleSetTestsCreateInstanceData, GameCenterMatchmakingRuleSetTestsCreateInstanceError, GameCenterMatchmakingRuleSetTestsCreateInstanceResponse, GameCenterMatchmakingRuleSetsGetCollectionData, GameCenterMatchmakingRuleSetsGetCollectionError, GameCenterMatchmakingRuleSetsGetCollectionResponse, GameCenterMatchmakingRuleSetsCreateInstanceData, GameCenterMatchmakingRuleSetsCreateInstanceError, GameCenterMatchmakingRuleSetsCreateInstanceResponse, GameCenterMatchmakingRuleSetsGetInstanceData, GameCenterMatchmakingRuleSetsGetInstanceError, GameCenterMatchmakingRuleSetsGetInstanceResponse, GameCenterMatchmakingRuleSetsUpdateInstanceData, GameCenterMatchmakingRuleSetsUpdateInstanceError, GameCenterMatchmakingRuleSetsUpdateInstanceResponse, GameCenterMatchmakingRuleSetsDeleteInstanceData, GameCenterMatchmakingRuleSetsDeleteInstanceError, GameCenterMatchmakingRuleSetsDeleteInstanceResponse, GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedData, GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedError, GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedResponse, GameCenterMatchmakingRuleSetsRulesGetToManyRelatedData, GameCenterMatchmakingRuleSetsRulesGetToManyRelatedError, GameCenterMatchmakingRuleSetsRulesGetToManyRelatedResponse, GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedData, GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedError, GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedResponse, GameCenterMatchmakingRulesCreateInstanceData, GameCenterMatchmakingRulesCreateInstanceError, GameCenterMatchmakingRulesCreateInstanceResponse, GameCenterMatchmakingRulesUpdateInstanceData, GameCenterMatchmakingRulesUpdateInstanceError, GameCenterMatchmakingRulesUpdateInstanceResponse, GameCenterMatchmakingRulesDeleteInstanceData, GameCenterMatchmakingRulesDeleteInstanceError, GameCenterMatchmakingRulesDeleteInstanceResponse, GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsData, GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsError, GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsResponse, GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsData, GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsError, GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsResponse, GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsData, GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsError, GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsResponse, GameCenterMatchmakingTeamsCreateInstanceData, GameCenterMatchmakingTeamsCreateInstanceError, GameCenterMatchmakingTeamsCreateInstanceResponse, GameCenterMatchmakingTeamsUpdateInstanceData, GameCenterMatchmakingTeamsUpdateInstanceError, GameCenterMatchmakingTeamsUpdateInstanceResponse, GameCenterMatchmakingTeamsDeleteInstanceData, GameCenterMatchmakingTeamsDeleteInstanceError, GameCenterMatchmakingTeamsDeleteInstanceResponse, GameCenterPlayerAchievementSubmissionsCreateInstanceData, GameCenterPlayerAchievementSubmissionsCreateInstanceError, GameCenterPlayerAchievementSubmissionsCreateInstanceResponse, InAppPurchaseAppStoreReviewScreenshotsCreateInstanceData, InAppPurchaseAppStoreReviewScreenshotsCreateInstanceError, InAppPurchaseAppStoreReviewScreenshotsCreateInstanceResponse, InAppPurchaseAppStoreReviewScreenshotsGetInstanceData, InAppPurchaseAppStoreReviewScreenshotsGetInstanceError, InAppPurchaseAppStoreReviewScreenshotsGetInstanceResponse, InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceData, InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceError, InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceResponse, InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceData, InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceError, InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceResponse, InAppPurchaseAvailabilitiesCreateInstanceData, InAppPurchaseAvailabilitiesCreateInstanceError, InAppPurchaseAvailabilitiesCreateInstanceResponse, InAppPurchaseAvailabilitiesGetInstanceData, InAppPurchaseAvailabilitiesGetInstanceError, InAppPurchaseAvailabilitiesGetInstanceResponse, InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedData, InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedError, InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse, InAppPurchaseContentsGetInstanceData, InAppPurchaseContentsGetInstanceError, InAppPurchaseContentsGetInstanceResponse, InAppPurchaseImagesCreateInstanceData, InAppPurchaseImagesCreateInstanceError, InAppPurchaseImagesCreateInstanceResponse, InAppPurchaseImagesGetInstanceData, InAppPurchaseImagesGetInstanceError, InAppPurchaseImagesGetInstanceResponse, InAppPurchaseImagesUpdateInstanceData, InAppPurchaseImagesUpdateInstanceError, InAppPurchaseImagesUpdateInstanceResponse, InAppPurchaseImagesDeleteInstanceData, InAppPurchaseImagesDeleteInstanceError, InAppPurchaseImagesDeleteInstanceResponse, InAppPurchaseLocalizationsCreateInstanceData, InAppPurchaseLocalizationsCreateInstanceError, InAppPurchaseLocalizationsCreateInstanceResponse, InAppPurchaseLocalizationsGetInstanceData, InAppPurchaseLocalizationsGetInstanceError, InAppPurchaseLocalizationsGetInstanceResponse, InAppPurchaseLocalizationsUpdateInstanceData, InAppPurchaseLocalizationsUpdateInstanceError, InAppPurchaseLocalizationsUpdateInstanceResponse, InAppPurchaseLocalizationsDeleteInstanceData, InAppPurchaseLocalizationsDeleteInstanceError, InAppPurchaseLocalizationsDeleteInstanceResponse, InAppPurchasePriceSchedulesCreateInstanceData, InAppPurchasePriceSchedulesCreateInstanceError, InAppPurchasePriceSchedulesCreateInstanceResponse, InAppPurchasePriceSchedulesGetInstanceData, InAppPurchasePriceSchedulesGetInstanceError, InAppPurchasePriceSchedulesGetInstanceResponse, InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedData, InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedError, InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedResponse, InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedData, InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedError, InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedResponse, InAppPurchasePriceSchedulesManualPricesGetToManyRelatedData, InAppPurchasePriceSchedulesManualPricesGetToManyRelatedError, InAppPurchasePriceSchedulesManualPricesGetToManyRelatedResponse, InAppPurchaseSubmissionsCreateInstanceData, InAppPurchaseSubmissionsCreateInstanceError, InAppPurchaseSubmissionsCreateInstanceResponse, InAppPurchasesGetInstanceData, InAppPurchasesGetInstanceError, InAppPurchasesGetInstanceResponse, InAppPurchasesV2CreateInstanceData, InAppPurchasesV2CreateInstanceError, InAppPurchasesV2CreateInstanceResponse, InAppPurchasesV2GetInstanceData, InAppPurchasesV2GetInstanceError, InAppPurchasesV2GetInstanceResponse, InAppPurchasesV2UpdateInstanceData, InAppPurchasesV2UpdateInstanceError, InAppPurchasesV2UpdateInstanceResponse, InAppPurchasesV2DeleteInstanceData, InAppPurchasesV2DeleteInstanceError, InAppPurchasesV2DeleteInstanceResponse, InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedData, InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedError, InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedResponse, InAppPurchasesV2ContentGetToOneRelatedData, InAppPurchasesV2ContentGetToOneRelatedError, InAppPurchasesV2ContentGetToOneRelatedResponse, InAppPurchasesV2IapPriceScheduleGetToOneRelatedData, InAppPurchasesV2IapPriceScheduleGetToOneRelatedError, InAppPurchasesV2IapPriceScheduleGetToOneRelatedResponse, InAppPurchasesV2ImagesGetToManyRelatedData, InAppPurchasesV2ImagesGetToManyRelatedError, InAppPurchasesV2ImagesGetToManyRelatedResponse, InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedData, InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedError, InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedResponse, InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedData, InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedError, InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedResponse, InAppPurchasesV2PricePointsGetToManyRelatedData, InAppPurchasesV2PricePointsGetToManyRelatedError, InAppPurchasesV2PricePointsGetToManyRelatedResponse, InAppPurchasesV2PromotedPurchaseGetToOneRelatedData, InAppPurchasesV2PromotedPurchaseGetToOneRelatedError, InAppPurchasesV2PromotedPurchaseGetToOneRelatedResponse, MarketplaceDomainsGetCollectionData, MarketplaceDomainsGetCollectionError, MarketplaceDomainsGetCollectionResponse, MarketplaceDomainsCreateInstanceData, MarketplaceDomainsCreateInstanceError, MarketplaceDomainsCreateInstanceResponse, MarketplaceDomainsGetInstanceData, MarketplaceDomainsGetInstanceError, MarketplaceDomainsGetInstanceResponse, MarketplaceDomainsDeleteInstanceData, MarketplaceDomainsDeleteInstanceError, MarketplaceDomainsDeleteInstanceResponse, MarketplaceSearchDetailsCreateInstanceData, MarketplaceSearchDetailsCreateInstanceError, MarketplaceSearchDetailsCreateInstanceResponse, MarketplaceSearchDetailsUpdateInstanceData, MarketplaceSearchDetailsUpdateInstanceError, MarketplaceSearchDetailsUpdateInstanceResponse, MarketplaceSearchDetailsDeleteInstanceData, MarketplaceSearchDetailsDeleteInstanceError, MarketplaceSearchDetailsDeleteInstanceResponse, MarketplaceWebhooksGetCollectionData, MarketplaceWebhooksGetCollectionError, MarketplaceWebhooksGetCollectionResponse, MarketplaceWebhooksCreateInstanceData, MarketplaceWebhooksCreateInstanceError, MarketplaceWebhooksCreateInstanceResponse, MarketplaceWebhooksUpdateInstanceData, MarketplaceWebhooksUpdateInstanceError, MarketplaceWebhooksUpdateInstanceResponse, MarketplaceWebhooksDeleteInstanceData, MarketplaceWebhooksDeleteInstanceError, MarketplaceWebhooksDeleteInstanceResponse, PreReleaseVersionsGetCollectionData, PreReleaseVersionsGetCollectionError, PreReleaseVersionsGetCollectionResponse, PreReleaseVersionsGetInstanceData, PreReleaseVersionsGetInstanceError, PreReleaseVersionsGetInstanceResponse, PreReleaseVersionsAppGetToOneRelatedData, PreReleaseVersionsAppGetToOneRelatedError, PreReleaseVersionsAppGetToOneRelatedResponse, PreReleaseVersionsBuildsGetToManyRelatedData, PreReleaseVersionsBuildsGetToManyRelatedError, PreReleaseVersionsBuildsGetToManyRelatedResponse, ProfilesGetCollectionData, ProfilesGetCollectionError, ProfilesGetCollectionResponse, ProfilesCreateInstanceData, ProfilesCreateInstanceError, ProfilesCreateInstanceResponse, ProfilesGetInstanceData, ProfilesGetInstanceError, ProfilesGetInstanceResponse, ProfilesDeleteInstanceData, ProfilesDeleteInstanceError, ProfilesDeleteInstanceResponse, ProfilesBundleIdGetToOneRelatedData, ProfilesBundleIdGetToOneRelatedError, ProfilesBundleIdGetToOneRelatedResponse, ProfilesCertificatesGetToManyRelatedData, ProfilesCertificatesGetToManyRelatedError, ProfilesCertificatesGetToManyRelatedResponse, ProfilesDevicesGetToManyRelatedData, ProfilesDevicesGetToManyRelatedError, ProfilesDevicesGetToManyRelatedResponse, PromotedPurchaseImagesCreateInstanceData, PromotedPurchaseImagesCreateInstanceError, PromotedPurchaseImagesCreateInstanceResponse, PromotedPurchaseImagesGetInstanceData, PromotedPurchaseImagesGetInstanceError, PromotedPurchaseImagesGetInstanceResponse, PromotedPurchaseImagesUpdateInstanceData, PromotedPurchaseImagesUpdateInstanceError, PromotedPurchaseImagesUpdateInstanceResponse, PromotedPurchaseImagesDeleteInstanceData, PromotedPurchaseImagesDeleteInstanceError, PromotedPurchaseImagesDeleteInstanceResponse, PromotedPurchasesCreateInstanceData, PromotedPurchasesCreateInstanceError, PromotedPurchasesCreateInstanceResponse, PromotedPurchasesGetInstanceData, PromotedPurchasesGetInstanceError, PromotedPurchasesGetInstanceResponse, PromotedPurchasesUpdateInstanceData, PromotedPurchasesUpdateInstanceError, PromotedPurchasesUpdateInstanceResponse, PromotedPurchasesDeleteInstanceData, PromotedPurchasesDeleteInstanceError, PromotedPurchasesDeleteInstanceResponse, PromotedPurchasesPromotionImagesGetToManyRelatedData, PromotedPurchasesPromotionImagesGetToManyRelatedError, PromotedPurchasesPromotionImagesGetToManyRelatedResponse, ReviewSubmissionItemsCreateInstanceData, ReviewSubmissionItemsCreateInstanceError, ReviewSubmissionItemsCreateInstanceResponse, ReviewSubmissionItemsUpdateInstanceData, ReviewSubmissionItemsUpdateInstanceError, ReviewSubmissionItemsUpdateInstanceResponse, ReviewSubmissionItemsDeleteInstanceData, ReviewSubmissionItemsDeleteInstanceError, ReviewSubmissionItemsDeleteInstanceResponse, ReviewSubmissionsGetCollectionData, ReviewSubmissionsGetCollectionError, ReviewSubmissionsGetCollectionResponse, ReviewSubmissionsCreateInstanceData, ReviewSubmissionsCreateInstanceError, ReviewSubmissionsCreateInstanceResponse, ReviewSubmissionsGetInstanceData, ReviewSubmissionsGetInstanceError, ReviewSubmissionsGetInstanceResponse, ReviewSubmissionsUpdateInstanceData, ReviewSubmissionsUpdateInstanceError, ReviewSubmissionsUpdateInstanceResponse, ReviewSubmissionsItemsGetToManyRelatedData, ReviewSubmissionsItemsGetToManyRelatedError, ReviewSubmissionsItemsGetToManyRelatedResponse, RoutingAppCoveragesCreateInstanceData, RoutingAppCoveragesCreateInstanceError, RoutingAppCoveragesCreateInstanceResponse, RoutingAppCoveragesGetInstanceData, RoutingAppCoveragesGetInstanceError, RoutingAppCoveragesGetInstanceResponse, RoutingAppCoveragesUpdateInstanceData, RoutingAppCoveragesUpdateInstanceError, RoutingAppCoveragesUpdateInstanceResponse, RoutingAppCoveragesDeleteInstanceData, RoutingAppCoveragesDeleteInstanceError, RoutingAppCoveragesDeleteInstanceResponse, SalesReportsGetCollectionData, SalesReportsGetCollectionError, SalesReportsGetCollectionResponse, SandboxTestersV2GetCollectionData, SandboxTestersV2GetCollectionError, SandboxTestersV2GetCollectionResponse, SandboxTestersV2UpdateInstanceData, SandboxTestersV2UpdateInstanceError, SandboxTestersV2UpdateInstanceResponse, SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceData, SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceError, SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceResponse, ScmGitReferencesGetInstanceData, ScmGitReferencesGetInstanceError, ScmGitReferencesGetInstanceResponse, ScmProvidersGetCollectionData, ScmProvidersGetCollectionError, ScmProvidersGetCollectionResponse, ScmProvidersGetInstanceData, ScmProvidersGetInstanceError, ScmProvidersGetInstanceResponse, ScmProvidersRepositoriesGetToManyRelatedData, ScmProvidersRepositoriesGetToManyRelatedError, ScmProvidersRepositoriesGetToManyRelatedResponse, ScmPullRequestsGetInstanceData, ScmPullRequestsGetInstanceError, ScmPullRequestsGetInstanceResponse, ScmRepositoriesGetCollectionData, ScmRepositoriesGetCollectionError, ScmRepositoriesGetCollectionResponse, ScmRepositoriesGetInstanceData, ScmRepositoriesGetInstanceError, ScmRepositoriesGetInstanceResponse, ScmRepositoriesGitReferencesGetToManyRelatedData, ScmRepositoriesGitReferencesGetToManyRelatedError, ScmRepositoriesGitReferencesGetToManyRelatedResponse, ScmRepositoriesPullRequestsGetToManyRelatedData, ScmRepositoriesPullRequestsGetToManyRelatedError, ScmRepositoriesPullRequestsGetToManyRelatedResponse, SubscriptionAppStoreReviewScreenshotsCreateInstanceData, SubscriptionAppStoreReviewScreenshotsCreateInstanceError, SubscriptionAppStoreReviewScreenshotsCreateInstanceResponse, SubscriptionAppStoreReviewScreenshotsGetInstanceData, SubscriptionAppStoreReviewScreenshotsGetInstanceError, SubscriptionAppStoreReviewScreenshotsGetInstanceResponse, SubscriptionAppStoreReviewScreenshotsUpdateInstanceData, SubscriptionAppStoreReviewScreenshotsUpdateInstanceError, SubscriptionAppStoreReviewScreenshotsUpdateInstanceResponse, SubscriptionAppStoreReviewScreenshotsDeleteInstanceData, SubscriptionAppStoreReviewScreenshotsDeleteInstanceError, SubscriptionAppStoreReviewScreenshotsDeleteInstanceResponse, SubscriptionAvailabilitiesCreateInstanceData, SubscriptionAvailabilitiesCreateInstanceError, SubscriptionAvailabilitiesCreateInstanceResponse, SubscriptionAvailabilitiesGetInstanceData, SubscriptionAvailabilitiesGetInstanceError, SubscriptionAvailabilitiesGetInstanceResponse, SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedData, SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedError, SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse, SubscriptionGracePeriodsGetInstanceData, SubscriptionGracePeriodsGetInstanceError, SubscriptionGracePeriodsGetInstanceResponse, SubscriptionGracePeriodsUpdateInstanceData, SubscriptionGracePeriodsUpdateInstanceError, SubscriptionGracePeriodsUpdateInstanceResponse, SubscriptionGroupLocalizationsCreateInstanceData, SubscriptionGroupLocalizationsCreateInstanceError, SubscriptionGroupLocalizationsCreateInstanceResponse, SubscriptionGroupLocalizationsGetInstanceData, SubscriptionGroupLocalizationsGetInstanceError, SubscriptionGroupLocalizationsGetInstanceResponse, SubscriptionGroupLocalizationsUpdateInstanceData, SubscriptionGroupLocalizationsUpdateInstanceError, SubscriptionGroupLocalizationsUpdateInstanceResponse, SubscriptionGroupLocalizationsDeleteInstanceData, SubscriptionGroupLocalizationsDeleteInstanceError, SubscriptionGroupLocalizationsDeleteInstanceResponse, SubscriptionGroupSubmissionsCreateInstanceData, SubscriptionGroupSubmissionsCreateInstanceError, SubscriptionGroupSubmissionsCreateInstanceResponse, SubscriptionGroupsCreateInstanceData, SubscriptionGroupsCreateInstanceError, SubscriptionGroupsCreateInstanceResponse, SubscriptionGroupsGetInstanceData, SubscriptionGroupsGetInstanceError, SubscriptionGroupsGetInstanceResponse, SubscriptionGroupsUpdateInstanceData, SubscriptionGroupsUpdateInstanceError, SubscriptionGroupsUpdateInstanceResponse, SubscriptionGroupsDeleteInstanceData, SubscriptionGroupsDeleteInstanceError, SubscriptionGroupsDeleteInstanceResponse, SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedData, SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedError, SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedResponse, SubscriptionGroupsSubscriptionsGetToManyRelatedData, SubscriptionGroupsSubscriptionsGetToManyRelatedError, SubscriptionGroupsSubscriptionsGetToManyRelatedResponse, SubscriptionImagesCreateInstanceData, SubscriptionImagesCreateInstanceError, SubscriptionImagesCreateInstanceResponse, SubscriptionImagesGetInstanceData, SubscriptionImagesGetInstanceError, SubscriptionImagesGetInstanceResponse, SubscriptionImagesUpdateInstanceData, SubscriptionImagesUpdateInstanceError, SubscriptionImagesUpdateInstanceResponse, SubscriptionImagesDeleteInstanceData, SubscriptionImagesDeleteInstanceError, SubscriptionImagesDeleteInstanceResponse, SubscriptionIntroductoryOffersCreateInstanceData, SubscriptionIntroductoryOffersCreateInstanceError, SubscriptionIntroductoryOffersCreateInstanceResponse, SubscriptionIntroductoryOffersUpdateInstanceData, SubscriptionIntroductoryOffersUpdateInstanceError, SubscriptionIntroductoryOffersUpdateInstanceResponse, SubscriptionIntroductoryOffersDeleteInstanceData, SubscriptionIntroductoryOffersDeleteInstanceError, SubscriptionIntroductoryOffersDeleteInstanceResponse, SubscriptionLocalizationsCreateInstanceData, SubscriptionLocalizationsCreateInstanceError, SubscriptionLocalizationsCreateInstanceResponse, SubscriptionLocalizationsGetInstanceData, SubscriptionLocalizationsGetInstanceError, SubscriptionLocalizationsGetInstanceResponse, SubscriptionLocalizationsUpdateInstanceData, SubscriptionLocalizationsUpdateInstanceError, SubscriptionLocalizationsUpdateInstanceResponse, SubscriptionLocalizationsDeleteInstanceData, SubscriptionLocalizationsDeleteInstanceError, SubscriptionLocalizationsDeleteInstanceResponse, SubscriptionOfferCodeCustomCodesCreateInstanceData, SubscriptionOfferCodeCustomCodesCreateInstanceError, SubscriptionOfferCodeCustomCodesCreateInstanceResponse, SubscriptionOfferCodeCustomCodesGetInstanceData, SubscriptionOfferCodeCustomCodesGetInstanceError, SubscriptionOfferCodeCustomCodesGetInstanceResponse, SubscriptionOfferCodeCustomCodesUpdateInstanceData, SubscriptionOfferCodeCustomCodesUpdateInstanceError, SubscriptionOfferCodeCustomCodesUpdateInstanceResponse, SubscriptionOfferCodeOneTimeUseCodesCreateInstanceData, SubscriptionOfferCodeOneTimeUseCodesCreateInstanceError, SubscriptionOfferCodeOneTimeUseCodesCreateInstanceResponse, SubscriptionOfferCodeOneTimeUseCodesGetInstanceData, SubscriptionOfferCodeOneTimeUseCodesGetInstanceError, SubscriptionOfferCodeOneTimeUseCodesGetInstanceResponse, SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceData, SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceError, SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceResponse, SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedData, SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedError, SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedResponse, SubscriptionOfferCodesCreateInstanceData, SubscriptionOfferCodesCreateInstanceError, SubscriptionOfferCodesCreateInstanceResponse, SubscriptionOfferCodesGetInstanceData, SubscriptionOfferCodesGetInstanceError, SubscriptionOfferCodesGetInstanceResponse, SubscriptionOfferCodesUpdateInstanceData, SubscriptionOfferCodesUpdateInstanceError, SubscriptionOfferCodesUpdateInstanceResponse, SubscriptionOfferCodesCustomCodesGetToManyRelatedData, SubscriptionOfferCodesCustomCodesGetToManyRelatedError, SubscriptionOfferCodesCustomCodesGetToManyRelatedResponse, SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedData, SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedError, SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedResponse, SubscriptionOfferCodesPricesGetToManyRelatedData, SubscriptionOfferCodesPricesGetToManyRelatedError, SubscriptionOfferCodesPricesGetToManyRelatedResponse, SubscriptionPricePointsGetInstanceData, SubscriptionPricePointsGetInstanceError, SubscriptionPricePointsGetInstanceResponse, SubscriptionPricePointsEqualizationsGetToManyRelatedData, SubscriptionPricePointsEqualizationsGetToManyRelatedError, SubscriptionPricePointsEqualizationsGetToManyRelatedResponse, SubscriptionPricesCreateInstanceData, SubscriptionPricesCreateInstanceError, SubscriptionPricesCreateInstanceResponse, SubscriptionPricesDeleteInstanceData, SubscriptionPricesDeleteInstanceError, SubscriptionPricesDeleteInstanceResponse, SubscriptionPromotionalOffersCreateInstanceData, SubscriptionPromotionalOffersCreateInstanceError, SubscriptionPromotionalOffersCreateInstanceResponse, SubscriptionPromotionalOffersGetInstanceData, SubscriptionPromotionalOffersGetInstanceError, SubscriptionPromotionalOffersGetInstanceResponse, SubscriptionPromotionalOffersUpdateInstanceData, SubscriptionPromotionalOffersUpdateInstanceError, SubscriptionPromotionalOffersUpdateInstanceResponse, SubscriptionPromotionalOffersDeleteInstanceData, SubscriptionPromotionalOffersDeleteInstanceError, SubscriptionPromotionalOffersDeleteInstanceResponse, SubscriptionPromotionalOffersPricesGetToManyRelatedData, SubscriptionPromotionalOffersPricesGetToManyRelatedError, SubscriptionPromotionalOffersPricesGetToManyRelatedResponse, SubscriptionSubmissionsCreateInstanceData, SubscriptionSubmissionsCreateInstanceError, SubscriptionSubmissionsCreateInstanceResponse, SubscriptionsCreateInstanceData, SubscriptionsCreateInstanceError, SubscriptionsCreateInstanceResponse, SubscriptionsGetInstanceData, SubscriptionsGetInstanceError, SubscriptionsGetInstanceResponse, SubscriptionsUpdateInstanceData, SubscriptionsUpdateInstanceError, SubscriptionsUpdateInstanceResponse, SubscriptionsDeleteInstanceData, SubscriptionsDeleteInstanceError, SubscriptionsDeleteInstanceResponse, SubscriptionsAppStoreReviewScreenshotGetToOneRelatedData, SubscriptionsAppStoreReviewScreenshotGetToOneRelatedError, SubscriptionsAppStoreReviewScreenshotGetToOneRelatedResponse, SubscriptionsImagesGetToManyRelatedData, SubscriptionsImagesGetToManyRelatedError, SubscriptionsImagesGetToManyRelatedResponse, SubscriptionsIntroductoryOffersGetToManyRelationshipData, SubscriptionsIntroductoryOffersGetToManyRelationshipError, SubscriptionsIntroductoryOffersGetToManyRelationshipResponse, SubscriptionsIntroductoryOffersDeleteToManyRelationshipData, SubscriptionsIntroductoryOffersDeleteToManyRelationshipError, SubscriptionsIntroductoryOffersDeleteToManyRelationshipResponse, SubscriptionsIntroductoryOffersGetToManyRelatedData, SubscriptionsIntroductoryOffersGetToManyRelatedError, SubscriptionsIntroductoryOffersGetToManyRelatedResponse, SubscriptionsOfferCodesGetToManyRelatedData, SubscriptionsOfferCodesGetToManyRelatedError, SubscriptionsOfferCodesGetToManyRelatedResponse, SubscriptionsPricePointsGetToManyRelatedData, SubscriptionsPricePointsGetToManyRelatedError, SubscriptionsPricePointsGetToManyRelatedResponse, SubscriptionsPricesGetToManyRelationshipData, SubscriptionsPricesGetToManyRelationshipError, SubscriptionsPricesGetToManyRelationshipResponse, SubscriptionsPricesDeleteToManyRelationshipData, SubscriptionsPricesDeleteToManyRelationshipError, SubscriptionsPricesDeleteToManyRelationshipResponse, SubscriptionsPricesGetToManyRelatedData, SubscriptionsPricesGetToManyRelatedError, SubscriptionsPricesGetToManyRelatedResponse, SubscriptionsPromotedPurchaseGetToOneRelatedData, SubscriptionsPromotedPurchaseGetToOneRelatedError, SubscriptionsPromotedPurchaseGetToOneRelatedResponse, SubscriptionsPromotionalOffersGetToManyRelatedData, SubscriptionsPromotionalOffersGetToManyRelatedError, SubscriptionsPromotionalOffersGetToManyRelatedResponse, SubscriptionsSubscriptionAvailabilityGetToOneRelatedData, SubscriptionsSubscriptionAvailabilityGetToOneRelatedError, SubscriptionsSubscriptionAvailabilityGetToOneRelatedResponse, SubscriptionsSubscriptionLocalizationsGetToManyRelatedData, SubscriptionsSubscriptionLocalizationsGetToManyRelatedError, SubscriptionsSubscriptionLocalizationsGetToManyRelatedResponse, SubscriptionsWinBackOffersGetToManyRelatedData, SubscriptionsWinBackOffersGetToManyRelatedError, SubscriptionsWinBackOffersGetToManyRelatedResponse, TerritoriesGetCollectionData, TerritoriesGetCollectionError, TerritoriesGetCollectionResponse, TerritoryAvailabilitiesUpdateInstanceData, TerritoryAvailabilitiesUpdateInstanceError, TerritoryAvailabilitiesUpdateInstanceResponse, UserInvitationsGetCollectionData, UserInvitationsGetCollectionError, UserInvitationsGetCollectionResponse, UserInvitationsCreateInstanceData, UserInvitationsCreateInstanceError, UserInvitationsCreateInstanceResponse, UserInvitationsGetInstanceData, UserInvitationsGetInstanceError, UserInvitationsGetInstanceResponse, UserInvitationsDeleteInstanceData, UserInvitationsDeleteInstanceError, UserInvitationsDeleteInstanceResponse, UserInvitationsVisibleAppsGetToManyRelatedData, UserInvitationsVisibleAppsGetToManyRelatedError, UserInvitationsVisibleAppsGetToManyRelatedResponse, UsersGetCollectionData, UsersGetCollectionError, UsersGetCollectionResponse, UsersGetInstanceData, UsersGetInstanceError, UsersGetInstanceResponse, UsersUpdateInstanceData, UsersUpdateInstanceError, UsersUpdateInstanceResponse, UsersDeleteInstanceData, UsersDeleteInstanceError, UsersDeleteInstanceResponse, UsersVisibleAppsGetToManyRelationshipData, UsersVisibleAppsGetToManyRelationshipError, UsersVisibleAppsGetToManyRelationshipResponse, UsersVisibleAppsCreateToManyRelationshipData, UsersVisibleAppsCreateToManyRelationshipError, UsersVisibleAppsCreateToManyRelationshipResponse, UsersVisibleAppsReplaceToManyRelationshipData, UsersVisibleAppsReplaceToManyRelationshipError, UsersVisibleAppsReplaceToManyRelationshipResponse, UsersVisibleAppsDeleteToManyRelationshipData, UsersVisibleAppsDeleteToManyRelationshipError, UsersVisibleAppsDeleteToManyRelationshipResponse, UsersVisibleAppsGetToManyRelatedData, UsersVisibleAppsGetToManyRelatedError, UsersVisibleAppsGetToManyRelatedResponse, WinBackOffersCreateInstanceData, WinBackOffersCreateInstanceError, WinBackOffersCreateInstanceResponse, WinBackOffersGetInstanceData, WinBackOffersGetInstanceError, WinBackOffersGetInstanceResponse, WinBackOffersUpdateInstanceData, WinBackOffersUpdateInstanceError, WinBackOffersUpdateInstanceResponse, WinBackOffersDeleteInstanceData, WinBackOffersDeleteInstanceError, WinBackOffersDeleteInstanceResponse, WinBackOffersPricesGetToManyRelatedData, WinBackOffersPricesGetToManyRelatedError, WinBackOffersPricesGetToManyRelatedResponse, BuildBundlesAppClipDomainCacheStatusGetToOneRelatedData, BuildBundlesAppClipDomainCacheStatusGetToOneRelatedError, BuildBundlesAppClipDomainCacheStatusGetToOneRelatedResponse, BuildBundlesAppClipDomainDebugStatusGetToOneRelatedData, BuildBundlesAppClipDomainDebugStatusGetToOneRelatedError, BuildBundlesAppClipDomainDebugStatusGetToOneRelatedResponse, BuildBundlesBetaAppClipInvocationsGetToManyRelatedData, BuildBundlesBetaAppClipInvocationsGetToManyRelatedError, BuildBundlesBetaAppClipInvocationsGetToManyRelatedResponse, BuildBundlesBuildBundleFileSizesGetToManyRelatedData, BuildBundlesBuildBundleFileSizesGetToManyRelatedError, BuildBundlesBuildBundleFileSizesGetToManyRelatedResponse, DiagnosticSignaturesLogsGetToManyRelatedData, DiagnosticSignaturesLogsGetToManyRelatedError, DiagnosticSignaturesLogsGetToManyRelatedResponse, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipData, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipError, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipResponse, GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipData, GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipError, GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipResponse, GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipData, GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipError, GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipResponse, GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipData, GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipError, GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipResponse, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedData, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedError, GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedResponse, InAppPurchasePricePointsEqualizationsGetToManyRelatedData, InAppPurchasePricePointsEqualizationsGetToManyRelatedError, InAppPurchasePricePointsEqualizationsGetToManyRelatedResponse } from './types.gen'; export const client = createClient(createConfig()); -export const actorsGetCollection = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/actors' -}); }; - -export const actorsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/actors/{id}' -}); }; - -export const ageRatingDeclarationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/ageRatingDeclarations/{id}' -}); }; - -export const alternativeDistributionDomainsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionDomains' -}); }; - -export const alternativeDistributionDomainsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/alternativeDistributionDomains' -}); }; - -export const alternativeDistributionDomainsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionDomains/{id}' -}); }; - -export const alternativeDistributionDomainsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/alternativeDistributionDomains/{id}' -}); }; - -export const alternativeDistributionKeysGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionKeys' -}); }; - -export const alternativeDistributionKeysCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/alternativeDistributionKeys' -}); }; - -export const alternativeDistributionKeysGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionKeys/{id}' -}); }; - -export const alternativeDistributionKeysDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/alternativeDistributionKeys/{id}' -}); }; - -export const alternativeDistributionPackageDeltasGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionPackageDeltas/{id}' -}); }; - -export const alternativeDistributionPackageVariantsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionPackageVariants/{id}' -}); }; - -export const alternativeDistributionPackageVersionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionPackageVersions/{id}' -}); }; - -export const alternativeDistributionPackagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/alternativeDistributionPackages' -}); }; - -export const alternativeDistributionPackagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionPackages/{id}' -}); }; - -export const analyticsReportInstancesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/analyticsReportInstances/{id}' -}); }; - -export const analyticsReportRequestsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/analyticsReportRequests' -}); }; - -export const analyticsReportRequestsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/analyticsReportRequests/{id}' -}); }; - -export const analyticsReportRequestsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/analyticsReportRequests/{id}' -}); }; - -export const analyticsReportSegmentsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/analyticsReportSegments/{id}' -}); }; - -export const analyticsReportsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/analyticsReports/{id}' -}); }; - -export const appAvailabilitiesV2CreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v2/appAvailabilities' -}); }; - -export const appAvailabilitiesV2GetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/appAvailabilities/{id}' -}); }; - -/** - * @deprecated - */ -export const appAvailabilitiesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appAvailabilities' -}); }; - -/** - * @deprecated - */ -export const appAvailabilitiesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appAvailabilities/{id}' -}); }; - -export const appCategoriesGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCategories' -}); }; - -export const appCategoriesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCategories/{id}' -}); }; - -export const appClipAdvancedExperienceImagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appClipAdvancedExperienceImages' -}); }; - -export const appClipAdvancedExperienceImagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipAdvancedExperienceImages/{id}' -}); }; - -export const appClipAdvancedExperienceImagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appClipAdvancedExperienceImages/{id}' -}); }; - -export const appClipAdvancedExperiencesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appClipAdvancedExperiences' -}); }; - -export const appClipAdvancedExperiencesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipAdvancedExperiences/{id}' -}); }; - -export const appClipAdvancedExperiencesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appClipAdvancedExperiences/{id}' -}); }; - -export const appClipAppStoreReviewDetailsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appClipAppStoreReviewDetails' -}); }; - -export const appClipAppStoreReviewDetailsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipAppStoreReviewDetails/{id}' -}); }; - -export const appClipAppStoreReviewDetailsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appClipAppStoreReviewDetails/{id}' -}); }; - -export const appClipDefaultExperienceLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appClipDefaultExperienceLocalizations' -}); }; - -export const appClipDefaultExperienceLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipDefaultExperienceLocalizations/{id}' -}); }; - -export const appClipDefaultExperienceLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appClipDefaultExperienceLocalizations/{id}' -}); }; - -export const appClipDefaultExperienceLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appClipDefaultExperienceLocalizations/{id}' -}); }; - -export const appClipDefaultExperiencesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appClipDefaultExperiences' -}); }; - -export const appClipDefaultExperiencesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipDefaultExperiences/{id}' -}); }; - -export const appClipDefaultExperiencesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appClipDefaultExperiences/{id}' -}); }; - -export const appClipDefaultExperiencesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appClipDefaultExperiences/{id}' -}); }; - -export const appClipHeaderImagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appClipHeaderImages' -}); }; - -export const appClipHeaderImagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipHeaderImages/{id}' -}); }; - -export const appClipHeaderImagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appClipHeaderImages/{id}' -}); }; - -export const appClipHeaderImagesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appClipHeaderImages/{id}' -}); }; - -export const appClipsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClips/{id}' -}); }; - -export const appCustomProductPageLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appCustomProductPageLocalizations' -}); }; - -export const appCustomProductPageLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCustomProductPageLocalizations/{id}' -}); }; - -export const appCustomProductPageLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appCustomProductPageLocalizations/{id}' -}); }; - -export const appCustomProductPageLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appCustomProductPageLocalizations/{id}' -}); }; - -export const appCustomProductPageVersionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appCustomProductPageVersions' -}); }; - -export const appCustomProductPageVersionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCustomProductPageVersions/{id}' -}); }; - -export const appCustomProductPageVersionsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appCustomProductPageVersions/{id}' -}); }; - -export const appCustomProductPagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appCustomProductPages' -}); }; - -export const appCustomProductPagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCustomProductPages/{id}' -}); }; - -export const appCustomProductPagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appCustomProductPages/{id}' -}); }; - -export const appCustomProductPagesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appCustomProductPages/{id}' -}); }; - -export const appEncryptionDeclarationDocumentsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appEncryptionDeclarationDocuments' -}); }; - -export const appEncryptionDeclarationDocumentsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEncryptionDeclarationDocuments/{id}' -}); }; - -export const appEncryptionDeclarationDocumentsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appEncryptionDeclarationDocuments/{id}' -}); }; - -export const appEncryptionDeclarationsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEncryptionDeclarations' -}); }; - -export const appEncryptionDeclarationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appEncryptionDeclarations' -}); }; - -export const appEncryptionDeclarationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEncryptionDeclarations/{id}' -}); }; - -export const appEventLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appEventLocalizations' -}); }; - -export const appEventLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEventLocalizations/{id}' -}); }; - -export const appEventLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appEventLocalizations/{id}' -}); }; - -export const appEventLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appEventLocalizations/{id}' -}); }; - -export const appEventScreenshotsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appEventScreenshots' -}); }; - -export const appEventScreenshotsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEventScreenshots/{id}' -}); }; - -export const appEventScreenshotsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appEventScreenshots/{id}' -}); }; - -export const appEventScreenshotsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appEventScreenshots/{id}' -}); }; - -export const appEventVideoClipsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appEventVideoClips' -}); }; - -export const appEventVideoClipsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEventVideoClips/{id}' -}); }; - -export const appEventVideoClipsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appEventVideoClips/{id}' -}); }; - -export const appEventVideoClipsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appEventVideoClips/{id}' -}); }; - -export const appEventsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appEvents' -}); }; - -export const appEventsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEvents/{id}' -}); }; - -export const appEventsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appEvents/{id}' -}); }; - -export const appEventsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appEvents/{id}' -}); }; - -export const appInfoLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appInfoLocalizations' -}); }; - -export const appInfoLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfoLocalizations/{id}' -}); }; - -export const appInfoLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appInfoLocalizations/{id}' -}); }; - -export const appInfoLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appInfoLocalizations/{id}' -}); }; - -export const appInfosGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}' -}); }; - -export const appInfosUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appInfos/{id}' -}); }; - -/** - * @deprecated - */ -export const appPreOrdersCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appPreOrders' -}); }; - -/** - * @deprecated - */ -export const appPreOrdersGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPreOrders/{id}' -}); }; - -/** - * @deprecated - */ -export const appPreOrdersUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appPreOrders/{id}' -}); }; - -/** - * @deprecated - */ -export const appPreOrdersDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appPreOrders/{id}' -}); }; - -export const appPreviewSetsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appPreviewSets' -}); }; - -export const appPreviewSetsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPreviewSets/{id}' -}); }; - -export const appPreviewSetsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appPreviewSets/{id}' -}); }; - -export const appPreviewsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appPreviews' -}); }; - -export const appPreviewsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPreviews/{id}' -}); }; - -export const appPreviewsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appPreviews/{id}' -}); }; - -export const appPreviewsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appPreviews/{id}' -}); }; - -export const appPricePointsV3GetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v3/appPricePoints/{id}' -}); }; - -export const appPriceSchedulesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appPriceSchedules' -}); }; - -export const appPriceSchedulesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPriceSchedules/{id}' -}); }; - -export const appScreenshotSetsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appScreenshotSets' -}); }; - -export const appScreenshotSetsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appScreenshotSets/{id}' -}); }; - -export const appScreenshotSetsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appScreenshotSets/{id}' -}); }; - -export const appScreenshotsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appScreenshots' -}); }; - -export const appScreenshotsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appScreenshots/{id}' -}); }; - -export const appScreenshotsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appScreenshots/{id}' -}); }; - -export const appScreenshotsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appScreenshots/{id}' -}); }; - -export const appStoreReviewAttachmentsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreReviewAttachments' -}); }; - -export const appStoreReviewAttachmentsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreReviewAttachments/{id}' -}); }; - -export const appStoreReviewAttachmentsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreReviewAttachments/{id}' -}); }; - -export const appStoreReviewAttachmentsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appStoreReviewAttachments/{id}' -}); }; - -export const appStoreReviewDetailsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreReviewDetails' -}); }; - -export const appStoreReviewDetailsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreReviewDetails/{id}' -}); }; - -export const appStoreReviewDetailsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreReviewDetails/{id}' -}); }; - -export const appStoreVersionExperimentTreatmentLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersionExperimentTreatmentLocalizations' -}); }; - -export const appStoreVersionExperimentTreatmentLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionExperimentTreatmentLocalizations/{id}' -}); }; - -export const appStoreVersionExperimentTreatmentLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appStoreVersionExperimentTreatmentLocalizations/{id}' -}); }; - -export const appStoreVersionExperimentTreatmentsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersionExperimentTreatments' -}); }; - -export const appStoreVersionExperimentTreatmentsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionExperimentTreatments/{id}' -}); }; - -export const appStoreVersionExperimentTreatmentsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreVersionExperimentTreatments/{id}' -}); }; - -export const appStoreVersionExperimentTreatmentsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appStoreVersionExperimentTreatments/{id}' -}); }; - -export const appStoreVersionExperimentsV2CreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v2/appStoreVersionExperiments' -}); }; - -export const appStoreVersionExperimentsV2GetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/appStoreVersionExperiments/{id}' -}); }; - -export const appStoreVersionExperimentsV2UpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v2/appStoreVersionExperiments/{id}' -}); }; - -export const appStoreVersionExperimentsV2DeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v2/appStoreVersionExperiments/{id}' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionExperimentsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersionExperiments' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionExperimentsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionExperiments/{id}' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionExperimentsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreVersionExperiments/{id}' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionExperimentsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appStoreVersionExperiments/{id}' -}); }; - -export const appStoreVersionLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersionLocalizations' -}); }; - -export const appStoreVersionLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionLocalizations/{id}' -}); }; - -export const appStoreVersionLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreVersionLocalizations/{id}' -}); }; - -export const appStoreVersionLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appStoreVersionLocalizations/{id}' -}); }; - -export const appStoreVersionPhasedReleasesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersionPhasedReleases' -}); }; - -export const appStoreVersionPhasedReleasesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreVersionPhasedReleases/{id}' -}); }; - -export const appStoreVersionPhasedReleasesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appStoreVersionPhasedReleases/{id}' -}); }; - -export const appStoreVersionPromotionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersionPromotions' -}); }; - -export const appStoreVersionReleaseRequestsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersionReleaseRequests' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionSubmissionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersionSubmissions' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionSubmissionsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appStoreVersionSubmissions/{id}' -}); }; - -export const appStoreVersionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appStoreVersions' -}); }; - -export const appStoreVersionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}' -}); }; - -export const appStoreVersionsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreVersions/{id}' -}); }; - -export const appStoreVersionsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/appStoreVersions/{id}' -}); }; - -export const appsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps' -}); }; - -export const appsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}' -}); }; - -export const appsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/apps/{id}' -}); }; - -export const betaAppClipInvocationLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaAppClipInvocationLocalizations' -}); }; - -export const betaAppClipInvocationLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/betaAppClipInvocationLocalizations/{id}' -}); }; - -export const betaAppClipInvocationLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaAppClipInvocationLocalizations/{id}' -}); }; - -export const betaAppClipInvocationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaAppClipInvocations' -}); }; - -export const betaAppClipInvocationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppClipInvocations/{id}' -}); }; - -export const betaAppClipInvocationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/betaAppClipInvocations/{id}' -}); }; - -export const betaAppClipInvocationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaAppClipInvocations/{id}' -}); }; - -export const betaAppLocalizationsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppLocalizations' -}); }; - -export const betaAppLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaAppLocalizations' -}); }; - -export const betaAppLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppLocalizations/{id}' -}); }; - -export const betaAppLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/betaAppLocalizations/{id}' -}); }; - -export const betaAppLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaAppLocalizations/{id}' -}); }; - -export const betaAppReviewDetailsGetCollection = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppReviewDetails' -}); }; - -export const betaAppReviewDetailsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppReviewDetails/{id}' -}); }; - -export const betaAppReviewDetailsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/betaAppReviewDetails/{id}' -}); }; - -export const betaAppReviewSubmissionsGetCollection = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppReviewSubmissions' -}); }; - -export const betaAppReviewSubmissionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaAppReviewSubmissions' -}); }; - -export const betaAppReviewSubmissionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppReviewSubmissions/{id}' -}); }; - -export const betaBuildLocalizationsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaBuildLocalizations' -}); }; - -export const betaBuildLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaBuildLocalizations' -}); }; - -export const betaBuildLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaBuildLocalizations/{id}' -}); }; - -export const betaBuildLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/betaBuildLocalizations/{id}' -}); }; - -export const betaBuildLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaBuildLocalizations/{id}' -}); }; - -export const betaGroupsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaGroups' -}); }; - -export const betaGroupsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaGroups' -}); }; - -export const betaGroupsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaGroups/{id}' -}); }; - -export const betaGroupsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/betaGroups/{id}' -}); }; - -export const betaGroupsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaGroups/{id}' -}); }; - -export const betaLicenseAgreementsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaLicenseAgreements' -}); }; - -export const betaLicenseAgreementsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaLicenseAgreements/{id}' -}); }; - -export const betaLicenseAgreementsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/betaLicenseAgreements/{id}' -}); }; - -export const betaTesterInvitationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaTesterInvitations' -}); }; - -export const betaTestersGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters' -}); }; - -export const betaTestersCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaTesters' -}); }; - -export const betaTestersGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters/{id}' -}); }; - -export const betaTestersDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaTesters/{id}' -}); }; - -export const buildBetaDetailsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/buildBetaDetails' -}); }; - -export const buildBetaDetailsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/buildBetaDetails/{id}' -}); }; - -export const buildBetaDetailsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/buildBetaDetails/{id}' -}); }; - -export const buildBetaNotificationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/buildBetaNotifications' -}); }; - -export const buildsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds' -}); }; - -export const buildsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}' -}); }; - -export const buildsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/builds/{id}' -}); }; - -export const bundleIdCapabilitiesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/bundleIdCapabilities' -}); }; - -export const bundleIdCapabilitiesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/bundleIdCapabilities/{id}' -}); }; - -export const bundleIdCapabilitiesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/bundleIdCapabilities/{id}' -}); }; - -export const bundleIdsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/bundleIds' -}); }; - -export const bundleIdsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/bundleIds' -}); }; - -export const bundleIdsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/bundleIds/{id}' -}); }; - -export const bundleIdsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/bundleIds/{id}' -}); }; - -export const bundleIdsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/bundleIds/{id}' -}); }; - -export const certificatesGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/certificates' -}); }; - -export const certificatesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/certificates' -}); }; - -export const certificatesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/certificates/{id}' -}); }; - -export const certificatesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/certificates/{id}' -}); }; - -export const ciArtifactsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciArtifacts/{id}' -}); }; - -export const ciBuildActionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciBuildActions/{id}' -}); }; - -export const ciBuildRunsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/ciBuildRuns' -}); }; - -export const ciBuildRunsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciBuildRuns/{id}' -}); }; - -export const ciIssuesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciIssues/{id}' -}); }; - -export const ciMacOsVersionsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciMacOsVersions' -}); }; - -export const ciMacOsVersionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciMacOsVersions/{id}' -}); }; - -export const ciProductsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciProducts' -}); }; - -export const ciProductsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciProducts/{id}' -}); }; - -export const ciProductsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/ciProducts/{id}' -}); }; - -export const ciTestResultsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciTestResults/{id}' -}); }; - -export const ciWorkflowsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/ciWorkflows' -}); }; - -export const ciWorkflowsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciWorkflows/{id}' -}); }; - -export const ciWorkflowsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/ciWorkflows/{id}' -}); }; - -export const ciWorkflowsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/ciWorkflows/{id}' -}); }; - -export const ciXcodeVersionsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciXcodeVersions' -}); }; - -export const ciXcodeVersionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciXcodeVersions/{id}' -}); }; - -export const customerReviewResponsesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/customerReviewResponses' -}); }; - -export const customerReviewResponsesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/customerReviewResponses/{id}' -}); }; - -export const customerReviewResponsesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/customerReviewResponses/{id}' -}); }; - -export const customerReviewsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/customerReviews/{id}' -}); }; - -export const devicesGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/devices' -}); }; - -export const devicesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/devices' -}); }; - -export const devicesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/devices/{id}' -}); }; - -export const devicesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/devices/{id}' -}); }; - -export const endAppAvailabilityPreOrdersCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/endAppAvailabilityPreOrders' -}); }; - -export const endUserLicenseAgreementsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/endUserLicenseAgreements' -}); }; - -export const endUserLicenseAgreementsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/endUserLicenseAgreements/{id}' -}); }; - -export const endUserLicenseAgreementsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/endUserLicenseAgreements/{id}' -}); }; - -export const endUserLicenseAgreementsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/endUserLicenseAgreements/{id}' -}); }; - -export const financeReportsGetCollection = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/financeReports' -}); }; - -export const gameCenterAchievementImagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterAchievementImages' -}); }; - -export const gameCenterAchievementImagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievementImages/{id}' -}); }; - -export const gameCenterAchievementImagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterAchievementImages/{id}' -}); }; - -export const gameCenterAchievementImagesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterAchievementImages/{id}' -}); }; - -export const gameCenterAchievementLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterAchievementLocalizations' -}); }; - -export const gameCenterAchievementLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievementLocalizations/{id}' -}); }; - -export const gameCenterAchievementLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterAchievementLocalizations/{id}' -}); }; - -export const gameCenterAchievementLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterAchievementLocalizations/{id}' -}); }; - -export const gameCenterAchievementReleasesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterAchievementReleases' -}); }; - -export const gameCenterAchievementReleasesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievementReleases/{id}' -}); }; - -export const gameCenterAchievementReleasesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterAchievementReleases/{id}' -}); }; - -export const gameCenterAchievementsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterAchievements' -}); }; - -export const gameCenterAchievementsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievements/{id}' -}); }; - -export const gameCenterAchievementsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterAchievements/{id}' -}); }; - -export const gameCenterAchievementsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterAchievements/{id}' -}); }; - -export const gameCenterAppVersionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterAppVersions' -}); }; - -export const gameCenterAppVersionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAppVersions/{id}' -}); }; - -export const gameCenterAppVersionsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterAppVersions/{id}' -}); }; - -export const gameCenterDetailsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterDetails' -}); }; - -export const gameCenterDetailsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}' -}); }; - -export const gameCenterDetailsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterDetails/{id}' -}); }; - -export const gameCenterGroupsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups' -}); }; - -export const gameCenterGroupsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterGroups' -}); }; - -export const gameCenterGroupsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups/{id}' -}); }; - -export const gameCenterGroupsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterGroups/{id}' -}); }; - -export const gameCenterGroupsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterGroups/{id}' -}); }; - -export const gameCenterLeaderboardEntrySubmissionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardEntrySubmissions' -}); }; - -export const gameCenterLeaderboardImagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardImages' -}); }; - -export const gameCenterLeaderboardImagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardImages/{id}' -}); }; - -export const gameCenterLeaderboardImagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboardImages/{id}' -}); }; - -export const gameCenterLeaderboardImagesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardImages/{id}' -}); }; - -export const gameCenterLeaderboardLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardLocalizations' -}); }; - -export const gameCenterLeaderboardLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardLocalizations/{id}' -}); }; - -export const gameCenterLeaderboardLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboardLocalizations/{id}' -}); }; - -export const gameCenterLeaderboardLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardLocalizations/{id}' -}); }; - -export const gameCenterLeaderboardReleasesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardReleases' -}); }; - -export const gameCenterLeaderboardReleasesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardReleases/{id}' -}); }; - -export const gameCenterLeaderboardReleasesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardReleases/{id}' -}); }; - -export const gameCenterLeaderboardSetImagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardSetImages' -}); }; - -export const gameCenterLeaderboardSetImagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSetImages/{id}' -}); }; - -export const gameCenterLeaderboardSetImagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboardSetImages/{id}' -}); }; - -export const gameCenterLeaderboardSetImagesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardSetImages/{id}' -}); }; - -export const gameCenterLeaderboardSetLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardSetLocalizations' -}); }; - -export const gameCenterLeaderboardSetLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSetLocalizations/{id}' -}); }; - -export const gameCenterLeaderboardSetLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboardSetLocalizations/{id}' -}); }; - -export const gameCenterLeaderboardSetLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardSetLocalizations/{id}' -}); }; - -export const gameCenterLeaderboardSetMemberLocalizationsGetCollection = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSetMemberLocalizations' -}); }; - -export const gameCenterLeaderboardSetMemberLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardSetMemberLocalizations' -}); }; - -export const gameCenterLeaderboardSetMemberLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboardSetMemberLocalizations/{id}' -}); }; - -export const gameCenterLeaderboardSetMemberLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardSetMemberLocalizations/{id}' -}); }; - -export const gameCenterLeaderboardSetReleasesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardSetReleases' -}); }; - -export const gameCenterLeaderboardSetReleasesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSetReleases/{id}' -}); }; - -export const gameCenterLeaderboardSetReleasesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardSetReleases/{id}' -}); }; - -export const gameCenterLeaderboardSetsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardSets' -}); }; - -export const gameCenterLeaderboardSetsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}' -}); }; - -export const gameCenterLeaderboardSetsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}' -}); }; - -export const gameCenterLeaderboardSetsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}' -}); }; - -export const gameCenterLeaderboardsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboards' -}); }; - -export const gameCenterLeaderboardsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboards/{id}' -}); }; - -export const gameCenterLeaderboardsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboards/{id}' -}); }; - -export const gameCenterLeaderboardsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboards/{id}' -}); }; - -export const gameCenterMatchmakingQueuesGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingQueues' -}); }; - -export const gameCenterMatchmakingQueuesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterMatchmakingQueues' -}); }; - -export const gameCenterMatchmakingQueuesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingQueues/{id}' -}); }; - -export const gameCenterMatchmakingQueuesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterMatchmakingQueues/{id}' -}); }; - -export const gameCenterMatchmakingQueuesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterMatchmakingQueues/{id}' -}); }; - -export const gameCenterMatchmakingRuleSetTestsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSetTests' -}); }; - -export const gameCenterMatchmakingRuleSetsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSets' -}); }; - -export const gameCenterMatchmakingRuleSetsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSets' -}); }; - -export const gameCenterMatchmakingRuleSetsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSets/{id}' -}); }; - -export const gameCenterMatchmakingRuleSetsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSets/{id}' -}); }; - -export const gameCenterMatchmakingRuleSetsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSets/{id}' -}); }; - -export const gameCenterMatchmakingRulesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterMatchmakingRules' -}); }; - -export const gameCenterMatchmakingRulesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterMatchmakingRules/{id}' -}); }; - -export const gameCenterMatchmakingRulesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterMatchmakingRules/{id}' -}); }; - -export const gameCenterMatchmakingTeamsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterMatchmakingTeams' -}); }; - -export const gameCenterMatchmakingTeamsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterMatchmakingTeams/{id}' -}); }; - -export const gameCenterMatchmakingTeamsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterMatchmakingTeams/{id}' -}); }; - -export const gameCenterPlayerAchievementSubmissionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterPlayerAchievementSubmissions' -}); }; - -export const inAppPurchaseAppStoreReviewScreenshotsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/inAppPurchaseAppStoreReviewScreenshots' -}); }; - -export const inAppPurchaseAppStoreReviewScreenshotsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchaseAppStoreReviewScreenshots/{id}' -}); }; - -export const inAppPurchaseAppStoreReviewScreenshotsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/inAppPurchaseAppStoreReviewScreenshots/{id}' -}); }; - -export const inAppPurchaseAppStoreReviewScreenshotsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/inAppPurchaseAppStoreReviewScreenshots/{id}' -}); }; - -export const inAppPurchaseAvailabilitiesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/inAppPurchaseAvailabilities' -}); }; - -export const inAppPurchaseAvailabilitiesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchaseAvailabilities/{id}' -}); }; - -export const inAppPurchaseContentsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchaseContents/{id}' -}); }; - -export const inAppPurchaseImagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/inAppPurchaseImages' -}); }; - -export const inAppPurchaseImagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchaseImages/{id}' -}); }; - -export const inAppPurchaseImagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/inAppPurchaseImages/{id}' -}); }; - -export const inAppPurchaseImagesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/inAppPurchaseImages/{id}' -}); }; - -export const inAppPurchaseLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/inAppPurchaseLocalizations' -}); }; - -export const inAppPurchaseLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchaseLocalizations/{id}' -}); }; - -export const inAppPurchaseLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/inAppPurchaseLocalizations/{id}' -}); }; - -export const inAppPurchaseLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/inAppPurchaseLocalizations/{id}' -}); }; - -export const inAppPurchasePriceSchedulesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/inAppPurchasePriceSchedules' -}); }; - -export const inAppPurchasePriceSchedulesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchasePriceSchedules/{id}' -}); }; - -export const inAppPurchaseSubmissionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/inAppPurchaseSubmissions' -}); }; - -/** - * @deprecated - */ -export const inAppPurchasesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchases/{id}' -}); }; - -export const inAppPurchasesV2CreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v2/inAppPurchases' -}); }; - -export const inAppPurchasesV2GetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}' -}); }; - -export const inAppPurchasesV2UpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v2/inAppPurchases/{id}' -}); }; - -export const inAppPurchasesV2DeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v2/inAppPurchases/{id}' -}); }; - -/** - * @deprecated - */ -export const marketplaceDomainsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/marketplaceDomains' -}); }; - -/** - * @deprecated - */ -export const marketplaceDomainsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/marketplaceDomains' -}); }; - -/** - * @deprecated - */ -export const marketplaceDomainsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/marketplaceDomains/{id}' -}); }; - -/** - * @deprecated - */ -export const marketplaceDomainsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/marketplaceDomains/{id}' -}); }; - -export const marketplaceSearchDetailsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/marketplaceSearchDetails' -}); }; - -export const marketplaceSearchDetailsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/marketplaceSearchDetails/{id}' -}); }; - -export const marketplaceSearchDetailsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/marketplaceSearchDetails/{id}' -}); }; - -export const marketplaceWebhooksGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/marketplaceWebhooks' -}); }; - -export const marketplaceWebhooksCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/marketplaceWebhooks' -}); }; - -export const marketplaceWebhooksUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/marketplaceWebhooks/{id}' -}); }; - -export const marketplaceWebhooksDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/marketplaceWebhooks/{id}' -}); }; - -export const preReleaseVersionsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/preReleaseVersions' -}); }; - -export const preReleaseVersionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/preReleaseVersions/{id}' -}); }; - -export const profilesGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/profiles' -}); }; - -export const profilesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/profiles' -}); }; - -export const profilesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/profiles/{id}' -}); }; - -export const profilesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/profiles/{id}' -}); }; - -/** - * @deprecated - */ -export const promotedPurchaseImagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/promotedPurchaseImages' -}); }; - -/** - * @deprecated - */ -export const promotedPurchaseImagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/promotedPurchaseImages/{id}' -}); }; - -/** - * @deprecated - */ -export const promotedPurchaseImagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/promotedPurchaseImages/{id}' -}); }; - -/** - * @deprecated - */ -export const promotedPurchaseImagesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/promotedPurchaseImages/{id}' -}); }; - -export const promotedPurchasesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/promotedPurchases' -}); }; - -export const promotedPurchasesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/promotedPurchases/{id}' -}); }; - -export const promotedPurchasesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/promotedPurchases/{id}' -}); }; - -export const promotedPurchasesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/promotedPurchases/{id}' -}); }; - -export const reviewSubmissionItemsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/reviewSubmissionItems' -}); }; - -export const reviewSubmissionItemsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/reviewSubmissionItems/{id}' -}); }; - -export const reviewSubmissionItemsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/reviewSubmissionItems/{id}' -}); }; - -export const reviewSubmissionsGetCollection = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/reviewSubmissions' -}); }; - -export const reviewSubmissionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/reviewSubmissions' -}); }; - -export const reviewSubmissionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/reviewSubmissions/{id}' -}); }; - -export const reviewSubmissionsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/reviewSubmissions/{id}' -}); }; - -export const routingAppCoveragesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/routingAppCoverages' -}); }; - -export const routingAppCoveragesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/routingAppCoverages/{id}' -}); }; - -export const routingAppCoveragesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/routingAppCoverages/{id}' -}); }; - -export const routingAppCoveragesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/routingAppCoverages/{id}' -}); }; - -export const salesReportsGetCollection = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/salesReports' -}); }; - -export const sandboxTestersV2GetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/sandboxTesters' -}); }; - -export const sandboxTestersV2UpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v2/sandboxTesters/{id}' -}); }; - -export const sandboxTestersClearPurchaseHistoryRequestV2CreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v2/sandboxTestersClearPurchaseHistoryRequest' -}); }; - -export const scmGitReferencesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmGitReferences/{id}' -}); }; - -export const scmProvidersGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmProviders' -}); }; - -export const scmProvidersGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmProviders/{id}' -}); }; - -export const scmPullRequestsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmPullRequests/{id}' -}); }; - -export const scmRepositoriesGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmRepositories' -}); }; - -export const scmRepositoriesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmRepositories/{id}' -}); }; - -export const subscriptionAppStoreReviewScreenshotsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionAppStoreReviewScreenshots' -}); }; - -export const subscriptionAppStoreReviewScreenshotsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionAppStoreReviewScreenshots/{id}' -}); }; - -export const subscriptionAppStoreReviewScreenshotsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionAppStoreReviewScreenshots/{id}' -}); }; - -export const subscriptionAppStoreReviewScreenshotsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptionAppStoreReviewScreenshots/{id}' -}); }; - -export const subscriptionAvailabilitiesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionAvailabilities' -}); }; - -export const subscriptionAvailabilitiesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionAvailabilities/{id}' -}); }; - -export const subscriptionGracePeriodsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionGracePeriods/{id}' -}); }; - -export const subscriptionGracePeriodsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionGracePeriods/{id}' -}); }; - -export const subscriptionGroupLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionGroupLocalizations' -}); }; - -export const subscriptionGroupLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionGroupLocalizations/{id}' -}); }; - -export const subscriptionGroupLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionGroupLocalizations/{id}' -}); }; - -export const subscriptionGroupLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptionGroupLocalizations/{id}' -}); }; - -export const subscriptionGroupSubmissionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionGroupSubmissions' -}); }; - -export const subscriptionGroupsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionGroups' -}); }; - -export const subscriptionGroupsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionGroups/{id}' -}); }; - -export const subscriptionGroupsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionGroups/{id}' -}); }; - -export const subscriptionGroupsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptionGroups/{id}' -}); }; - -export const subscriptionImagesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionImages' -}); }; - -export const subscriptionImagesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionImages/{id}' -}); }; - -export const subscriptionImagesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionImages/{id}' -}); }; - -export const subscriptionImagesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptionImages/{id}' -}); }; - -export const subscriptionIntroductoryOffersCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionIntroductoryOffers' -}); }; - -export const subscriptionIntroductoryOffersUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionIntroductoryOffers/{id}' -}); }; - -export const subscriptionIntroductoryOffersDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptionIntroductoryOffers/{id}' -}); }; - -export const subscriptionLocalizationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionLocalizations' -}); }; - -export const subscriptionLocalizationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionLocalizations/{id}' -}); }; - -export const subscriptionLocalizationsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionLocalizations/{id}' -}); }; - -export const subscriptionLocalizationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptionLocalizations/{id}' -}); }; - -export const subscriptionOfferCodeCustomCodesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionOfferCodeCustomCodes' -}); }; - -export const subscriptionOfferCodeCustomCodesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionOfferCodeCustomCodes/{id}' -}); }; - -export const subscriptionOfferCodeCustomCodesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionOfferCodeCustomCodes/{id}' -}); }; - -export const subscriptionOfferCodeOneTimeUseCodesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionOfferCodeOneTimeUseCodes' -}); }; - -export const subscriptionOfferCodeOneTimeUseCodesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionOfferCodeOneTimeUseCodes/{id}' -}); }; - -export const subscriptionOfferCodeOneTimeUseCodesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionOfferCodeOneTimeUseCodes/{id}' -}); }; - -export const subscriptionOfferCodesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionOfferCodes' -}); }; - -export const subscriptionOfferCodesGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionOfferCodes/{id}' -}); }; - -export const subscriptionOfferCodesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionOfferCodes/{id}' -}); }; - -export const subscriptionPricePointsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionPricePoints/{id}' -}); }; - -export const subscriptionPricesCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionPrices' -}); }; - -export const subscriptionPricesDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptionPrices/{id}' -}); }; - -export const subscriptionPromotionalOffersCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionPromotionalOffers' -}); }; - -export const subscriptionPromotionalOffersGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionPromotionalOffers/{id}' -}); }; - -export const subscriptionPromotionalOffersUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptionPromotionalOffers/{id}' -}); }; - -export const subscriptionPromotionalOffersDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptionPromotionalOffers/{id}' -}); }; - -export const subscriptionSubmissionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptionSubmissions' -}); }; - -export const subscriptionsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/subscriptions' -}); }; - -export const subscriptionsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}' -}); }; - -export const subscriptionsUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/subscriptions/{id}' -}); }; - -export const subscriptionsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptions/{id}' -}); }; - -export const territoriesGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/territories' -}); }; - -export const territoryAvailabilitiesUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/territoryAvailabilities/{id}' -}); }; - -export const userInvitationsGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/userInvitations' -}); }; - -export const userInvitationsCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/userInvitations' -}); }; - -export const userInvitationsGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/userInvitations/{id}' -}); }; - -export const userInvitationsDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/userInvitations/{id}' -}); }; - -export const usersGetCollection = (options?: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/users' -}); }; - -export const usersGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/users/{id}' -}); }; - -export const usersUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/users/{id}' -}); }; - -export const usersDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/users/{id}' -}); }; - -export const winBackOffersCreateInstance = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/winBackOffers' -}); }; - -export const winBackOffersGetInstance = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/winBackOffers/{id}' -}); }; - -export const winBackOffersUpdateInstance = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/winBackOffers/{id}' -}); }; - -export const winBackOffersDeleteInstance = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/winBackOffers/{id}' -}); }; - -export const alternativeDistributionPackageVersionsDeltasGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionPackageVersions/{id}/deltas' -}); }; - -export const alternativeDistributionPackageVersionsVariantsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionPackageVersions/{id}/variants' -}); }; - -export const alternativeDistributionPackagesVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/alternativeDistributionPackages/{id}/versions' -}); }; - -export const analyticsReportInstancesSegmentsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/analyticsReportInstances/{id}/segments' -}); }; - -export const analyticsReportRequestsReportsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/analyticsReportRequests/{id}/reports' -}); }; - -export const analyticsReportsInstancesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/analyticsReports/{id}/instances' -}); }; - -export const appAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/appAvailabilities/{id}/territoryAvailabilities' -}); }; - -/** - * @deprecated - */ -export const appAvailabilitiesAvailableTerritoriesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appAvailabilities/{id}/availableTerritories' -}); }; - -export const appCategoriesParentGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCategories/{id}/parent' -}); }; - -export const appCategoriesSubcategoriesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCategories/{id}/subcategories' -}); }; - -export const appClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipDefaultExperienceLocalizations/{id}/appClipHeaderImage' -}); }; - -export const appClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipDefaultExperiences/{id}/appClipAppStoreReviewDetail' -}); }; - -export const appClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipDefaultExperiences/{id}/appClipDefaultExperienceLocalizations' -}); }; - -export const appClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipDefaultExperiences/{id}/relationships/releaseWithAppStoreVersion' -}); }; - -export const appClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appClipDefaultExperiences/{id}/relationships/releaseWithAppStoreVersion' -}); }; - -export const appClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClipDefaultExperiences/{id}/releaseWithAppStoreVersion' -}); }; - -export const appClipsAppClipAdvancedExperiencesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClips/{id}/appClipAdvancedExperiences' -}); }; - -export const appClipsAppClipDefaultExperiencesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appClips/{id}/appClipDefaultExperiences' -}); }; - -export const appCustomProductPageLocalizationsAppPreviewSetsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCustomProductPageLocalizations/{id}/appPreviewSets' -}); }; - -export const appCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCustomProductPageLocalizations/{id}/appScreenshotSets' -}); }; - -export const appCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCustomProductPageVersions/{id}/appCustomProductPageLocalizations' -}); }; - -export const appCustomProductPagesAppCustomProductPageVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appCustomProductPages/{id}/appCustomProductPageVersions' -}); }; - -/** - * @deprecated - */ -export const appEncryptionDeclarationsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEncryptionDeclarations/{id}/app' -}); }; - -export const appEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEncryptionDeclarations/{id}/appEncryptionDeclarationDocument' -}); }; - -/** - * @deprecated - */ -export const appEncryptionDeclarationsBuildsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/appEncryptionDeclarations/{id}/relationships/builds' -}); }; - -export const appEventLocalizationsAppEventScreenshotsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEventLocalizations/{id}/appEventScreenshots' -}); }; - -export const appEventLocalizationsAppEventVideoClipsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEventLocalizations/{id}/appEventVideoClips' -}); }; - -export const appEventsLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appEvents/{id}/localizations' -}); }; - -export const appInfosAgeRatingDeclarationGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}/ageRatingDeclaration' -}); }; - -export const appInfosAppInfoLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}/appInfoLocalizations' -}); }; - -export const appInfosPrimaryCategoryGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}/primaryCategory' -}); }; - -export const appInfosPrimarySubcategoryOneGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}/primarySubcategoryOne' -}); }; - -export const appInfosPrimarySubcategoryTwoGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}/primarySubcategoryTwo' -}); }; - -export const appInfosSecondaryCategoryGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}/secondaryCategory' -}); }; - -export const appInfosSecondarySubcategoryOneGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}/secondarySubcategoryOne' -}); }; - -export const appInfosSecondarySubcategoryTwoGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appInfos/{id}/secondarySubcategoryTwo' -}); }; - -export const appPreviewSetsAppPreviewsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPreviewSets/{id}/relationships/appPreviews' -}); }; - -export const appPreviewSetsAppPreviewsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appPreviewSets/{id}/relationships/appPreviews' -}); }; - -export const appPreviewSetsAppPreviewsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPreviewSets/{id}/appPreviews' -}); }; - -export const appPricePointsV3EqualizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v3/appPricePoints/{id}/equalizations' -}); }; - -export const appPriceSchedulesAutomaticPricesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPriceSchedules/{id}/automaticPrices' -}); }; - -export const appPriceSchedulesBaseTerritoryGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPriceSchedules/{id}/baseTerritory' -}); }; - -export const appPriceSchedulesManualPricesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appPriceSchedules/{id}/manualPrices' -}); }; - -export const appScreenshotSetsAppScreenshotsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appScreenshotSets/{id}/relationships/appScreenshots' -}); }; - -export const appScreenshotSetsAppScreenshotsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appScreenshotSets/{id}/relationships/appScreenshots' -}); }; - -export const appScreenshotSetsAppScreenshotsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appScreenshotSets/{id}/appScreenshots' -}); }; - -export const appStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreReviewDetails/{id}/appStoreReviewAttachments' -}); }; - -export const appStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionExperimentTreatmentLocalizations/{id}/appPreviewSets' -}); }; - -export const appStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionExperimentTreatmentLocalizations/{id}/appScreenshotSets' -}); }; - -export const appStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionExperimentTreatments/{id}/appStoreVersionExperimentTreatmentLocalizations' -}); }; - -export const appStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/appStoreVersionExperiments/{id}/appStoreVersionExperimentTreatments' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionExperiments/{id}/appStoreVersionExperimentTreatments' -}); }; - -export const appStoreVersionLocalizationsAppPreviewSetsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionLocalizations/{id}/appPreviewSets' -}); }; - -export const appStoreVersionLocalizationsAppScreenshotSetsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersionLocalizations/{id}/appScreenshotSets' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionsAgeRatingDeclarationGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/ageRatingDeclaration' -}); }; - -export const appStoreVersionsAlternativeDistributionPackageGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/alternativeDistributionPackage' -}); }; - -export const appStoreVersionsAppClipDefaultExperienceGetToOneRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/relationships/appClipDefaultExperience' -}); }; - -export const appStoreVersionsAppClipDefaultExperienceUpdateToOneRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreVersions/{id}/relationships/appClipDefaultExperience' -}); }; - -export const appStoreVersionsAppClipDefaultExperienceGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/appClipDefaultExperience' -}); }; - -export const appStoreVersionsAppStoreReviewDetailGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/appStoreReviewDetail' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionsAppStoreVersionExperimentsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/appStoreVersionExperiments' -}); }; - -export const appStoreVersionsAppStoreVersionExperimentsV2GetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/appStoreVersionExperimentsV2' -}); }; - -export const appStoreVersionsAppStoreVersionLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/appStoreVersionLocalizations' -}); }; - -export const appStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/appStoreVersionPhasedRelease' -}); }; - -/** - * @deprecated - */ -export const appStoreVersionsAppStoreVersionSubmissionGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/appStoreVersionSubmission' -}); }; - -export const appStoreVersionsBuildGetToOneRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/relationships/build' -}); }; - -export const appStoreVersionsBuildUpdateToOneRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/appStoreVersions/{id}/relationships/build' -}); }; - -export const appStoreVersionsBuildGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/build' -}); }; - -export const appStoreVersionsCustomerReviewsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/customerReviews' -}); }; - -export const appStoreVersionsGameCenterAppVersionGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/gameCenterAppVersion' -}); }; - -export const appStoreVersionsRoutingAppCoverageGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/appStoreVersions/{id}/routingAppCoverage' -}); }; - -export const appsAlternativeDistributionKeyGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/alternativeDistributionKey' -}); }; - -export const appsAnalyticsReportRequestsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/analyticsReportRequests' -}); }; - -/** - * @deprecated - */ -export const appsAppAvailabilityGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appAvailability' -}); }; - -export const appsAppAvailabilityV2GetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appAvailabilityV2' -}); }; - -export const appsAppClipsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appClips' -}); }; - -export const appsAppCustomProductPagesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appCustomProductPages' -}); }; - -export const appsAppEncryptionDeclarationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appEncryptionDeclarations' -}); }; - -export const appsAppEventsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appEvents' -}); }; - -export const appsAppInfosGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appInfos' -}); }; - -export const appsAppPricePointsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appPricePoints' -}); }; - -export const appsAppPriceScheduleGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appPriceSchedule' -}); }; - -export const appsAppStoreVersionExperimentsV2GetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appStoreVersionExperimentsV2' -}); }; - -export const appsAppStoreVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/appStoreVersions' -}); }; - -export const appsBetaAppLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/betaAppLocalizations' -}); }; - -export const appsBetaAppReviewDetailGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/betaAppReviewDetail' -}); }; - -export const appsBetaGroupsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/betaGroups' -}); }; - -export const appsBetaLicenseAgreementGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/betaLicenseAgreement' -}); }; - -export const appsBetaTestersDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/apps/{id}/relationships/betaTesters' -}); }; - -export const appsBuildsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/builds' -}); }; - -export const appsCiProductGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/ciProduct' -}); }; - -export const appsCustomerReviewsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/customerReviews' -}); }; - -export const appsEndUserLicenseAgreementGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/endUserLicenseAgreement' -}); }; - -export const appsGameCenterDetailGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/gameCenterDetail' -}); }; - -/** - * @deprecated - */ -export const appsGameCenterEnabledVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/gameCenterEnabledVersions' -}); }; - -/** - * @deprecated - */ -export const appsInAppPurchasesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/inAppPurchases' -}); }; - -export const appsInAppPurchasesV2GetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/inAppPurchasesV2' -}); }; - -export const appsMarketplaceSearchDetailGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/marketplaceSearchDetail' -}); }; - -export const appsPerfPowerMetricsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/perfPowerMetrics' -}); }; - -/** - * @deprecated - */ -export const appsPreOrderGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/preOrder' -}); }; - -export const appsPreReleaseVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/preReleaseVersions' -}); }; - -export const appsPromotedPurchasesGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/relationships/promotedPurchases' -}); }; - -export const appsPromotedPurchasesReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/apps/{id}/relationships/promotedPurchases' -}); }; - -export const appsPromotedPurchasesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/promotedPurchases' -}); }; - -export const appsReviewSubmissionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/reviewSubmissions' -}); }; - -export const appsSubscriptionGracePeriodGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/subscriptionGracePeriod' -}); }; - -export const appsSubscriptionGroupsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/subscriptionGroups' -}); }; - -export const betaAppLocalizationsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppLocalizations/{id}/app' -}); }; - -export const betaAppReviewDetailsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppReviewDetails/{id}/app' -}); }; - -export const betaAppReviewSubmissionsBuildGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaAppReviewSubmissions/{id}/build' -}); }; - -export const betaBuildLocalizationsBuildGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaBuildLocalizations/{id}/build' -}); }; - -export const betaGroupsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaGroups/{id}/app' -}); }; - -export const betaGroupsBetaTestersGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaGroups/{id}/relationships/betaTesters' -}); }; - -export const betaGroupsBetaTestersCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaGroups/{id}/relationships/betaTesters' -}); }; - -export const betaGroupsBetaTestersDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaGroups/{id}/relationships/betaTesters' -}); }; - -export const betaGroupsBetaTestersGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaGroups/{id}/betaTesters' -}); }; - -export const betaGroupsBuildsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaGroups/{id}/relationships/builds' -}); }; - -export const betaGroupsBuildsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaGroups/{id}/relationships/builds' -}); }; - -export const betaGroupsBuildsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaGroups/{id}/relationships/builds' -}); }; - -export const betaGroupsBuildsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaGroups/{id}/builds' -}); }; - -export const betaLicenseAgreementsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaLicenseAgreements/{id}/app' -}); }; - -export const betaTestersAppsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters/{id}/relationships/apps' -}); }; - -export const betaTestersAppsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaTesters/{id}/relationships/apps' -}); }; - -export const betaTestersAppsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters/{id}/apps' -}); }; - -export const betaTestersBetaGroupsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters/{id}/relationships/betaGroups' -}); }; - -export const betaTestersBetaGroupsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaTesters/{id}/relationships/betaGroups' -}); }; - -export const betaTestersBetaGroupsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaTesters/{id}/relationships/betaGroups' -}); }; - -export const betaTestersBetaGroupsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters/{id}/betaGroups' -}); }; - -export const betaTestersBuildsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters/{id}/relationships/builds' -}); }; - -export const betaTestersBuildsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/betaTesters/{id}/relationships/builds' -}); }; - -export const betaTestersBuildsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/betaTesters/{id}/relationships/builds' -}); }; - -export const betaTestersBuildsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters/{id}/builds' -}); }; - -export const buildBetaDetailsBuildGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/buildBetaDetails/{id}/build' -}); }; - -export const buildBundlesAppClipDomainCacheStatusGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/buildBundles/{id}/appClipDomainCacheStatus' -}); }; - -export const buildBundlesAppClipDomainDebugStatusGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/buildBundles/{id}/appClipDomainDebugStatus' -}); }; - -export const buildBundlesBetaAppClipInvocationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/buildBundles/{id}/betaAppClipInvocations' -}); }; - -export const buildBundlesBuildBundleFileSizesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/buildBundles/{id}/buildBundleFileSizes' -}); }; - -export const buildsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/app' -}); }; - -export const buildsAppEncryptionDeclarationGetToOneRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/relationships/appEncryptionDeclaration' -}); }; - -export const buildsAppEncryptionDeclarationUpdateToOneRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/builds/{id}/relationships/appEncryptionDeclaration' -}); }; - -export const buildsAppEncryptionDeclarationGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/appEncryptionDeclaration' -}); }; - -export const buildsAppStoreVersionGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/appStoreVersion' -}); }; - -export const buildsBetaAppReviewSubmissionGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/betaAppReviewSubmission' -}); }; - -export const buildsBetaBuildLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/betaBuildLocalizations' -}); }; - -export const buildsBetaGroupsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/builds/{id}/relationships/betaGroups' -}); }; - -export const buildsBetaGroupsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/builds/{id}/relationships/betaGroups' -}); }; - -export const buildsBuildBetaDetailGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/buildBetaDetail' -}); }; - -export const buildsDiagnosticSignaturesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/diagnosticSignatures' -}); }; - -export const buildsIconsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/icons' -}); }; - -export const buildsIndividualTestersGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/relationships/individualTesters' -}); }; - -export const buildsIndividualTestersCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/builds/{id}/relationships/individualTesters' -}); }; - -export const buildsIndividualTestersDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/builds/{id}/relationships/individualTesters' -}); }; - -export const buildsIndividualTestersGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/individualTesters' -}); }; - -export const buildsPerfPowerMetricsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/perfPowerMetrics' -}); }; - -export const buildsPreReleaseVersionGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/preReleaseVersion' -}); }; - -export const bundleIdsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/bundleIds/{id}/app' -}); }; - -export const bundleIdsBundleIdCapabilitiesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/bundleIds/{id}/bundleIdCapabilities' -}); }; - -export const bundleIdsProfilesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/bundleIds/{id}/profiles' -}); }; - -export const ciBuildActionsArtifactsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciBuildActions/{id}/artifacts' -}); }; - -export const ciBuildActionsBuildRunGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciBuildActions/{id}/buildRun' -}); }; - -export const ciBuildActionsIssuesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciBuildActions/{id}/issues' -}); }; - -export const ciBuildActionsTestResultsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciBuildActions/{id}/testResults' -}); }; - -export const ciBuildRunsActionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciBuildRuns/{id}/actions' -}); }; - -export const ciBuildRunsBuildsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciBuildRuns/{id}/builds' -}); }; - -export const ciMacOsVersionsXcodeVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciMacOsVersions/{id}/xcodeVersions' -}); }; - -export const ciProductsAdditionalRepositoriesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciProducts/{id}/additionalRepositories' -}); }; - -export const ciProductsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciProducts/{id}/app' -}); }; - -export const ciProductsBuildRunsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciProducts/{id}/buildRuns' -}); }; - -export const ciProductsPrimaryRepositoriesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciProducts/{id}/primaryRepositories' -}); }; - -export const ciProductsWorkflowsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciProducts/{id}/workflows' -}); }; - -export const ciWorkflowsBuildRunsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciWorkflows/{id}/buildRuns' -}); }; - -export const ciWorkflowsRepositoryGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciWorkflows/{id}/repository' -}); }; - -export const ciXcodeVersionsMacOsVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/ciXcodeVersions/{id}/macOsVersions' -}); }; - -export const customerReviewsResponseGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/customerReviews/{id}/response' -}); }; - -export const diagnosticSignaturesLogsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/diagnosticSignatures/{id}/logs' -}); }; - -export const endUserLicenseAgreementsTerritoriesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/endUserLicenseAgreements/{id}/territories' -}); }; - -export const gameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievementLocalizations/{id}/gameCenterAchievement' -}); }; - -export const gameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievementLocalizations/{id}/gameCenterAchievementImage' -}); }; - -export const gameCenterAchievementsGroupAchievementGetToOneRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievements/{id}/relationships/groupAchievement' -}); }; - -export const gameCenterAchievementsGroupAchievementUpdateToOneRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterAchievements/{id}/relationships/groupAchievement' -}); }; - -export const gameCenterAchievementsGroupAchievementGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievements/{id}/groupAchievement' -}); }; - -export const gameCenterAchievementsLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievements/{id}/localizations' -}); }; - -export const gameCenterAchievementsReleasesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAchievements/{id}/releases' -}); }; - -export const gameCenterAppVersionsAppStoreVersionGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAppVersions/{id}/appStoreVersion' -}); }; - -export const gameCenterAppVersionsCompatibilityVersionsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAppVersions/{id}/relationships/compatibilityVersions' -}); }; - -export const gameCenterAppVersionsCompatibilityVersionsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterAppVersions/{id}/relationships/compatibilityVersions' -}); }; - -export const gameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterAppVersions/{id}/relationships/compatibilityVersions' -}); }; - -export const gameCenterAppVersionsCompatibilityVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterAppVersions/{id}/compatibilityVersions' -}); }; - -export const gameCenterDetailsAchievementReleasesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/achievementReleases' -}); }; - -export const gameCenterDetailsGameCenterAchievementsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/relationships/gameCenterAchievements' -}); }; - -export const gameCenterDetailsGameCenterAchievementsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterDetails/{id}/relationships/gameCenterAchievements' -}); }; - -export const gameCenterDetailsGameCenterAchievementsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/gameCenterAchievements' -}); }; - -export const gameCenterDetailsGameCenterAppVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/gameCenterAppVersions' -}); }; - -export const gameCenterDetailsGameCenterGroupGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/gameCenterGroup' -}); }; - -export const gameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/relationships/gameCenterLeaderboardSets' -}); }; - -export const gameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterDetails/{id}/relationships/gameCenterLeaderboardSets' -}); }; - -export const gameCenterDetailsGameCenterLeaderboardSetsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/gameCenterLeaderboardSets' -}); }; - -export const gameCenterDetailsGameCenterLeaderboardsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/relationships/gameCenterLeaderboards' -}); }; - -export const gameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterDetails/{id}/relationships/gameCenterLeaderboards' -}); }; - -export const gameCenterDetailsGameCenterLeaderboardsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/gameCenterLeaderboards' -}); }; - -export const gameCenterDetailsLeaderboardReleasesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/leaderboardReleases' -}); }; - -export const gameCenterDetailsLeaderboardSetReleasesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/leaderboardSetReleases' -}); }; - -/** - * @deprecated - */ -export const gameCenterEnabledVersionsCompatibleVersionsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterEnabledVersions/{id}/relationships/compatibleVersions' -}); }; - -/** - * @deprecated - */ -export const gameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterEnabledVersions/{id}/relationships/compatibleVersions' -}); }; - -/** - * @deprecated - */ -export const gameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterEnabledVersions/{id}/relationships/compatibleVersions' -}); }; - -/** - * @deprecated - */ -export const gameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterEnabledVersions/{id}/relationships/compatibleVersions' -}); }; - -/** - * @deprecated - */ -export const gameCenterEnabledVersionsCompatibleVersionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterEnabledVersions/{id}/compatibleVersions' -}); }; - -export const gameCenterGroupsGameCenterAchievementsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups/{id}/relationships/gameCenterAchievements' -}); }; - -export const gameCenterGroupsGameCenterAchievementsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterGroups/{id}/relationships/gameCenterAchievements' -}); }; - -export const gameCenterGroupsGameCenterAchievementsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups/{id}/gameCenterAchievements' -}); }; - -export const gameCenterGroupsGameCenterDetailsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups/{id}/gameCenterDetails' -}); }; - -export const gameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups/{id}/relationships/gameCenterLeaderboardSets' -}); }; - -export const gameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterGroups/{id}/relationships/gameCenterLeaderboardSets' -}); }; - -export const gameCenterGroupsGameCenterLeaderboardSetsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups/{id}/gameCenterLeaderboardSets' -}); }; - -export const gameCenterGroupsGameCenterLeaderboardsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups/{id}/relationships/gameCenterLeaderboards' -}); }; - -export const gameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterGroups/{id}/relationships/gameCenterLeaderboards' -}); }; - -export const gameCenterGroupsGameCenterLeaderboardsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterGroups/{id}/gameCenterLeaderboards' -}); }; - -export const gameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardLocalizations/{id}/gameCenterLeaderboardImage' -}); }; - -export const gameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSetLocalizations/{id}/gameCenterLeaderboardSetImage' -}); }; - -export const gameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSetMemberLocalizations/{id}/gameCenterLeaderboard' -}); }; - -export const gameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSetMemberLocalizations/{id}/gameCenterLeaderboardSet' -}); }; - -export const gameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/relationships/gameCenterLeaderboards' -}); }; - -export const gameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/relationships/gameCenterLeaderboards' -}); }; - -export const gameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/relationships/gameCenterLeaderboards' -}); }; - -export const gameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/relationships/gameCenterLeaderboards' -}); }; - -export const gameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/gameCenterLeaderboards' -}); }; - -export const gameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/relationships/groupLeaderboardSet' -}); }; - -export const gameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/relationships/groupLeaderboardSet' -}); }; - -export const gameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/groupLeaderboardSet' -}); }; - -export const gameCenterLeaderboardSetsLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/localizations' -}); }; - -export const gameCenterLeaderboardSetsReleasesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboardSets/{id}/releases' -}); }; - -export const gameCenterLeaderboardsGroupLeaderboardGetToOneRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboards/{id}/relationships/groupLeaderboard' -}); }; - -export const gameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/gameCenterLeaderboards/{id}/relationships/groupLeaderboard' -}); }; - -export const gameCenterLeaderboardsGroupLeaderboardGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboards/{id}/groupLeaderboard' -}); }; - -export const gameCenterLeaderboardsLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboards/{id}/localizations' -}); }; - -export const gameCenterLeaderboardsReleasesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterLeaderboards/{id}/releases' -}); }; - -export const gameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSets/{id}/matchmakingQueues' -}); }; - -export const gameCenterMatchmakingRuleSetsRulesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSets/{id}/rules' -}); }; - -export const gameCenterMatchmakingRuleSetsTeamsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingRuleSets/{id}/teams' -}); }; - -export const inAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchaseAvailabilities/{id}/availableTerritories' -}); }; - -export const inAppPurchasePriceSchedulesAutomaticPricesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchasePriceSchedules/{id}/automaticPrices' -}); }; - -export const inAppPurchasePriceSchedulesBaseTerritoryGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchasePriceSchedules/{id}/baseTerritory' -}); }; - -export const inAppPurchasePriceSchedulesManualPricesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/inAppPurchasePriceSchedules/{id}/manualPrices' -}); }; - -export const inAppPurchasesV2AppStoreReviewScreenshotGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}/appStoreReviewScreenshot' -}); }; - -export const inAppPurchasesV2ContentGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}/content' -}); }; - -export const inAppPurchasesV2IapPriceScheduleGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}/iapPriceSchedule' -}); }; - -export const inAppPurchasesV2ImagesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}/images' -}); }; - -export const inAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}/inAppPurchaseAvailability' -}); }; - -export const inAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}/inAppPurchaseLocalizations' -}); }; - -export const inAppPurchasesV2PricePointsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}/pricePoints' -}); }; - -export const inAppPurchasesV2PromotedPurchaseGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v2/inAppPurchases/{id}/promotedPurchase' -}); }; - -export const preReleaseVersionsAppGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/preReleaseVersions/{id}/app' -}); }; - -export const preReleaseVersionsBuildsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/preReleaseVersions/{id}/builds' -}); }; - -export const profilesBundleIdGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/profiles/{id}/bundleId' -}); }; - -export const profilesCertificatesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/profiles/{id}/certificates' -}); }; - -export const profilesDevicesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/profiles/{id}/devices' -}); }; - -/** - * @deprecated - */ -export const promotedPurchasesPromotionImagesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/promotedPurchases/{id}/promotionImages' -}); }; - -export const reviewSubmissionsItemsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/reviewSubmissions/{id}/items' -}); }; - -export const scmProvidersRepositoriesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmProviders/{id}/repositories' -}); }; - -export const scmRepositoriesGitReferencesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmRepositories/{id}/gitReferences' -}); }; - -export const scmRepositoriesPullRequestsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/scmRepositories/{id}/pullRequests' -}); }; - -export const subscriptionAvailabilitiesAvailableTerritoriesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionAvailabilities/{id}/availableTerritories' -}); }; - -export const subscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionGroups/{id}/subscriptionGroupLocalizations' -}); }; - -export const subscriptionGroupsSubscriptionsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionGroups/{id}/subscriptions' -}); }; - -export const subscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionOfferCodeOneTimeUseCodes/{id}/values' -}); }; - -export const subscriptionOfferCodesCustomCodesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionOfferCodes/{id}/customCodes' -}); }; - -export const subscriptionOfferCodesOneTimeUseCodesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionOfferCodes/{id}/oneTimeUseCodes' -}); }; - -export const subscriptionOfferCodesPricesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionOfferCodes/{id}/prices' -}); }; - -export const subscriptionPricePointsEqualizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionPricePoints/{id}/equalizations' -}); }; - -export const subscriptionPromotionalOffersPricesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptionPromotionalOffers/{id}/prices' -}); }; - -export const subscriptionsAppStoreReviewScreenshotGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/appStoreReviewScreenshot' -}); }; - -export const subscriptionsImagesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/images' -}); }; - -export const subscriptionsIntroductoryOffersGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/relationships/introductoryOffers' -}); }; - -export const subscriptionsIntroductoryOffersDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptions/{id}/relationships/introductoryOffers' -}); }; - -export const subscriptionsIntroductoryOffersGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/introductoryOffers' -}); }; - -export const subscriptionsOfferCodesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/offerCodes' -}); }; - -export const subscriptionsPricePointsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/pricePoints' -}); }; - -export const subscriptionsPricesGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/relationships/prices' -}); }; - -export const subscriptionsPricesDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/subscriptions/{id}/relationships/prices' -}); }; - -export const subscriptionsPricesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/prices' -}); }; - -export const subscriptionsPromotedPurchaseGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/promotedPurchase' -}); }; - -export const subscriptionsPromotionalOffersGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/promotionalOffers' -}); }; - -export const subscriptionsSubscriptionAvailabilityGetToOneRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/subscriptionAvailability' -}); }; - -export const subscriptionsSubscriptionLocalizationsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/subscriptionLocalizations' -}); }; - -export const subscriptionsWinBackOffersGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/subscriptions/{id}/winBackOffers' -}); }; - -export const userInvitationsVisibleAppsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/userInvitations/{id}/visibleApps' -}); }; - -export const usersVisibleAppsGetToManyRelationship = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/users/{id}/relationships/visibleApps' -}); }; - -export const usersVisibleAppsCreateToManyRelationship = (options: Options) => { return (options?.client ?? client).post({ - ...options, - url: '/v1/users/{id}/relationships/visibleApps' -}); }; - -export const usersVisibleAppsReplaceToManyRelationship = (options: Options) => { return (options?.client ?? client).patch({ - ...options, - url: '/v1/users/{id}/relationships/visibleApps' -}); }; - -export const usersVisibleAppsDeleteToManyRelationship = (options: Options) => { return (options?.client ?? client).delete({ - ...options, - url: '/v1/users/{id}/relationships/visibleApps' -}); }; - -export const usersVisibleAppsGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/users/{id}/visibleApps' -}); }; - -export const winBackOffersPricesGetToManyRelated = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/winBackOffers/{id}/prices' -}); }; - -export const appsBetaTesterUsagesGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/apps/{id}/metrics/betaTesterUsages' -}); }; - -export const betaGroupsBetaTesterUsagesGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaGroups/{id}/metrics/betaTesterUsages' -}); }; - -export const betaTestersBetaTesterUsagesGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/betaTesters/{id}/metrics/betaTesterUsages' -}); }; - -export const buildsBetaBuildUsagesGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/builds/{id}/metrics/betaBuildUsages' -}); }; - -export const gameCenterDetailsClassicMatchmakingRequestsGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/metrics/classicMatchmakingRequests' -}); }; - -export const gameCenterDetailsRuleBasedMatchmakingRequestsGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterDetails/{id}/metrics/ruleBasedMatchmakingRequests' -}); }; - -export const gameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/experimentMatchmakingQueueSizes' -}); }; - -export const gameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/experimentMatchmakingRequests' -}); }; - -export const gameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingQueueSizes' -}); }; - -export const gameCenterMatchmakingQueuesMatchmakingRequestsGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingRequests' -}); }; - -export const gameCenterMatchmakingQueuesMatchmakingSessionsGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingSessions' -}); }; - -export const gameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingBooleanRuleResults' -}); }; - -export const gameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingNumberRuleResults' -}); }; - -export const gameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetrics = (options: Options) => { return (options?.client ?? client).get({ - ...options, - url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingRuleErrors' -}); }; \ No newline at end of file +export class ActorsService { + public static actorsGetCollection(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/actors' + }); + } + + public static actorsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/actors/{id}' + }); + } + +} + +export class AgeRatingDeclarationsService { + public static ageRatingDeclarationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/ageRatingDeclarations/{id}' + }); + } + +} + +export class AlternativeDistributionDomainsService { + public static alternativeDistributionDomainsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionDomains' + }); + } + + public static alternativeDistributionDomainsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/alternativeDistributionDomains' + }); + } + + public static alternativeDistributionDomainsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionDomains/{id}' + }); + } + + public static alternativeDistributionDomainsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/alternativeDistributionDomains/{id}' + }); + } + +} + +export class AlternativeDistributionKeysService { + public static alternativeDistributionKeysGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionKeys' + }); + } + + public static alternativeDistributionKeysCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/alternativeDistributionKeys' + }); + } + + public static alternativeDistributionKeysGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionKeys/{id}' + }); + } + + public static alternativeDistributionKeysDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/alternativeDistributionKeys/{id}' + }); + } + +} + +export class AlternativeDistributionPackageDeltasService { + public static alternativeDistributionPackageDeltasGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionPackageDeltas/{id}' + }); + } + +} + +export class AlternativeDistributionPackageVariantsService { + public static alternativeDistributionPackageVariantsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionPackageVariants/{id}' + }); + } + +} + +export class AlternativeDistributionPackageVersionsService { + public static alternativeDistributionPackageVersionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionPackageVersions/{id}' + }); + } + + public static alternativeDistributionPackageVersionsDeltasGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionPackageVersions/{id}/deltas' + }); + } + + public static alternativeDistributionPackageVersionsVariantsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionPackageVersions/{id}/variants' + }); + } + +} + +export class AlternativeDistributionPackagesService { + public static alternativeDistributionPackagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/alternativeDistributionPackages' + }); + } + + public static alternativeDistributionPackagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionPackages/{id}' + }); + } + + public static alternativeDistributionPackagesVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/alternativeDistributionPackages/{id}/versions' + }); + } + +} + +export class AnalyticsReportInstancesService { + public static analyticsReportInstancesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/analyticsReportInstances/{id}' + }); + } + + public static analyticsReportInstancesSegmentsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/analyticsReportInstances/{id}/segments' + }); + } + +} + +export class AnalyticsReportRequestsService { + public static analyticsReportRequestsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/analyticsReportRequests' + }); + } + + public static analyticsReportRequestsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/analyticsReportRequests/{id}' + }); + } + + public static analyticsReportRequestsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/analyticsReportRequests/{id}' + }); + } + + public static analyticsReportRequestsReportsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/analyticsReportRequests/{id}/reports' + }); + } + +} + +export class AnalyticsReportSegmentsService { + public static analyticsReportSegmentsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/analyticsReportSegments/{id}' + }); + } + +} + +export class AnalyticsReportsService { + public static analyticsReportsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/analyticsReports/{id}' + }); + } + + public static analyticsReportsInstancesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/analyticsReports/{id}/instances' + }); + } + +} + +export class AppAvailabilitiesService { + public static appAvailabilitiesV2CreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v2/appAvailabilities' + }); + } + + public static appAvailabilitiesV2GetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/appAvailabilities/{id}' + }); + } + + public static appAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/appAvailabilities/{id}/territoryAvailabilities' + }); + } + +} + +export class AppCategoriesService { + public static appCategoriesGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCategories' + }); + } + + public static appCategoriesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCategories/{id}' + }); + } + + public static appCategoriesParentGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCategories/{id}/parent' + }); + } + + public static appCategoriesSubcategoriesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCategories/{id}/subcategories' + }); + } + +} + +export class AppClipAdvancedExperienceImagesService { + public static appClipAdvancedExperienceImagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appClipAdvancedExperienceImages' + }); + } + + public static appClipAdvancedExperienceImagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipAdvancedExperienceImages/{id}' + }); + } + + public static appClipAdvancedExperienceImagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appClipAdvancedExperienceImages/{id}' + }); + } + +} + +export class AppClipAdvancedExperiencesService { + public static appClipAdvancedExperiencesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appClipAdvancedExperiences' + }); + } + + public static appClipAdvancedExperiencesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipAdvancedExperiences/{id}' + }); + } + + public static appClipAdvancedExperiencesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appClipAdvancedExperiences/{id}' + }); + } + +} + +export class AppClipAppStoreReviewDetailsService { + public static appClipAppStoreReviewDetailsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appClipAppStoreReviewDetails' + }); + } + + public static appClipAppStoreReviewDetailsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipAppStoreReviewDetails/{id}' + }); + } + + public static appClipAppStoreReviewDetailsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appClipAppStoreReviewDetails/{id}' + }); + } + +} + +export class AppClipDefaultExperienceLocalizationsService { + public static appClipDefaultExperienceLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appClipDefaultExperienceLocalizations' + }); + } + + public static appClipDefaultExperienceLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipDefaultExperienceLocalizations/{id}' + }); + } + + public static appClipDefaultExperienceLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appClipDefaultExperienceLocalizations/{id}' + }); + } + + public static appClipDefaultExperienceLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appClipDefaultExperienceLocalizations/{id}' + }); + } + + public static appClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipDefaultExperienceLocalizations/{id}/appClipHeaderImage' + }); + } + +} + +export class AppClipDefaultExperiencesService { + public static appClipDefaultExperiencesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appClipDefaultExperiences' + }); + } + + public static appClipDefaultExperiencesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipDefaultExperiences/{id}' + }); + } + + public static appClipDefaultExperiencesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appClipDefaultExperiences/{id}' + }); + } + + public static appClipDefaultExperiencesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appClipDefaultExperiences/{id}' + }); + } + + public static appClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipDefaultExperiences/{id}/appClipAppStoreReviewDetail' + }); + } + + public static appClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipDefaultExperiences/{id}/appClipDefaultExperienceLocalizations' + }); + } + + public static appClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipDefaultExperiences/{id}/relationships/releaseWithAppStoreVersion' + }); + } + + public static appClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appClipDefaultExperiences/{id}/relationships/releaseWithAppStoreVersion' + }); + } + + public static appClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipDefaultExperiences/{id}/releaseWithAppStoreVersion' + }); + } + +} + +export class AppClipHeaderImagesService { + public static appClipHeaderImagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appClipHeaderImages' + }); + } + + public static appClipHeaderImagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClipHeaderImages/{id}' + }); + } + + public static appClipHeaderImagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appClipHeaderImages/{id}' + }); + } + + public static appClipHeaderImagesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appClipHeaderImages/{id}' + }); + } + +} + +export class AppClipsService { + public static appClipsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClips/{id}' + }); + } + + public static appClipsAppClipAdvancedExperiencesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClips/{id}/appClipAdvancedExperiences' + }); + } + + public static appClipsAppClipDefaultExperiencesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appClips/{id}/appClipDefaultExperiences' + }); + } + +} + +export class AppCustomProductPageLocalizationsService { + public static appCustomProductPageLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appCustomProductPageLocalizations' + }); + } + + public static appCustomProductPageLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCustomProductPageLocalizations/{id}' + }); + } + + public static appCustomProductPageLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appCustomProductPageLocalizations/{id}' + }); + } + + public static appCustomProductPageLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appCustomProductPageLocalizations/{id}' + }); + } + + public static appCustomProductPageLocalizationsAppPreviewSetsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCustomProductPageLocalizations/{id}/appPreviewSets' + }); + } + + public static appCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCustomProductPageLocalizations/{id}/appScreenshotSets' + }); + } + +} + +export class AppCustomProductPageVersionsService { + public static appCustomProductPageVersionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appCustomProductPageVersions' + }); + } + + public static appCustomProductPageVersionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCustomProductPageVersions/{id}' + }); + } + + public static appCustomProductPageVersionsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appCustomProductPageVersions/{id}' + }); + } + + public static appCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCustomProductPageVersions/{id}/appCustomProductPageLocalizations' + }); + } + +} + +export class AppCustomProductPagesService { + public static appCustomProductPagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appCustomProductPages' + }); + } + + public static appCustomProductPagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCustomProductPages/{id}' + }); + } + + public static appCustomProductPagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appCustomProductPages/{id}' + }); + } + + public static appCustomProductPagesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appCustomProductPages/{id}' + }); + } + + public static appCustomProductPagesAppCustomProductPageVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appCustomProductPages/{id}/appCustomProductPageVersions' + }); + } + +} + +export class AppEncryptionDeclarationDocumentsService { + public static appEncryptionDeclarationDocumentsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appEncryptionDeclarationDocuments' + }); + } + + public static appEncryptionDeclarationDocumentsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEncryptionDeclarationDocuments/{id}' + }); + } + + public static appEncryptionDeclarationDocumentsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appEncryptionDeclarationDocuments/{id}' + }); + } + +} + +export class AppEncryptionDeclarationsService { + public static appEncryptionDeclarationsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEncryptionDeclarations' + }); + } + + public static appEncryptionDeclarationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appEncryptionDeclarations' + }); + } + + public static appEncryptionDeclarationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEncryptionDeclarations/{id}' + }); + } + + /** + * @deprecated + */ + public static appEncryptionDeclarationsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEncryptionDeclarations/{id}/app' + }); + } + + public static appEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEncryptionDeclarations/{id}/appEncryptionDeclarationDocument' + }); + } + + /** + * @deprecated + */ + public static appEncryptionDeclarationsBuildsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appEncryptionDeclarations/{id}/relationships/builds' + }); + } + +} + +export class AppEventLocalizationsService { + public static appEventLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appEventLocalizations' + }); + } + + public static appEventLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEventLocalizations/{id}' + }); + } + + public static appEventLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appEventLocalizations/{id}' + }); + } + + public static appEventLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appEventLocalizations/{id}' + }); + } + + public static appEventLocalizationsAppEventScreenshotsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEventLocalizations/{id}/appEventScreenshots' + }); + } + + public static appEventLocalizationsAppEventVideoClipsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEventLocalizations/{id}/appEventVideoClips' + }); + } + +} + +export class AppEventScreenshotsService { + public static appEventScreenshotsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appEventScreenshots' + }); + } + + public static appEventScreenshotsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEventScreenshots/{id}' + }); + } + + public static appEventScreenshotsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appEventScreenshots/{id}' + }); + } + + public static appEventScreenshotsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appEventScreenshots/{id}' + }); + } + +} + +export class AppEventVideoClipsService { + public static appEventVideoClipsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appEventVideoClips' + }); + } + + public static appEventVideoClipsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEventVideoClips/{id}' + }); + } + + public static appEventVideoClipsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appEventVideoClips/{id}' + }); + } + + public static appEventVideoClipsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appEventVideoClips/{id}' + }); + } + +} + +export class AppEventsService { + public static appEventsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appEvents' + }); + } + + public static appEventsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEvents/{id}' + }); + } + + public static appEventsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appEvents/{id}' + }); + } + + public static appEventsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appEvents/{id}' + }); + } + + public static appEventsLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appEvents/{id}/localizations' + }); + } + +} + +export class AppInfoLocalizationsService { + public static appInfoLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appInfoLocalizations' + }); + } + + public static appInfoLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfoLocalizations/{id}' + }); + } + + public static appInfoLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appInfoLocalizations/{id}' + }); + } + + public static appInfoLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appInfoLocalizations/{id}' + }); + } + +} + +export class AppInfosService { + public static appInfosGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}' + }); + } + + public static appInfosUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appInfos/{id}' + }); + } + + public static appInfosAgeRatingDeclarationGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}/ageRatingDeclaration' + }); + } + + public static appInfosAppInfoLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}/appInfoLocalizations' + }); + } + + public static appInfosPrimaryCategoryGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}/primaryCategory' + }); + } + + public static appInfosPrimarySubcategoryOneGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}/primarySubcategoryOne' + }); + } + + public static appInfosPrimarySubcategoryTwoGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}/primarySubcategoryTwo' + }); + } + + public static appInfosSecondaryCategoryGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}/secondaryCategory' + }); + } + + public static appInfosSecondarySubcategoryOneGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}/secondarySubcategoryOne' + }); + } + + public static appInfosSecondarySubcategoryTwoGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appInfos/{id}/secondarySubcategoryTwo' + }); + } + +} + +export class AppPreviewSetsService { + public static appPreviewSetsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appPreviewSets' + }); + } + + public static appPreviewSetsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appPreviewSets/{id}' + }); + } + + public static appPreviewSetsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appPreviewSets/{id}' + }); + } + + public static appPreviewSetsAppPreviewsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appPreviewSets/{id}/relationships/appPreviews' + }); + } + + public static appPreviewSetsAppPreviewsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appPreviewSets/{id}/relationships/appPreviews' + }); + } + + public static appPreviewSetsAppPreviewsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appPreviewSets/{id}/appPreviews' + }); + } + +} + +export class AppPreviewsService { + public static appPreviewsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appPreviews' + }); + } + + public static appPreviewsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appPreviews/{id}' + }); + } + + public static appPreviewsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appPreviews/{id}' + }); + } + + public static appPreviewsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appPreviews/{id}' + }); + } + +} + +export class AppPricePointsService { + public static appPricePointsV3GetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v3/appPricePoints/{id}' + }); + } + + public static appPricePointsV3EqualizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v3/appPricePoints/{id}/equalizations' + }); + } + +} + +export class AppPriceSchedulesService { + public static appPriceSchedulesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appPriceSchedules' + }); + } + + public static appPriceSchedulesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appPriceSchedules/{id}' + }); + } + + public static appPriceSchedulesAutomaticPricesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appPriceSchedules/{id}/automaticPrices' + }); + } + + public static appPriceSchedulesBaseTerritoryGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appPriceSchedules/{id}/baseTerritory' + }); + } + + public static appPriceSchedulesManualPricesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appPriceSchedules/{id}/manualPrices' + }); + } + +} + +export class AppScreenshotSetsService { + public static appScreenshotSetsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appScreenshotSets' + }); + } + + public static appScreenshotSetsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appScreenshotSets/{id}' + }); + } + + public static appScreenshotSetsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appScreenshotSets/{id}' + }); + } + + public static appScreenshotSetsAppScreenshotsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appScreenshotSets/{id}/relationships/appScreenshots' + }); + } + + public static appScreenshotSetsAppScreenshotsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appScreenshotSets/{id}/relationships/appScreenshots' + }); + } + + public static appScreenshotSetsAppScreenshotsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appScreenshotSets/{id}/appScreenshots' + }); + } + +} + +export class AppScreenshotsService { + public static appScreenshotsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appScreenshots' + }); + } + + public static appScreenshotsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appScreenshots/{id}' + }); + } + + public static appScreenshotsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appScreenshots/{id}' + }); + } + + public static appScreenshotsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appScreenshots/{id}' + }); + } + +} + +export class AppStoreReviewAttachmentsService { + public static appStoreReviewAttachmentsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreReviewAttachments' + }); + } + + public static appStoreReviewAttachmentsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreReviewAttachments/{id}' + }); + } + + public static appStoreReviewAttachmentsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreReviewAttachments/{id}' + }); + } + + public static appStoreReviewAttachmentsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appStoreReviewAttachments/{id}' + }); + } + +} + +export class AppStoreReviewDetailsService { + public static appStoreReviewDetailsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreReviewDetails' + }); + } + + public static appStoreReviewDetailsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreReviewDetails/{id}' + }); + } + + public static appStoreReviewDetailsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreReviewDetails/{id}' + }); + } + + public static appStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreReviewDetails/{id}/appStoreReviewAttachments' + }); + } + +} + +export class AppStoreVersionExperimentTreatmentLocalizationsService { + public static appStoreVersionExperimentTreatmentLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersionExperimentTreatmentLocalizations' + }); + } + + public static appStoreVersionExperimentTreatmentLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionExperimentTreatmentLocalizations/{id}' + }); + } + + public static appStoreVersionExperimentTreatmentLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appStoreVersionExperimentTreatmentLocalizations/{id}' + }); + } + + public static appStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionExperimentTreatmentLocalizations/{id}/appPreviewSets' + }); + } + + public static appStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionExperimentTreatmentLocalizations/{id}/appScreenshotSets' + }); + } + +} + +export class AppStoreVersionExperimentTreatmentsService { + public static appStoreVersionExperimentTreatmentsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersionExperimentTreatments' + }); + } + + public static appStoreVersionExperimentTreatmentsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionExperimentTreatments/{id}' + }); + } + + public static appStoreVersionExperimentTreatmentsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreVersionExperimentTreatments/{id}' + }); + } + + public static appStoreVersionExperimentTreatmentsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appStoreVersionExperimentTreatments/{id}' + }); + } + + public static appStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionExperimentTreatments/{id}/appStoreVersionExperimentTreatmentLocalizations' + }); + } + +} + +export class AppStoreVersionExperimentsService { + public static appStoreVersionExperimentsV2CreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v2/appStoreVersionExperiments' + }); + } + + public static appStoreVersionExperimentsV2GetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/appStoreVersionExperiments/{id}' + }); + } + + public static appStoreVersionExperimentsV2UpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v2/appStoreVersionExperiments/{id}' + }); + } + + public static appStoreVersionExperimentsV2DeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v2/appStoreVersionExperiments/{id}' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionExperimentsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersionExperiments' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionExperimentsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionExperiments/{id}' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionExperimentsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreVersionExperiments/{id}' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionExperimentsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appStoreVersionExperiments/{id}' + }); + } + + public static appStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/appStoreVersionExperiments/{id}/appStoreVersionExperimentTreatments' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionExperiments/{id}/appStoreVersionExperimentTreatments' + }); + } + +} + +export class AppStoreVersionLocalizationsService { + public static appStoreVersionLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersionLocalizations' + }); + } + + public static appStoreVersionLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionLocalizations/{id}' + }); + } + + public static appStoreVersionLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreVersionLocalizations/{id}' + }); + } + + public static appStoreVersionLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appStoreVersionLocalizations/{id}' + }); + } + + public static appStoreVersionLocalizationsAppPreviewSetsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionLocalizations/{id}/appPreviewSets' + }); + } + + public static appStoreVersionLocalizationsAppScreenshotSetsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersionLocalizations/{id}/appScreenshotSets' + }); + } + +} + +export class AppStoreVersionPhasedReleasesService { + public static appStoreVersionPhasedReleasesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersionPhasedReleases' + }); + } + + public static appStoreVersionPhasedReleasesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreVersionPhasedReleases/{id}' + }); + } + + public static appStoreVersionPhasedReleasesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appStoreVersionPhasedReleases/{id}' + }); + } + +} + +export class AppStoreVersionPromotionsService { + public static appStoreVersionPromotionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersionPromotions' + }); + } + +} + +export class AppStoreVersionReleaseRequestsService { + public static appStoreVersionReleaseRequestsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersionReleaseRequests' + }); + } + +} + +export class AppStoreVersionSubmissionsService { + /** + * @deprecated + */ + public static appStoreVersionSubmissionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersionSubmissions' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionSubmissionsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appStoreVersionSubmissions/{id}' + }); + } + +} + +export class AppStoreVersionsService { + public static appStoreVersionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/appStoreVersions' + }); + } + + public static appStoreVersionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}' + }); + } + + public static appStoreVersionsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreVersions/{id}' + }); + } + + public static appStoreVersionsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/appStoreVersions/{id}' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionsAgeRatingDeclarationGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/ageRatingDeclaration' + }); + } + + public static appStoreVersionsAlternativeDistributionPackageGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/alternativeDistributionPackage' + }); + } + + public static appStoreVersionsAppClipDefaultExperienceGetToOneRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/relationships/appClipDefaultExperience' + }); + } + + public static appStoreVersionsAppClipDefaultExperienceUpdateToOneRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreVersions/{id}/relationships/appClipDefaultExperience' + }); + } + + public static appStoreVersionsAppClipDefaultExperienceGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/appClipDefaultExperience' + }); + } + + public static appStoreVersionsAppStoreReviewDetailGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/appStoreReviewDetail' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionsAppStoreVersionExperimentsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/appStoreVersionExperiments' + }); + } + + public static appStoreVersionsAppStoreVersionExperimentsV2GetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/appStoreVersionExperimentsV2' + }); + } + + public static appStoreVersionsAppStoreVersionLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/appStoreVersionLocalizations' + }); + } + + public static appStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/appStoreVersionPhasedRelease' + }); + } + + /** + * @deprecated + */ + public static appStoreVersionsAppStoreVersionSubmissionGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/appStoreVersionSubmission' + }); + } + + public static appStoreVersionsBuildGetToOneRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/relationships/build' + }); + } + + public static appStoreVersionsBuildUpdateToOneRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/appStoreVersions/{id}/relationships/build' + }); + } + + public static appStoreVersionsBuildGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/build' + }); + } + + public static appStoreVersionsCustomerReviewsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/customerReviews' + }); + } + + public static appStoreVersionsGameCenterAppVersionGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/gameCenterAppVersion' + }); + } + + public static appStoreVersionsRoutingAppCoverageGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/appStoreVersions/{id}/routingAppCoverage' + }); + } + +} + +export class AppsService { + public static appsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps' + }); + } + + public static appsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}' + }); + } + + public static appsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/apps/{id}' + }); + } + + public static appsAlternativeDistributionKeyGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/alternativeDistributionKey' + }); + } + + public static appsAnalyticsReportRequestsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/analyticsReportRequests' + }); + } + + public static appsAppAvailabilityV2GetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appAvailabilityV2' + }); + } + + public static appsAppClipsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appClips' + }); + } + + public static appsAppCustomProductPagesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appCustomProductPages' + }); + } + + public static appsAppEncryptionDeclarationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appEncryptionDeclarations' + }); + } + + public static appsAppEventsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appEvents' + }); + } + + public static appsAppInfosGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appInfos' + }); + } + + public static appsAppPricePointsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appPricePoints' + }); + } + + public static appsAppPriceScheduleGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appPriceSchedule' + }); + } + + public static appsAppStoreVersionExperimentsV2GetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appStoreVersionExperimentsV2' + }); + } + + public static appsAppStoreVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/appStoreVersions' + }); + } + + public static appsBetaAppLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/betaAppLocalizations' + }); + } + + public static appsBetaAppReviewDetailGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/betaAppReviewDetail' + }); + } + + public static appsBetaGroupsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/betaGroups' + }); + } + + public static appsBetaLicenseAgreementGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/betaLicenseAgreement' + }); + } + + public static appsBetaTestersDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/apps/{id}/relationships/betaTesters' + }); + } + + public static appsBuildsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/builds' + }); + } + + public static appsCiProductGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/ciProduct' + }); + } + + public static appsCustomerReviewsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/customerReviews' + }); + } + + public static appsEndUserLicenseAgreementGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/endUserLicenseAgreement' + }); + } + + public static appsGameCenterDetailGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/gameCenterDetail' + }); + } + + /** + * @deprecated + */ + public static appsGameCenterEnabledVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/gameCenterEnabledVersions' + }); + } + + /** + * @deprecated + */ + public static appsInAppPurchasesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/inAppPurchases' + }); + } + + public static appsInAppPurchasesV2GetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/inAppPurchasesV2' + }); + } + + public static appsMarketplaceSearchDetailGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/marketplaceSearchDetail' + }); + } + + public static appsPerfPowerMetricsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/perfPowerMetrics' + }); + } + + public static appsPreReleaseVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/preReleaseVersions' + }); + } + + public static appsPromotedPurchasesGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/relationships/promotedPurchases' + }); + } + + public static appsPromotedPurchasesReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/apps/{id}/relationships/promotedPurchases' + }); + } + + public static appsPromotedPurchasesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/promotedPurchases' + }); + } + + public static appsReviewSubmissionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/reviewSubmissions' + }); + } + + public static appsSubscriptionGracePeriodGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/subscriptionGracePeriod' + }); + } + + public static appsSubscriptionGroupsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/subscriptionGroups' + }); + } + + public static appsBetaTesterUsagesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/metrics/betaTesterUsages' + }); + } + +} + +export class BetaAppClipInvocationLocalizationsService { + public static betaAppClipInvocationLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaAppClipInvocationLocalizations' + }); + } + + public static betaAppClipInvocationLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/betaAppClipInvocationLocalizations/{id}' + }); + } + + public static betaAppClipInvocationLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaAppClipInvocationLocalizations/{id}' + }); + } + +} + +export class BetaAppClipInvocationsService { + public static betaAppClipInvocationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaAppClipInvocations' + }); + } + + public static betaAppClipInvocationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppClipInvocations/{id}' + }); + } + + public static betaAppClipInvocationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/betaAppClipInvocations/{id}' + }); + } + + public static betaAppClipInvocationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaAppClipInvocations/{id}' + }); + } + +} + +export class BetaAppLocalizationsService { + public static betaAppLocalizationsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppLocalizations' + }); + } + + public static betaAppLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaAppLocalizations' + }); + } + + public static betaAppLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppLocalizations/{id}' + }); + } + + public static betaAppLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/betaAppLocalizations/{id}' + }); + } + + public static betaAppLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaAppLocalizations/{id}' + }); + } + + public static betaAppLocalizationsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppLocalizations/{id}/app' + }); + } + +} + +export class BetaAppReviewDetailsService { + public static betaAppReviewDetailsGetCollection(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppReviewDetails' + }); + } + + public static betaAppReviewDetailsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppReviewDetails/{id}' + }); + } + + public static betaAppReviewDetailsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/betaAppReviewDetails/{id}' + }); + } + + public static betaAppReviewDetailsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppReviewDetails/{id}/app' + }); + } + +} + +export class BetaAppReviewSubmissionsService { + public static betaAppReviewSubmissionsGetCollection(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppReviewSubmissions' + }); + } + + public static betaAppReviewSubmissionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaAppReviewSubmissions' + }); + } + + public static betaAppReviewSubmissionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppReviewSubmissions/{id}' + }); + } + + public static betaAppReviewSubmissionsBuildGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaAppReviewSubmissions/{id}/build' + }); + } + +} + +export class BetaBuildLocalizationsService { + public static betaBuildLocalizationsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaBuildLocalizations' + }); + } + + public static betaBuildLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaBuildLocalizations' + }); + } + + public static betaBuildLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaBuildLocalizations/{id}' + }); + } + + public static betaBuildLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/betaBuildLocalizations/{id}' + }); + } + + public static betaBuildLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaBuildLocalizations/{id}' + }); + } + + public static betaBuildLocalizationsBuildGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaBuildLocalizations/{id}/build' + }); + } + +} + +export class BetaGroupsService { + public static betaGroupsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups' + }); + } + + public static betaGroupsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaGroups' + }); + } + + public static betaGroupsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups/{id}' + }); + } + + public static betaGroupsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/betaGroups/{id}' + }); + } + + public static betaGroupsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaGroups/{id}' + }); + } + + public static betaGroupsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups/{id}/app' + }); + } + + public static betaGroupsBetaTestersGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups/{id}/relationships/betaTesters' + }); + } + + public static betaGroupsBetaTestersCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaGroups/{id}/relationships/betaTesters' + }); + } + + public static betaGroupsBetaTestersDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaGroups/{id}/relationships/betaTesters' + }); + } + + public static betaGroupsBetaTestersGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups/{id}/betaTesters' + }); + } + + public static betaGroupsBuildsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups/{id}/relationships/builds' + }); + } + + public static betaGroupsBuildsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaGroups/{id}/relationships/builds' + }); + } + + public static betaGroupsBuildsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaGroups/{id}/relationships/builds' + }); + } + + public static betaGroupsBuildsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups/{id}/builds' + }); + } + + public static betaGroupsBetaTesterUsagesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups/{id}/metrics/betaTesterUsages' + }); + } + +} + +export class BetaLicenseAgreementsService { + public static betaLicenseAgreementsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaLicenseAgreements' + }); + } + + public static betaLicenseAgreementsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaLicenseAgreements/{id}' + }); + } + + public static betaLicenseAgreementsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/betaLicenseAgreements/{id}' + }); + } + + public static betaLicenseAgreementsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaLicenseAgreements/{id}/app' + }); + } + +} + +export class BetaTesterInvitationsService { + public static betaTesterInvitationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaTesterInvitations' + }); + } + +} + +export class BetaTestersService { + public static betaTestersGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters' + }); + } + + public static betaTestersCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaTesters' + }); + } + + public static betaTestersGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}' + }); + } + + public static betaTestersDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaTesters/{id}' + }); + } + + public static betaTestersAppsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}/relationships/apps' + }); + } + + public static betaTestersAppsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaTesters/{id}/relationships/apps' + }); + } + + public static betaTestersAppsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}/apps' + }); + } + + public static betaTestersBetaGroupsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}/relationships/betaGroups' + }); + } + + public static betaTestersBetaGroupsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaTesters/{id}/relationships/betaGroups' + }); + } + + public static betaTestersBetaGroupsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaTesters/{id}/relationships/betaGroups' + }); + } + + public static betaTestersBetaGroupsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}/betaGroups' + }); + } + + public static betaTestersBuildsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}/relationships/builds' + }); + } + + public static betaTestersBuildsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/betaTesters/{id}/relationships/builds' + }); + } + + public static betaTestersBuildsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/betaTesters/{id}/relationships/builds' + }); + } + + public static betaTestersBuildsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}/builds' + }); + } + + public static betaTestersBetaTesterUsagesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}/metrics/betaTesterUsages' + }); + } + +} + +export class BuildBetaDetailsService { + public static buildBetaDetailsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/buildBetaDetails' + }); + } + + public static buildBetaDetailsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/buildBetaDetails/{id}' + }); + } + + public static buildBetaDetailsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/buildBetaDetails/{id}' + }); + } + + public static buildBetaDetailsBuildGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/buildBetaDetails/{id}/build' + }); + } + +} + +export class BuildBetaNotificationsService { + public static buildBetaNotificationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/buildBetaNotifications' + }); + } + +} + +export class BuildsService { + public static buildsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds' + }); + } + + public static buildsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}' + }); + } + + public static buildsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/builds/{id}' + }); + } + + public static buildsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/app' + }); + } + + public static buildsAppEncryptionDeclarationGetToOneRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/relationships/appEncryptionDeclaration' + }); + } + + public static buildsAppEncryptionDeclarationUpdateToOneRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/builds/{id}/relationships/appEncryptionDeclaration' + }); + } + + public static buildsAppEncryptionDeclarationGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/appEncryptionDeclaration' + }); + } + + public static buildsAppStoreVersionGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/appStoreVersion' + }); + } + + public static buildsBetaAppReviewSubmissionGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/betaAppReviewSubmission' + }); + } + + public static buildsBetaBuildLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/betaBuildLocalizations' + }); + } + + public static buildsBetaGroupsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/builds/{id}/relationships/betaGroups' + }); + } + + public static buildsBetaGroupsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/builds/{id}/relationships/betaGroups' + }); + } + + public static buildsBuildBetaDetailGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/buildBetaDetail' + }); + } + + public static buildsDiagnosticSignaturesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/diagnosticSignatures' + }); + } + + public static buildsIconsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/icons' + }); + } + + public static buildsIndividualTestersGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/relationships/individualTesters' + }); + } + + public static buildsIndividualTestersCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/builds/{id}/relationships/individualTesters' + }); + } + + public static buildsIndividualTestersDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/builds/{id}/relationships/individualTesters' + }); + } + + public static buildsIndividualTestersGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/individualTesters' + }); + } + + public static buildsPerfPowerMetricsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/perfPowerMetrics' + }); + } + + public static buildsPreReleaseVersionGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/preReleaseVersion' + }); + } + + public static buildsBetaBuildUsagesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/metrics/betaBuildUsages' + }); + } + +} + +export class BundleIdCapabilitiesService { + public static bundleIdCapabilitiesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/bundleIdCapabilities' + }); + } + + public static bundleIdCapabilitiesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/bundleIdCapabilities/{id}' + }); + } + + public static bundleIdCapabilitiesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/bundleIdCapabilities/{id}' + }); + } + +} + +export class BundleIdsService { + public static bundleIdsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/bundleIds' + }); + } + + public static bundleIdsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/bundleIds' + }); + } + + public static bundleIdsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/bundleIds/{id}' + }); + } + + public static bundleIdsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/bundleIds/{id}' + }); + } + + public static bundleIdsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/bundleIds/{id}' + }); + } + + public static bundleIdsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/bundleIds/{id}/app' + }); + } + + public static bundleIdsBundleIdCapabilitiesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/bundleIds/{id}/bundleIdCapabilities' + }); + } + + public static bundleIdsProfilesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/bundleIds/{id}/profiles' + }); + } + +} + +export class CertificatesService { + public static certificatesGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/certificates' + }); + } + + public static certificatesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/certificates' + }); + } + + public static certificatesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/certificates/{id}' + }); + } + + public static certificatesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/certificates/{id}' + }); + } + +} + +export class CiArtifactsService { + public static ciArtifactsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciArtifacts/{id}' + }); + } + +} + +export class CiBuildActionsService { + public static ciBuildActionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciBuildActions/{id}' + }); + } + + public static ciBuildActionsArtifactsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciBuildActions/{id}/artifacts' + }); + } + + public static ciBuildActionsBuildRunGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciBuildActions/{id}/buildRun' + }); + } + + public static ciBuildActionsIssuesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciBuildActions/{id}/issues' + }); + } + + public static ciBuildActionsTestResultsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciBuildActions/{id}/testResults' + }); + } + +} + +export class CiBuildRunsService { + public static ciBuildRunsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/ciBuildRuns' + }); + } + + public static ciBuildRunsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciBuildRuns/{id}' + }); + } + + public static ciBuildRunsActionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciBuildRuns/{id}/actions' + }); + } + + public static ciBuildRunsBuildsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciBuildRuns/{id}/builds' + }); + } + +} + +export class CiIssuesService { + public static ciIssuesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciIssues/{id}' + }); + } + +} + +export class CiMacOsVersionsService { + public static ciMacOsVersionsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciMacOsVersions' + }); + } + + public static ciMacOsVersionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciMacOsVersions/{id}' + }); + } + + public static ciMacOsVersionsXcodeVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciMacOsVersions/{id}/xcodeVersions' + }); + } + +} + +export class CiProductsService { + public static ciProductsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciProducts' + }); + } + + public static ciProductsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciProducts/{id}' + }); + } + + public static ciProductsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/ciProducts/{id}' + }); + } + + public static ciProductsAdditionalRepositoriesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciProducts/{id}/additionalRepositories' + }); + } + + public static ciProductsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciProducts/{id}/app' + }); + } + + public static ciProductsBuildRunsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciProducts/{id}/buildRuns' + }); + } + + public static ciProductsPrimaryRepositoriesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciProducts/{id}/primaryRepositories' + }); + } + + public static ciProductsWorkflowsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciProducts/{id}/workflows' + }); + } + +} + +export class CiTestResultsService { + public static ciTestResultsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciTestResults/{id}' + }); + } + +} + +export class CiWorkflowsService { + public static ciWorkflowsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/ciWorkflows' + }); + } + + public static ciWorkflowsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciWorkflows/{id}' + }); + } + + public static ciWorkflowsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/ciWorkflows/{id}' + }); + } + + public static ciWorkflowsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/ciWorkflows/{id}' + }); + } + + public static ciWorkflowsBuildRunsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciWorkflows/{id}/buildRuns' + }); + } + + public static ciWorkflowsRepositoryGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciWorkflows/{id}/repository' + }); + } + +} + +export class CiXcodeVersionsService { + public static ciXcodeVersionsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciXcodeVersions' + }); + } + + public static ciXcodeVersionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciXcodeVersions/{id}' + }); + } + + public static ciXcodeVersionsMacOsVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/ciXcodeVersions/{id}/macOsVersions' + }); + } + +} + +export class CustomerReviewResponsesService { + public static customerReviewResponsesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/customerReviewResponses' + }); + } + + public static customerReviewResponsesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/customerReviewResponses/{id}' + }); + } + + public static customerReviewResponsesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/customerReviewResponses/{id}' + }); + } + +} + +export class CustomerReviewsService { + public static customerReviewsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/customerReviews/{id}' + }); + } + + public static customerReviewsResponseGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/customerReviews/{id}/response' + }); + } + +} + +export class DevicesService { + public static devicesGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/devices' + }); + } + + public static devicesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/devices' + }); + } + + public static devicesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/devices/{id}' + }); + } + + public static devicesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/devices/{id}' + }); + } + +} + +export class EndAppAvailabilityPreOrdersService { + public static endAppAvailabilityPreOrdersCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/endAppAvailabilityPreOrders' + }); + } + +} + +export class EndUserLicenseAgreementsService { + public static endUserLicenseAgreementsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/endUserLicenseAgreements' + }); + } + + public static endUserLicenseAgreementsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/endUserLicenseAgreements/{id}' + }); + } + + public static endUserLicenseAgreementsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/endUserLicenseAgreements/{id}' + }); + } + + public static endUserLicenseAgreementsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/endUserLicenseAgreements/{id}' + }); + } + + public static endUserLicenseAgreementsTerritoriesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/endUserLicenseAgreements/{id}/territories' + }); + } + +} + +export class FinanceReportsService { + public static financeReportsGetCollection(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/financeReports' + }); + } + +} + +export class GameCenterAchievementImagesService { + public static gameCenterAchievementImagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterAchievementImages' + }); + } + + public static gameCenterAchievementImagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievementImages/{id}' + }); + } + + public static gameCenterAchievementImagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterAchievementImages/{id}' + }); + } + + public static gameCenterAchievementImagesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterAchievementImages/{id}' + }); + } + +} + +export class GameCenterAchievementLocalizationsService { + public static gameCenterAchievementLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterAchievementLocalizations' + }); + } + + public static gameCenterAchievementLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievementLocalizations/{id}' + }); + } + + public static gameCenterAchievementLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterAchievementLocalizations/{id}' + }); + } + + public static gameCenterAchievementLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterAchievementLocalizations/{id}' + }); + } + + public static gameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievementLocalizations/{id}/gameCenterAchievement' + }); + } + + public static gameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievementLocalizations/{id}/gameCenterAchievementImage' + }); + } + +} + +export class GameCenterAchievementReleasesService { + public static gameCenterAchievementReleasesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterAchievementReleases' + }); + } + + public static gameCenterAchievementReleasesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievementReleases/{id}' + }); + } + + public static gameCenterAchievementReleasesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterAchievementReleases/{id}' + }); + } + +} + +export class GameCenterAchievementsService { + public static gameCenterAchievementsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterAchievements' + }); + } + + public static gameCenterAchievementsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievements/{id}' + }); + } + + public static gameCenterAchievementsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterAchievements/{id}' + }); + } + + public static gameCenterAchievementsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterAchievements/{id}' + }); + } + + /** + * @deprecated + */ + public static gameCenterAchievementsGroupAchievementGetToOneRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievements/{id}/relationships/groupAchievement' + }); + } + + /** + * @deprecated + */ + public static gameCenterAchievementsGroupAchievementUpdateToOneRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterAchievements/{id}/relationships/groupAchievement' + }); + } + + /** + * @deprecated + */ + public static gameCenterAchievementsGroupAchievementGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievements/{id}/groupAchievement' + }); + } + + public static gameCenterAchievementsLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievements/{id}/localizations' + }); + } + + public static gameCenterAchievementsReleasesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAchievements/{id}/releases' + }); + } + +} + +export class GameCenterAppVersionsService { + public static gameCenterAppVersionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterAppVersions' + }); + } + + public static gameCenterAppVersionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAppVersions/{id}' + }); + } + + public static gameCenterAppVersionsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterAppVersions/{id}' + }); + } + + public static gameCenterAppVersionsAppStoreVersionGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAppVersions/{id}/appStoreVersion' + }); + } + + public static gameCenterAppVersionsCompatibilityVersionsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAppVersions/{id}/relationships/compatibilityVersions' + }); + } + + public static gameCenterAppVersionsCompatibilityVersionsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterAppVersions/{id}/relationships/compatibilityVersions' + }); + } + + public static gameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterAppVersions/{id}/relationships/compatibilityVersions' + }); + } + + public static gameCenterAppVersionsCompatibilityVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterAppVersions/{id}/compatibilityVersions' + }); + } + +} + +export class GameCenterDetailsService { + public static gameCenterDetailsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterDetails' + }); + } + + public static gameCenterDetailsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}' + }); + } + + public static gameCenterDetailsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterDetails/{id}' + }); + } + + public static gameCenterDetailsAchievementReleasesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/achievementReleases' + }); + } + + public static gameCenterDetailsGameCenterAchievementsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/relationships/gameCenterAchievements' + }); + } + + public static gameCenterDetailsGameCenterAchievementsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterDetails/{id}/relationships/gameCenterAchievements' + }); + } + + public static gameCenterDetailsGameCenterAchievementsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/gameCenterAchievements' + }); + } + + public static gameCenterDetailsGameCenterAppVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/gameCenterAppVersions' + }); + } + + public static gameCenterDetailsGameCenterGroupGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/gameCenterGroup' + }); + } + + public static gameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/relationships/gameCenterLeaderboardSets' + }); + } + + public static gameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterDetails/{id}/relationships/gameCenterLeaderboardSets' + }); + } + + public static gameCenterDetailsGameCenterLeaderboardSetsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/gameCenterLeaderboardSets' + }); + } + + public static gameCenterDetailsGameCenterLeaderboardsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/relationships/gameCenterLeaderboards' + }); + } + + public static gameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterDetails/{id}/relationships/gameCenterLeaderboards' + }); + } + + public static gameCenterDetailsGameCenterLeaderboardsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/gameCenterLeaderboards' + }); + } + + public static gameCenterDetailsLeaderboardReleasesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/leaderboardReleases' + }); + } + + public static gameCenterDetailsLeaderboardSetReleasesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/leaderboardSetReleases' + }); + } + + public static gameCenterDetailsClassicMatchmakingRequestsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/metrics/classicMatchmakingRequests' + }); + } + + public static gameCenterDetailsRuleBasedMatchmakingRequestsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/metrics/ruleBasedMatchmakingRequests' + }); + } + +} + +export class GameCenterGroupsService { + public static gameCenterGroupsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups' + }); + } + + public static gameCenterGroupsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterGroups' + }); + } + + public static gameCenterGroupsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups/{id}' + }); + } + + public static gameCenterGroupsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterGroups/{id}' + }); + } + + public static gameCenterGroupsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterGroups/{id}' + }); + } + + public static gameCenterGroupsGameCenterAchievementsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups/{id}/relationships/gameCenterAchievements' + }); + } + + public static gameCenterGroupsGameCenterAchievementsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterGroups/{id}/relationships/gameCenterAchievements' + }); + } + + public static gameCenterGroupsGameCenterAchievementsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups/{id}/gameCenterAchievements' + }); + } + + public static gameCenterGroupsGameCenterDetailsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups/{id}/gameCenterDetails' + }); + } + + public static gameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups/{id}/relationships/gameCenterLeaderboardSets' + }); + } + + public static gameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterGroups/{id}/relationships/gameCenterLeaderboardSets' + }); + } + + public static gameCenterGroupsGameCenterLeaderboardSetsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups/{id}/gameCenterLeaderboardSets' + }); + } + + public static gameCenterGroupsGameCenterLeaderboardsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups/{id}/relationships/gameCenterLeaderboards' + }); + } + + public static gameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterGroups/{id}/relationships/gameCenterLeaderboards' + }); + } + + public static gameCenterGroupsGameCenterLeaderboardsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterGroups/{id}/gameCenterLeaderboards' + }); + } + +} + +export class GameCenterLeaderboardEntrySubmissionsService { + public static gameCenterLeaderboardEntrySubmissionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardEntrySubmissions' + }); + } + +} + +export class GameCenterLeaderboardImagesService { + public static gameCenterLeaderboardImagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardImages' + }); + } + + public static gameCenterLeaderboardImagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardImages/{id}' + }); + } + + public static gameCenterLeaderboardImagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboardImages/{id}' + }); + } + + public static gameCenterLeaderboardImagesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardImages/{id}' + }); + } + +} + +export class GameCenterLeaderboardLocalizationsService { + public static gameCenterLeaderboardLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardLocalizations' + }); + } + + public static gameCenterLeaderboardLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardLocalizations/{id}' + }); + } + + public static gameCenterLeaderboardLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboardLocalizations/{id}' + }); + } + + public static gameCenterLeaderboardLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardLocalizations/{id}' + }); + } + + public static gameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardLocalizations/{id}/gameCenterLeaderboardImage' + }); + } + +} + +export class GameCenterLeaderboardReleasesService { + public static gameCenterLeaderboardReleasesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardReleases' + }); + } + + public static gameCenterLeaderboardReleasesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardReleases/{id}' + }); + } + + public static gameCenterLeaderboardReleasesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardReleases/{id}' + }); + } + +} + +export class GameCenterLeaderboardSetImagesService { + public static gameCenterLeaderboardSetImagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardSetImages' + }); + } + + public static gameCenterLeaderboardSetImagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSetImages/{id}' + }); + } + + public static gameCenterLeaderboardSetImagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboardSetImages/{id}' + }); + } + + public static gameCenterLeaderboardSetImagesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardSetImages/{id}' + }); + } + +} + +export class GameCenterLeaderboardSetLocalizationsService { + public static gameCenterLeaderboardSetLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardSetLocalizations' + }); + } + + public static gameCenterLeaderboardSetLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSetLocalizations/{id}' + }); + } + + public static gameCenterLeaderboardSetLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboardSetLocalizations/{id}' + }); + } + + public static gameCenterLeaderboardSetLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardSetLocalizations/{id}' + }); + } + + public static gameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSetLocalizations/{id}/gameCenterLeaderboardSetImage' + }); + } + +} + +export class GameCenterLeaderboardSetMemberLocalizationsService { + public static gameCenterLeaderboardSetMemberLocalizationsGetCollection(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSetMemberLocalizations' + }); + } + + public static gameCenterLeaderboardSetMemberLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardSetMemberLocalizations' + }); + } + + public static gameCenterLeaderboardSetMemberLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboardSetMemberLocalizations/{id}' + }); + } + + public static gameCenterLeaderboardSetMemberLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardSetMemberLocalizations/{id}' + }); + } + + public static gameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSetMemberLocalizations/{id}/gameCenterLeaderboard' + }); + } + + public static gameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSetMemberLocalizations/{id}/gameCenterLeaderboardSet' + }); + } + +} + +export class GameCenterLeaderboardSetReleasesService { + public static gameCenterLeaderboardSetReleasesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardSetReleases' + }); + } + + public static gameCenterLeaderboardSetReleasesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSetReleases/{id}' + }); + } + + public static gameCenterLeaderboardSetReleasesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardSetReleases/{id}' + }); + } + +} + +export class GameCenterLeaderboardSetsService { + public static gameCenterLeaderboardSetsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardSets' + }); + } + + public static gameCenterLeaderboardSetsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}' + }); + } + + public static gameCenterLeaderboardSetsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}' + }); + } + + public static gameCenterLeaderboardSetsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}' + }); + } + + public static gameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/relationships/gameCenterLeaderboards' + }); + } + + public static gameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/relationships/gameCenterLeaderboards' + }); + } + + public static gameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/relationships/gameCenterLeaderboards' + }); + } + + public static gameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/relationships/gameCenterLeaderboards' + }); + } + + public static gameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/gameCenterLeaderboards' + }); + } + + /** + * @deprecated + */ + public static gameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/relationships/groupLeaderboardSet' + }); + } + + /** + * @deprecated + */ + public static gameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/relationships/groupLeaderboardSet' + }); + } + + /** + * @deprecated + */ + public static gameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/groupLeaderboardSet' + }); + } + + public static gameCenterLeaderboardSetsLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/localizations' + }); + } + + public static gameCenterLeaderboardSetsReleasesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboardSets/{id}/releases' + }); + } + +} + +export class GameCenterLeaderboardsService { + public static gameCenterLeaderboardsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterLeaderboards' + }); + } + + public static gameCenterLeaderboardsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboards/{id}' + }); + } + + public static gameCenterLeaderboardsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboards/{id}' + }); + } + + public static gameCenterLeaderboardsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterLeaderboards/{id}' + }); + } + + /** + * @deprecated + */ + public static gameCenterLeaderboardsGroupLeaderboardGetToOneRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboards/{id}/relationships/groupLeaderboard' + }); + } + + /** + * @deprecated + */ + public static gameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterLeaderboards/{id}/relationships/groupLeaderboard' + }); + } + + /** + * @deprecated + */ + public static gameCenterLeaderboardsGroupLeaderboardGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboards/{id}/groupLeaderboard' + }); + } + + public static gameCenterLeaderboardsLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboards/{id}/localizations' + }); + } + + public static gameCenterLeaderboardsReleasesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterLeaderboards/{id}/releases' + }); + } + +} + +export class GameCenterMatchmakingQueuesService { + public static gameCenterMatchmakingQueuesGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues' + }); + } + + public static gameCenterMatchmakingQueuesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterMatchmakingQueues' + }); + } + + public static gameCenterMatchmakingQueuesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}' + }); + } + + public static gameCenterMatchmakingQueuesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}' + }); + } + + public static gameCenterMatchmakingQueuesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}' + }); + } + + public static gameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/experimentMatchmakingQueueSizes' + }); + } + + public static gameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/experimentMatchmakingRequests' + }); + } + + public static gameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingQueueSizes' + }); + } + + public static gameCenterMatchmakingQueuesMatchmakingRequestsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingRequests' + }); + } + + public static gameCenterMatchmakingQueuesMatchmakingSessionsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingSessions' + }); + } + +} + +export class GameCenterMatchmakingRuleSetTestsService { + public static gameCenterMatchmakingRuleSetTestsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSetTests' + }); + } + +} + +export class GameCenterMatchmakingRuleSetsService { + public static gameCenterMatchmakingRuleSetsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSets' + }); + } + + public static gameCenterMatchmakingRuleSetsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSets' + }); + } + + public static gameCenterMatchmakingRuleSetsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSets/{id}' + }); + } + + public static gameCenterMatchmakingRuleSetsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSets/{id}' + }); + } + + public static gameCenterMatchmakingRuleSetsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSets/{id}' + }); + } + + public static gameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSets/{id}/matchmakingQueues' + }); + } + + public static gameCenterMatchmakingRuleSetsRulesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSets/{id}/rules' + }); + } + + public static gameCenterMatchmakingRuleSetsTeamsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRuleSets/{id}/teams' + }); + } + +} + +export class GameCenterMatchmakingRulesService { + public static gameCenterMatchmakingRulesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterMatchmakingRules' + }); + } + + public static gameCenterMatchmakingRulesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterMatchmakingRules/{id}' + }); + } + + public static gameCenterMatchmakingRulesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterMatchmakingRules/{id}' + }); + } + + public static gameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingBooleanRuleResults' + }); + } + + public static gameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingNumberRuleResults' + }); + } + + public static gameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingRuleErrors' + }); + } + +} + +export class GameCenterMatchmakingTeamsService { + public static gameCenterMatchmakingTeamsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterMatchmakingTeams' + }); + } + + public static gameCenterMatchmakingTeamsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterMatchmakingTeams/{id}' + }); + } + + public static gameCenterMatchmakingTeamsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterMatchmakingTeams/{id}' + }); + } + +} + +export class GameCenterPlayerAchievementSubmissionsService { + public static gameCenterPlayerAchievementSubmissionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterPlayerAchievementSubmissions' + }); + } + +} + +export class InAppPurchaseAppStoreReviewScreenshotsService { + public static inAppPurchaseAppStoreReviewScreenshotsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/inAppPurchaseAppStoreReviewScreenshots' + }); + } + + public static inAppPurchaseAppStoreReviewScreenshotsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchaseAppStoreReviewScreenshots/{id}' + }); + } + + public static inAppPurchaseAppStoreReviewScreenshotsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/inAppPurchaseAppStoreReviewScreenshots/{id}' + }); + } + + public static inAppPurchaseAppStoreReviewScreenshotsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/inAppPurchaseAppStoreReviewScreenshots/{id}' + }); + } + +} + +export class InAppPurchaseAvailabilitiesService { + public static inAppPurchaseAvailabilitiesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/inAppPurchaseAvailabilities' + }); + } + + public static inAppPurchaseAvailabilitiesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchaseAvailabilities/{id}' + }); + } + + public static inAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchaseAvailabilities/{id}/availableTerritories' + }); + } + +} + +export class InAppPurchaseContentsService { + public static inAppPurchaseContentsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchaseContents/{id}' + }); + } + +} + +export class InAppPurchaseImagesService { + public static inAppPurchaseImagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/inAppPurchaseImages' + }); + } + + public static inAppPurchaseImagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchaseImages/{id}' + }); + } + + public static inAppPurchaseImagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/inAppPurchaseImages/{id}' + }); + } + + public static inAppPurchaseImagesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/inAppPurchaseImages/{id}' + }); + } + +} + +export class InAppPurchaseLocalizationsService { + public static inAppPurchaseLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/inAppPurchaseLocalizations' + }); + } + + public static inAppPurchaseLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchaseLocalizations/{id}' + }); + } + + public static inAppPurchaseLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/inAppPurchaseLocalizations/{id}' + }); + } + + public static inAppPurchaseLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/inAppPurchaseLocalizations/{id}' + }); + } + +} + +export class InAppPurchasePriceSchedulesService { + public static inAppPurchasePriceSchedulesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/inAppPurchasePriceSchedules' + }); + } + + public static inAppPurchasePriceSchedulesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchasePriceSchedules/{id}' + }); + } + + public static inAppPurchasePriceSchedulesAutomaticPricesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchasePriceSchedules/{id}/automaticPrices' + }); + } + + public static inAppPurchasePriceSchedulesBaseTerritoryGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchasePriceSchedules/{id}/baseTerritory' + }); + } + + public static inAppPurchasePriceSchedulesManualPricesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchasePriceSchedules/{id}/manualPrices' + }); + } + +} + +export class InAppPurchaseSubmissionsService { + public static inAppPurchaseSubmissionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/inAppPurchaseSubmissions' + }); + } + +} + +export class InAppPurchasesService { + /** + * @deprecated + */ + public static inAppPurchasesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchases/{id}' + }); + } + + public static inAppPurchasesV2CreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v2/inAppPurchases' + }); + } + + public static inAppPurchasesV2GetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}' + }); + } + + public static inAppPurchasesV2UpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v2/inAppPurchases/{id}' + }); + } + + public static inAppPurchasesV2DeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v2/inAppPurchases/{id}' + }); + } + + public static inAppPurchasesV2AppStoreReviewScreenshotGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}/appStoreReviewScreenshot' + }); + } + + public static inAppPurchasesV2ContentGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}/content' + }); + } + + public static inAppPurchasesV2IapPriceScheduleGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}/iapPriceSchedule' + }); + } + + public static inAppPurchasesV2ImagesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}/images' + }); + } + + public static inAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}/inAppPurchaseAvailability' + }); + } + + public static inAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}/inAppPurchaseLocalizations' + }); + } + + public static inAppPurchasesV2PricePointsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}/pricePoints' + }); + } + + public static inAppPurchasesV2PromotedPurchaseGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/inAppPurchases/{id}/promotedPurchase' + }); + } + +} + +export class MarketplaceDomainsService { + /** + * @deprecated + */ + public static marketplaceDomainsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/marketplaceDomains' + }); + } + + /** + * @deprecated + */ + public static marketplaceDomainsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/marketplaceDomains' + }); + } + + /** + * @deprecated + */ + public static marketplaceDomainsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/marketplaceDomains/{id}' + }); + } + + /** + * @deprecated + */ + public static marketplaceDomainsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/marketplaceDomains/{id}' + }); + } + +} + +export class MarketplaceSearchDetailsService { + public static marketplaceSearchDetailsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/marketplaceSearchDetails' + }); + } + + public static marketplaceSearchDetailsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/marketplaceSearchDetails/{id}' + }); + } + + public static marketplaceSearchDetailsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/marketplaceSearchDetails/{id}' + }); + } + +} + +export class MarketplaceWebhooksService { + public static marketplaceWebhooksGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/marketplaceWebhooks' + }); + } + + public static marketplaceWebhooksCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/marketplaceWebhooks' + }); + } + + public static marketplaceWebhooksUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/marketplaceWebhooks/{id}' + }); + } + + public static marketplaceWebhooksDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/marketplaceWebhooks/{id}' + }); + } + +} + +export class PreReleaseVersionsService { + public static preReleaseVersionsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/preReleaseVersions' + }); + } + + public static preReleaseVersionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/preReleaseVersions/{id}' + }); + } + + public static preReleaseVersionsAppGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/preReleaseVersions/{id}/app' + }); + } + + public static preReleaseVersionsBuildsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/preReleaseVersions/{id}/builds' + }); + } + +} + +export class ProfilesService { + public static profilesGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/profiles' + }); + } + + public static profilesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/profiles' + }); + } + + public static profilesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/profiles/{id}' + }); + } + + public static profilesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/profiles/{id}' + }); + } + + public static profilesBundleIdGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/profiles/{id}/bundleId' + }); + } + + public static profilesCertificatesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/profiles/{id}/certificates' + }); + } + + public static profilesDevicesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/profiles/{id}/devices' + }); + } + +} + +export class PromotedPurchaseImagesService { + /** + * @deprecated + */ + public static promotedPurchaseImagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/promotedPurchaseImages' + }); + } + + /** + * @deprecated + */ + public static promotedPurchaseImagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/promotedPurchaseImages/{id}' + }); + } + + /** + * @deprecated + */ + public static promotedPurchaseImagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/promotedPurchaseImages/{id}' + }); + } + + /** + * @deprecated + */ + public static promotedPurchaseImagesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/promotedPurchaseImages/{id}' + }); + } + +} + +export class PromotedPurchasesService { + public static promotedPurchasesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/promotedPurchases' + }); + } + + public static promotedPurchasesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/promotedPurchases/{id}' + }); + } + + public static promotedPurchasesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/promotedPurchases/{id}' + }); + } + + public static promotedPurchasesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/promotedPurchases/{id}' + }); + } + + /** + * @deprecated + */ + public static promotedPurchasesPromotionImagesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/promotedPurchases/{id}/promotionImages' + }); + } + +} + +export class ReviewSubmissionItemsService { + public static reviewSubmissionItemsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/reviewSubmissionItems' + }); + } + + public static reviewSubmissionItemsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/reviewSubmissionItems/{id}' + }); + } + + public static reviewSubmissionItemsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/reviewSubmissionItems/{id}' + }); + } + +} + +export class ReviewSubmissionsService { + public static reviewSubmissionsGetCollection(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/reviewSubmissions' + }); + } + + public static reviewSubmissionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/reviewSubmissions' + }); + } + + public static reviewSubmissionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/reviewSubmissions/{id}' + }); + } + + public static reviewSubmissionsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/reviewSubmissions/{id}' + }); + } + + public static reviewSubmissionsItemsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/reviewSubmissions/{id}/items' + }); + } + +} + +export class RoutingAppCoveragesService { + public static routingAppCoveragesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/routingAppCoverages' + }); + } + + public static routingAppCoveragesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/routingAppCoverages/{id}' + }); + } + + public static routingAppCoveragesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/routingAppCoverages/{id}' + }); + } + + public static routingAppCoveragesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/routingAppCoverages/{id}' + }); + } + +} + +export class SalesReportsService { + public static salesReportsGetCollection(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/salesReports' + }); + } + +} + +export class SandboxTestersService { + public static sandboxTestersV2GetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v2/sandboxTesters' + }); + } + + public static sandboxTestersV2UpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v2/sandboxTesters/{id}' + }); + } + +} + +export class SandboxTestersClearPurchaseHistoryRequestService { + public static sandboxTestersClearPurchaseHistoryRequestV2CreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v2/sandboxTestersClearPurchaseHistoryRequest' + }); + } + +} + +export class ScmGitReferencesService { + public static scmGitReferencesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmGitReferences/{id}' + }); + } + +} + +export class ScmProvidersService { + public static scmProvidersGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmProviders' + }); + } + + public static scmProvidersGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmProviders/{id}' + }); + } + + public static scmProvidersRepositoriesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmProviders/{id}/repositories' + }); + } + +} + +export class ScmPullRequestsService { + public static scmPullRequestsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmPullRequests/{id}' + }); + } + +} + +export class ScmRepositoriesService { + public static scmRepositoriesGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmRepositories' + }); + } + + public static scmRepositoriesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmRepositories/{id}' + }); + } + + public static scmRepositoriesGitReferencesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmRepositories/{id}/gitReferences' + }); + } + + public static scmRepositoriesPullRequestsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/scmRepositories/{id}/pullRequests' + }); + } + +} + +export class SubscriptionAppStoreReviewScreenshotsService { + public static subscriptionAppStoreReviewScreenshotsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionAppStoreReviewScreenshots' + }); + } + + public static subscriptionAppStoreReviewScreenshotsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionAppStoreReviewScreenshots/{id}' + }); + } + + public static subscriptionAppStoreReviewScreenshotsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionAppStoreReviewScreenshots/{id}' + }); + } + + public static subscriptionAppStoreReviewScreenshotsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptionAppStoreReviewScreenshots/{id}' + }); + } + +} + +export class SubscriptionAvailabilitiesService { + public static subscriptionAvailabilitiesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionAvailabilities' + }); + } + + public static subscriptionAvailabilitiesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionAvailabilities/{id}' + }); + } + + public static subscriptionAvailabilitiesAvailableTerritoriesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionAvailabilities/{id}/availableTerritories' + }); + } + +} + +export class SubscriptionGracePeriodsService { + public static subscriptionGracePeriodsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionGracePeriods/{id}' + }); + } + + public static subscriptionGracePeriodsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionGracePeriods/{id}' + }); + } + +} + +export class SubscriptionGroupLocalizationsService { + public static subscriptionGroupLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionGroupLocalizations' + }); + } + + public static subscriptionGroupLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionGroupLocalizations/{id}' + }); + } + + public static subscriptionGroupLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionGroupLocalizations/{id}' + }); + } + + public static subscriptionGroupLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptionGroupLocalizations/{id}' + }); + } + +} + +export class SubscriptionGroupSubmissionsService { + public static subscriptionGroupSubmissionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionGroupSubmissions' + }); + } + +} + +export class SubscriptionGroupsService { + public static subscriptionGroupsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionGroups' + }); + } + + public static subscriptionGroupsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionGroups/{id}' + }); + } + + public static subscriptionGroupsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionGroups/{id}' + }); + } + + public static subscriptionGroupsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptionGroups/{id}' + }); + } + + public static subscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionGroups/{id}/subscriptionGroupLocalizations' + }); + } + + public static subscriptionGroupsSubscriptionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionGroups/{id}/subscriptions' + }); + } + +} + +export class SubscriptionImagesService { + public static subscriptionImagesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionImages' + }); + } + + public static subscriptionImagesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionImages/{id}' + }); + } + + public static subscriptionImagesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionImages/{id}' + }); + } + + public static subscriptionImagesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptionImages/{id}' + }); + } + +} + +export class SubscriptionIntroductoryOffersService { + public static subscriptionIntroductoryOffersCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionIntroductoryOffers' + }); + } + + public static subscriptionIntroductoryOffersUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionIntroductoryOffers/{id}' + }); + } + + public static subscriptionIntroductoryOffersDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptionIntroductoryOffers/{id}' + }); + } + +} + +export class SubscriptionLocalizationsService { + public static subscriptionLocalizationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionLocalizations' + }); + } + + public static subscriptionLocalizationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionLocalizations/{id}' + }); + } + + public static subscriptionLocalizationsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionLocalizations/{id}' + }); + } + + public static subscriptionLocalizationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptionLocalizations/{id}' + }); + } + +} + +export class SubscriptionOfferCodeCustomCodesService { + public static subscriptionOfferCodeCustomCodesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionOfferCodeCustomCodes' + }); + } + + public static subscriptionOfferCodeCustomCodesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionOfferCodeCustomCodes/{id}' + }); + } + + public static subscriptionOfferCodeCustomCodesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionOfferCodeCustomCodes/{id}' + }); + } + +} + +export class SubscriptionOfferCodeOneTimeUseCodesService { + public static subscriptionOfferCodeOneTimeUseCodesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionOfferCodeOneTimeUseCodes' + }); + } + + public static subscriptionOfferCodeOneTimeUseCodesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionOfferCodeOneTimeUseCodes/{id}' + }); + } + + public static subscriptionOfferCodeOneTimeUseCodesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionOfferCodeOneTimeUseCodes/{id}' + }); + } + + public static subscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionOfferCodeOneTimeUseCodes/{id}/values' + }); + } + +} + +export class SubscriptionOfferCodesService { + public static subscriptionOfferCodesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionOfferCodes' + }); + } + + public static subscriptionOfferCodesGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionOfferCodes/{id}' + }); + } + + public static subscriptionOfferCodesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionOfferCodes/{id}' + }); + } + + public static subscriptionOfferCodesCustomCodesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionOfferCodes/{id}/customCodes' + }); + } + + public static subscriptionOfferCodesOneTimeUseCodesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionOfferCodes/{id}/oneTimeUseCodes' + }); + } + + public static subscriptionOfferCodesPricesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionOfferCodes/{id}/prices' + }); + } + +} + +export class SubscriptionPricePointsService { + public static subscriptionPricePointsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionPricePoints/{id}' + }); + } + + public static subscriptionPricePointsEqualizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionPricePoints/{id}/equalizations' + }); + } + +} + +export class SubscriptionPricesService { + public static subscriptionPricesCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionPrices' + }); + } + + public static subscriptionPricesDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptionPrices/{id}' + }); + } + +} + +export class SubscriptionPromotionalOffersService { + public static subscriptionPromotionalOffersCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionPromotionalOffers' + }); + } + + public static subscriptionPromotionalOffersGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionPromotionalOffers/{id}' + }); + } + + public static subscriptionPromotionalOffersUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptionPromotionalOffers/{id}' + }); + } + + public static subscriptionPromotionalOffersDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptionPromotionalOffers/{id}' + }); + } + + public static subscriptionPromotionalOffersPricesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptionPromotionalOffers/{id}/prices' + }); + } + +} + +export class SubscriptionSubmissionsService { + public static subscriptionSubmissionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptionSubmissions' + }); + } + +} + +export class SubscriptionsService { + public static subscriptionsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/subscriptions' + }); + } + + public static subscriptionsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}' + }); + } + + public static subscriptionsUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/subscriptions/{id}' + }); + } + + public static subscriptionsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptions/{id}' + }); + } + + public static subscriptionsAppStoreReviewScreenshotGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/appStoreReviewScreenshot' + }); + } + + public static subscriptionsImagesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/images' + }); + } + + public static subscriptionsIntroductoryOffersGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/relationships/introductoryOffers' + }); + } + + public static subscriptionsIntroductoryOffersDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptions/{id}/relationships/introductoryOffers' + }); + } + + public static subscriptionsIntroductoryOffersGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/introductoryOffers' + }); + } + + public static subscriptionsOfferCodesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/offerCodes' + }); + } + + public static subscriptionsPricePointsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/pricePoints' + }); + } + + public static subscriptionsPricesGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/relationships/prices' + }); + } + + public static subscriptionsPricesDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/subscriptions/{id}/relationships/prices' + }); + } + + public static subscriptionsPricesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/prices' + }); + } + + public static subscriptionsPromotedPurchaseGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/promotedPurchase' + }); + } + + public static subscriptionsPromotionalOffersGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/promotionalOffers' + }); + } + + public static subscriptionsSubscriptionAvailabilityGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/subscriptionAvailability' + }); + } + + public static subscriptionsSubscriptionLocalizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/subscriptionLocalizations' + }); + } + + public static subscriptionsWinBackOffersGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/subscriptions/{id}/winBackOffers' + }); + } + +} + +export class TerritoriesService { + public static territoriesGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/territories' + }); + } + +} + +export class TerritoryAvailabilitiesService { + public static territoryAvailabilitiesUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/territoryAvailabilities/{id}' + }); + } + +} + +export class UserInvitationsService { + public static userInvitationsGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/userInvitations' + }); + } + + public static userInvitationsCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/userInvitations' + }); + } + + public static userInvitationsGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/userInvitations/{id}' + }); + } + + public static userInvitationsDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/userInvitations/{id}' + }); + } + + public static userInvitationsVisibleAppsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/userInvitations/{id}/visibleApps' + }); + } + +} + +export class UsersService { + public static usersGetCollection(options?: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/users' + }); + } + + public static usersGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/users/{id}' + }); + } + + public static usersUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/users/{id}' + }); + } + + public static usersDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/users/{id}' + }); + } + + public static usersVisibleAppsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/users/{id}/relationships/visibleApps' + }); + } + + public static usersVisibleAppsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/users/{id}/relationships/visibleApps' + }); + } + + public static usersVisibleAppsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/users/{id}/relationships/visibleApps' + }); + } + + public static usersVisibleAppsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/users/{id}/relationships/visibleApps' + }); + } + + public static usersVisibleAppsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/users/{id}/visibleApps' + }); + } + +} + +export class WinBackOffersService { + public static winBackOffersCreateInstance(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/winBackOffers' + }); + } + + public static winBackOffersGetInstance(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/winBackOffers/{id}' + }); + } + + public static winBackOffersUpdateInstance(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/winBackOffers/{id}' + }); + } + + public static winBackOffersDeleteInstance(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/winBackOffers/{id}' + }); + } + + public static winBackOffersPricesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/winBackOffers/{id}/prices' + }); + } + +} + +export class BuildBundlesService { + public static buildBundlesAppClipDomainCacheStatusGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/buildBundles/{id}/appClipDomainCacheStatus' + }); + } + + public static buildBundlesAppClipDomainDebugStatusGetToOneRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/buildBundles/{id}/appClipDomainDebugStatus' + }); + } + + public static buildBundlesBetaAppClipInvocationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/buildBundles/{id}/betaAppClipInvocations' + }); + } + + public static buildBundlesBuildBundleFileSizesGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/buildBundles/{id}/buildBundleFileSizes' + }); + } + +} + +export class DiagnosticSignaturesService { + public static diagnosticSignaturesLogsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/diagnosticSignatures/{id}/logs' + }); + } + +} + +export class GameCenterEnabledVersionsService { + /** + * @deprecated + */ + public static gameCenterEnabledVersionsCompatibleVersionsGetToManyRelationship(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterEnabledVersions/{id}/relationships/compatibleVersions' + }); + } + + /** + * @deprecated + */ + public static gameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationship(options: Options) { + return (options?.client ?? client).post({ + ...options, + url: '/v1/gameCenterEnabledVersions/{id}/relationships/compatibleVersions' + }); + } + + /** + * @deprecated + */ + public static gameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationship(options: Options) { + return (options?.client ?? client).patch({ + ...options, + url: '/v1/gameCenterEnabledVersions/{id}/relationships/compatibleVersions' + }); + } + + /** + * @deprecated + */ + public static gameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationship(options: Options) { + return (options?.client ?? client).delete({ + ...options, + url: '/v1/gameCenterEnabledVersions/{id}/relationships/compatibleVersions' + }); + } + + /** + * @deprecated + */ + public static gameCenterEnabledVersionsCompatibleVersionsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterEnabledVersions/{id}/compatibleVersions' + }); + } + +} + +export class InAppPurchasePricePointsService { + public static inAppPurchasePricePointsEqualizationsGetToManyRelated(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/inAppPurchasePricePoints/{id}/equalizations' + }); + } + +} + +export class MetricsService { + public static appsBetaTesterUsagesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/apps/{id}/metrics/betaTesterUsages' + }); + } + + public static betaGroupsBetaTesterUsagesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaGroups/{id}/metrics/betaTesterUsages' + }); + } + + public static betaTestersBetaTesterUsagesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/betaTesters/{id}/metrics/betaTesterUsages' + }); + } + + public static buildsBetaBuildUsagesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/builds/{id}/metrics/betaBuildUsages' + }); + } + + public static gameCenterDetailsClassicMatchmakingRequestsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/metrics/classicMatchmakingRequests' + }); + } + + public static gameCenterDetailsRuleBasedMatchmakingRequestsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterDetails/{id}/metrics/ruleBasedMatchmakingRequests' + }); + } + + public static gameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/experimentMatchmakingQueueSizes' + }); + } + + public static gameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/experimentMatchmakingRequests' + }); + } + + public static gameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingQueueSizes' + }); + } + + public static gameCenterMatchmakingQueuesMatchmakingRequestsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingRequests' + }); + } + + public static gameCenterMatchmakingQueuesMatchmakingSessionsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingQueues/{id}/metrics/matchmakingSessions' + }); + } + + public static gameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingBooleanRuleResults' + }); + } + + public static gameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingNumberRuleResults' + }); + } + + public static gameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetrics(options: Options) { + return (options?.client ?? client).get({ + ...options, + url: '/v1/gameCenterMatchmakingRules/{id}/metrics/matchmakingRuleErrors' + }); + } + +} \ No newline at end of file diff --git a/src/app_store_connect_api/types.gen.ts b/src/app_store_connect_api/types.gen.ts index 00a5068..673140d 100644 --- a/src/app_store_connect_api/types.gen.ts +++ b/src/app_store_connect_api/types.gen.ts @@ -536,69 +536,6 @@ export type AppAvailabilityV2CreateRequest = { included?: Array; }; -/** - * @deprecated - */ -export type AppAvailability = { - type: 'appAvailabilities'; - id: string; - attributes?: { - availableInNewTerritories?: boolean; - }; - relationships?: { - app?: { - data?: { - type: 'apps'; - id: string; - }; - }; - availableTerritories?: { - links?: RelationshipLinks; - meta?: PagingInformation; - data?: Array<{ - type: 'territories'; - id: string; - }>; - }; - }; - links?: ResourceLinks; -}; - -/** - * @deprecated - */ -export type AppAvailabilityResponse = { - data: AppAvailability; - included?: Array<(App | Territory)>; - links: DocumentLinks; -}; - -/** - * @deprecated - */ -export type AppAvailabilityCreateRequest = { - data: { - type: 'appAvailabilities'; - attributes: { - availableInNewTerritories: boolean; - }; - relationships: { - app: { - data: { - type: 'apps'; - id: string; - }; - }; - availableTerritories: { - data: Array<{ - type: 'territories'; - id: string; - }>; - }; - }; - }; -}; - export type AppCategory = { type: 'appCategories'; id: string; @@ -1878,9 +1815,17 @@ export type AppEventVideoClip = { fileName?: string; previewFrameTimeCode?: string; videoUrl?: string; + previewFrameImage?: PreviewFrameImage; + /** + * @deprecated + */ previewImage?: ImageAsset; uploadOperations?: Array; + /** + * @deprecated + */ assetDeliveryState?: AppMediaAssetState; + videoDeliveryState?: AppMediaVideoState; appEventAssetType?: AppEventAssetType; }; relationships?: { @@ -2094,7 +2039,7 @@ export type AppInfoLocalizationCreateRequest = { type: 'appInfoLocalizations'; attributes: { locale: string; - name?: string; + name: string; subtitle?: string; privacyPolicyUrl?: string; privacyChoicesUrl?: string; @@ -2141,6 +2086,7 @@ export type AppInfo = { */ brazilAgeRating?: BrazilAgeRating; brazilAgeRatingV2?: 'SELF_RATED_L' | 'SELF_RATED_TEN' | 'SELF_RATED_TWELVE' | 'SELF_RATED_FOURTEEN' | 'SELF_RATED_SIXTEEN' | 'SELF_RATED_EIGHTEEN' | 'OFFICIAL_L' | 'OFFICIAL_TEN' | 'OFFICIAL_TWELVE' | 'OFFICIAL_FOURTEEN' | 'OFFICIAL_SIXTEEN' | 'OFFICIAL_EIGHTEEN'; + franceAgeRating?: 'EIGHTEEN'; koreaAgeRating?: 'ALL' | 'TWELVE' | 'FIFTEEN' | 'NINETEEN' | 'NOT_APPLICABLE'; kidsAgeBand?: KidsAgeBand; }; @@ -2220,6 +2166,8 @@ export type australiaAgeRating = 'FIFTEEN' | 'EIGHTEEN'; export type brazilAgeRatingV2 = 'SELF_RATED_L' | 'SELF_RATED_TEN' | 'SELF_RATED_TWELVE' | 'SELF_RATED_FOURTEEN' | 'SELF_RATED_SIXTEEN' | 'SELF_RATED_EIGHTEEN' | 'OFFICIAL_L' | 'OFFICIAL_TEN' | 'OFFICIAL_TWELVE' | 'OFFICIAL_FOURTEEN' | 'OFFICIAL_SIXTEEN' | 'OFFICIAL_EIGHTEEN'; +export type franceAgeRating = 'EIGHTEEN'; + export type koreaAgeRating = 'ALL' | 'TWELVE' | 'FIFTEEN' | 'NINETEEN' | 'NOT_APPLICABLE'; export type AppInfosResponse = { @@ -2280,71 +2228,6 @@ export type AppInfoUpdateRequest = { }; }; -/** - * @deprecated - */ -export type AppPreOrder = { - type: 'appPreOrders'; - id: string; - attributes?: { - preOrderAvailableDate?: string; - appReleaseDate?: string; - }; - relationships?: { - app?: { - data?: { - type: 'apps'; - id: string; - }; - }; - }; - links?: ResourceLinks; -}; - -export type type35 = 'appPreOrders'; - -/** - * @deprecated - */ -export type AppPreOrderResponse = { - data: AppPreOrder; - included?: Array; - links: DocumentLinks; -}; - -/** - * @deprecated - */ -export type AppPreOrderCreateRequest = { - data: { - type: 'appPreOrders'; - attributes?: { - appReleaseDate?: string; - }; - relationships: { - app: { - data: { - type: 'apps'; - id: string; - }; - }; - }; - }; -}; - -/** - * @deprecated - */ -export type AppPreOrderUpdateRequest = { - data: { - type: 'appPreOrders'; - id: string; - attributes?: { - appReleaseDate?: string; - }; - }; -}; - export type AppPreviewSet = { type: 'appPreviewSets'; id: string; @@ -2382,7 +2265,7 @@ export type AppPreviewSet = { links?: ResourceLinks; }; -export type type36 = 'appPreviewSets'; +export type type35 = 'appPreviewSets'; export type AppPreviewSetsResponse = { data: Array; @@ -2436,9 +2319,17 @@ export type AppPreview = { previewFrameTimeCode?: string; mimeType?: string; videoUrl?: string; + previewFrameImage?: PreviewFrameImage; + /** + * @deprecated + */ previewImage?: ImageAsset; uploadOperations?: Array; + /** + * @deprecated + */ assetDeliveryState?: AppMediaAssetState; + videoDeliveryState?: AppMediaVideoState; }; relationships?: { appPreviewSet?: { @@ -2451,7 +2342,7 @@ export type AppPreview = { links?: ResourceLinks; }; -export type type37 = 'appPreviews'; +export type type36 = 'appPreviews'; export type AppPreviewsResponse = { data: Array; @@ -2525,7 +2416,7 @@ export type AppPricePointV3 = { links?: ResourceLinks; }; -export type type38 = 'appPricePoints'; +export type type37 = 'appPricePoints'; export type AppPricePointsV3Response = { data: Array; @@ -2577,7 +2468,7 @@ export type AppPriceSchedule = { links?: ResourceLinks; }; -export type type39 = 'appPriceSchedules'; +export type type38 = 'appPriceSchedules'; export type AppPriceScheduleResponse = { data: AppPriceSchedule; @@ -2637,7 +2528,7 @@ export type AppPriceV2 = { links?: ResourceLinks; }; -export type type40 = 'appPrices'; +export type type39 = 'appPrices'; export type AppPriceV2InlineCreate = { type: 'appPrices'; @@ -2688,7 +2579,7 @@ export type AppScreenshotSet = { links?: ResourceLinks; }; -export type type41 = 'appScreenshotSets'; +export type type40 = 'appScreenshotSets'; export type AppScreenshotSetsResponse = { data: Array; @@ -2756,7 +2647,7 @@ export type AppScreenshot = { links?: ResourceLinks; }; -export type type42 = 'appScreenshots'; +export type type41 = 'appScreenshots'; export type AppScreenshotsResponse = { data: Array; @@ -2821,7 +2712,7 @@ export type AppStoreReviewAttachment = { links?: ResourceLinks; }; -export type type43 = 'appStoreReviewAttachments'; +export type type42 = 'appStoreReviewAttachments'; export type AppStoreReviewAttachmentsResponse = { data: Array; @@ -2897,7 +2788,7 @@ export type AppStoreReviewDetail = { links?: ResourceLinks; }; -export type type44 = 'appStoreReviewDetails'; +export type type43 = 'appStoreReviewDetails'; export type AppStoreReviewDetailResponse = { data: AppStoreReviewDetail; @@ -2979,7 +2870,7 @@ export type AppStoreVersionExperimentTreatmentLocalization = { links?: ResourceLinks; }; -export type type45 = 'appStoreVersionExperimentTreatmentLocalizations'; +export type type44 = 'appStoreVersionExperimentTreatmentLocalizations'; export type AppStoreVersionExperimentTreatmentLocalizationsResponse = { data: Array; @@ -3045,7 +2936,7 @@ export type AppStoreVersionExperimentTreatment = { links?: ResourceLinks; }; -export type type46 = 'appStoreVersionExperimentTreatments'; +export type type45 = 'appStoreVersionExperimentTreatments'; export type AppStoreVersionExperimentTreatmentsResponse = { data: Array; @@ -3139,7 +3030,7 @@ export type AppStoreVersionExperimentV2 = { links?: ResourceLinks; }; -export type type47 = 'appStoreVersionExperiments'; +export type type46 = 'appStoreVersionExperiments'; export type state4 = 'PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'COMPLETED' | 'STOPPED'; @@ -3314,7 +3205,7 @@ export type AppStoreVersionLocalization = { links?: ResourceLinks; }; -export type type48 = 'appStoreVersionLocalizations'; +export type type47 = 'appStoreVersionLocalizations'; export type AppStoreVersionLocalizationsResponse = { data: Array; @@ -3379,7 +3270,7 @@ export type AppStoreVersionPhasedRelease = { links?: ResourceLinks; }; -export type type49 = 'appStoreVersionPhasedReleases'; +export type type48 = 'appStoreVersionPhasedReleases'; export type AppStoreVersionPhasedReleaseResponse = { data: AppStoreVersionPhasedRelease; @@ -3419,7 +3310,7 @@ export type AppStoreVersionPromotion = { links?: ResourceLinks; }; -export type type50 = 'appStoreVersionPromotions'; +export type type49 = 'appStoreVersionPromotions'; export type AppStoreVersionPromotionResponse = { data: AppStoreVersionPromotion; @@ -3452,7 +3343,7 @@ export type AppStoreVersionReleaseRequest = { links?: ResourceLinks; }; -export type type51 = 'appStoreVersionReleaseRequests'; +export type type50 = 'appStoreVersionReleaseRequests'; export type AppStoreVersionReleaseRequestResponse = { data: AppStoreVersionReleaseRequest; @@ -3490,7 +3381,7 @@ export type AppStoreVersionSubmission = { links?: ResourceLinks; }; -export type type52 = 'appStoreVersionSubmissions'; +export type type51 = 'appStoreVersionSubmissions'; /** * @deprecated @@ -3640,7 +3531,7 @@ export type AppStoreVersion = { links?: ResourceLinks; }; -export type type53 = 'appStoreVersions'; +export type type52 = 'appStoreVersions'; export type reviewType = 'APP_STORE' | 'NOTARIZATION'; @@ -3837,19 +3728,9 @@ export type App = { id: string; }; }; - preOrder?: { - links?: RelationshipLinks; - data?: { - type: 'appPreOrders'; - id: string; - }; - }; appPriceSchedule?: { links?: RelationshipLinks; }; - appAvailability?: { - links?: RelationshipLinks; - }; appAvailabilityV2?: { links?: RelationshipLinks; }; @@ -3961,20 +3842,20 @@ export type App = { links?: ResourceLinks; }; -export type type54 = 'apps'; +export type type53 = 'apps'; export type contentRightsDeclaration = 'DOES_NOT_USE_THIRD_PARTY_CONTENT' | 'USES_THIRD_PARTY_CONTENT'; export type AppsResponse = { data: Array; - included?: Array<(AppEncryptionDeclaration | CiProduct | BetaGroup | AppStoreVersion | PrereleaseVersion | BetaAppLocalization | Build | BetaLicenseAgreement | BetaAppReviewDetail | AppInfo | AppClip | EndUserLicenseAgreement | AppPreOrder | InAppPurchase | SubscriptionGroup | GameCenterEnabledVersion | AppCustomProductPage | InAppPurchaseV2 | PromotedPurchase | AppEvent | ReviewSubmission | SubscriptionGracePeriod | GameCenterDetail | AppStoreVersionExperimentV2)>; + included?: Array<(AppEncryptionDeclaration | CiProduct | BetaGroup | AppStoreVersion | PrereleaseVersion | BetaAppLocalization | Build | BetaLicenseAgreement | BetaAppReviewDetail | AppInfo | AppClip | EndUserLicenseAgreement | InAppPurchase | SubscriptionGroup | GameCenterEnabledVersion | AppCustomProductPage | InAppPurchaseV2 | PromotedPurchase | AppEvent | ReviewSubmission | SubscriptionGracePeriod | GameCenterDetail | AppStoreVersionExperimentV2)>; links: PagedDocumentLinks; meta?: PagingInformation; }; export type AppResponse = { data: App; - included?: Array<(AppEncryptionDeclaration | CiProduct | BetaGroup | AppStoreVersion | PrereleaseVersion | BetaAppLocalization | Build | BetaLicenseAgreement | BetaAppReviewDetail | AppInfo | AppClip | EndUserLicenseAgreement | AppPreOrder | InAppPurchase | SubscriptionGroup | GameCenterEnabledVersion | AppCustomProductPage | InAppPurchaseV2 | PromotedPurchase | AppEvent | ReviewSubmission | SubscriptionGracePeriod | GameCenterDetail | AppStoreVersionExperimentV2)>; + included?: Array<(AppEncryptionDeclaration | CiProduct | BetaGroup | AppStoreVersion | PrereleaseVersion | BetaAppLocalization | Build | BetaLicenseAgreement | BetaAppReviewDetail | AppInfo | AppClip | EndUserLicenseAgreement | InAppPurchase | SubscriptionGroup | GameCenterEnabledVersion | AppCustomProductPage | InAppPurchaseV2 | PromotedPurchase | AppEvent | ReviewSubmission | SubscriptionGracePeriod | GameCenterDetail | AppStoreVersionExperimentV2)>; links: DocumentLinks; }; @@ -4005,7 +3886,7 @@ export type BetaAppClipInvocationLocalization = { links?: ResourceLinks; }; -export type type55 = 'betaAppClipInvocationLocalizations'; +export type type54 = 'betaAppClipInvocationLocalizations'; export type BetaAppClipInvocationLocalizationInlineCreate = { type: 'betaAppClipInvocationLocalizations'; @@ -4075,7 +3956,7 @@ export type BetaAppClipInvocation = { links?: ResourceLinks; }; -export type type56 = 'betaAppClipInvocations'; +export type type55 = 'betaAppClipInvocations'; export type BetaAppClipInvocationsResponse = { data: Array; @@ -4147,7 +4028,7 @@ export type BetaAppLocalization = { links?: ResourceLinks; }; -export type type57 = 'betaAppLocalizations'; +export type type56 = 'betaAppLocalizations'; export type BetaAppLocalizationsResponse = { data: Array; @@ -4223,7 +4104,7 @@ export type BetaAppReviewDetail = { links?: ResourceLinks; }; -export type type58 = 'betaAppReviewDetails'; +export type type57 = 'betaAppReviewDetails'; export type BetaAppReviewDetailsResponse = { data: Array; @@ -4274,7 +4155,7 @@ export type BetaAppReviewSubmission = { links?: ResourceLinks; }; -export type type59 = 'betaAppReviewSubmissions'; +export type type58 = 'betaAppReviewSubmissions'; export type BetaAppReviewSubmissionsResponse = { data: Array; @@ -4322,7 +4203,7 @@ export type BetaBuildLocalization = { links?: ResourceLinks; }; -export type type60 = 'betaBuildLocalizations'; +export type type59 = 'betaBuildLocalizations'; export type BetaBuildLocalizationsResponse = { data: Array; @@ -4409,7 +4290,7 @@ export type BetaGroup = { links?: ResourceLinks; }; -export type type61 = 'betaGroups'; +export type type60 = 'betaGroups'; export type BetaGroupsResponse = { data: Array; @@ -4492,7 +4373,7 @@ export type BetaLicenseAgreement = { links?: ResourceLinks; }; -export type type62 = 'betaLicenseAgreements'; +export type type61 = 'betaLicenseAgreements'; export type BetaLicenseAgreementsResponse = { data: Array; @@ -4523,7 +4404,7 @@ export type BetaTesterInvitation = { links?: ResourceLinks; }; -export type type63 = 'betaTesterInvitations'; +export type type62 = 'betaTesterInvitations'; export type BetaTesterInvitationResponse = { data: BetaTesterInvitation; @@ -4589,7 +4470,7 @@ export type BetaTester = { links?: ResourceLinks; }; -export type type64 = 'betaTesters'; +export type type63 = 'betaTesters'; export type BetaTestersResponse = { data: Array; @@ -4649,7 +4530,7 @@ export type BuildBetaDetail = { links?: ResourceLinks; }; -export type type65 = 'buildBetaDetails'; +export type type64 = 'buildBetaDetails'; export type BuildBetaDetailsResponse = { data: Array; @@ -4680,7 +4561,7 @@ export type BuildBetaNotification = { links?: ResourceLinks; }; -export type type66 = 'buildBetaNotifications'; +export type type65 = 'buildBetaNotifications'; export type BuildBetaNotificationResponse = { data: BuildBetaNotification; @@ -4713,7 +4594,7 @@ export type BuildBundleFileSize = { links?: ResourceLinks; }; -export type type67 = 'buildBundleFileSizes'; +export type type66 = 'buildBundleFileSizes'; export type BuildBundleFileSizesResponse = { data: Array; @@ -4782,7 +4663,7 @@ export type BuildBundle = { links?: ResourceLinks; }; -export type type68 = 'buildBundles'; +export type type67 = 'buildBundles'; export type bundleType = 'APP' | 'APP_CLIP'; @@ -4797,7 +4678,7 @@ export type BuildIcon = { links?: ResourceLinks; }; -export type type69 = 'buildIcons'; +export type type68 = 'buildIcons'; export type BuildIconsResponse = { data: Array; @@ -4913,7 +4794,7 @@ export type Build = { links?: ResourceLinks; }; -export type type70 = 'builds'; +export type type69 = 'builds'; export type processingState = 'PROCESSING' | 'FAILED' | 'INVALID' | 'VALID'; @@ -4959,7 +4840,7 @@ export type BundleIdCapability = { links?: ResourceLinks; }; -export type type71 = 'bundleIdCapabilities'; +export type type70 = 'bundleIdCapabilities'; export type BundleIdCapabilitiesResponse = { data: Array; @@ -5038,7 +4919,7 @@ export type BundleId = { links?: ResourceLinks; }; -export type type72 = 'bundleIds'; +export type type71 = 'bundleIds'; export type BundleIdsResponse = { data: Array; @@ -5090,7 +4971,7 @@ export type Certificate = { links?: ResourceLinks; }; -export type type73 = 'certificates'; +export type type72 = 'certificates'; export type CertificatesResponse = { data: Array; @@ -5125,7 +5006,7 @@ export type CiArtifact = { links?: ResourceLinks; }; -export type type74 = 'ciArtifacts'; +export type type73 = 'ciArtifacts'; export type fileType = 'ARCHIVE' | 'ARCHIVE_EXPORT' | 'LOG_BUNDLE' | 'RESULT_BUNDLE' | 'TEST_PRODUCTS' | 'XCODEBUILD_PRODUCTS' | 'STAPLED_NOTARIZED_ARCHIVE'; @@ -5174,7 +5055,7 @@ export type CiBuildAction = { links?: ResourceLinks; }; -export type type75 = 'ciBuildActions'; +export type type74 = 'ciBuildActions'; export type CiBuildActionsResponse = { data: Array; @@ -5264,7 +5145,7 @@ export type CiBuildRun = { links?: ResourceLinks; }; -export type type76 = 'ciBuildRuns'; +export type type75 = 'ciBuildRuns'; export type startReason = 'GIT_REF_CHANGE' | 'MANUAL' | 'MANUAL_REBUILD' | 'PULL_REQUEST_OPEN' | 'PULL_REQUEST_UPDATE' | 'SCHEDULE'; @@ -5330,7 +5211,7 @@ export type CiIssue = { links?: ResourceLinks; }; -export type type77 = 'ciIssues'; +export type type76 = 'ciIssues'; export type issueType = 'ANALYZER_WARNING' | 'ERROR' | 'TEST_FAILURE' | 'WARNING'; @@ -5365,7 +5246,7 @@ export type CiMacOsVersion = { links?: ResourceLinks; }; -export type type78 = 'ciMacOsVersions'; +export type type77 = 'ciMacOsVersions'; export type CiMacOsVersionsResponse = { data: Array; @@ -5423,7 +5304,7 @@ export type CiProduct = { links?: ResourceLinks; }; -export type type79 = 'ciProducts'; +export type type78 = 'ciProducts'; export type productType = 'APP' | 'FRAMEWORK'; @@ -5460,7 +5341,7 @@ export type CiTestResult = { links?: ResourceLinks; }; -export type type80 = 'ciTestResults'; +export type type79 = 'ciTestResults'; export type CiTestResultsResponse = { data: Array; @@ -5526,7 +5407,7 @@ export type CiWorkflow = { links?: ResourceLinks; }; -export type type81 = 'ciWorkflows'; +export type type80 = 'ciWorkflows'; export type CiWorkflowsResponse = { data: Array; @@ -5655,7 +5536,7 @@ export type CiXcodeVersion = { links?: ResourceLinks; }; -export type type82 = 'ciXcodeVersions'; +export type type81 = 'ciXcodeVersions'; export type CiXcodeVersionsResponse = { data: Array; @@ -5689,7 +5570,7 @@ export type CustomerReviewResponseV1 = { links?: ResourceLinks; }; -export type type83 = 'customerReviewResponses'; +export type type82 = 'customerReviewResponses'; export type state5 = 'PUBLISHED' | 'PENDING_PUBLISH'; @@ -5739,7 +5620,7 @@ export type CustomerReview = { links?: ResourceLinks; }; -export type type84 = 'customerReviews'; +export type type83 = 'customerReviews'; export type CustomerReviewsResponse = { data: Array; @@ -5769,7 +5650,7 @@ export type Device = { links?: ResourceLinks; }; -export type type85 = 'devices'; +export type type84 = 'devices'; export type deviceClass = 'APPLE_WATCH' | 'IPAD' | 'IPHONE' | 'IPOD' | 'APPLE_TV' | 'MAC'; @@ -5814,7 +5695,7 @@ export type DiagnosticLog = { links?: ResourceLinks; }; -export type type86 = 'diagnosticLogs'; +export type type85 = 'diagnosticLogs'; export type DiagnosticSignature = { type: 'diagnosticSignatures'; @@ -5833,7 +5714,7 @@ export type DiagnosticSignature = { links?: ResourceLinks; }; -export type type87 = 'diagnosticSignatures'; +export type type86 = 'diagnosticSignatures'; export type diagnosticType = 'DISK_WRITES' | 'HANGS' | 'LAUNCHES'; @@ -5849,7 +5730,7 @@ export type EndAppAvailabilityPreOrder = { links?: ResourceLinks; }; -export type type88 = 'endAppAvailabilityPreOrders'; +export type type87 = 'endAppAvailabilityPreOrders'; export type EndAppAvailabilityPreOrderResponse = { data: EndAppAvailabilityPreOrder; @@ -5895,7 +5776,7 @@ export type EndUserLicenseAgreement = { links?: ResourceLinks; }; -export type type89 = 'endUserLicenseAgreements'; +export type type88 = 'endUserLicenseAgreements'; export type EndUserLicenseAgreementResponse = { data: EndUserLicenseAgreement; @@ -5965,7 +5846,7 @@ export type GameCenterAchievementImage = { links?: ResourceLinks; }; -export type type90 = 'gameCenterAchievementImages'; +export type type89 = 'gameCenterAchievementImages'; export type GameCenterAchievementImageResponse = { data: GameCenterAchievementImage; @@ -6029,7 +5910,7 @@ export type GameCenterAchievementLocalization = { links?: ResourceLinks; }; -export type type91 = 'gameCenterAchievementLocalizations'; +export type type90 = 'gameCenterAchievementLocalizations'; export type GameCenterAchievementLocalizationsResponse = { data: Array; @@ -6099,7 +5980,7 @@ export type GameCenterAchievementRelease = { links?: ResourceLinks; }; -export type type92 = 'gameCenterAchievementReleases'; +export type type91 = 'gameCenterAchievementReleases'; export type GameCenterAchievementReleasesResponse = { data: Array; @@ -6158,6 +6039,9 @@ export type GameCenterAchievement = { id: string; }; }; + /** + * @deprecated + */ groupAchievement?: { links?: RelationshipLinks; data?: { @@ -6185,7 +6069,7 @@ export type GameCenterAchievement = { links?: ResourceLinks; }; -export type type93 = 'gameCenterAchievements'; +export type type92 = 'gameCenterAchievements'; export type GameCenterAchievementsResponse = { data: Array; @@ -6267,7 +6151,7 @@ export type GameCenterAppVersion = { links?: ResourceLinks; }; -export type type94 = 'gameCenterAppVersions'; +export type type93 = 'gameCenterAppVersions'; export type GameCenterAppVersionsResponse = { data: Array; @@ -6399,7 +6283,7 @@ export type GameCenterDetail = { links?: ResourceLinks; }; -export type type95 = 'gameCenterDetails'; +export type type94 = 'gameCenterDetails'; export type GameCenterDetailsResponse = { data: Array; @@ -6491,7 +6375,7 @@ export type GameCenterEnabledVersion = { links?: ResourceLinks; }; -export type type96 = 'gameCenterEnabledVersions'; +export type type95 = 'gameCenterEnabledVersions'; /** * @deprecated @@ -6546,7 +6430,7 @@ export type GameCenterGroup = { links?: ResourceLinks; }; -export type type97 = 'gameCenterGroups'; +export type type96 = 'gameCenterGroups'; export type GameCenterGroupsResponse = { data: Array; @@ -6595,7 +6479,7 @@ export type GameCenterLeaderboardEntrySubmission = { links?: ResourceLinks; }; -export type type98 = 'gameCenterLeaderboardEntrySubmissions'; +export type type97 = 'gameCenterLeaderboardEntrySubmissions'; export type GameCenterLeaderboardEntrySubmissionResponse = { data: GameCenterLeaderboardEntrySubmission; @@ -6638,7 +6522,7 @@ export type GameCenterLeaderboardImage = { links?: ResourceLinks; }; -export type type99 = 'gameCenterLeaderboardImages'; +export type type98 = 'gameCenterLeaderboardImages'; export type GameCenterLeaderboardImageResponse = { data: GameCenterLeaderboardImage; @@ -6702,7 +6586,7 @@ export type GameCenterLeaderboardLocalization = { links?: ResourceLinks; }; -export type type100 = 'gameCenterLeaderboardLocalizations'; +export type type99 = 'gameCenterLeaderboardLocalizations'; export type GameCenterLeaderboardLocalizationsResponse = { data: Array; @@ -6774,7 +6658,7 @@ export type GameCenterLeaderboardRelease = { links?: ResourceLinks; }; -export type type101 = 'gameCenterLeaderboardReleases'; +export type type100 = 'gameCenterLeaderboardReleases'; export type GameCenterLeaderboardReleasesResponse = { data: Array; @@ -6830,7 +6714,7 @@ export type GameCenterLeaderboardSetImage = { links?: ResourceLinks; }; -export type type102 = 'gameCenterLeaderboardSetImages'; +export type type101 = 'gameCenterLeaderboardSetImages'; export type GameCenterLeaderboardSetImageResponse = { data: GameCenterLeaderboardSetImage; @@ -6891,7 +6775,7 @@ export type GameCenterLeaderboardSetLocalization = { links?: ResourceLinks; }; -export type type103 = 'gameCenterLeaderboardSetLocalizations'; +export type type102 = 'gameCenterLeaderboardSetLocalizations'; export type GameCenterLeaderboardSetLocalizationsResponse = { data: Array; @@ -6960,7 +6844,7 @@ export type GameCenterLeaderboardSetMemberLocalization = { links?: ResourceLinks; }; -export type type104 = 'gameCenterLeaderboardSetMemberLocalizations'; +export type type103 = 'gameCenterLeaderboardSetMemberLocalizations'; export type GameCenterLeaderboardSetMemberLocalizationsResponse = { data: Array; @@ -7032,7 +6916,7 @@ export type GameCenterLeaderboardSetRelease = { links?: ResourceLinks; }; -export type type105 = 'gameCenterLeaderboardSetReleases'; +export type type104 = 'gameCenterLeaderboardSetReleases'; export type GameCenterLeaderboardSetReleasesResponse = { data: Array; @@ -7087,6 +6971,9 @@ export type GameCenterLeaderboardSet = { id: string; }; }; + /** + * @deprecated + */ groupLeaderboardSet?: { links?: RelationshipLinks; data?: { @@ -7122,7 +7009,7 @@ export type GameCenterLeaderboardSet = { links?: ResourceLinks; }; -export type type106 = 'gameCenterLeaderboardSets'; +export type type105 = 'gameCenterLeaderboardSets'; export type GameCenterLeaderboardSetsResponse = { data: Array; @@ -7206,6 +7093,9 @@ export type GameCenterLeaderboard = { id: string; }; }; + /** + * @deprecated + */ groupLeaderboard?: { links?: RelationshipLinks; data?: { @@ -7240,7 +7130,7 @@ export type GameCenterLeaderboard = { links?: ResourceLinks; }; -export type type107 = 'gameCenterLeaderboards'; +export type type106 = 'gameCenterLeaderboards'; export type submissionType = 'BEST_SCORE' | 'MOST_RECENT_SCORE'; @@ -7340,7 +7230,7 @@ export type GameCenterMatchmakingQueue = { links?: ResourceLinks; }; -export type type108 = 'gameCenterMatchmakingQueues'; +export type type107 = 'gameCenterMatchmakingQueues'; export type GameCenterMatchmakingQueuesResponse = { data: Array; @@ -7415,7 +7305,7 @@ export type GameCenterMatchmakingRuleSetTest = { links?: ResourceLinks; }; -export type type109 = 'gameCenterMatchmakingRuleSetTests'; +export type type108 = 'gameCenterMatchmakingRuleSetTests'; export type GameCenterMatchmakingRuleSetTestResponse = { data: GameCenterMatchmakingRuleSetTest; @@ -7481,7 +7371,7 @@ export type GameCenterMatchmakingRuleSet = { links?: ResourceLinks; }; -export type type110 = 'gameCenterMatchmakingRuleSets'; +export type type109 = 'gameCenterMatchmakingRuleSets'; export type GameCenterMatchmakingRuleSetsResponse = { data: Array; @@ -7532,7 +7422,7 @@ export type GameCenterMatchmakingRule = { links?: ResourceLinks; }; -export type type111 = 'gameCenterMatchmakingRules'; +export type type110 = 'gameCenterMatchmakingRules'; export type GameCenterMatchmakingRulesResponse = { data: Array; @@ -7589,7 +7479,7 @@ export type GameCenterMatchmakingTeam = { links?: ResourceLinks; }; -export type type112 = 'gameCenterMatchmakingTeams'; +export type type111 = 'gameCenterMatchmakingTeams'; export type GameCenterMatchmakingTeamsResponse = { data: Array; @@ -7641,7 +7531,7 @@ export type GameCenterMatchmakingTestPlayerPropertyInlineCreate = { }; }; -export type type113 = 'gameCenterMatchmakingTestPlayerProperties'; +export type type112 = 'gameCenterMatchmakingTestPlayerProperties'; export type GameCenterMatchmakingTestRequestInlineCreate = { type: 'gameCenterMatchmakingTestRequests'; @@ -7668,7 +7558,7 @@ export type GameCenterMatchmakingTestRequestInlineCreate = { }; }; -export type type114 = 'gameCenterMatchmakingTestRequests'; +export type type113 = 'gameCenterMatchmakingTestRequests'; export type locale = 'AR-SA' | 'CA-ES' | 'CS-CZ' | 'DA-DK' | 'DE-DE' | 'EL-GR' | 'EN-AU' | 'EN-GB' | 'EN-US' | 'EN-KY' | 'ES-ES' | 'ES-MX' | 'FI-FI' | 'FR-CA' | 'FR-FR' | 'HI-IN' | 'HR-HR' | 'HU-HU' | 'ID-ID' | 'IT-IT' | 'IW-IL' | 'JA-JP' | 'KO-KR' | 'MS-MY' | 'NL-NL' | 'NO-NO' | 'PL-PL' | 'PT-BR' | 'PT-PT' | 'RO-RO' | 'RU-RU' | 'SK-SK' | 'SV-SE' | 'TH-TH' | 'TR-TR' | 'UK-UA' | 'ZH-CN' | 'ZH-TW' | 'ZH-HK'; @@ -7686,7 +7576,7 @@ export type GameCenterPlayerAchievementSubmission = { links?: ResourceLinks; }; -export type type115 = 'gameCenterPlayerAchievementSubmissions'; +export type type114 = 'gameCenterPlayerAchievementSubmissions'; export type GameCenterPlayerAchievementSubmissionResponse = { data: GameCenterPlayerAchievementSubmission; @@ -7731,7 +7621,7 @@ export type InAppPurchaseAppStoreReviewScreenshot = { links?: ResourceLinks; }; -export type type116 = 'inAppPurchaseAppStoreReviewScreenshots'; +export type type115 = 'inAppPurchaseAppStoreReviewScreenshots'; export type InAppPurchaseAppStoreReviewScreenshotResponse = { data: InAppPurchaseAppStoreReviewScreenshot; @@ -7787,7 +7677,7 @@ export type InAppPurchaseAvailability = { links?: ResourceLinks; }; -export type type117 = 'inAppPurchaseAvailabilities'; +export type type116 = 'inAppPurchaseAvailabilities'; export type InAppPurchaseAvailabilityResponse = { data: InAppPurchaseAvailability; @@ -7838,7 +7728,7 @@ export type InAppPurchaseContent = { links?: ResourceLinks; }; -export type type118 = 'inAppPurchaseContents'; +export type type117 = 'inAppPurchaseContents'; export type InAppPurchaseContentResponse = { data: InAppPurchaseContent; @@ -7869,7 +7759,7 @@ export type InAppPurchaseImage = { links?: ResourceLinks; }; -export type type119 = 'inAppPurchaseImages'; +export type type118 = 'inAppPurchaseImages'; export type state6 = 'AWAITING_UPLOAD' | 'UPLOAD_COMPLETE' | 'FAILED' | 'PREPARE_FOR_SUBMISSION' | 'WAITING_FOR_REVIEW' | 'APPROVED' | 'REJECTED'; @@ -7935,7 +7825,7 @@ export type InAppPurchaseLocalization = { links?: ResourceLinks; }; -export type type120 = 'inAppPurchaseLocalizations'; +export type type119 = 'inAppPurchaseLocalizations'; export type state7 = 'PREPARE_FOR_SUBMISSION' | 'WAITING_FOR_REVIEW' | 'APPROVED' | 'REJECTED'; @@ -7996,11 +7886,14 @@ export type InAppPurchasePricePoint = { id: string; }; }; + equalizations?: { + links?: RelationshipLinks; + }; }; links?: ResourceLinks; }; -export type type121 = 'inAppPurchasePricePoints'; +export type type120 = 'inAppPurchasePricePoints'; export type InAppPurchasePricePointsResponse = { data: Array; @@ -8013,12 +7906,6 @@ export type InAppPurchasePriceSchedule = { type: 'inAppPurchasePriceSchedules'; id: string; relationships?: { - inAppPurchase?: { - data?: { - type: 'inAppPurchases'; - id: string; - }; - }; baseTerritory?: { links?: RelationshipLinks; data?: { @@ -8046,11 +7933,11 @@ export type InAppPurchasePriceSchedule = { links?: ResourceLinks; }; -export type type122 = 'inAppPurchasePriceSchedules'; +export type type121 = 'inAppPurchasePriceSchedules'; export type InAppPurchasePriceScheduleResponse = { data: InAppPurchasePriceSchedule; - included?: Array<(InAppPurchaseV2 | Territory | InAppPurchasePrice)>; + included?: Array<(Territory | InAppPurchasePrice)>; links: DocumentLinks; }; @@ -8106,7 +7993,7 @@ export type InAppPurchasePrice = { links?: ResourceLinks; }; -export type type123 = 'inAppPurchasePrices'; +export type type122 = 'inAppPurchasePrices'; export type InAppPurchasePriceInlineCreate = { type: 'inAppPurchasePrices'; @@ -8152,7 +8039,7 @@ export type InAppPurchaseSubmission = { links?: ResourceLinks; }; -export type type124 = 'inAppPurchaseSubmissions'; +export type type123 = 'inAppPurchaseSubmissions'; export type InAppPurchaseSubmissionResponse = { data: InAppPurchaseSubmission; @@ -8198,7 +8085,7 @@ export type InAppPurchase = { links?: ResourceLinks; }; -export type type125 = 'inAppPurchases'; +export type type124 = 'inAppPurchases'; export type inAppPurchaseType = 'AUTOMATICALLY_RENEWABLE_SUBSCRIPTION' | 'NON_CONSUMABLE' | 'CONSUMABLE' | 'NON_RENEWING_SUBSCRIPTION' | 'FREE_SUBSCRIPTION'; @@ -8359,7 +8246,7 @@ export type MarketplaceDomain = { links?: ResourceLinks; }; -export type type126 = 'marketplaceDomains'; +export type type125 = 'marketplaceDomains'; /** * @deprecated @@ -8400,7 +8287,7 @@ export type MarketplaceSearchDetail = { links?: ResourceLinks; }; -export type type127 = 'marketplaceSearchDetails'; +export type type126 = 'marketplaceSearchDetails'; export type MarketplaceSearchDetailResponse = { data: MarketplaceSearchDetail; @@ -8443,7 +8330,7 @@ export type MarketplaceWebhook = { links?: ResourceLinks; }; -export type type128 = 'marketplaceWebhooks'; +export type type127 = 'marketplaceWebhooks'; export type MarketplaceWebhooksResponse = { data: Array; @@ -8488,7 +8375,7 @@ export type PerfPowerMetric = { links?: ResourceLinks; }; -export type type129 = 'perfPowerMetrics'; +export type type128 = 'perfPowerMetrics'; export type platform = 'IOS'; @@ -8521,7 +8408,7 @@ export type PrereleaseVersion = { links?: ResourceLinks; }; -export type type130 = 'preReleaseVersions'; +export type type129 = 'preReleaseVersions'; export type PreReleaseVersionsResponse = { data: Array; @@ -8577,7 +8464,7 @@ export type Profile = { links?: ResourceLinks; }; -export type type131 = 'profiles'; +export type type130 = 'profiles'; export type profileType = 'IOS_APP_DEVELOPMENT' | 'IOS_APP_STORE' | 'IOS_APP_ADHOC' | 'IOS_APP_INHOUSE' | 'MAC_APP_DEVELOPMENT' | 'MAC_APP_STORE' | 'MAC_APP_DIRECT' | 'TVOS_APP_DEVELOPMENT' | 'TVOS_APP_STORE' | 'TVOS_APP_ADHOC' | 'TVOS_APP_INHOUSE' | 'MAC_CATALYST_APP_DEVELOPMENT' | 'MAC_CATALYST_APP_STORE' | 'MAC_CATALYST_APP_DIRECT'; @@ -8653,7 +8540,7 @@ export type PromotedPurchaseImage = { links?: ResourceLinks; }; -export type type132 = 'promotedPurchaseImages'; +export type type131 = 'promotedPurchaseImages'; /** * @deprecated @@ -8745,7 +8632,7 @@ export type PromotedPurchase = { links?: ResourceLinks; }; -export type type133 = 'promotedPurchases'; +export type type132 = 'promotedPurchases'; export type state9 = 'APPROVED' | 'IN_REVIEW' | 'PREPARE_FOR_SUBMISSION' | 'REJECTED'; @@ -8844,7 +8731,7 @@ export type ReviewSubmissionItem = { links?: ResourceLinks; }; -export type type134 = 'reviewSubmissionItems'; +export type type133 = 'reviewSubmissionItems'; export type state10 = 'READY_FOR_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'REMOVED'; @@ -8961,7 +8848,7 @@ export type ReviewSubmission = { links?: ResourceLinks; }; -export type type135 = 'reviewSubmissions'; +export type type134 = 'reviewSubmissions'; export type state11 = 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'UNRESOLVED_ISSUES' | 'CANCELING' | 'COMPLETING' | 'COMPLETE'; @@ -9027,7 +8914,7 @@ export type RoutingAppCoverage = { links?: ResourceLinks; }; -export type type136 = 'routingAppCoverages'; +export type type135 = 'routingAppCoverages'; export type RoutingAppCoverageResponse = { data: RoutingAppCoverage; @@ -9079,7 +8966,7 @@ export type SandboxTesterV2 = { links?: ResourceLinks; }; -export type type137 = 'sandboxTesters'; +export type type136 = 'sandboxTesters'; export type subscriptionRenewalRate = 'MONTHLY_RENEWAL_EVERY_ONE_HOUR' | 'MONTHLY_RENEWAL_EVERY_THIRTY_MINUTES' | 'MONTHLY_RENEWAL_EVERY_FIFTEEN_MINUTES' | 'MONTHLY_RENEWAL_EVERY_FIVE_MINUTES' | 'MONTHLY_RENEWAL_EVERY_THREE_MINUTES'; @@ -9112,7 +8999,7 @@ export type SandboxTestersClearPurchaseHistoryRequestV2 = { links?: ResourceLinks; }; -export type type138 = 'sandboxTestersClearPurchaseHistoryRequest'; +export type type137 = 'sandboxTestersClearPurchaseHistoryRequest'; export type SandboxTestersClearPurchaseHistoryRequestV2Response = { data: SandboxTestersClearPurchaseHistoryRequestV2; @@ -9153,7 +9040,7 @@ export type ScmGitReference = { links?: ResourceLinks; }; -export type type139 = 'scmGitReferences'; +export type type138 = 'scmGitReferences'; export type ScmGitReferencesResponse = { data: Array; @@ -9183,7 +9070,7 @@ export type ScmProvider = { links?: ResourceLinks; }; -export type type140 = 'scmProviders'; +export type type139 = 'scmProviders'; export type ScmProvidersResponse = { data: Array; @@ -9223,7 +9110,7 @@ export type ScmPullRequest = { links?: ResourceLinks; }; -export type type141 = 'scmPullRequests'; +export type type140 = 'scmPullRequests'; export type ScmPullRequestsResponse = { data: Array; @@ -9271,7 +9158,7 @@ export type ScmRepository = { links?: ResourceLinks; }; -export type type142 = 'scmRepositories'; +export type type141 = 'scmRepositories'; export type ScmRepositoriesResponse = { data: Array; @@ -9310,7 +9197,7 @@ export type SubscriptionAppStoreReviewScreenshot = { links?: ResourceLinks; }; -export type type143 = 'subscriptionAppStoreReviewScreenshots'; +export type type142 = 'subscriptionAppStoreReviewScreenshots'; export type SubscriptionAppStoreReviewScreenshotResponse = { data: SubscriptionAppStoreReviewScreenshot; @@ -9354,12 +9241,6 @@ export type SubscriptionAvailability = { availableInNewTerritories?: boolean; }; relationships?: { - subscription?: { - data?: { - type: 'subscriptions'; - id: string; - }; - }; availableTerritories?: { links?: RelationshipLinks; meta?: PagingInformation; @@ -9372,11 +9253,11 @@ export type SubscriptionAvailability = { links?: ResourceLinks; }; -export type type144 = 'subscriptionAvailabilities'; +export type type143 = 'subscriptionAvailabilities'; export type SubscriptionAvailabilityResponse = { data: SubscriptionAvailability; - included?: Array<(Subscription | Territory)>; + included?: Array; links: DocumentLinks; }; @@ -9415,7 +9296,7 @@ export type SubscriptionGracePeriod = { links?: ResourceLinks; }; -export type type145 = 'subscriptionGracePeriods'; +export type type144 = 'subscriptionGracePeriods'; export type renewalType = 'ALL_RENEWALS' | 'PAID_TO_PAID_ONLY'; @@ -9457,7 +9338,7 @@ export type SubscriptionGroupLocalization = { links?: ResourceLinks; }; -export type type146 = 'subscriptionGroupLocalizations'; +export type type145 = 'subscriptionGroupLocalizations'; export type SubscriptionGroupLocalizationsResponse = { data: Array; @@ -9508,7 +9389,7 @@ export type SubscriptionGroupSubmission = { links?: ResourceLinks; }; -export type type147 = 'subscriptionGroupSubmissions'; +export type type146 = 'subscriptionGroupSubmissions'; export type SubscriptionGroupSubmissionResponse = { data: SubscriptionGroupSubmission; @@ -9556,7 +9437,7 @@ export type SubscriptionGroup = { links?: ResourceLinks; }; -export type type148 = 'subscriptionGroups'; +export type type147 = 'subscriptionGroups'; export type SubscriptionGroupsResponse = { data: Array; @@ -9621,7 +9502,7 @@ export type SubscriptionImage = { links?: ResourceLinks; }; -export type type149 = 'subscriptionImages'; +export type type148 = 'subscriptionImages'; export type SubscriptionImagesResponse = { data: Array; @@ -9698,7 +9579,7 @@ export type SubscriptionIntroductoryOffer = { links?: ResourceLinks; }; -export type type150 = 'subscriptionIntroductoryOffers'; +export type type149 = 'subscriptionIntroductoryOffers'; export type SubscriptionIntroductoryOfferInlineCreate = { type: 'subscriptionIntroductoryOffers'; @@ -9809,7 +9690,7 @@ export type SubscriptionLocalization = { links?: ResourceLinks; }; -export type type151 = 'subscriptionLocalizations'; +export type type150 = 'subscriptionLocalizations'; export type SubscriptionLocalizationsResponse = { data: Array; @@ -9875,7 +9756,7 @@ export type SubscriptionOfferCodeCustomCode = { links?: ResourceLinks; }; -export type type152 = 'subscriptionOfferCodeCustomCodes'; +export type type151 = 'subscriptionOfferCodeCustomCodes'; export type SubscriptionOfferCodeCustomCodesResponse = { data: Array; @@ -9925,7 +9806,7 @@ export type SubscriptionOfferCodeOneTimeUseCodeValue = { links?: ResourceLinks; }; -export type type153 = 'subscriptionOfferCodeOneTimeUseCodeValues'; +export type type152 = 'subscriptionOfferCodeOneTimeUseCodeValues'; export type SubscriptionOfferCodeOneTimeUseCode = { type: 'subscriptionOfferCodeOneTimeUseCodes'; @@ -9950,7 +9831,7 @@ export type SubscriptionOfferCodeOneTimeUseCode = { links?: ResourceLinks; }; -export type type154 = 'subscriptionOfferCodeOneTimeUseCodes'; +export type type153 = 'subscriptionOfferCodeOneTimeUseCodes'; export type SubscriptionOfferCodeOneTimeUseCodesResponse = { data: Array; @@ -10013,7 +9894,7 @@ export type SubscriptionOfferCodePrice = { links?: ResourceLinks; }; -export type type155 = 'subscriptionOfferCodePrices'; +export type type154 = 'subscriptionOfferCodePrices'; export type SubscriptionOfferCodePriceInlineCreate = { type: 'subscriptionOfferCodePrices'; @@ -10089,7 +9970,7 @@ export type SubscriptionOfferCode = { links?: ResourceLinks; }; -export type type156 = 'subscriptionOfferCodes'; +export type type155 = 'subscriptionOfferCodes'; export type SubscriptionOfferCodesResponse = { data: Array; @@ -10165,7 +10046,7 @@ export type SubscriptionPricePoint = { links?: ResourceLinks; }; -export type type157 = 'subscriptionPricePoints'; +export type type156 = 'subscriptionPricePoints'; export type SubscriptionPricePointInlineCreate = { type: 'subscriptionPricePoints'; @@ -10209,7 +10090,7 @@ export type SubscriptionPrice = { links?: ResourceLinks; }; -export type type158 = 'subscriptionPrices'; +export type type157 = 'subscriptionPrices'; export type SubscriptionPriceInlineCreate = { type: 'subscriptionPrices'; @@ -10303,7 +10184,7 @@ export type SubscriptionPromotionalOfferPrice = { links?: ResourceLinks; }; -export type type159 = 'subscriptionPromotionalOfferPrices'; +export type type158 = 'subscriptionPromotionalOfferPrices'; export type SubscriptionPromotionalOfferPriceInlineCreate = { type: 'subscriptionPromotionalOfferPrices'; @@ -10360,7 +10241,7 @@ export type SubscriptionPromotionalOffer = { links?: ResourceLinks; }; -export type type160 = 'subscriptionPromotionalOffers'; +export type type159 = 'subscriptionPromotionalOffers'; export type SubscriptionPromotionalOfferInlineCreate = { type: 'subscriptionPromotionalOffers'; @@ -10459,7 +10340,7 @@ export type SubscriptionSubmission = { links?: ResourceLinks; }; -export type type161 = 'subscriptionSubmissions'; +export type type160 = 'subscriptionSubmissions'; export type SubscriptionSubmissionResponse = { data: SubscriptionSubmission; @@ -10584,7 +10465,7 @@ export type Subscription = { links?: ResourceLinks; }; -export type type162 = 'subscriptions'; +export type type161 = 'subscriptions'; export type state12 = 'MISSING_METADATA' | 'READY_TO_SUBMIT' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'DEVELOPER_ACTION_NEEDED' | 'PENDING_BINARY_APPROVAL' | 'APPROVED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'REMOVED_FROM_SALE' | 'REJECTED'; @@ -10669,7 +10550,7 @@ export type Territory = { links?: ResourceLinks; }; -export type type163 = 'territories'; +export type type162 = 'territories'; export type TerritoryInlineCreate = { type: 'territories'; @@ -10708,7 +10589,7 @@ export type TerritoryAvailability = { links?: ResourceLinks; }; -export type type164 = 'territoryAvailabilities'; +export type type163 = 'territoryAvailabilities'; export type TerritoryAvailabilityInlineCreate = { type: 'territoryAvailabilities'; @@ -10765,7 +10646,7 @@ export type UserInvitation = { links?: ResourceLinks; }; -export type type165 = 'userInvitations'; +export type type164 = 'userInvitations'; export type UserInvitationsResponse = { data: Array; @@ -10826,7 +10707,7 @@ export type User = { links?: ResourceLinks; }; -export type type166 = 'users'; +export type type165 = 'users'; export type UsersResponse = { data: Array; @@ -10881,7 +10762,7 @@ export type WinBackOfferPrice = { links?: ResourceLinks; }; -export type type167 = 'winBackOfferPrices'; +export type type166 = 'winBackOfferPrices'; export type WinBackOfferPriceInlineCreate = { type: 'winBackOfferPrices'; @@ -10925,7 +10806,7 @@ export type WinBackOffer = { links?: ResourceLinks; }; -export type type168 = 'winBackOffers'; +export type type167 = 'winBackOffers'; export type promotionIntent = 'NOT_PROMOTED' | 'USE_AUTO_GENERATED_ASSETS'; @@ -11156,11 +11037,6 @@ export type EndUserLicenseAgreementWithoutIncludesResponse = { links: DocumentLinks; }; -export type AppPreOrderWithoutIncludesResponse = { - data: AppPreOrder; - links: DocumentLinks; -}; - export type PreReleaseVersionsWithoutIncludesResponse = { data: Array; links: PagedDocumentLinks; @@ -11358,6 +11234,9 @@ export type TerritoriesWithoutIncludesResponse = { meta?: PagingInformation; }; +/** + * @deprecated + */ export type GameCenterAchievementGroupAchievementLinkageResponse = { data: { type: 'gameCenterAchievements'; @@ -11366,6 +11245,9 @@ export type GameCenterAchievementGroupAchievementLinkageResponse = { links: DocumentLinks; }; +/** + * @deprecated + */ export type GameCenterAchievementGroupAchievementLinkageRequest = { data: { type: 'gameCenterAchievements'; @@ -11523,6 +11405,9 @@ export type GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesRequest = { }>; }; +/** + * @deprecated + */ export type GameCenterLeaderboardSetGroupLeaderboardSetLinkageResponse = { data: { type: 'gameCenterLeaderboardSets'; @@ -11531,6 +11416,9 @@ export type GameCenterLeaderboardSetGroupLeaderboardSetLinkageResponse = { links: DocumentLinks; }; +/** + * @deprecated + */ export type GameCenterLeaderboardSetGroupLeaderboardSetLinkageRequest = { data: { type: 'gameCenterLeaderboardSets'; @@ -11538,6 +11426,9 @@ export type GameCenterLeaderboardSetGroupLeaderboardSetLinkageRequest = { }; }; +/** + * @deprecated + */ export type GameCenterLeaderboardGroupLeaderboardLinkageResponse = { data: { type: 'gameCenterLeaderboards'; @@ -11546,6 +11437,9 @@ export type GameCenterLeaderboardGroupLeaderboardLinkageResponse = { links: DocumentLinks; }; +/** + * @deprecated + */ export type GameCenterLeaderboardGroupLeaderboardLinkageRequest = { data: { type: 'gameCenterLeaderboards'; @@ -11938,11 +11832,27 @@ export type AppMediaAssetState = { export type state13 = 'AWAITING_UPLOAD' | 'UPLOAD_COMPLETE' | 'COMPLETE' | 'FAILED'; +export type AppMediaPreviewFrameImageState = { + errors?: Array; + warnings?: Array; + state?: 'PROCESSING' | 'COMPLETE' | 'FAILED'; +}; + +export type state14 = 'PROCESSING' | 'COMPLETE' | 'FAILED'; + export type AppMediaStateError = { code?: string; description?: string; }; +export type AppMediaVideoState = { + errors?: Array; + warnings?: Array; + state?: 'AWAITING_UPLOAD' | 'UPLOAD_COMPLETE' | 'PROCESSING' | 'COMPLETE' | 'FAILED'; +}; + +export type state15 = 'AWAITING_UPLOAD' | 'UPLOAD_COMPLETE' | 'PROCESSING' | 'COMPLETE' | 'FAILED'; + export type AppStoreAgeRating = 'FOUR_PLUS' | 'NINE_PLUS' | 'TWELVE_PLUS' | 'SEVENTEEN_PLUS' | 'UNRATED'; export type AppStoreVersionState = 'ACCEPTED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_CONTRACT' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PREORDER_READY_FOR_SALE' | 'PROCESSING_FOR_APP_STORE' | 'READY_FOR_REVIEW' | 'READY_FOR_SALE' | 'REJECTED' | 'REMOVED_FROM_SALE' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW' | 'REPLACED_WITH_NEW_VERSION' | 'NOT_APPLICABLE'; @@ -11959,7 +11869,7 @@ export type BrazilAgeRating = 'L' | 'TEN' | 'TWELVE' | 'FOURTEEN' | 'SIXTEEN' | export type BuildAudienceType = 'INTERNAL_ONLY' | 'APP_STORE_ELIGIBLE'; -export type BundleIdPlatform = 'IOS' | 'MAC_OS'; +export type BundleIdPlatform = 'IOS' | 'MAC_OS' | 'UNIVERSAL'; export type CapabilityOption = { key?: 'XCODE_5' | 'XCODE_6' | 'COMPLETE_PROTECTION' | 'PROTECTED_UNLESS_OPEN' | 'PROTECTED_UNTIL_FIRST_USER_AUTH' | 'PRIMARY_APP_CONSENT'; @@ -11989,7 +11899,7 @@ export type allowedInstances = 'ENTRY' | 'SINGLE' | 'MULTIPLE'; export type CapabilityType = 'ICLOUD' | 'IN_APP_PURCHASE' | 'GAME_CENTER' | 'PUSH_NOTIFICATIONS' | 'WALLET' | 'INTER_APP_AUDIO' | 'MAPS' | 'ASSOCIATED_DOMAINS' | 'PERSONAL_VPN' | 'APP_GROUPS' | 'HEALTHKIT' | 'HOMEKIT' | 'WIRELESS_ACCESSORY_CONFIGURATION' | 'APPLE_PAY' | 'DATA_PROTECTION' | 'SIRIKIT' | 'NETWORK_EXTENSIONS' | 'MULTIPATH' | 'HOT_SPOT' | 'NFC_TAG_READING' | 'CLASSKIT' | 'AUTOFILL_CREDENTIAL_PROVIDER' | 'ACCESS_WIFI_INFORMATION' | 'NETWORK_CUSTOM_PROTOCOL' | 'COREMEDIA_HLS_LOW_LATENCY' | 'SYSTEM_EXTENSION_INSTALL' | 'USER_MANAGEMENT' | 'APPLE_ID_AUTH'; -export type CertificateType = 'IOS_DEVELOPMENT' | 'IOS_DISTRIBUTION' | 'MAC_APP_DISTRIBUTION' | 'MAC_INSTALLER_DISTRIBUTION' | 'MAC_APP_DEVELOPMENT' | 'DEVELOPER_ID_KEXT' | 'DEVELOPER_ID_APPLICATION' | 'DEVELOPMENT' | 'DISTRIBUTION' | 'PASS_TYPE_ID' | 'PASS_TYPE_ID_WITH_NFC'; +export type CertificateType = 'IOS_DEVELOPMENT' | 'IOS_DISTRIBUTION' | 'MAC_APP_DISTRIBUTION' | 'MAC_INSTALLER_DISTRIBUTION' | 'MAC_APP_DEVELOPMENT' | 'DEVELOPER_ID_KEXT' | 'DEVELOPER_ID_KEXT_G2' | 'DEVELOPER_ID_APPLICATION' | 'DEVELOPER_ID_APPLICATION_G2' | 'DEVELOPMENT' | 'DISTRIBUTION' | 'PASS_TYPE_ID' | 'PASS_TYPE_ID_WITH_NFC'; export type CiAction = { name?: string; @@ -12217,6 +12127,11 @@ export type PhasedReleaseState = 'INACTIVE' | 'ACTIVE' | 'PAUSED' | 'COMPLETE'; export type Platform = 'IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS'; +export type PreviewFrameImage = { + image?: ImageAsset; + state?: AppMediaPreviewFrameImageState; +}; + export type PreviewType = 'IPHONE_67' | 'IPHONE_61' | 'IPHONE_65' | 'IPHONE_58' | 'IPHONE_55' | 'IPHONE_47' | 'IPHONE_40' | 'IPHONE_35' | 'IPAD_PRO_3GEN_129' | 'IPAD_PRO_3GEN_11' | 'IPAD_PRO_129' | 'IPAD_105' | 'IPAD_97' | 'DESKTOP' | 'APPLE_TV' | 'APPLE_VISION_PRO'; export type Property = { @@ -12462,7 +12377,7 @@ export type AlternativeDistributionKeysGetCollectionData = { /** * the fields to include for returned resources of type alternativeDistributionKeys */ - 'fields[alternativeDistributionKeys]'?: Array<('publicKey' | 'app')>; + 'fields[alternativeDistributionKeys]'?: Array<('publicKey')>; /** * maximum resources per page */ @@ -12496,7 +12411,7 @@ export type AlternativeDistributionKeysGetInstanceData = { /** * the fields to include for returned resources of type alternativeDistributionKeys */ - 'fields[alternativeDistributionKeys]'?: Array<('publicKey' | 'app')>; + 'fields[alternativeDistributionKeys]'?: Array<('publicKey')>; }; }; @@ -12594,18 +12509,7 @@ export type AlternativeDistributionPackageVersionsGetInstanceResponse = (Alterna export type AlternativeDistributionPackageVersionsGetInstanceError = (ErrorResponse); -export type AlternativeDistributionPackagesCreateInstanceData = { - /** - * AlternativeDistributionPackage representation - */ - body: AlternativeDistributionPackageCreateRequest; -}; - -export type AlternativeDistributionPackagesCreateInstanceResponse = (AlternativeDistributionPackageResponse); - -export type AlternativeDistributionPackagesCreateInstanceError = (ErrorResponse); - -export type AlternativeDistributionPackagesGetInstanceData = { +export type AlternativeDistributionPackageVersionsDeltasGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -12614,29 +12518,21 @@ export type AlternativeDistributionPackagesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type alternativeDistributionPackages - */ - 'fields[alternativeDistributionPackages]'?: Array<('appStoreVersion' | 'versions')>; - /** - * the fields to include for returned resources of type alternativeDistributionPackageVersions - */ - 'fields[alternativeDistributionPackageVersions]'?: Array<('url' | 'urlExpirationDate' | 'version' | 'fileChecksum' | 'state' | 'variants' | 'deltas' | 'alternativeDistributionPackage')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type alternativeDistributionPackageDeltas */ - include?: Array<('versions')>; + 'fields[alternativeDistributionPackageDeltas]'?: Array<('url' | 'urlExpirationDate' | 'alternativeDistributionKeyBlob' | 'fileChecksum')>; /** - * maximum number of related versions returned (when they are included) + * maximum resources per page */ - 'limit[versions]'?: number; + limit?: number; }; }; -export type AlternativeDistributionPackagesGetInstanceResponse = (AlternativeDistributionPackageResponse); +export type AlternativeDistributionPackageVersionsDeltasGetToManyRelatedResponse = (AlternativeDistributionPackageDeltasResponse); -export type AlternativeDistributionPackagesGetInstanceError = (ErrorResponse); +export type AlternativeDistributionPackageVersionsDeltasGetToManyRelatedError = (ErrorResponse); -export type AnalyticsReportInstancesGetInstanceData = { +export type AlternativeDistributionPackageVersionsVariantsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -12645,28 +12541,32 @@ export type AnalyticsReportInstancesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type analyticsReportInstances + * the fields to include for returned resources of type alternativeDistributionPackageVariants */ - 'fields[analyticsReportInstances]'?: Array<('granularity' | 'processingDate' | 'segments')>; + 'fields[alternativeDistributionPackageVariants]'?: Array<('url' | 'urlExpirationDate' | 'alternativeDistributionKeyBlob' | 'fileChecksum')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type AnalyticsReportInstancesGetInstanceResponse = (AnalyticsReportInstanceResponse); +export type AlternativeDistributionPackageVersionsVariantsGetToManyRelatedResponse = (AlternativeDistributionPackageVariantsResponse); -export type AnalyticsReportInstancesGetInstanceError = (ErrorResponse); +export type AlternativeDistributionPackageVersionsVariantsGetToManyRelatedError = (ErrorResponse); -export type AnalyticsReportRequestsCreateInstanceData = { +export type AlternativeDistributionPackagesCreateInstanceData = { /** - * AnalyticsReportRequest representation + * AlternativeDistributionPackage representation */ - body: AnalyticsReportRequestCreateRequest; + body: AlternativeDistributionPackageCreateRequest; }; -export type AnalyticsReportRequestsCreateInstanceResponse = (AnalyticsReportRequestResponse); +export type AlternativeDistributionPackagesCreateInstanceResponse = (AlternativeDistributionPackageResponse); -export type AnalyticsReportRequestsCreateInstanceError = (ErrorResponse); +export type AlternativeDistributionPackagesCreateInstanceError = (ErrorResponse); -export type AnalyticsReportRequestsGetInstanceData = { +export type AlternativeDistributionPackagesGetInstanceData = { path: { /** * the id of the requested resource @@ -12675,17 +12575,152 @@ export type AnalyticsReportRequestsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type analyticsReportRequests + * the fields to include for returned resources of type alternativeDistributionPackages */ - 'fields[analyticsReportRequests]'?: Array<('accessType' | 'stoppedDueToInactivity' | 'app' | 'reports')>; + 'fields[alternativeDistributionPackages]'?: Array<('versions')>; /** - * the fields to include for returned resources of type analyticsReports + * the fields to include for returned resources of type alternativeDistributionPackageVersions */ - 'fields[analyticsReports]'?: Array<('name' | 'category' | 'instances')>; + 'fields[alternativeDistributionPackageVersions]'?: Array<('url' | 'urlExpirationDate' | 'version' | 'fileChecksum' | 'state' | 'variants' | 'deltas' | 'alternativeDistributionPackage')>; /** * comma-separated list of relationships to include */ - include?: Array<('reports')>; + include?: Array<('versions')>; + /** + * maximum number of related versions returned (when they are included) + */ + 'limit[versions]'?: number; + }; +}; + +export type AlternativeDistributionPackagesGetInstanceResponse = (AlternativeDistributionPackageResponse); + +export type AlternativeDistributionPackagesGetInstanceError = (ErrorResponse); + +export type AlternativeDistributionPackagesVersionsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type alternativeDistributionPackageDeltas + */ + 'fields[alternativeDistributionPackageDeltas]'?: Array<('url' | 'urlExpirationDate' | 'alternativeDistributionKeyBlob' | 'fileChecksum')>; + /** + * the fields to include for returned resources of type alternativeDistributionPackages + */ + 'fields[alternativeDistributionPackages]'?: Array<('versions')>; + /** + * the fields to include for returned resources of type alternativeDistributionPackageVariants + */ + 'fields[alternativeDistributionPackageVariants]'?: Array<('url' | 'urlExpirationDate' | 'alternativeDistributionKeyBlob' | 'fileChecksum')>; + /** + * the fields to include for returned resources of type alternativeDistributionPackageVersions + */ + 'fields[alternativeDistributionPackageVersions]'?: Array<('url' | 'urlExpirationDate' | 'version' | 'fileChecksum' | 'state' | 'variants' | 'deltas' | 'alternativeDistributionPackage')>; + /** + * filter by attribute 'state' + */ + 'filter[state]'?: Array<('COMPLETED' | 'REPLACED')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('variants' | 'deltas' | 'alternativeDistributionPackage')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related deltas returned (when they are included) + */ + 'limit[deltas]'?: number; + /** + * maximum number of related variants returned (when they are included) + */ + 'limit[variants]'?: number; + }; +}; + +export type AlternativeDistributionPackagesVersionsGetToManyRelatedResponse = (AlternativeDistributionPackageVersionsResponse); + +export type AlternativeDistributionPackagesVersionsGetToManyRelatedError = (ErrorResponse); + +export type AnalyticsReportInstancesGetInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type analyticsReportInstances + */ + 'fields[analyticsReportInstances]'?: Array<('granularity' | 'processingDate' | 'segments')>; + }; +}; + +export type AnalyticsReportInstancesGetInstanceResponse = (AnalyticsReportInstanceResponse); + +export type AnalyticsReportInstancesGetInstanceError = (ErrorResponse); + +export type AnalyticsReportInstancesSegmentsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type analyticsReportSegments + */ + 'fields[analyticsReportSegments]'?: Array<('checksum' | 'sizeInBytes' | 'url')>; + /** + * maximum resources per page + */ + limit?: number; + }; +}; + +export type AnalyticsReportInstancesSegmentsGetToManyRelatedResponse = (AnalyticsReportSegmentsResponse); + +export type AnalyticsReportInstancesSegmentsGetToManyRelatedError = (ErrorResponse); + +export type AnalyticsReportRequestsCreateInstanceData = { + /** + * AnalyticsReportRequest representation + */ + body: AnalyticsReportRequestCreateRequest; +}; + +export type AnalyticsReportRequestsCreateInstanceResponse = (AnalyticsReportRequestResponse); + +export type AnalyticsReportRequestsCreateInstanceError = (ErrorResponse); + +export type AnalyticsReportRequestsGetInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type analyticsReportRequests + */ + 'fields[analyticsReportRequests]'?: Array<('accessType' | 'stoppedDueToInactivity' | 'reports')>; + /** + * the fields to include for returned resources of type analyticsReports + */ + 'fields[analyticsReports]'?: Array<('name' | 'category' | 'instances')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('reports')>; /** * maximum number of related reports returned (when they are included) */ @@ -12710,6 +12745,37 @@ export type AnalyticsReportRequestsDeleteInstanceResponse = (void); export type AnalyticsReportRequestsDeleteInstanceError = (ErrorResponse); +export type AnalyticsReportRequestsReportsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type analyticsReports + */ + 'fields[analyticsReports]'?: Array<('name' | 'category' | 'instances')>; + /** + * filter by attribute 'category' + */ + 'filter[category]'?: Array<('APP_USAGE' | 'APP_STORE_ENGAGEMENT' | 'COMMERCE' | 'FRAMEWORK_USAGE' | 'PERFORMANCE')>; + /** + * filter by attribute 'name' + */ + 'filter[name]'?: Array<(string)>; + /** + * maximum resources per page + */ + limit?: number; + }; +}; + +export type AnalyticsReportRequestsReportsGetToManyRelatedResponse = (AnalyticsReportsResponse); + +export type AnalyticsReportRequestsReportsGetToManyRelatedError = (ErrorResponse); + export type AnalyticsReportSegmentsGetInstanceData = { path: { /** @@ -12748,6 +12814,37 @@ export type AnalyticsReportsGetInstanceResponse = (AnalyticsReportResponse); export type AnalyticsReportsGetInstanceError = (ErrorResponse); +export type AnalyticsReportsInstancesGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type analyticsReportInstances + */ + 'fields[analyticsReportInstances]'?: Array<('granularity' | 'processingDate' | 'segments')>; + /** + * filter by attribute 'granularity' + */ + 'filter[granularity]'?: Array<('DAILY' | 'WEEKLY' | 'MONTHLY')>; + /** + * filter by attribute 'processingDate' + */ + 'filter[processingDate]'?: Array<(string)>; + /** + * maximum resources per page + */ + limit?: number; + }; +}; + +export type AnalyticsReportsInstancesGetToManyRelatedResponse = (AnalyticsReportInstancesResponse); + +export type AnalyticsReportsInstancesGetToManyRelatedError = (ErrorResponse); + export type AppAvailabilitiesV2CreateInstanceData = { /** * AppAvailability representation @@ -12770,7 +12867,7 @@ export type AppAvailabilitiesV2GetInstanceData = { /** * the fields to include for returned resources of type appAvailabilities */ - 'fields[appAvailabilities]'?: Array<('availableInNewTerritories' | 'app' | 'territoryAvailabilities')>; + 'fields[appAvailabilities]'?: Array<('availableInNewTerritories' | 'territoryAvailabilities')>; /** * the fields to include for returned resources of type territoryAvailabilities */ @@ -12790,18 +12887,7 @@ export type AppAvailabilitiesV2GetInstanceResponse = (AppAvailabilityV2Response) export type AppAvailabilitiesV2GetInstanceError = (ErrorResponse); -export type AppAvailabilitiesCreateInstanceData = { - /** - * AppAvailability representation - */ - body: AppAvailabilityCreateRequest; -}; - -export type AppAvailabilitiesCreateInstanceResponse = (AppAvailabilityResponse); - -export type AppAvailabilitiesCreateInstanceError = (ErrorResponse); - -export type AppAvailabilitiesGetInstanceData = { +export type AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -12809,28 +12895,28 @@ export type AppAvailabilitiesGetInstanceData = { id: string; }; query?: { - /** - * the fields to include for returned resources of type appAvailabilities - */ - 'fields[appAvailabilities]'?: Array<('availableInNewTerritories' | 'app' | 'availableTerritories')>; /** * the fields to include for returned resources of type territories */ 'fields[territories]'?: Array<('currency')>; + /** + * the fields to include for returned resources of type territoryAvailabilities + */ + 'fields[territoryAvailabilities]'?: Array<('available' | 'releaseDate' | 'preOrderEnabled' | 'preOrderPublishDate' | 'contentStatuses' | 'territory')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'availableTerritories')>; + include?: Array<('territory')>; /** - * maximum number of related availableTerritories returned (when they are included) + * maximum resources per page */ - 'limit[availableTerritories]'?: number; + limit?: number; }; }; -export type AppAvailabilitiesGetInstanceResponse = (AppAvailabilityResponse); +export type AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedResponse = (TerritoryAvailabilitiesResponse); -export type AppAvailabilitiesGetInstanceError = (ErrorResponse); +export type AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedError = (ErrorResponse); export type AppCategoriesGetCollectionData = { query?: { @@ -12892,18 +12978,7 @@ export type AppCategoriesGetInstanceResponse = (AppCategoryResponse); export type AppCategoriesGetInstanceError = (ErrorResponse); -export type AppClipAdvancedExperienceImagesCreateInstanceData = { - /** - * AppClipAdvancedExperienceImage representation - */ - body: AppClipAdvancedExperienceImageCreateRequest; -}; - -export type AppClipAdvancedExperienceImagesCreateInstanceResponse = (AppClipAdvancedExperienceImageResponse); - -export type AppClipAdvancedExperienceImagesCreateInstanceError = (ErrorResponse); - -export type AppClipAdvancedExperienceImagesGetInstanceData = { +export type AppCategoriesParentGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -12912,30 +12987,83 @@ export type AppClipAdvancedExperienceImagesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appClipAdvancedExperienceImages + * the fields to include for returned resources of type appCategories */ - 'fields[appClipAdvancedExperienceImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded')>; + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; }; }; -export type AppClipAdvancedExperienceImagesGetInstanceResponse = (AppClipAdvancedExperienceImageResponse); +export type AppCategoriesParentGetToOneRelatedResponse = (AppCategoryWithoutIncludesResponse); -export type AppClipAdvancedExperienceImagesGetInstanceError = (ErrorResponse); +export type AppCategoriesParentGetToOneRelatedError = (ErrorResponse); -export type AppClipAdvancedExperienceImagesUpdateInstanceData = { - /** - * AppClipAdvancedExperienceImage representation - */ - body: AppClipAdvancedExperienceImageUpdateRequest; +export type AppCategoriesSubcategoriesGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type appCategories + */ + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type AppClipAdvancedExperienceImagesUpdateInstanceResponse = (AppClipAdvancedExperienceImageResponse); +export type AppCategoriesSubcategoriesGetToManyRelatedResponse = (AppCategoriesWithoutIncludesResponse); + +export type AppCategoriesSubcategoriesGetToManyRelatedError = (ErrorResponse); + +export type AppClipAdvancedExperienceImagesCreateInstanceData = { + /** + * AppClipAdvancedExperienceImage representation + */ + body: AppClipAdvancedExperienceImageCreateRequest; +}; + +export type AppClipAdvancedExperienceImagesCreateInstanceResponse = (AppClipAdvancedExperienceImageResponse); + +export type AppClipAdvancedExperienceImagesCreateInstanceError = (ErrorResponse); + +export type AppClipAdvancedExperienceImagesGetInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appClipAdvancedExperienceImages + */ + 'fields[appClipAdvancedExperienceImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState')>; + }; +}; + +export type AppClipAdvancedExperienceImagesGetInstanceResponse = (AppClipAdvancedExperienceImageResponse); + +export type AppClipAdvancedExperienceImagesGetInstanceError = (ErrorResponse); + +export type AppClipAdvancedExperienceImagesUpdateInstanceData = { + /** + * AppClipAdvancedExperienceImage representation + */ + body: AppClipAdvancedExperienceImageUpdateRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type AppClipAdvancedExperienceImagesUpdateInstanceResponse = (AppClipAdvancedExperienceImageResponse); export type AppClipAdvancedExperienceImagesUpdateInstanceError = (ErrorResponse); @@ -12961,7 +13089,7 @@ export type AppClipAdvancedExperiencesGetInstanceData = { /** * the fields to include for returned resources of type appClipAdvancedExperiences */ - 'fields[appClipAdvancedExperiences]'?: Array<('link' | 'version' | 'status' | 'action' | 'isPoweredBy' | 'place' | 'placeStatus' | 'businessCategory' | 'defaultLanguage' | 'removed' | 'appClip' | 'headerImage' | 'localizations')>; + 'fields[appClipAdvancedExperiences]'?: Array<('link' | 'version' | 'status' | 'action' | 'isPoweredBy' | 'place' | 'placeStatus' | 'businessCategory' | 'defaultLanguage' | 'appClip' | 'headerImage' | 'localizations')>; /** * comma-separated list of relationships to include */ @@ -13071,7 +13199,7 @@ export type AppClipDefaultExperienceLocalizationsGetInstanceData = { /** * the fields to include for returned resources of type appClipHeaderImages */ - 'fields[appClipHeaderImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appClipDefaultExperienceLocalization')>; + 'fields[appClipHeaderImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'appClipDefaultExperienceLocalization')>; /** * comma-separated list of relationships to include */ @@ -13113,6 +13241,33 @@ export type AppClipDefaultExperienceLocalizationsDeleteInstanceResponse = (void) export type AppClipDefaultExperienceLocalizationsDeleteInstanceError = (ErrorResponse); +export type AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appClipDefaultExperienceLocalizations + */ + 'fields[appClipDefaultExperienceLocalizations]'?: Array<('locale' | 'subtitle' | 'appClipDefaultExperience' | 'appClipHeaderImage')>; + /** + * the fields to include for returned resources of type appClipHeaderImages + */ + 'fields[appClipHeaderImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'appClipDefaultExperienceLocalization')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appClipDefaultExperienceLocalization')>; + }; +}; + +export type AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedResponse = (AppClipHeaderImageResponse); + +export type AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedError = (ErrorResponse); + export type AppClipDefaultExperiencesCreateInstanceData = { /** * AppClipDefaultExperience representation @@ -13143,7 +13298,7 @@ export type AppClipDefaultExperiencesGetInstanceData = { /** * the fields to include for returned resources of type appClipDefaultExperiences */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; /** * the fields to include for returned resources of type appStoreVersions */ @@ -13193,6 +13348,186 @@ export type AppClipDefaultExperiencesDeleteInstanceResponse = (void); export type AppClipDefaultExperiencesDeleteInstanceError = (ErrorResponse); +export type AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appClipAppStoreReviewDetails + */ + 'fields[appClipAppStoreReviewDetails]'?: Array<('invocationUrls' | 'appClipDefaultExperience')>; + /** + * the fields to include for returned resources of type appClipDefaultExperiences + */ + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appClipDefaultExperience')>; + }; +}; + +export type AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedResponse = (AppClipAppStoreReviewDetailResponse); + +export type AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedError = (ErrorResponse); + +export type AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appClipDefaultExperienceLocalizations + */ + 'fields[appClipDefaultExperienceLocalizations]'?: Array<('locale' | 'subtitle' | 'appClipDefaultExperience' | 'appClipHeaderImage')>; + /** + * the fields to include for returned resources of type appClipDefaultExperiences + */ + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * the fields to include for returned resources of type appClipHeaderImages + */ + 'fields[appClipHeaderImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'appClipDefaultExperienceLocalization')>; + /** + * filter by attribute 'locale' + */ + 'filter[locale]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appClipDefaultExperience' | 'appClipHeaderImage')>; + /** + * maximum resources per page + */ + limit?: number; + }; +}; + +export type AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedResponse = (AppClipDefaultExperienceLocalizationsResponse); + +export type AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedError = (ErrorResponse); + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipResponse = (AppClipDefaultExperienceReleaseWithAppStoreVersionLinkageResponse); + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipError = (ErrorResponse); + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipData = { + /** + * Related linkage + */ + body: AppClipDefaultExperienceReleaseWithAppStoreVersionLinkageRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipResponse = (void); + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipError = (ErrorResponse); + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type ageRatingDeclarations + */ + 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; + /** + * the fields to include for returned resources of type alternativeDistributionPackages + */ + 'fields[alternativeDistributionPackages]'?: Array<('versions')>; + /** + * the fields to include for returned resources of type appClipDefaultExperiences + */ + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type appStoreReviewDetails + */ + 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + /** + * the fields to include for returned resources of type appStoreVersionExperiments + */ + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; + /** + * the fields to include for returned resources of type appStoreVersionLocalizations + */ + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appStoreVersionPhasedReleases + */ + 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * the fields to include for returned resources of type appStoreVersionSubmissions + */ + 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * the fields to include for returned resources of type gameCenterAppVersions + */ + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + /** + * the fields to include for returned resources of type routingAppCoverages + */ + 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreVersion')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; + /** + * maximum number of related appStoreVersionExperiments returned (when they are included) + * @deprecated + */ + 'limit[appStoreVersionExperiments]'?: number; + /** + * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + */ + 'limit[appStoreVersionExperimentsV2]'?: number; + /** + * maximum number of related appStoreVersionLocalizations returned (when they are included) + */ + 'limit[appStoreVersionLocalizations]'?: number; + }; +}; + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedResponse = (AppStoreVersionResponse); + +export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedError = (ErrorResponse); + export type AppClipHeaderImagesCreateInstanceData = { /** * AppClipHeaderImage representation @@ -13215,7 +13550,7 @@ export type AppClipHeaderImagesGetInstanceData = { /** * the fields to include for returned resources of type appClipHeaderImages */ - 'fields[appClipHeaderImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appClipDefaultExperienceLocalization')>; + 'fields[appClipHeaderImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'appClipDefaultExperienceLocalization')>; /** * comma-separated list of relationships to include */ @@ -13268,7 +13603,7 @@ export type AppClipsGetInstanceData = { /** * the fields to include for returned resources of type appClipDefaultExperiences */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; /** * the fields to include for returned resources of type appClips */ @@ -13288,18 +13623,124 @@ export type AppClipsGetInstanceResponse = (AppClipResponse); export type AppClipsGetInstanceError = (ErrorResponse); -export type AppCustomProductPageLocalizationsCreateInstanceData = { - /** - * AppCustomProductPageLocalization representation - */ - body: AppCustomProductPageLocalizationCreateRequest; -}; - -export type AppCustomProductPageLocalizationsCreateInstanceResponse = (AppCustomProductPageLocalizationResponse); - -export type AppCustomProductPageLocalizationsCreateInstanceError = (ErrorResponse); - -export type AppCustomProductPageLocalizationsGetInstanceData = { +export type AppClipsAppClipAdvancedExperiencesGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appClipAdvancedExperienceImages + */ + 'fields[appClipAdvancedExperienceImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState')>; + /** + * the fields to include for returned resources of type appClipAdvancedExperienceLocalizations + */ + 'fields[appClipAdvancedExperienceLocalizations]'?: Array<('language' | 'title' | 'subtitle')>; + /** + * the fields to include for returned resources of type appClipAdvancedExperiences + */ + 'fields[appClipAdvancedExperiences]'?: Array<('link' | 'version' | 'status' | 'action' | 'isPoweredBy' | 'place' | 'placeStatus' | 'businessCategory' | 'defaultLanguage' | 'appClip' | 'headerImage' | 'localizations')>; + /** + * the fields to include for returned resources of type appClips + */ + 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; + /** + * filter by attribute 'action' + */ + 'filter[action]'?: Array<('OPEN' | 'VIEW' | 'PLAY')>; + /** + * filter by attribute 'placeStatus' + */ + 'filter[placeStatus]'?: Array<('PENDING' | 'MATCHED' | 'NO_MATCH')>; + /** + * filter by attribute 'status' + */ + 'filter[status]'?: Array<('RECEIVED' | 'DEACTIVATED' | 'APP_TRANSFER_IN_PROGRESS')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appClip' | 'headerImage' | 'localizations')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + }; +}; + +export type AppClipsAppClipAdvancedExperiencesGetToManyRelatedResponse = (AppClipAdvancedExperiencesResponse); + +export type AppClipsAppClipAdvancedExperiencesGetToManyRelatedError = (ErrorResponse); + +export type AppClipsAppClipDefaultExperiencesGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * filter by existence or non-existence of related 'releaseWithAppStoreVersion' + */ + 'exists[releaseWithAppStoreVersion]'?: boolean; + /** + * the fields to include for returned resources of type appClipAppStoreReviewDetails + */ + 'fields[appClipAppStoreReviewDetails]'?: Array<('invocationUrls' | 'appClipDefaultExperience')>; + /** + * the fields to include for returned resources of type appClipDefaultExperienceLocalizations + */ + 'fields[appClipDefaultExperienceLocalizations]'?: Array<('locale' | 'subtitle' | 'appClipDefaultExperience' | 'appClipHeaderImage')>; + /** + * the fields to include for returned resources of type appClipDefaultExperiences + */ + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * the fields to include for returned resources of type appClips + */ + 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appClipDefaultExperienceLocalizations returned (when they are included) + */ + 'limit[appClipDefaultExperienceLocalizations]'?: number; + }; +}; + +export type AppClipsAppClipDefaultExperiencesGetToManyRelatedResponse = (AppClipDefaultExperiencesResponse); + +export type AppClipsAppClipDefaultExperiencesGetToManyRelatedError = (ErrorResponse); + +export type AppCustomProductPageLocalizationsCreateInstanceData = { + /** + * AppCustomProductPageLocalization representation + */ + body: AppCustomProductPageLocalizationCreateRequest; +}; + +export type AppCustomProductPageLocalizationsCreateInstanceResponse = (AppCustomProductPageLocalizationResponse); + +export type AppCustomProductPageLocalizationsCreateInstanceError = (ErrorResponse); + +export type AppCustomProductPageLocalizationsGetInstanceData = { path: { /** * the id of the requested resource @@ -13368,6 +13809,124 @@ export type AppCustomProductPageLocalizationsDeleteInstanceResponse = (void); export type AppCustomProductPageLocalizationsDeleteInstanceError = (ErrorResponse); +export type AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appCustomProductPageLocalizations + */ + 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appPreviews + */ + 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appPreviewSet')>; + /** + * the fields to include for returned resources of type appPreviewSets + */ + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + /** + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + */ + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appStoreVersionLocalizations + */ + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * filter by id(s) of related 'appStoreVersionExperimentTreatmentLocalization' + */ + 'filter[appStoreVersionExperimentTreatmentLocalization]'?: Array<(string)>; + /** + * filter by id(s) of related 'appStoreVersionLocalization' + */ + 'filter[appStoreVersionLocalization]'?: Array<(string)>; + /** + * filter by attribute 'previewType' + */ + 'filter[previewType]'?: Array<('IPHONE_67' | 'IPHONE_61' | 'IPHONE_65' | 'IPHONE_58' | 'IPHONE_55' | 'IPHONE_47' | 'IPHONE_40' | 'IPHONE_35' | 'IPAD_PRO_3GEN_129' | 'IPAD_PRO_3GEN_11' | 'IPAD_PRO_129' | 'IPAD_105' | 'IPAD_97' | 'DESKTOP' | 'APPLE_TV' | 'APPLE_VISION_PRO')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appPreviews returned (when they are included) + */ + 'limit[appPreviews]'?: number; + }; +}; + +export type AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedResponse = (AppPreviewSetsResponse); + +export type AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedError = (ErrorResponse); + +export type AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appCustomProductPageLocalizations + */ + 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appScreenshots + */ + 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'appScreenshotSet')>; + /** + * the fields to include for returned resources of type appScreenshotSets + */ + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + /** + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + */ + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appStoreVersionLocalizations + */ + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * filter by id(s) of related 'appStoreVersionExperimentTreatmentLocalization' + */ + 'filter[appStoreVersionExperimentTreatmentLocalization]'?: Array<(string)>; + /** + * filter by id(s) of related 'appStoreVersionLocalization' + */ + 'filter[appStoreVersionLocalization]'?: Array<(string)>; + /** + * filter by attribute 'screenshotDisplayType' + */ + 'filter[screenshotDisplayType]'?: Array<('APP_IPHONE_67' | 'APP_IPHONE_61' | 'APP_IPHONE_65' | 'APP_IPHONE_58' | 'APP_IPHONE_55' | 'APP_IPHONE_47' | 'APP_IPHONE_40' | 'APP_IPHONE_35' | 'APP_IPAD_PRO_3GEN_129' | 'APP_IPAD_PRO_3GEN_11' | 'APP_IPAD_PRO_129' | 'APP_IPAD_105' | 'APP_IPAD_97' | 'APP_DESKTOP' | 'APP_WATCH_ULTRA' | 'APP_WATCH_SERIES_10' | 'APP_WATCH_SERIES_7' | 'APP_WATCH_SERIES_4' | 'APP_WATCH_SERIES_3' | 'APP_APPLE_TV' | 'APP_APPLE_VISION_PRO' | 'IMESSAGE_APP_IPHONE_67' | 'IMESSAGE_APP_IPHONE_61' | 'IMESSAGE_APP_IPHONE_65' | 'IMESSAGE_APP_IPHONE_58' | 'IMESSAGE_APP_IPHONE_55' | 'IMESSAGE_APP_IPHONE_47' | 'IMESSAGE_APP_IPHONE_40' | 'IMESSAGE_APP_IPAD_PRO_3GEN_129' | 'IMESSAGE_APP_IPAD_PRO_3GEN_11' | 'IMESSAGE_APP_IPAD_PRO_129' | 'IMESSAGE_APP_IPAD_105' | 'IMESSAGE_APP_IPAD_97')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appScreenshots returned (when they are included) + */ + 'limit[appScreenshots]'?: number; + }; +}; + +export type AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedResponse = (AppScreenshotSetsResponse); + +export type AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedError = (ErrorResponse); + export type AppCustomProductPageVersionsCreateInstanceData = { /** * AppCustomProductPageVersion representation @@ -13427,18 +13986,7 @@ export type AppCustomProductPageVersionsUpdateInstanceResponse = (AppCustomProdu export type AppCustomProductPageVersionsUpdateInstanceError = (ErrorResponse); -export type AppCustomProductPagesCreateInstanceData = { - /** - * AppCustomProductPage representation - */ - body: AppCustomProductPageCreateRequest; -}; - -export type AppCustomProductPagesCreateInstanceResponse = (AppCustomProductPageResponse); - -export type AppCustomProductPagesCreateInstanceError = (ErrorResponse); - -export type AppCustomProductPagesGetInstanceData = { +export type AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -13447,24 +13995,86 @@ export type AppCustomProductPagesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appCustomProductPages + * the fields to include for returned resources of type appCustomProductPageLocalizations */ - 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions' | 'appStoreVersionTemplate' | 'customProductPageTemplate')>; + 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** * the fields to include for returned resources of type appCustomProductPageVersions */ 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appPreviewSets */ - include?: Array<('app' | 'appCustomProductPageVersions')>; + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * maximum number of related appCustomProductPageVersions returned (when they are included) + * the fields to include for returned resources of type appScreenshotSets */ - 'limit[appCustomProductPageVersions]'?: number; - }; -}; - + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + /** + * filter by attribute 'locale' + */ + 'filter[locale]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appPreviewSets returned (when they are included) + */ + 'limit[appPreviewSets]'?: number; + /** + * maximum number of related appScreenshotSets returned (when they are included) + */ + 'limit[appScreenshotSets]'?: number; + }; +}; + +export type AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedResponse = (AppCustomProductPageLocalizationsResponse); + +export type AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedError = (ErrorResponse); + +export type AppCustomProductPagesCreateInstanceData = { + /** + * AppCustomProductPage representation + */ + body: AppCustomProductPageCreateRequest; +}; + +export type AppCustomProductPagesCreateInstanceResponse = (AppCustomProductPageResponse); + +export type AppCustomProductPagesCreateInstanceError = (ErrorResponse); + +export type AppCustomProductPagesGetInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appCustomProductPages + */ + 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions')>; + /** + * the fields to include for returned resources of type appCustomProductPageVersions + */ + 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'appCustomProductPageVersions')>; + /** + * maximum number of related appCustomProductPageVersions returned (when they are included) + */ + 'limit[appCustomProductPageVersions]'?: number; + }; +}; + export type AppCustomProductPagesGetInstanceResponse = (AppCustomProductPageResponse); export type AppCustomProductPagesGetInstanceError = (ErrorResponse); @@ -13499,6 +14109,49 @@ export type AppCustomProductPagesDeleteInstanceResponse = (void); export type AppCustomProductPagesDeleteInstanceError = (ErrorResponse); +export type AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appCustomProductPageLocalizations + */ + 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appCustomProductPages + */ + 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions')>; + /** + * the fields to include for returned resources of type appCustomProductPageVersions + */ + 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; + /** + * filter by attribute 'state' + */ + 'filter[state]'?: Array<('PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REPLACED_WITH_NEW_VERSION' | 'REJECTED')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appCustomProductPage' | 'appCustomProductPageLocalizations')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appCustomProductPageLocalizations returned (when they are included) + */ + 'limit[appCustomProductPageLocalizations]'?: number; + }; +}; + +export type AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedResponse = (AppCustomProductPageVersionsResponse); + +export type AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedError = (ErrorResponse); + export type AppEncryptionDeclarationDocumentsCreateInstanceData = { /** * AppEncryptionDeclarationDocument representation @@ -13521,7 +14174,7 @@ export type AppEncryptionDeclarationDocumentsGetInstanceData = { /** * the fields to include for returned resources of type appEncryptionDeclarationDocuments */ - 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEncryptionDeclaration')>; + 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState')>; }; }; @@ -13551,7 +14204,7 @@ export type AppEncryptionDeclarationsGetCollectionData = { /** * the fields to include for returned resources of type appEncryptionDeclarationDocuments */ - 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEncryptionDeclaration')>; + 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState')>; /** * the fields to include for returned resources of type appEncryptionDeclarations */ @@ -13560,7 +14213,7 @@ export type AppEncryptionDeclarationsGetCollectionData = { * the fields to include for returned resources of type apps * @deprecated */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** * filter by id(s) of related 'app' */ @@ -13614,7 +14267,7 @@ export type AppEncryptionDeclarationsGetInstanceData = { /** * the fields to include for returned resources of type appEncryptionDeclarationDocuments */ - 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEncryptionDeclaration')>; + 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState')>; /** * the fields to include for returned resources of type appEncryptionDeclarations */ @@ -13623,7 +14276,7 @@ export type AppEncryptionDeclarationsGetInstanceData = { * the fields to include for returned resources of type apps * @deprecated */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** * comma-separated list of relationships to include */ @@ -13639,6 +14292,61 @@ export type AppEncryptionDeclarationsGetInstanceResponse = (AppEncryptionDeclara export type AppEncryptionDeclarationsGetInstanceError = (ErrorResponse); +export type AppEncryptionDeclarationsAppGetToOneRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + }; +}; + +export type AppEncryptionDeclarationsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); + +export type AppEncryptionDeclarationsAppGetToOneRelatedError = (ErrorResponse); + +export type AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appEncryptionDeclarationDocuments + */ + 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState')>; + }; +}; + +export type AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedResponse = (AppEncryptionDeclarationDocumentResponse); + +export type AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedError = (ErrorResponse); + +export type AppEncryptionDeclarationsBuildsCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: AppEncryptionDeclarationBuildsLinkagesRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type AppEncryptionDeclarationsBuildsCreateToManyRelationshipResponse = (void); + +export type AppEncryptionDeclarationsBuildsCreateToManyRelationshipError = (ErrorResponse); + export type AppEventLocalizationsCreateInstanceData = { /** * AppEventLocalization representation @@ -13665,11 +14373,11 @@ export type AppEventLocalizationsGetInstanceData = { /** * the fields to include for returned resources of type appEventScreenshots */ - 'fields[appEventScreenshots]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'assetToken' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEventAssetType' | 'appEventLocalization')>; + 'fields[appEventScreenshots]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'assetToken' | 'uploadOperations' | 'assetDeliveryState' | 'appEventAssetType' | 'appEventLocalization')>; /** * the fields to include for returned resources of type appEventVideoClips */ - 'fields[appEventVideoClips]'?: Array<('fileSize' | 'fileName' | 'previewFrameTimeCode' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEventAssetType' | 'appEventLocalization')>; + 'fields[appEventVideoClips]'?: Array<('fileSize' | 'fileName' | 'previewFrameTimeCode' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appEventAssetType' | 'appEventLocalization')>; /** * comma-separated list of relationships to include */ @@ -13719,6 +14427,68 @@ export type AppEventLocalizationsDeleteInstanceResponse = (void); export type AppEventLocalizationsDeleteInstanceError = (ErrorResponse); +export type AppEventLocalizationsAppEventScreenshotsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appEventLocalizations + */ + 'fields[appEventLocalizations]'?: Array<('locale' | 'name' | 'shortDescription' | 'longDescription' | 'appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; + /** + * the fields to include for returned resources of type appEventScreenshots + */ + 'fields[appEventScreenshots]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'assetToken' | 'uploadOperations' | 'assetDeliveryState' | 'appEventAssetType' | 'appEventLocalization')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appEventLocalization')>; + /** + * maximum resources per page + */ + limit?: number; + }; +}; + +export type AppEventLocalizationsAppEventScreenshotsGetToManyRelatedResponse = (AppEventScreenshotsResponse); + +export type AppEventLocalizationsAppEventScreenshotsGetToManyRelatedError = (ErrorResponse); + +export type AppEventLocalizationsAppEventVideoClipsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appEventLocalizations + */ + 'fields[appEventLocalizations]'?: Array<('locale' | 'name' | 'shortDescription' | 'longDescription' | 'appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; + /** + * the fields to include for returned resources of type appEventVideoClips + */ + 'fields[appEventVideoClips]'?: Array<('fileSize' | 'fileName' | 'previewFrameTimeCode' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appEventAssetType' | 'appEventLocalization')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appEventLocalization')>; + /** + * maximum resources per page + */ + limit?: number; + }; +}; + +export type AppEventLocalizationsAppEventVideoClipsGetToManyRelatedResponse = (AppEventVideoClipsResponse); + +export type AppEventLocalizationsAppEventVideoClipsGetToManyRelatedError = (ErrorResponse); + export type AppEventScreenshotsCreateInstanceData = { /** * AppEventScreenshot representation @@ -13741,7 +14511,7 @@ export type AppEventScreenshotsGetInstanceData = { /** * the fields to include for returned resources of type appEventScreenshots */ - 'fields[appEventScreenshots]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'assetToken' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEventAssetType' | 'appEventLocalization')>; + 'fields[appEventScreenshots]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'assetToken' | 'uploadOperations' | 'assetDeliveryState' | 'appEventAssetType' | 'appEventLocalization')>; /** * comma-separated list of relationships to include */ @@ -13805,7 +14575,7 @@ export type AppEventVideoClipsGetInstanceData = { /** * the fields to include for returned resources of type appEventVideoClips */ - 'fields[appEventVideoClips]'?: Array<('fileSize' | 'fileName' | 'previewFrameTimeCode' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEventAssetType' | 'appEventLocalization')>; + 'fields[appEventVideoClips]'?: Array<('fileSize' | 'fileName' | 'previewFrameTimeCode' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appEventAssetType' | 'appEventLocalization')>; /** * comma-separated list of relationships to include */ @@ -13873,7 +14643,7 @@ export type AppEventsGetInstanceData = { /** * the fields to include for returned resources of type appEvents */ - 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'app' | 'localizations')>; + 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'localizations')>; /** * comma-separated list of relationships to include */ @@ -13919,18 +14689,7 @@ export type AppEventsDeleteInstanceResponse = (void); export type AppEventsDeleteInstanceError = (ErrorResponse); -export type AppInfoLocalizationsCreateInstanceData = { - /** - * AppInfoLocalization representation - */ - body: AppInfoLocalizationCreateRequest; -}; - -export type AppInfoLocalizationsCreateInstanceResponse = (AppInfoLocalizationResponse); - -export type AppInfoLocalizationsCreateInstanceError = (ErrorResponse); - -export type AppInfoLocalizationsGetInstanceData = { +export type AppEventsLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -13939,30 +14698,88 @@ export type AppInfoLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appInfoLocalizations + * the fields to include for returned resources of type appEventLocalizations */ - 'fields[appInfoLocalizations]'?: Array<('locale' | 'name' | 'subtitle' | 'privacyPolicyUrl' | 'privacyChoicesUrl' | 'privacyPolicyText' | 'appInfo')>; + 'fields[appEventLocalizations]'?: Array<('locale' | 'name' | 'shortDescription' | 'longDescription' | 'appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appEvents */ - include?: Array<('appInfo')>; - }; -}; - -export type AppInfoLocalizationsGetInstanceResponse = (AppInfoLocalizationResponse); - -export type AppInfoLocalizationsGetInstanceError = (ErrorResponse); - -export type AppInfoLocalizationsUpdateInstanceData = { - /** - * AppInfoLocalization representation - */ - body: AppInfoLocalizationUpdateRequest; - path: { + 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'localizations')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appEventScreenshots */ - id: string; + 'fields[appEventScreenshots]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'assetToken' | 'uploadOperations' | 'assetDeliveryState' | 'appEventAssetType' | 'appEventLocalization')>; + /** + * the fields to include for returned resources of type appEventVideoClips + */ + 'fields[appEventVideoClips]'?: Array<('fileSize' | 'fileName' | 'previewFrameTimeCode' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appEventAssetType' | 'appEventLocalization')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appEventScreenshots returned (when they are included) + */ + 'limit[appEventScreenshots]'?: number; + /** + * maximum number of related appEventVideoClips returned (when they are included) + */ + 'limit[appEventVideoClips]'?: number; + }; +}; + +export type AppEventsLocalizationsGetToManyRelatedResponse = (AppEventLocalizationsResponse); + +export type AppEventsLocalizationsGetToManyRelatedError = (ErrorResponse); + +export type AppInfoLocalizationsCreateInstanceData = { + /** + * AppInfoLocalization representation + */ + body: AppInfoLocalizationCreateRequest; +}; + +export type AppInfoLocalizationsCreateInstanceResponse = (AppInfoLocalizationResponse); + +export type AppInfoLocalizationsCreateInstanceError = (ErrorResponse); + +export type AppInfoLocalizationsGetInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appInfoLocalizations + */ + 'fields[appInfoLocalizations]'?: Array<('locale' | 'name' | 'subtitle' | 'privacyPolicyUrl' | 'privacyChoicesUrl' | 'privacyPolicyText' | 'appInfo')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appInfo')>; + }; +}; + +export type AppInfoLocalizationsGetInstanceResponse = (AppInfoLocalizationResponse); + +export type AppInfoLocalizationsGetInstanceError = (ErrorResponse); + +export type AppInfoLocalizationsUpdateInstanceData = { + /** + * AppInfoLocalization representation + */ + body: AppInfoLocalizationUpdateRequest; + path: { + /** + * the id of the requested resource + */ + id: string; }; }; @@ -14006,7 +14823,7 @@ export type AppInfosGetInstanceData = { /** * the fields to include for returned resources of type appInfos */ - 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; + 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'franceAgeRating' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; /** * comma-separated list of relationships to include */ @@ -14039,18 +14856,7 @@ export type AppInfosUpdateInstanceResponse = (AppInfoResponse); export type AppInfosUpdateInstanceError = (ErrorResponse); -export type AppPreOrdersCreateInstanceData = { - /** - * AppPreOrder representation - */ - body: AppPreOrderCreateRequest; -}; - -export type AppPreOrdersCreateInstanceResponse = (AppPreOrderResponse); - -export type AppPreOrdersCreateInstanceError = (ErrorResponse); - -export type AppPreOrdersGetInstanceData = { +export type AppInfosAgeRatingDeclarationGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -14059,62 +14865,52 @@ export type AppPreOrdersGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appPreOrders - */ - 'fields[appPreOrders]'?: Array<('preOrderAvailableDate' | 'appReleaseDate' | 'app')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type ageRatingDeclarations */ - include?: Array<('app')>; + 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; }; }; -export type AppPreOrdersGetInstanceResponse = (AppPreOrderResponse); +export type AppInfosAgeRatingDeclarationGetToOneRelatedResponse = (AgeRatingDeclarationResponse); -export type AppPreOrdersGetInstanceError = (ErrorResponse); +export type AppInfosAgeRatingDeclarationGetToOneRelatedError = (ErrorResponse); -export type AppPreOrdersUpdateInstanceData = { - /** - * AppPreOrder representation - */ - body: AppPreOrderUpdateRequest; +export type AppInfosAppInfoLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type AppPreOrdersUpdateInstanceResponse = (AppPreOrderResponse); - -export type AppPreOrdersUpdateInstanceError = (ErrorResponse); - -export type AppPreOrdersDeleteInstanceData = { - path: { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type appInfoLocalizations */ - id: string; + 'fields[appInfoLocalizations]'?: Array<('locale' | 'name' | 'subtitle' | 'privacyPolicyUrl' | 'privacyChoicesUrl' | 'privacyPolicyText' | 'appInfo')>; + /** + * the fields to include for returned resources of type appInfos + */ + 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'franceAgeRating' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; + /** + * filter by attribute 'locale' + */ + 'filter[locale]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appInfo')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type AppPreOrdersDeleteInstanceResponse = (void); - -export type AppPreOrdersDeleteInstanceError = (ErrorResponse); - -export type AppPreviewSetsCreateInstanceData = { - /** - * AppPreviewSet representation - */ - body: AppPreviewSetCreateRequest; -}; - -export type AppPreviewSetsCreateInstanceResponse = (AppPreviewSetResponse); +export type AppInfosAppInfoLocalizationsGetToManyRelatedResponse = (AppInfoLocalizationsResponse); -export type AppPreviewSetsCreateInstanceError = (ErrorResponse); +export type AppInfosAppInfoLocalizationsGetToManyRelatedError = (ErrorResponse); -export type AppPreviewSetsGetInstanceData = { +export type AppInfosPrimaryCategoryGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -14123,53 +14919,52 @@ export type AppPreviewSetsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appPreviews - */ - 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appPreviewSet')>; - /** - * the fields to include for returned resources of type appPreviewSets + * the fields to include for returned resources of type appCategories */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + include?: Array<('subcategories' | 'parent')>; /** - * maximum number of related appPreviews returned (when they are included) + * maximum number of related subcategories returned (when they are included) */ - 'limit[appPreviews]'?: number; + 'limit[subcategories]'?: number; }; }; -export type AppPreviewSetsGetInstanceResponse = (AppPreviewSetResponse); +export type AppInfosPrimaryCategoryGetToOneRelatedResponse = (AppCategoryResponse); -export type AppPreviewSetsGetInstanceError = (ErrorResponse); +export type AppInfosPrimaryCategoryGetToOneRelatedError = (ErrorResponse); -export type AppPreviewSetsDeleteInstanceData = { +export type AppInfosPrimarySubcategoryOneGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type appCategories + */ + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('subcategories' | 'parent')>; + /** + * maximum number of related subcategories returned (when they are included) + */ + 'limit[subcategories]'?: number; + }; }; -export type AppPreviewSetsDeleteInstanceResponse = (void); - -export type AppPreviewSetsDeleteInstanceError = (ErrorResponse); - -export type AppPreviewsCreateInstanceData = { - /** - * AppPreview representation - */ - body: AppPreviewCreateRequest; -}; - -export type AppPreviewsCreateInstanceResponse = (AppPreviewResponse); +export type AppInfosPrimarySubcategoryOneGetToOneRelatedResponse = (AppCategoryResponse); -export type AppPreviewsCreateInstanceError = (ErrorResponse); +export type AppInfosPrimarySubcategoryOneGetToOneRelatedError = (ErrorResponse); -export type AppPreviewsGetInstanceData = { +export type AppInfosPrimarySubcategoryTwoGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -14178,51 +14973,52 @@ export type AppPreviewsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appPreviews + * the fields to include for returned resources of type appCategories */ - 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appPreviewSet')>; + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; /** * comma-separated list of relationships to include */ - include?: Array<('appPreviewSet')>; + include?: Array<('subcategories' | 'parent')>; + /** + * maximum number of related subcategories returned (when they are included) + */ + 'limit[subcategories]'?: number; }; }; -export type AppPreviewsGetInstanceResponse = (AppPreviewResponse); +export type AppInfosPrimarySubcategoryTwoGetToOneRelatedResponse = (AppCategoryResponse); -export type AppPreviewsGetInstanceError = (ErrorResponse); +export type AppInfosPrimarySubcategoryTwoGetToOneRelatedError = (ErrorResponse); -export type AppPreviewsUpdateInstanceData = { - /** - * AppPreview representation - */ - body: AppPreviewUpdateRequest; +export type AppInfosSecondaryCategoryGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type AppPreviewsUpdateInstanceResponse = (AppPreviewResponse); - -export type AppPreviewsUpdateInstanceError = (ErrorResponse); - -export type AppPreviewsDeleteInstanceData = { - path: { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type appCategories */ - id: string; + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('subcategories' | 'parent')>; + /** + * maximum number of related subcategories returned (when they are included) + */ + 'limit[subcategories]'?: number; }; }; -export type AppPreviewsDeleteInstanceResponse = (void); +export type AppInfosSecondaryCategoryGetToOneRelatedResponse = (AppCategoryResponse); -export type AppPreviewsDeleteInstanceError = (ErrorResponse); +export type AppInfosSecondaryCategoryGetToOneRelatedError = (ErrorResponse); -export type AppPricePointsV3GetInstanceData = { +export type AppInfosSecondarySubcategoryOneGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -14231,32 +15027,25 @@ export type AppPricePointsV3GetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appPricePoints + * the fields to include for returned resources of type appCategories */ - 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'territory')>; + include?: Array<('subcategories' | 'parent')>; + /** + * maximum number of related subcategories returned (when they are included) + */ + 'limit[subcategories]'?: number; }; }; -export type AppPricePointsV3GetInstanceResponse = (AppPricePointV3Response); - -export type AppPricePointsV3GetInstanceError = (ErrorResponse); - -export type AppPriceSchedulesCreateInstanceData = { - /** - * AppPriceSchedule representation - */ - body: AppPriceScheduleCreateRequest; -}; - -export type AppPriceSchedulesCreateInstanceResponse = (AppPriceScheduleResponse); +export type AppInfosSecondarySubcategoryOneGetToOneRelatedResponse = (AppCategoryResponse); -export type AppPriceSchedulesCreateInstanceError = (ErrorResponse); +export type AppInfosSecondarySubcategoryOneGetToOneRelatedError = (ErrorResponse); -export type AppPriceSchedulesGetInstanceData = { +export type AppInfosSecondarySubcategoryTwoGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -14265,48 +15054,36 @@ export type AppPriceSchedulesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appPrices + * the fields to include for returned resources of type appCategories */ - 'fields[appPrices]'?: Array<('manual' | 'startDate' | 'endDate' | 'appPricePoint' | 'territory')>; - /** - * the fields to include for returned resources of type appPriceSchedules - */ - 'fields[appPriceSchedules]'?: Array<('app' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; - /** - * maximum number of related automaticPrices returned (when they are included) - */ - 'limit[automaticPrices]'?: number; + include?: Array<('subcategories' | 'parent')>; /** - * maximum number of related manualPrices returned (when they are included) + * maximum number of related subcategories returned (when they are included) */ - 'limit[manualPrices]'?: number; + 'limit[subcategories]'?: number; }; }; -export type AppPriceSchedulesGetInstanceResponse = (AppPriceScheduleResponse); +export type AppInfosSecondarySubcategoryTwoGetToOneRelatedResponse = (AppCategoryResponse); -export type AppPriceSchedulesGetInstanceError = (ErrorResponse); +export type AppInfosSecondarySubcategoryTwoGetToOneRelatedError = (ErrorResponse); -export type AppScreenshotSetsCreateInstanceData = { +export type AppPreviewSetsCreateInstanceData = { /** - * AppScreenshotSet representation + * AppPreviewSet representation */ - body: AppScreenshotSetCreateRequest; + body: AppPreviewSetCreateRequest; }; -export type AppScreenshotSetsCreateInstanceResponse = (AppScreenshotSetResponse); +export type AppPreviewSetsCreateInstanceResponse = (AppPreviewSetResponse); -export type AppScreenshotSetsCreateInstanceError = (ErrorResponse); +export type AppPreviewSetsCreateInstanceError = (ErrorResponse); -export type AppScreenshotSetsGetInstanceData = { +export type AppPreviewSetsGetInstanceData = { path: { /** * the id of the requested resource @@ -14315,29 +15092,29 @@ export type AppScreenshotSetsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appScreenshots + * the fields to include for returned resources of type appPreviews */ - 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appScreenshotSet')>; + 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appPreviewSet')>; /** - * the fields to include for returned resources of type appScreenshotSets + * the fields to include for returned resources of type appPreviewSets */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * maximum number of related appScreenshots returned (when they are included) + * maximum number of related appPreviews returned (when they are included) */ - 'limit[appScreenshots]'?: number; + 'limit[appPreviews]'?: number; }; }; -export type AppScreenshotSetsGetInstanceResponse = (AppScreenshotSetResponse); +export type AppPreviewSetsGetInstanceResponse = (AppPreviewSetResponse); -export type AppScreenshotSetsGetInstanceError = (ErrorResponse); +export type AppPreviewSetsGetInstanceError = (ErrorResponse); -export type AppScreenshotSetsDeleteInstanceData = { +export type AppPreviewSetsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -14346,22 +15123,11 @@ export type AppScreenshotSetsDeleteInstanceData = { }; }; -export type AppScreenshotSetsDeleteInstanceResponse = (void); - -export type AppScreenshotSetsDeleteInstanceError = (ErrorResponse); - -export type AppScreenshotsCreateInstanceData = { - /** - * AppScreenshot representation - */ - body: AppScreenshotCreateRequest; -}; - -export type AppScreenshotsCreateInstanceResponse = (AppScreenshotResponse); +export type AppPreviewSetsDeleteInstanceResponse = (void); -export type AppScreenshotsCreateInstanceError = (ErrorResponse); +export type AppPreviewSetsDeleteInstanceError = (ErrorResponse); -export type AppScreenshotsGetInstanceData = { +export type AppPreviewSetsAppPreviewsGetToManyRelationshipData = { path: { /** * the id of the requested resource @@ -14370,25 +15136,21 @@ export type AppScreenshotsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appScreenshots - */ - 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appScreenshotSet')>; - /** - * comma-separated list of relationships to include + * maximum resources per page */ - include?: Array<('appScreenshotSet')>; + limit?: number; }; }; -export type AppScreenshotsGetInstanceResponse = (AppScreenshotResponse); +export type AppPreviewSetsAppPreviewsGetToManyRelationshipResponse = (AppPreviewSetAppPreviewsLinkagesResponse); -export type AppScreenshotsGetInstanceError = (ErrorResponse); +export type AppPreviewSetsAppPreviewsGetToManyRelationshipError = (ErrorResponse); -export type AppScreenshotsUpdateInstanceData = { +export type AppPreviewSetsAppPreviewsReplaceToManyRelationshipData = { /** - * AppScreenshot representation + * List of related linkages */ - body: AppScreenshotUpdateRequest; + body: AppPreviewSetAppPreviewsLinkagesRequest; path: { /** * the id of the requested resource @@ -14397,35 +15159,53 @@ export type AppScreenshotsUpdateInstanceData = { }; }; -export type AppScreenshotsUpdateInstanceResponse = (AppScreenshotResponse); +export type AppPreviewSetsAppPreviewsReplaceToManyRelationshipResponse = (void); -export type AppScreenshotsUpdateInstanceError = (ErrorResponse); +export type AppPreviewSetsAppPreviewsReplaceToManyRelationshipError = (ErrorResponse); -export type AppScreenshotsDeleteInstanceData = { +export type AppPreviewSetsAppPreviewsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type appPreviews + */ + 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appPreviewSet')>; + /** + * the fields to include for returned resources of type appPreviewSets + */ + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appPreviewSet')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type AppScreenshotsDeleteInstanceResponse = (void); +export type AppPreviewSetsAppPreviewsGetToManyRelatedResponse = (AppPreviewsResponse); -export type AppScreenshotsDeleteInstanceError = (ErrorResponse); +export type AppPreviewSetsAppPreviewsGetToManyRelatedError = (ErrorResponse); -export type AppStoreReviewAttachmentsCreateInstanceData = { +export type AppPreviewsCreateInstanceData = { /** - * AppStoreReviewAttachment representation + * AppPreview representation */ - body: AppStoreReviewAttachmentCreateRequest; + body: AppPreviewCreateRequest; }; -export type AppStoreReviewAttachmentsCreateInstanceResponse = (AppStoreReviewAttachmentResponse); +export type AppPreviewsCreateInstanceResponse = (AppPreviewResponse); -export type AppStoreReviewAttachmentsCreateInstanceError = (ErrorResponse); +export type AppPreviewsCreateInstanceError = (ErrorResponse); -export type AppStoreReviewAttachmentsGetInstanceData = { +export type AppPreviewsGetInstanceData = { path: { /** * the id of the requested resource @@ -14434,25 +15214,25 @@ export type AppStoreReviewAttachmentsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appStoreReviewAttachments + * the fields to include for returned resources of type appPreviews */ - 'fields[appStoreReviewAttachments]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreReviewDetail')>; + 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appPreviewSet')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreReviewDetail')>; + include?: Array<('appPreviewSet')>; }; }; -export type AppStoreReviewAttachmentsGetInstanceResponse = (AppStoreReviewAttachmentResponse); +export type AppPreviewsGetInstanceResponse = (AppPreviewResponse); -export type AppStoreReviewAttachmentsGetInstanceError = (ErrorResponse); +export type AppPreviewsGetInstanceError = (ErrorResponse); -export type AppStoreReviewAttachmentsUpdateInstanceData = { +export type AppPreviewsUpdateInstanceData = { /** - * AppStoreReviewAttachment representation + * AppPreview representation */ - body: AppStoreReviewAttachmentUpdateRequest; + body: AppPreviewUpdateRequest; path: { /** * the id of the requested resource @@ -14461,11 +15241,11 @@ export type AppStoreReviewAttachmentsUpdateInstanceData = { }; }; -export type AppStoreReviewAttachmentsUpdateInstanceResponse = (AppStoreReviewAttachmentResponse); +export type AppPreviewsUpdateInstanceResponse = (AppPreviewResponse); -export type AppStoreReviewAttachmentsUpdateInstanceError = (ErrorResponse); +export type AppPreviewsUpdateInstanceError = (ErrorResponse); -export type AppStoreReviewAttachmentsDeleteInstanceData = { +export type AppPreviewsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -14474,22 +15254,11 @@ export type AppStoreReviewAttachmentsDeleteInstanceData = { }; }; -export type AppStoreReviewAttachmentsDeleteInstanceResponse = (void); - -export type AppStoreReviewAttachmentsDeleteInstanceError = (ErrorResponse); - -export type AppStoreReviewDetailsCreateInstanceData = { - /** - * AppStoreReviewDetail representation - */ - body: AppStoreReviewDetailCreateRequest; -}; - -export type AppStoreReviewDetailsCreateInstanceResponse = (AppStoreReviewDetailResponse); +export type AppPreviewsDeleteInstanceResponse = (void); -export type AppStoreReviewDetailsCreateInstanceError = (ErrorResponse); +export type AppPreviewsDeleteInstanceError = (ErrorResponse); -export type AppStoreReviewDetailsGetInstanceData = { +export type AppPricePointsV3GetInstanceData = { path: { /** * the id of the requested resource @@ -14498,57 +15267,71 @@ export type AppStoreReviewDetailsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appStoreReviewAttachments - */ - 'fields[appStoreReviewAttachments]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreReviewDetail')>; - /** - * the fields to include for returned resources of type appStoreReviewDetails + * the fields to include for returned resources of type appPricePoints */ - 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersion' | 'appStoreReviewAttachments')>; - /** - * maximum number of related appStoreReviewAttachments returned (when they are included) - */ - 'limit[appStoreReviewAttachments]'?: number; + include?: Array<('app' | 'territory')>; }; }; -export type AppStoreReviewDetailsGetInstanceResponse = (AppStoreReviewDetailResponse); +export type AppPricePointsV3GetInstanceResponse = (AppPricePointV3Response); -export type AppStoreReviewDetailsGetInstanceError = (ErrorResponse); +export type AppPricePointsV3GetInstanceError = (ErrorResponse); -export type AppStoreReviewDetailsUpdateInstanceData = { - /** - * AppStoreReviewDetail representation - */ - body: AppStoreReviewDetailUpdateRequest; +export type AppPricePointsV3EqualizationsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type appPricePoints + */ + 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type territories + */ + 'fields[territories]'?: Array<('currency')>; + /** + * filter by id(s) of related 'territory' + */ + 'filter[territory]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'territory')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type AppStoreReviewDetailsUpdateInstanceResponse = (AppStoreReviewDetailResponse); +export type AppPricePointsV3EqualizationsGetToManyRelatedResponse = (AppPricePointsV3Response); -export type AppStoreReviewDetailsUpdateInstanceError = (ErrorResponse); +export type AppPricePointsV3EqualizationsGetToManyRelatedError = (ErrorResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceData = { +export type AppPriceSchedulesCreateInstanceData = { /** - * AppStoreVersionExperimentTreatmentLocalization representation + * AppPriceSchedule representation */ - body: AppStoreVersionExperimentTreatmentLocalizationCreateRequest; + body: AppPriceScheduleCreateRequest; }; -export type AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceResponse = (AppStoreVersionExperimentTreatmentLocalizationResponse); +export type AppPriceSchedulesCreateInstanceResponse = (AppPriceScheduleResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceError = (ErrorResponse); +export type AppPriceSchedulesCreateInstanceError = (ErrorResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsGetInstanceData = { +export type AppPriceSchedulesGetInstanceData = { path: { /** * the id of the requested resource @@ -14557,133 +15340,103 @@ export type AppStoreVersionExperimentTreatmentLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appPreviewSets + * the fields to include for returned resources of type appPrices */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + 'fields[appPrices]'?: Array<('manual' | 'startDate' | 'endDate' | 'appPricePoint' | 'territory')>; /** - * the fields to include for returned resources of type appScreenshotSets + * the fields to include for returned resources of type appPriceSchedules */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + 'fields[appPriceSchedules]'?: Array<('app' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * the fields to include for returned resources of type territories */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + 'fields[territories]'?: Array<('currency')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + include?: Array<('app' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; /** - * maximum number of related appPreviewSets returned (when they are included) + * maximum number of related automaticPrices returned (when they are included) */ - 'limit[appPreviewSets]'?: number; + 'limit[automaticPrices]'?: number; /** - * maximum number of related appScreenshotSets returned (when they are included) + * maximum number of related manualPrices returned (when they are included) */ - 'limit[appScreenshotSets]'?: number; + 'limit[manualPrices]'?: number; }; }; -export type AppStoreVersionExperimentTreatmentLocalizationsGetInstanceResponse = (AppStoreVersionExperimentTreatmentLocalizationResponse); +export type AppPriceSchedulesGetInstanceResponse = (AppPriceScheduleResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsGetInstanceError = (ErrorResponse); +export type AppPriceSchedulesGetInstanceError = (ErrorResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceData = { +export type AppPriceSchedulesAutomaticPricesGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceResponse = (void); - -export type AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceError = (ErrorResponse); - -export type AppStoreVersionExperimentTreatmentsCreateInstanceData = { - /** - * AppStoreVersionExperimentTreatment representation - */ - body: AppStoreVersionExperimentTreatmentCreateRequest; -}; - -export type AppStoreVersionExperimentTreatmentsCreateInstanceResponse = (AppStoreVersionExperimentTreatmentResponse); - -export type AppStoreVersionExperimentTreatmentsCreateInstanceError = (ErrorResponse); - -export type AppStoreVersionExperimentTreatmentsGetInstanceData = { - path: { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type appPricePoints */ - id: string; - }; - query?: { + 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * the fields to include for returned resources of type appPrices */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + 'fields[appPrices]'?: Array<('manual' | 'startDate' | 'endDate' | 'appPricePoint' | 'territory')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments + * the fields to include for returned resources of type territories */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + 'fields[territories]'?: Array<('currency')>; + /** + * filter by attribute 'endDate' + */ + 'filter[endDate]'?: Array<(string)>; + /** + * filter by attribute 'startDate' + */ + 'filter[startDate]'?: Array<(string)>; + /** + * filter by id(s) of related 'territory' + */ + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + include?: Array<('appPricePoint' | 'territory')>; /** - * maximum number of related appStoreVersionExperimentTreatmentLocalizations returned (when they are included) + * maximum resources per page */ - 'limit[appStoreVersionExperimentTreatmentLocalizations]'?: number; + limit?: number; }; }; -export type AppStoreVersionExperimentTreatmentsGetInstanceResponse = (AppStoreVersionExperimentTreatmentResponse); +export type AppPriceSchedulesAutomaticPricesGetToManyRelatedResponse = (AppPricesV2Response); -export type AppStoreVersionExperimentTreatmentsGetInstanceError = (ErrorResponse); +export type AppPriceSchedulesAutomaticPricesGetToManyRelatedError = (ErrorResponse); -export type AppStoreVersionExperimentTreatmentsUpdateInstanceData = { - /** - * AppStoreVersionExperimentTreatment representation - */ - body: AppStoreVersionExperimentTreatmentUpdateRequest; +export type AppPriceSchedulesBaseTerritoryGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type AppStoreVersionExperimentTreatmentsUpdateInstanceResponse = (AppStoreVersionExperimentTreatmentResponse); - -export type AppStoreVersionExperimentTreatmentsUpdateInstanceError = (ErrorResponse); - -export type AppStoreVersionExperimentTreatmentsDeleteInstanceData = { - path: { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type territories */ - id: string; + 'fields[territories]'?: Array<('currency')>; }; }; -export type AppStoreVersionExperimentTreatmentsDeleteInstanceResponse = (void); - -export type AppStoreVersionExperimentTreatmentsDeleteInstanceError = (ErrorResponse); - -export type AppStoreVersionExperimentsV2CreateInstanceData = { - /** - * AppStoreVersionExperiment representation - */ - body: AppStoreVersionExperimentV2CreateRequest; -}; - -export type AppStoreVersionExperimentsV2CreateInstanceResponse = (AppStoreVersionExperimentV2Response); +export type AppPriceSchedulesBaseTerritoryGetToOneRelatedResponse = (TerritoryResponse); -export type AppStoreVersionExperimentsV2CreateInstanceError = (ErrorResponse); +export type AppPriceSchedulesBaseTerritoryGetToOneRelatedError = (ErrorResponse); -export type AppStoreVersionExperimentsV2GetInstanceData = { +export type AppPriceSchedulesManualPricesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -14692,74 +15445,56 @@ export type AppStoreVersionExperimentsV2GetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appStoreVersionExperiments + * the fields to include for returned resources of type appPricePoints */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; + 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments + * the fields to include for returned resources of type appPrices */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + 'fields[appPrices]'?: Array<('manual' | 'startDate' | 'endDate' | 'appPricePoint' | 'territory')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type territories */ - include?: Array<('app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; + 'fields[territories]'?: Array<('currency')>; /** - * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) + * filter by attribute 'endDate' */ - 'limit[appStoreVersionExperimentTreatments]'?: number; + 'filter[endDate]'?: Array<(string)>; /** - * maximum number of related controlVersions returned (when they are included) + * filter by attribute 'startDate' */ - 'limit[controlVersions]'?: number; - }; -}; - -export type AppStoreVersionExperimentsV2GetInstanceResponse = (AppStoreVersionExperimentV2Response); - -export type AppStoreVersionExperimentsV2GetInstanceError = (ErrorResponse); - -export type AppStoreVersionExperimentsV2UpdateInstanceData = { - /** - * AppStoreVersionExperiment representation - */ - body: AppStoreVersionExperimentV2UpdateRequest; - path: { + 'filter[startDate]'?: Array<(string)>; /** - * the id of the requested resource + * filter by id(s) of related 'territory' */ - id: string; - }; -}; - -export type AppStoreVersionExperimentsV2UpdateInstanceResponse = (AppStoreVersionExperimentV2Response); - -export type AppStoreVersionExperimentsV2UpdateInstanceError = (ErrorResponse); - -export type AppStoreVersionExperimentsV2DeleteInstanceData = { - path: { + 'filter[territory]'?: Array<(string)>; /** - * the id of the requested resource + * comma-separated list of relationships to include */ - id: string; + include?: Array<('appPricePoint' | 'territory')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type AppStoreVersionExperimentsV2DeleteInstanceResponse = (void); +export type AppPriceSchedulesManualPricesGetToManyRelatedResponse = (AppPricesV2Response); -export type AppStoreVersionExperimentsV2DeleteInstanceError = (ErrorResponse); +export type AppPriceSchedulesManualPricesGetToManyRelatedError = (ErrorResponse); -export type AppStoreVersionExperimentsCreateInstanceData = { +export type AppScreenshotSetsCreateInstanceData = { /** - * AppStoreVersionExperiment representation + * AppScreenshotSet representation */ - body: AppStoreVersionExperimentCreateRequest; + body: AppScreenshotSetCreateRequest; }; -export type AppStoreVersionExperimentsCreateInstanceResponse = (AppStoreVersionExperimentResponse); +export type AppScreenshotSetsCreateInstanceResponse = (AppScreenshotSetResponse); -export type AppStoreVersionExperimentsCreateInstanceError = (ErrorResponse); +export type AppScreenshotSetsCreateInstanceError = (ErrorResponse); -export type AppStoreVersionExperimentsGetInstanceData = { +export type AppScreenshotSetsGetInstanceData = { path: { /** * the id of the requested resource @@ -14768,33 +15503,29 @@ export type AppStoreVersionExperimentsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appStoreVersionExperiments + * the fields to include for returned resources of type appScreenshots */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments')>; + 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'appScreenshotSet')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments + * the fields to include for returned resources of type appScreenshotSets */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersion' | 'appStoreVersionExperimentTreatments')>; + include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; /** - * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) + * maximum number of related appScreenshots returned (when they are included) */ - 'limit[appStoreVersionExperimentTreatments]'?: number; + 'limit[appScreenshots]'?: number; }; }; -export type AppStoreVersionExperimentsGetInstanceResponse = (AppStoreVersionExperimentResponse); +export type AppScreenshotSetsGetInstanceResponse = (AppScreenshotSetResponse); -export type AppStoreVersionExperimentsGetInstanceError = (ErrorResponse); +export type AppScreenshotSetsGetInstanceError = (ErrorResponse); -export type AppStoreVersionExperimentsUpdateInstanceData = { - /** - * AppStoreVersionExperiment representation - */ - body: AppStoreVersionExperimentUpdateRequest; +export type AppScreenshotSetsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -14803,35 +15534,47 @@ export type AppStoreVersionExperimentsUpdateInstanceData = { }; }; -export type AppStoreVersionExperimentsUpdateInstanceResponse = (AppStoreVersionExperimentResponse); +export type AppScreenshotSetsDeleteInstanceResponse = (void); -export type AppStoreVersionExperimentsUpdateInstanceError = (ErrorResponse); +export type AppScreenshotSetsDeleteInstanceError = (ErrorResponse); -export type AppStoreVersionExperimentsDeleteInstanceData = { +export type AppScreenshotSetsAppScreenshotsGetToManyRelationshipData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type AppStoreVersionExperimentsDeleteInstanceResponse = (void); +export type AppScreenshotSetsAppScreenshotsGetToManyRelationshipResponse = (AppScreenshotSetAppScreenshotsLinkagesResponse); -export type AppStoreVersionExperimentsDeleteInstanceError = (ErrorResponse); +export type AppScreenshotSetsAppScreenshotsGetToManyRelationshipError = (ErrorResponse); -export type AppStoreVersionLocalizationsCreateInstanceData = { +export type AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipData = { /** - * AppStoreVersionLocalization representation + * List of related linkages */ - body: AppStoreVersionLocalizationCreateRequest; + body: AppScreenshotSetAppScreenshotsLinkagesRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type AppStoreVersionLocalizationsCreateInstanceResponse = (AppStoreVersionLocalizationResponse); +export type AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipResponse = (void); -export type AppStoreVersionLocalizationsCreateInstanceError = (ErrorResponse); +export type AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipError = (ErrorResponse); -export type AppStoreVersionLocalizationsGetInstanceData = { +export type AppScreenshotSetsAppScreenshotsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -14840,82 +15583,67 @@ export type AppStoreVersionLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appPreviewSets + * the fields to include for returned resources of type appScreenshots */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'appScreenshotSet')>; /** * the fields to include for returned resources of type appScreenshotSets */ 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; - /** - * the fields to include for returned resources of type appStoreVersionLocalizations - */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * maximum number of related appPreviewSets returned (when they are included) - */ - 'limit[appPreviewSets]'?: number; + include?: Array<('appScreenshotSet')>; /** - * maximum number of related appScreenshotSets returned (when they are included) + * maximum resources per page */ - 'limit[appScreenshotSets]'?: number; + limit?: number; }; }; -export type AppStoreVersionLocalizationsGetInstanceResponse = (AppStoreVersionLocalizationResponse); +export type AppScreenshotSetsAppScreenshotsGetToManyRelatedResponse = (AppScreenshotsResponse); -export type AppStoreVersionLocalizationsGetInstanceError = (ErrorResponse); +export type AppScreenshotSetsAppScreenshotsGetToManyRelatedError = (ErrorResponse); -export type AppStoreVersionLocalizationsUpdateInstanceData = { +export type AppScreenshotsCreateInstanceData = { /** - * AppStoreVersionLocalization representation + * AppScreenshot representation */ - body: AppStoreVersionLocalizationUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; + body: AppScreenshotCreateRequest; }; -export type AppStoreVersionLocalizationsUpdateInstanceResponse = (AppStoreVersionLocalizationResponse); +export type AppScreenshotsCreateInstanceResponse = (AppScreenshotResponse); -export type AppStoreVersionLocalizationsUpdateInstanceError = (ErrorResponse); +export type AppScreenshotsCreateInstanceError = (ErrorResponse); -export type AppStoreVersionLocalizationsDeleteInstanceData = { +export type AppScreenshotsGetInstanceData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type appScreenshots + */ + 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'appScreenshotSet')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appScreenshotSet')>; + }; }; -export type AppStoreVersionLocalizationsDeleteInstanceResponse = (void); - -export type AppStoreVersionLocalizationsDeleteInstanceError = (ErrorResponse); - -export type AppStoreVersionPhasedReleasesCreateInstanceData = { - /** - * AppStoreVersionPhasedRelease representation - */ - body: AppStoreVersionPhasedReleaseCreateRequest; -}; - -export type AppStoreVersionPhasedReleasesCreateInstanceResponse = (AppStoreVersionPhasedReleaseResponse); +export type AppScreenshotsGetInstanceResponse = (AppScreenshotResponse); -export type AppStoreVersionPhasedReleasesCreateInstanceError = (ErrorResponse); +export type AppScreenshotsGetInstanceError = (ErrorResponse); -export type AppStoreVersionPhasedReleasesUpdateInstanceData = { +export type AppScreenshotsUpdateInstanceData = { /** - * AppStoreVersionPhasedRelease representation + * AppScreenshot representation */ - body: AppStoreVersionPhasedReleaseUpdateRequest; + body: AppScreenshotUpdateRequest; path: { /** * the id of the requested resource @@ -14924,11 +15652,11 @@ export type AppStoreVersionPhasedReleasesUpdateInstanceData = { }; }; -export type AppStoreVersionPhasedReleasesUpdateInstanceResponse = (AppStoreVersionPhasedReleaseResponse); +export type AppScreenshotsUpdateInstanceResponse = (AppScreenshotResponse); -export type AppStoreVersionPhasedReleasesUpdateInstanceError = (ErrorResponse); +export type AppScreenshotsUpdateInstanceError = (ErrorResponse); -export type AppStoreVersionPhasedReleasesDeleteInstanceData = { +export type AppScreenshotsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -14937,44 +15665,62 @@ export type AppStoreVersionPhasedReleasesDeleteInstanceData = { }; }; -export type AppStoreVersionPhasedReleasesDeleteInstanceResponse = (void); +export type AppScreenshotsDeleteInstanceResponse = (void); -export type AppStoreVersionPhasedReleasesDeleteInstanceError = (ErrorResponse); +export type AppScreenshotsDeleteInstanceError = (ErrorResponse); -export type AppStoreVersionPromotionsCreateInstanceData = { +export type AppStoreReviewAttachmentsCreateInstanceData = { /** - * AppStoreVersionPromotion representation + * AppStoreReviewAttachment representation */ - body: AppStoreVersionPromotionCreateRequest; + body: AppStoreReviewAttachmentCreateRequest; }; -export type AppStoreVersionPromotionsCreateInstanceResponse = (AppStoreVersionPromotionResponse); +export type AppStoreReviewAttachmentsCreateInstanceResponse = (AppStoreReviewAttachmentResponse); -export type AppStoreVersionPromotionsCreateInstanceError = (ErrorResponse); +export type AppStoreReviewAttachmentsCreateInstanceError = (ErrorResponse); -export type AppStoreVersionReleaseRequestsCreateInstanceData = { - /** - * AppStoreVersionReleaseRequest representation - */ - body: AppStoreVersionReleaseRequestCreateRequest; +export type AppStoreReviewAttachmentsGetInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type appStoreReviewAttachments + */ + 'fields[appStoreReviewAttachments]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreReviewDetail')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appStoreReviewDetail')>; + }; }; -export type AppStoreVersionReleaseRequestsCreateInstanceResponse = (AppStoreVersionReleaseRequestResponse); +export type AppStoreReviewAttachmentsGetInstanceResponse = (AppStoreReviewAttachmentResponse); -export type AppStoreVersionReleaseRequestsCreateInstanceError = (ErrorResponse); +export type AppStoreReviewAttachmentsGetInstanceError = (ErrorResponse); -export type AppStoreVersionSubmissionsCreateInstanceData = { +export type AppStoreReviewAttachmentsUpdateInstanceData = { /** - * AppStoreVersionSubmission representation + * AppStoreReviewAttachment representation */ - body: AppStoreVersionSubmissionCreateRequest; + body: AppStoreReviewAttachmentUpdateRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type AppStoreVersionSubmissionsCreateInstanceResponse = (AppStoreVersionSubmissionResponse); +export type AppStoreReviewAttachmentsUpdateInstanceResponse = (AppStoreReviewAttachmentResponse); -export type AppStoreVersionSubmissionsCreateInstanceError = (ErrorResponse); +export type AppStoreReviewAttachmentsUpdateInstanceError = (ErrorResponse); -export type AppStoreVersionSubmissionsDeleteInstanceData = { +export type AppStoreReviewAttachmentsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -14983,22 +15729,22 @@ export type AppStoreVersionSubmissionsDeleteInstanceData = { }; }; -export type AppStoreVersionSubmissionsDeleteInstanceResponse = (void); +export type AppStoreReviewAttachmentsDeleteInstanceResponse = (void); -export type AppStoreVersionSubmissionsDeleteInstanceError = (ErrorResponse); +export type AppStoreReviewAttachmentsDeleteInstanceError = (ErrorResponse); -export type AppStoreVersionsCreateInstanceData = { +export type AppStoreReviewDetailsCreateInstanceData = { /** - * AppStoreVersion representation + * AppStoreReviewDetail representation */ - body: AppStoreVersionCreateRequest; + body: AppStoreReviewDetailCreateRequest; }; -export type AppStoreVersionsCreateInstanceResponse = (AppStoreVersionResponse); +export type AppStoreReviewDetailsCreateInstanceResponse = (AppStoreReviewDetailResponse); -export type AppStoreVersionsCreateInstanceError = (ErrorResponse); +export type AppStoreReviewDetailsCreateInstanceError = (ErrorResponse); -export type AppStoreVersionsGetInstanceData = { +export type AppStoreReviewDetailsGetInstanceData = { path: { /** * the id of the requested resource @@ -15007,84 +15753,127 @@ export type AppStoreVersionsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type ageRatingDeclarations - * @deprecated + * the fields to include for returned resources of type appStoreReviewAttachments */ - 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; + 'fields[appStoreReviewAttachments]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreReviewDetail')>; /** - * the fields to include for returned resources of type alternativeDistributionPackages + * the fields to include for returned resources of type appStoreReviewDetails */ - 'fields[alternativeDistributionPackages]'?: Array<('appStoreVersion' | 'versions')>; + 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; /** - * the fields to include for returned resources of type appClipDefaultExperiences + * comma-separated list of relationships to include */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; + include?: Array<('appStoreVersion' | 'appStoreReviewAttachments')>; /** - * the fields to include for returned resources of type appStoreReviewDetails + * maximum number of related appStoreReviewAttachments returned (when they are included) */ - 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + 'limit[appStoreReviewAttachments]'?: number; + }; +}; + +export type AppStoreReviewDetailsGetInstanceResponse = (AppStoreReviewDetailResponse); + +export type AppStoreReviewDetailsGetInstanceError = (ErrorResponse); + +export type AppStoreReviewDetailsUpdateInstanceData = { + /** + * AppStoreReviewDetail representation + */ + body: AppStoreReviewDetailUpdateRequest; + path: { /** - * the fields to include for returned resources of type appStoreVersionExperiments + * the id of the requested resource */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; + id: string; + }; +}; + +export type AppStoreReviewDetailsUpdateInstanceResponse = (AppStoreReviewDetailResponse); + +export type AppStoreReviewDetailsUpdateInstanceError = (ErrorResponse); + +export type AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedData = { + path: { /** - * the fields to include for returned resources of type appStoreVersionLocalizations + * the id of the requested resource */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type appStoreVersionPhasedReleases + * the fields to include for returned resources of type appStoreReviewAttachments */ - 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber' | 'appStoreVersion')>; + 'fields[appStoreReviewAttachments]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreReviewDetail')>; /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type appStoreReviewDetails */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; /** - * the fields to include for returned resources of type appStoreVersionSubmissions - * @deprecated + * comma-separated list of relationships to include */ - 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; + include?: Array<('appStoreReviewDetail')>; /** - * the fields to include for returned resources of type builds + * maximum resources per page */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + limit?: number; + }; +}; + +export type AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedResponse = (AppStoreReviewAttachmentsResponse); + +export type AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedError = (ErrorResponse); + +export type AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceData = { + /** + * AppStoreVersionExperimentTreatmentLocalization representation + */ + body: AppStoreVersionExperimentTreatmentLocalizationCreateRequest; +}; + +export type AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceResponse = (AppStoreVersionExperimentTreatmentLocalizationResponse); + +export type AppStoreVersionExperimentTreatmentLocalizationsCreateInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentTreatmentLocalizationsGetInstanceData = { + path: { /** - * the fields to include for returned resources of type gameCenterAppVersions + * the id of the requested resource */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type routingAppCoverages + * the fields to include for returned resources of type appPreviewSets */ - 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreVersion')>; + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appScreenshotSets */ - include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; /** - * maximum number of related appStoreVersionExperiments returned (when they are included) - * @deprecated + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'limit[appStoreVersionExperiments]'?: number; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[appStoreVersionExperimentsV2]'?: number; + include?: Array<('appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * maximum number of related appStoreVersionLocalizations returned (when they are included) + * maximum number of related appPreviewSets returned (when they are included) */ - 'limit[appStoreVersionLocalizations]'?: number; + 'limit[appPreviewSets]'?: number; + /** + * maximum number of related appScreenshotSets returned (when they are included) + */ + 'limit[appScreenshotSets]'?: number; }; }; -export type AppStoreVersionsGetInstanceResponse = (AppStoreVersionResponse); +export type AppStoreVersionExperimentTreatmentLocalizationsGetInstanceResponse = (AppStoreVersionExperimentTreatmentLocalizationResponse); -export type AppStoreVersionsGetInstanceError = (ErrorResponse); +export type AppStoreVersionExperimentTreatmentLocalizationsGetInstanceError = (ErrorResponse); -export type AppStoreVersionsUpdateInstanceData = { - /** - * AppStoreVersion representation - */ - body: AppStoreVersionUpdateRequest; +export type AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -15093,258 +15882,400 @@ export type AppStoreVersionsUpdateInstanceData = { }; }; -export type AppStoreVersionsUpdateInstanceResponse = (AppStoreVersionResponse); +export type AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceResponse = (void); -export type AppStoreVersionsUpdateInstanceError = (ErrorResponse); +export type AppStoreVersionExperimentTreatmentLocalizationsDeleteInstanceError = (ErrorResponse); -export type AppStoreVersionsDeleteInstanceData = { +export type AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type AppStoreVersionsDeleteInstanceResponse = (void); - -export type AppStoreVersionsDeleteInstanceError = (ErrorResponse); - -export type AppsGetCollectionData = { query?: { /** - * filter by existence or non-existence of related 'gameCenterEnabledVersions' - * @deprecated + * the fields to include for returned resources of type appCustomProductPageLocalizations */ - 'exists[gameCenterEnabledVersions]'?: boolean; + 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type appClips + * the fields to include for returned resources of type appPreviews */ - 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; + 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appPreviewSet')>; /** - * the fields to include for returned resources of type appCustomProductPages + * the fields to include for returned resources of type appPreviewSets */ - 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions' | 'appStoreVersionTemplate' | 'customProductPageTemplate')>; + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * the fields to include for returned resources of type appEncryptionDeclarations + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type appEvents + * the fields to include for returned resources of type appStoreVersionLocalizations */ - 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'app' | 'localizations')>; + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type appInfos + * filter by id(s) of related 'appCustomProductPageLocalization' */ - 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; + 'filter[appCustomProductPageLocalization]'?: Array<(string)>; /** - * the fields to include for returned resources of type appPreOrders - * @deprecated + * filter by id(s) of related 'appStoreVersionLocalization' */ - 'fields[appPreOrders]'?: Array<('preOrderAvailableDate' | 'appReleaseDate' | 'app')>; + 'filter[appStoreVersionLocalization]'?: Array<(string)>; /** - * the fields to include for returned resources of type apps + * filter by attribute 'previewType' */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'filter[previewType]'?: Array<('IPHONE_67' | 'IPHONE_61' | 'IPHONE_65' | 'IPHONE_58' | 'IPHONE_55' | 'IPHONE_47' | 'IPHONE_40' | 'IPHONE_35' | 'IPAD_PRO_3GEN_129' | 'IPAD_PRO_3GEN_11' | 'IPAD_PRO_129' | 'IPAD_105' | 'IPAD_97' | 'DESKTOP' | 'APPLE_TV' | 'APPLE_VISION_PRO')>; /** - * the fields to include for returned resources of type appStoreVersionExperiments + * comma-separated list of relationships to include */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; + include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * the fields to include for returned resources of type appStoreVersions + * maximum resources per page */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + limit?: number; /** - * the fields to include for returned resources of type betaAppLocalizations + * maximum number of related appPreviews returned (when they are included) */ - 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; + 'limit[appPreviews]'?: number; + }; +}; + +export type AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedResponse = (AppPreviewSetsResponse); + +export type AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedError = (ErrorResponse); + +export type AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedData = { + path: { /** - * the fields to include for returned resources of type betaAppReviewDetails + * the id of the requested resource */ - 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type betaGroups + * the fields to include for returned resources of type appCustomProductPageLocalizations */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type betaLicenseAgreements + * the fields to include for returned resources of type appScreenshots */ - 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; + 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'appScreenshotSet')>; /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type appScreenshotSets */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; /** - * the fields to include for returned resources of type ciProducts + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type endUserLicenseAgreements + * the fields to include for returned resources of type appStoreVersionLocalizations */ - 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type gameCenterDetails + * filter by id(s) of related 'appCustomProductPageLocalization' */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + 'filter[appCustomProductPageLocalization]'?: Array<(string)>; /** - * the fields to include for returned resources of type gameCenterEnabledVersions - * @deprecated + * filter by id(s) of related 'appStoreVersionLocalization' */ - 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; + 'filter[appStoreVersionLocalization]'?: Array<(string)>; /** - * the fields to include for returned resources of type inAppPurchases + * filter by attribute 'screenshotDisplayType' */ - 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps' | 'name' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + 'filter[screenshotDisplayType]'?: Array<('APP_IPHONE_67' | 'APP_IPHONE_61' | 'APP_IPHONE_65' | 'APP_IPHONE_58' | 'APP_IPHONE_55' | 'APP_IPHONE_47' | 'APP_IPHONE_40' | 'APP_IPHONE_35' | 'APP_IPAD_PRO_3GEN_129' | 'APP_IPAD_PRO_3GEN_11' | 'APP_IPAD_PRO_129' | 'APP_IPAD_105' | 'APP_IPAD_97' | 'APP_DESKTOP' | 'APP_WATCH_ULTRA' | 'APP_WATCH_SERIES_10' | 'APP_WATCH_SERIES_7' | 'APP_WATCH_SERIES_4' | 'APP_WATCH_SERIES_3' | 'APP_APPLE_TV' | 'APP_APPLE_VISION_PRO' | 'IMESSAGE_APP_IPHONE_67' | 'IMESSAGE_APP_IPHONE_61' | 'IMESSAGE_APP_IPHONE_65' | 'IMESSAGE_APP_IPHONE_58' | 'IMESSAGE_APP_IPHONE_55' | 'IMESSAGE_APP_IPHONE_47' | 'IMESSAGE_APP_IPHONE_40' | 'IMESSAGE_APP_IPAD_PRO_3GEN_129' | 'IMESSAGE_APP_IPAD_PRO_3GEN_11' | 'IMESSAGE_APP_IPAD_PRO_129' | 'IMESSAGE_APP_IPAD_105' | 'IMESSAGE_APP_IPAD_97')>; /** - * the fields to include for returned resources of type preReleaseVersions + * comma-separated list of relationships to include */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; /** - * the fields to include for returned resources of type promotedPurchases + * maximum resources per page */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + limit?: number; /** - * the fields to include for returned resources of type reviewSubmissions + * maximum number of related appScreenshots returned (when they are included) */ - 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'submitted' | 'canceled' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + 'limit[appScreenshots]'?: number; + }; +}; + +export type AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedResponse = (AppScreenshotSetsResponse); + +export type AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedError = (ErrorResponse); + +export type AppStoreVersionExperimentTreatmentsCreateInstanceData = { + /** + * AppStoreVersionExperimentTreatment representation + */ + body: AppStoreVersionExperimentTreatmentCreateRequest; +}; + +export type AppStoreVersionExperimentTreatmentsCreateInstanceResponse = (AppStoreVersionExperimentTreatmentResponse); + +export type AppStoreVersionExperimentTreatmentsCreateInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentTreatmentsGetInstanceData = { + path: { /** - * the fields to include for returned resources of type subscriptionGracePeriods + * the id of the requested resource */ - 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type subscriptionGroups + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'fields[subscriptionGroups]'?: Array<('referenceName' | 'app' | 'subscriptions' | 'subscriptionGroupLocalizations')>; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * filter by attribute 'appStoreVersions.appStoreState' + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - 'filter[appStoreVersions.appStoreState]'?: Array<('ACCEPTED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_CONTRACT' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PREORDER_READY_FOR_SALE' | 'PROCESSING_FOR_APP_STORE' | 'READY_FOR_REVIEW' | 'READY_FOR_SALE' | 'REJECTED' | 'REMOVED_FROM_SALE' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW' | 'REPLACED_WITH_NEW_VERSION' | 'NOT_APPLICABLE')>; + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * filter by attribute 'appStoreVersions.appVersionState' + * comma-separated list of relationships to include */ - 'filter[appStoreVersions.appVersionState]'?: Array<('ACCEPTED' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PROCESSING_FOR_DISTRIBUTION' | 'READY_FOR_DISTRIBUTION' | 'READY_FOR_REVIEW' | 'REJECTED' | 'REPLACED_WITH_NEW_VERSION' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW')>; + include?: Array<('appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * filter by attribute 'appStoreVersions.platform' + * maximum number of related appStoreVersionExperimentTreatmentLocalizations returned (when they are included) */ - 'filter[appStoreVersions.platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'limit[appStoreVersionExperimentTreatmentLocalizations]'?: number; + }; +}; + +export type AppStoreVersionExperimentTreatmentsGetInstanceResponse = (AppStoreVersionExperimentTreatmentResponse); + +export type AppStoreVersionExperimentTreatmentsGetInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentTreatmentsUpdateInstanceData = { + /** + * AppStoreVersionExperimentTreatment representation + */ + body: AppStoreVersionExperimentTreatmentUpdateRequest; + path: { /** - * filter by id(s) of related 'appStoreVersions' + * the id of the requested resource */ - 'filter[appStoreVersions]'?: Array<(string)>; + id: string; + }; +}; + +export type AppStoreVersionExperimentTreatmentsUpdateInstanceResponse = (AppStoreVersionExperimentTreatmentResponse); + +export type AppStoreVersionExperimentTreatmentsUpdateInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentTreatmentsDeleteInstanceData = { + path: { /** - * filter by attribute 'bundleId' + * the id of the requested resource */ - 'filter[bundleId]'?: Array<(string)>; + id: string; + }; +}; + +export type AppStoreVersionExperimentTreatmentsDeleteInstanceResponse = (void); + +export type AppStoreVersionExperimentTreatmentsDeleteInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedData = { + path: { /** - * filter by id(s) + * the id of the requested resource */ - 'filter[id]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by attribute 'name' + * the fields to include for returned resources of type appPreviewSets */ - 'filter[name]'?: Array<(string)>; + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * filter by attribute 'reviewSubmissions.platform' + * the fields to include for returned resources of type appScreenshotSets */ - 'filter[reviewSubmissions.platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; /** - * filter by attribute 'reviewSubmissions.state' + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'filter[reviewSubmissions.state]'?: Array<('READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'UNRESOLVED_ISSUES' | 'CANCELING' | 'COMPLETING' | 'COMPLETE')>; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * filter by attribute 'sku' + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - 'filter[sku]'?: Array<(string)>; + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + /** + * filter by attribute 'locale' + */ + 'filter[locale]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('appEncryptionDeclarations' | 'ciProduct' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'endUserLicenseAgreement' | 'preOrder' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2')>; + include?: Array<('appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related appClips returned (when they are included) - */ - 'limit[appClips]'?: number; - /** - * maximum number of related appCustomProductPages returned (when they are included) + * maximum number of related appPreviewSets returned (when they are included) */ - 'limit[appCustomProductPages]'?: number; + 'limit[appPreviewSets]'?: number; /** - * maximum number of related appEncryptionDeclarations returned (when they are included) + * maximum number of related appScreenshotSets returned (when they are included) */ - 'limit[appEncryptionDeclarations]'?: number; + 'limit[appScreenshotSets]'?: number; + }; +}; + +export type AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedResponse = (AppStoreVersionExperimentTreatmentLocalizationsResponse); + +export type AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedError = (ErrorResponse); + +export type AppStoreVersionExperimentsV2CreateInstanceData = { + /** + * AppStoreVersionExperiment representation + */ + body: AppStoreVersionExperimentV2CreateRequest; +}; + +export type AppStoreVersionExperimentsV2CreateInstanceResponse = (AppStoreVersionExperimentV2Response); + +export type AppStoreVersionExperimentsV2CreateInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentsV2GetInstanceData = { + path: { /** - * maximum number of related appEvents returned (when they are included) + * the id of the requested resource */ - 'limit[appEvents]'?: number; + id: string; + }; + query?: { /** - * maximum number of related appInfos returned (when they are included) + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'limit[appInfos]'?: number; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** - * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - 'limit[appStoreVersionExperimentsV2]'?: number; + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * maximum number of related appStoreVersions returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[appStoreVersions]'?: number; + include?: Array<('app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** - * maximum number of related betaAppLocalizations returned (when they are included) + * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) */ - 'limit[betaAppLocalizations]'?: number; + 'limit[appStoreVersionExperimentTreatments]'?: number; /** - * maximum number of related betaGroups returned (when they are included) + * maximum number of related controlVersions returned (when they are included) */ - 'limit[betaGroups]'?: number; + 'limit[controlVersions]'?: number; + }; +}; + +export type AppStoreVersionExperimentsV2GetInstanceResponse = (AppStoreVersionExperimentV2Response); + +export type AppStoreVersionExperimentsV2GetInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentsV2UpdateInstanceData = { + /** + * AppStoreVersionExperiment representation + */ + body: AppStoreVersionExperimentV2UpdateRequest; + path: { /** - * maximum number of related builds returned (when they are included) + * the id of the requested resource */ - 'limit[builds]'?: number; + id: string; + }; +}; + +export type AppStoreVersionExperimentsV2UpdateInstanceResponse = (AppStoreVersionExperimentV2Response); + +export type AppStoreVersionExperimentsV2UpdateInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentsV2DeleteInstanceData = { + path: { /** - * maximum number of related gameCenterEnabledVersions returned (when they are included) - * @deprecated + * the id of the requested resource */ - 'limit[gameCenterEnabledVersions]'?: number; + id: string; + }; +}; + +export type AppStoreVersionExperimentsV2DeleteInstanceResponse = (void); + +export type AppStoreVersionExperimentsV2DeleteInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentsCreateInstanceData = { + /** + * AppStoreVersionExperiment representation + */ + body: AppStoreVersionExperimentCreateRequest; +}; + +export type AppStoreVersionExperimentsCreateInstanceResponse = (AppStoreVersionExperimentResponse); + +export type AppStoreVersionExperimentsCreateInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentsGetInstanceData = { + path: { /** - * maximum number of related inAppPurchases returned (when they are included) - * @deprecated + * the id of the requested resource */ - 'limit[inAppPurchases]'?: number; + id: string; + }; + query?: { /** - * maximum number of related inAppPurchasesV2 returned (when they are included) + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'limit[inAppPurchasesV2]'?: number; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments')>; /** - * maximum number of related preReleaseVersions returned (when they are included) + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - 'limit[preReleaseVersions]'?: number; + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * maximum number of related promotedPurchases returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[promotedPurchases]'?: number; + include?: Array<('appStoreVersion' | 'appStoreVersionExperimentTreatments')>; /** - * maximum number of related reviewSubmissions returned (when they are included) + * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) */ - 'limit[reviewSubmissions]'?: number; + 'limit[appStoreVersionExperimentTreatments]'?: number; + }; +}; + +export type AppStoreVersionExperimentsGetInstanceResponse = (AppStoreVersionExperimentResponse); + +export type AppStoreVersionExperimentsGetInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentsUpdateInstanceData = { + /** + * AppStoreVersionExperiment representation + */ + body: AppStoreVersionExperimentUpdateRequest; + path: { /** - * maximum number of related subscriptionGroups returned (when they are included) + * the id of the requested resource */ - 'limit[subscriptionGroups]'?: number; + id: string; + }; +}; + +export type AppStoreVersionExperimentsUpdateInstanceResponse = (AppStoreVersionExperimentResponse); + +export type AppStoreVersionExperimentsUpdateInstanceError = (ErrorResponse); + +export type AppStoreVersionExperimentsDeleteInstanceData = { + path: { /** - * comma-separated list of sort expressions; resources will be sorted as specified + * the id of the requested resource */ - sort?: Array<('name' | '-name' | 'bundleId' | '-bundleId' | 'sku' | '-sku')>; + id: string; }; }; -export type AppsGetCollectionResponse = (AppsResponse); +export type AppStoreVersionExperimentsDeleteInstanceResponse = (void); -export type AppsGetCollectionError = (ErrorResponse); +export type AppStoreVersionExperimentsDeleteInstanceError = (ErrorResponse); -export type AppsGetInstanceData = { +export type AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -15353,189 +16284,289 @@ export type AppsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appClips + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; /** - * the fields to include for returned resources of type appCustomProductPages + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions' | 'appStoreVersionTemplate' | 'customProductPageTemplate')>; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type appEncryptionDeclarations + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * the fields to include for returned resources of type appEvents + * comma-separated list of relationships to include */ - 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'app' | 'localizations')>; + include?: Array<('appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * the fields to include for returned resources of type appInfos + * maximum resources per page */ - 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; + limit?: number; /** - * the fields to include for returned resources of type appPreOrders - * @deprecated + * maximum number of related appStoreVersionExperimentTreatmentLocalizations returned (when they are included) */ - 'fields[appPreOrders]'?: Array<('preOrderAvailableDate' | 'appReleaseDate' | 'app')>; + 'limit[appStoreVersionExperimentTreatmentLocalizations]'?: number; + }; +}; + +export type AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedResponse = (AppStoreVersionExperimentTreatmentsResponse); + +export type AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedError = (ErrorResponse); + +export type AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedData = { + path: { /** - * the fields to include for returned resources of type apps + * the id of the requested resource */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + id: string; + }; + query?: { /** * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type betaAppLocalizations + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * the fields to include for returned resources of type betaAppReviewDetails + * comma-separated list of relationships to include */ - 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; + include?: Array<('appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * the fields to include for returned resources of type betaGroups + * maximum resources per page */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + limit?: number; /** - * the fields to include for returned resources of type betaLicenseAgreements + * maximum number of related appStoreVersionExperimentTreatmentLocalizations returned (when they are included) */ - 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; + 'limit[appStoreVersionExperimentTreatmentLocalizations]'?: number; + }; +}; + +export type AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedResponse = (AppStoreVersionExperimentTreatmentsResponse); + +export type AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedError = (ErrorResponse); + +export type AppStoreVersionLocalizationsCreateInstanceData = { + /** + * AppStoreVersionLocalization representation + */ + body: AppStoreVersionLocalizationCreateRequest; +}; + +export type AppStoreVersionLocalizationsCreateInstanceResponse = (AppStoreVersionLocalizationResponse); + +export type AppStoreVersionLocalizationsCreateInstanceError = (ErrorResponse); + +export type AppStoreVersionLocalizationsGetInstanceData = { + path: { /** - * the fields to include for returned resources of type builds + * the id of the requested resource */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type ciProducts + * the fields to include for returned resources of type appPreviewSets */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * the fields to include for returned resources of type endUserLicenseAgreements + * the fields to include for returned resources of type appScreenshotSets */ - 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; /** - * the fields to include for returned resources of type gameCenterDetails + * the fields to include for returned resources of type appStoreVersionLocalizations */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type gameCenterEnabledVersions - * @deprecated + * comma-separated list of relationships to include */ - 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; + include?: Array<('appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * the fields to include for returned resources of type inAppPurchases + * maximum number of related appPreviewSets returned (when they are included) */ - 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps' | 'name' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + 'limit[appPreviewSets]'?: number; /** - * the fields to include for returned resources of type preReleaseVersions + * maximum number of related appScreenshotSets returned (when they are included) */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + 'limit[appScreenshotSets]'?: number; + }; +}; + +export type AppStoreVersionLocalizationsGetInstanceResponse = (AppStoreVersionLocalizationResponse); + +export type AppStoreVersionLocalizationsGetInstanceError = (ErrorResponse); + +export type AppStoreVersionLocalizationsUpdateInstanceData = { + /** + * AppStoreVersionLocalization representation + */ + body: AppStoreVersionLocalizationUpdateRequest; + path: { /** - * the fields to include for returned resources of type promotedPurchases + * the id of the requested resource */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + id: string; + }; +}; + +export type AppStoreVersionLocalizationsUpdateInstanceResponse = (AppStoreVersionLocalizationResponse); + +export type AppStoreVersionLocalizationsUpdateInstanceError = (ErrorResponse); + +export type AppStoreVersionLocalizationsDeleteInstanceData = { + path: { /** - * the fields to include for returned resources of type reviewSubmissions + * the id of the requested resource */ - 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'submitted' | 'canceled' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + id: string; + }; +}; + +export type AppStoreVersionLocalizationsDeleteInstanceResponse = (void); + +export type AppStoreVersionLocalizationsDeleteInstanceError = (ErrorResponse); + +export type AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedData = { + path: { /** - * the fields to include for returned resources of type subscriptionGracePeriods + * the id of the requested resource */ - 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type subscriptionGroups + * the fields to include for returned resources of type appCustomProductPageLocalizations */ - 'fields[subscriptionGroups]'?: Array<('referenceName' | 'app' | 'subscriptions' | 'subscriptionGroupLocalizations')>; + 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appPreviews */ - include?: Array<('appEncryptionDeclarations' | 'ciProduct' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'endUserLicenseAgreement' | 'preOrder' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2')>; + 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewFrameImage' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'videoDeliveryState' | 'appPreviewSet')>; /** - * maximum number of related appClips returned (when they are included) + * the fields to include for returned resources of type appPreviewSets */ - 'limit[appClips]'?: number; + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * maximum number of related appCustomProductPages returned (when they are included) + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'limit[appCustomProductPages]'?: number; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * maximum number of related appEncryptionDeclarations returned (when they are included) + * the fields to include for returned resources of type appStoreVersionLocalizations */ - 'limit[appEncryptionDeclarations]'?: number; + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * maximum number of related appEvents returned (when they are included) + * filter by id(s) of related 'appCustomProductPageLocalization' */ - 'limit[appEvents]'?: number; + 'filter[appCustomProductPageLocalization]'?: Array<(string)>; /** - * maximum number of related appInfos returned (when they are included) + * filter by id(s) of related 'appStoreVersionExperimentTreatmentLocalization' */ - 'limit[appInfos]'?: number; + 'filter[appStoreVersionExperimentTreatmentLocalization]'?: Array<(string)>; /** - * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + * filter by attribute 'previewType' */ - 'limit[appStoreVersionExperimentsV2]'?: number; + 'filter[previewType]'?: Array<('IPHONE_67' | 'IPHONE_61' | 'IPHONE_65' | 'IPHONE_58' | 'IPHONE_55' | 'IPHONE_47' | 'IPHONE_40' | 'IPHONE_35' | 'IPAD_PRO_3GEN_129' | 'IPAD_PRO_3GEN_11' | 'IPAD_PRO_129' | 'IPAD_105' | 'IPAD_97' | 'DESKTOP' | 'APPLE_TV' | 'APPLE_VISION_PRO')>; /** - * maximum number of related appStoreVersions returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[appStoreVersions]'?: number; + include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * maximum number of related betaAppLocalizations returned (when they are included) + * maximum resources per page */ - 'limit[betaAppLocalizations]'?: number; + limit?: number; /** - * maximum number of related betaGroups returned (when they are included) + * maximum number of related appPreviews returned (when they are included) */ - 'limit[betaGroups]'?: number; + 'limit[appPreviews]'?: number; + }; +}; + +export type AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedResponse = (AppPreviewSetsResponse); + +export type AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedError = (ErrorResponse); + +export type AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedData = { + path: { /** - * maximum number of related builds returned (when they are included) + * the id of the requested resource */ - 'limit[builds]'?: number; + id: string; + }; + query?: { /** - * maximum number of related gameCenterEnabledVersions returned (when they are included) - * @deprecated + * the fields to include for returned resources of type appCustomProductPageLocalizations */ - 'limit[gameCenterEnabledVersions]'?: number; + 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * maximum number of related inAppPurchases returned (when they are included) - * @deprecated + * the fields to include for returned resources of type appScreenshots */ - 'limit[inAppPurchases]'?: number; + 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'appScreenshotSet')>; /** - * maximum number of related inAppPurchasesV2 returned (when they are included) + * the fields to include for returned resources of type appScreenshotSets */ - 'limit[inAppPurchasesV2]'?: number; + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; /** - * maximum number of related preReleaseVersions returned (when they are included) + * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations */ - 'limit[preReleaseVersions]'?: number; + 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * maximum number of related promotedPurchases returned (when they are included) + * the fields to include for returned resources of type appStoreVersionLocalizations */ - 'limit[promotedPurchases]'?: number; + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * maximum number of related reviewSubmissions returned (when they are included) + * filter by id(s) of related 'appCustomProductPageLocalization' */ - 'limit[reviewSubmissions]'?: number; + 'filter[appCustomProductPageLocalization]'?: Array<(string)>; /** - * maximum number of related subscriptionGroups returned (when they are included) + * filter by id(s) of related 'appStoreVersionExperimentTreatmentLocalization' */ - 'limit[subscriptionGroups]'?: number; + 'filter[appStoreVersionExperimentTreatmentLocalization]'?: Array<(string)>; + /** + * filter by attribute 'screenshotDisplayType' + */ + 'filter[screenshotDisplayType]'?: Array<('APP_IPHONE_67' | 'APP_IPHONE_61' | 'APP_IPHONE_65' | 'APP_IPHONE_58' | 'APP_IPHONE_55' | 'APP_IPHONE_47' | 'APP_IPHONE_40' | 'APP_IPHONE_35' | 'APP_IPAD_PRO_3GEN_129' | 'APP_IPAD_PRO_3GEN_11' | 'APP_IPAD_PRO_129' | 'APP_IPAD_105' | 'APP_IPAD_97' | 'APP_DESKTOP' | 'APP_WATCH_ULTRA' | 'APP_WATCH_SERIES_10' | 'APP_WATCH_SERIES_7' | 'APP_WATCH_SERIES_4' | 'APP_WATCH_SERIES_3' | 'APP_APPLE_TV' | 'APP_APPLE_VISION_PRO' | 'IMESSAGE_APP_IPHONE_67' | 'IMESSAGE_APP_IPHONE_61' | 'IMESSAGE_APP_IPHONE_65' | 'IMESSAGE_APP_IPHONE_58' | 'IMESSAGE_APP_IPHONE_55' | 'IMESSAGE_APP_IPHONE_47' | 'IMESSAGE_APP_IPHONE_40' | 'IMESSAGE_APP_IPAD_PRO_3GEN_129' | 'IMESSAGE_APP_IPAD_PRO_3GEN_11' | 'IMESSAGE_APP_IPAD_PRO_129' | 'IMESSAGE_APP_IPAD_105' | 'IMESSAGE_APP_IPAD_97')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appScreenshots returned (when they are included) + */ + 'limit[appScreenshots]'?: number; }; }; -export type AppsGetInstanceResponse = (AppResponse); +export type AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedResponse = (AppScreenshotSetsResponse); -export type AppsGetInstanceError = (ErrorResponse); +export type AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedError = (ErrorResponse); -export type AppsUpdateInstanceData = { +export type AppStoreVersionPhasedReleasesCreateInstanceData = { /** - * App representation + * AppStoreVersionPhasedRelease representation */ - body: AppUpdateRequest; + body: AppStoreVersionPhasedReleaseCreateRequest; +}; + +export type AppStoreVersionPhasedReleasesCreateInstanceResponse = (AppStoreVersionPhasedReleaseResponse); + +export type AppStoreVersionPhasedReleasesCreateInstanceError = (ErrorResponse); + +export type AppStoreVersionPhasedReleasesUpdateInstanceData = { + /** + * AppStoreVersionPhasedRelease representation + */ + body: AppStoreVersionPhasedReleaseUpdateRequest; path: { /** * the id of the requested resource @@ -15544,39 +16575,57 @@ export type AppsUpdateInstanceData = { }; }; -export type AppsUpdateInstanceResponse = (AppResponse); +export type AppStoreVersionPhasedReleasesUpdateInstanceResponse = (AppStoreVersionPhasedReleaseResponse); -export type AppsUpdateInstanceError = (ErrorResponse); +export type AppStoreVersionPhasedReleasesUpdateInstanceError = (ErrorResponse); -export type BetaAppClipInvocationLocalizationsCreateInstanceData = { +export type AppStoreVersionPhasedReleasesDeleteInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type AppStoreVersionPhasedReleasesDeleteInstanceResponse = (void); + +export type AppStoreVersionPhasedReleasesDeleteInstanceError = (ErrorResponse); + +export type AppStoreVersionPromotionsCreateInstanceData = { /** - * BetaAppClipInvocationLocalization representation + * AppStoreVersionPromotion representation */ - body: BetaAppClipInvocationLocalizationCreateRequest; + body: AppStoreVersionPromotionCreateRequest; }; -export type BetaAppClipInvocationLocalizationsCreateInstanceResponse = (BetaAppClipInvocationLocalizationResponse); +export type AppStoreVersionPromotionsCreateInstanceResponse = (AppStoreVersionPromotionResponse); -export type BetaAppClipInvocationLocalizationsCreateInstanceError = (ErrorResponse); +export type AppStoreVersionPromotionsCreateInstanceError = (ErrorResponse); -export type BetaAppClipInvocationLocalizationsUpdateInstanceData = { +export type AppStoreVersionReleaseRequestsCreateInstanceData = { /** - * BetaAppClipInvocationLocalization representation + * AppStoreVersionReleaseRequest representation */ - body: BetaAppClipInvocationLocalizationUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; + body: AppStoreVersionReleaseRequestCreateRequest; }; -export type BetaAppClipInvocationLocalizationsUpdateInstanceResponse = (BetaAppClipInvocationLocalizationResponse); +export type AppStoreVersionReleaseRequestsCreateInstanceResponse = (AppStoreVersionReleaseRequestResponse); -export type BetaAppClipInvocationLocalizationsUpdateInstanceError = (ErrorResponse); +export type AppStoreVersionReleaseRequestsCreateInstanceError = (ErrorResponse); -export type BetaAppClipInvocationLocalizationsDeleteInstanceData = { +export type AppStoreVersionSubmissionsCreateInstanceData = { + /** + * AppStoreVersionSubmission representation + */ + body: AppStoreVersionSubmissionCreateRequest; +}; + +export type AppStoreVersionSubmissionsCreateInstanceResponse = (AppStoreVersionSubmissionResponse); + +export type AppStoreVersionSubmissionsCreateInstanceError = (ErrorResponse); + +export type AppStoreVersionSubmissionsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -15585,22 +16634,22 @@ export type BetaAppClipInvocationLocalizationsDeleteInstanceData = { }; }; -export type BetaAppClipInvocationLocalizationsDeleteInstanceResponse = (void); +export type AppStoreVersionSubmissionsDeleteInstanceResponse = (void); -export type BetaAppClipInvocationLocalizationsDeleteInstanceError = (ErrorResponse); +export type AppStoreVersionSubmissionsDeleteInstanceError = (ErrorResponse); -export type BetaAppClipInvocationsCreateInstanceData = { +export type AppStoreVersionsCreateInstanceData = { /** - * BetaAppClipInvocation representation + * AppStoreVersion representation */ - body: BetaAppClipInvocationCreateRequest; + body: AppStoreVersionCreateRequest; }; -export type BetaAppClipInvocationsCreateInstanceResponse = (BetaAppClipInvocationResponse); +export type AppStoreVersionsCreateInstanceResponse = (AppStoreVersionResponse); -export type BetaAppClipInvocationsCreateInstanceError = (ErrorResponse); +export type AppStoreVersionsCreateInstanceError = (ErrorResponse); -export type BetaAppClipInvocationsGetInstanceData = { +export type AppStoreVersionsGetInstanceData = { path: { /** * the id of the requested resource @@ -15609,29 +16658,84 @@ export type BetaAppClipInvocationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type betaAppClipInvocations + * the fields to include for returned resources of type ageRatingDeclarations + * @deprecated + */ + 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; + /** + * the fields to include for returned resources of type alternativeDistributionPackages + */ + 'fields[alternativeDistributionPackages]'?: Array<('versions')>; + /** + * the fields to include for returned resources of type appClipDefaultExperiences + */ + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * the fields to include for returned resources of type appStoreReviewDetails + */ + 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + /** + * the fields to include for returned resources of type appStoreVersionExperiments + */ + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; + /** + * the fields to include for returned resources of type appStoreVersionLocalizations + */ + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appStoreVersionPhasedReleases + */ + 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * the fields to include for returned resources of type appStoreVersionSubmissions + * @deprecated + */ + 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * the fields to include for returned resources of type gameCenterAppVersions + */ + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + /** + * the fields to include for returned resources of type routingAppCoverages */ - 'fields[betaAppClipInvocations]'?: Array<('url' | 'buildBundle' | 'betaAppClipInvocationLocalizations')>; + 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreVersion')>; /** * comma-separated list of relationships to include */ - include?: Array<('betaAppClipInvocationLocalizations')>; + include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; /** - * maximum number of related betaAppClipInvocationLocalizations returned (when they are included) + * maximum number of related appStoreVersionExperiments returned (when they are included) + * @deprecated */ - 'limit[betaAppClipInvocationLocalizations]'?: number; + 'limit[appStoreVersionExperiments]'?: number; + /** + * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + */ + 'limit[appStoreVersionExperimentsV2]'?: number; + /** + * maximum number of related appStoreVersionLocalizations returned (when they are included) + */ + 'limit[appStoreVersionLocalizations]'?: number; }; }; -export type BetaAppClipInvocationsGetInstanceResponse = (BetaAppClipInvocationResponse); +export type AppStoreVersionsGetInstanceResponse = (AppStoreVersionResponse); -export type BetaAppClipInvocationsGetInstanceError = (ErrorResponse); +export type AppStoreVersionsGetInstanceError = (ErrorResponse); -export type BetaAppClipInvocationsUpdateInstanceData = { +export type AppStoreVersionsUpdateInstanceData = { /** - * BetaAppClipInvocation representation + * AppStoreVersion representation */ - body: BetaAppClipInvocationUpdateRequest; + body: AppStoreVersionUpdateRequest; path: { /** * the id of the requested resource @@ -15640,11 +16744,11 @@ export type BetaAppClipInvocationsUpdateInstanceData = { }; }; -export type BetaAppClipInvocationsUpdateInstanceResponse = (BetaAppClipInvocationResponse); +export type AppStoreVersionsUpdateInstanceResponse = (AppStoreVersionResponse); -export type BetaAppClipInvocationsUpdateInstanceError = (ErrorResponse); +export type AppStoreVersionsUpdateInstanceError = (ErrorResponse); -export type BetaAppClipInvocationsDeleteInstanceData = { +export type AppStoreVersionsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -15653,55 +16757,30 @@ export type BetaAppClipInvocationsDeleteInstanceData = { }; }; -export type BetaAppClipInvocationsDeleteInstanceResponse = (void); +export type AppStoreVersionsDeleteInstanceResponse = (void); -export type BetaAppClipInvocationsDeleteInstanceError = (ErrorResponse); +export type AppStoreVersionsDeleteInstanceError = (ErrorResponse); -export type BetaAppLocalizationsGetCollectionData = { - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type betaAppLocalizations - */ - 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; - /** - * filter by id(s) of related 'app' - */ - 'filter[app]'?: Array<(string)>; - /** - * filter by attribute 'locale' - */ - 'filter[locale]'?: Array<(string)>; +export type AppStoreVersionsAgeRatingDeclarationGetToOneRelatedData = { + path: { /** - * comma-separated list of relationships to include + * the id of the requested resource */ - include?: Array<('app')>; + id: string; + }; + query?: { /** - * maximum resources per page + * the fields to include for returned resources of type ageRatingDeclarations */ - limit?: number; + 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; }; }; -export type BetaAppLocalizationsGetCollectionResponse = (BetaAppLocalizationsResponse); - -export type BetaAppLocalizationsGetCollectionError = (ErrorResponse); - -export type BetaAppLocalizationsCreateInstanceData = { - /** - * BetaAppLocalization representation - */ - body: BetaAppLocalizationCreateRequest; -}; - -export type BetaAppLocalizationsCreateInstanceResponse = (BetaAppLocalizationResponse); +export type AppStoreVersionsAgeRatingDeclarationGetToOneRelatedResponse = (AgeRatingDeclarationWithoutIncludesResponse); -export type BetaAppLocalizationsCreateInstanceError = (ErrorResponse); +export type AppStoreVersionsAgeRatingDeclarationGetToOneRelatedError = (ErrorResponse); -export type BetaAppLocalizationsGetInstanceData = { +export type AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -15710,29 +16789,29 @@ export type BetaAppLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type alternativeDistributionPackages */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[alternativeDistributionPackages]'?: Array<('versions')>; /** - * the fields to include for returned resources of type betaAppLocalizations + * the fields to include for returned resources of type alternativeDistributionPackageVersions */ - 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; + 'fields[alternativeDistributionPackageVersions]'?: Array<('url' | 'urlExpirationDate' | 'version' | 'fileChecksum' | 'state' | 'variants' | 'deltas' | 'alternativeDistributionPackage')>; /** * comma-separated list of relationships to include */ - include?: Array<('app')>; + include?: Array<('versions')>; + /** + * maximum number of related versions returned (when they are included) + */ + 'limit[versions]'?: number; }; }; -export type BetaAppLocalizationsGetInstanceResponse = (BetaAppLocalizationResponse); +export type AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedResponse = (AlternativeDistributionPackageResponse); -export type BetaAppLocalizationsGetInstanceError = (ErrorResponse); +export type AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedError = (ErrorResponse); -export type BetaAppLocalizationsUpdateInstanceData = { - /** - * BetaAppLocalization representation - */ - body: BetaAppLocalizationUpdateRequest; +export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipData = { path: { /** * the id of the requested resource @@ -15741,11 +16820,15 @@ export type BetaAppLocalizationsUpdateInstanceData = { }; }; -export type BetaAppLocalizationsUpdateInstanceResponse = (BetaAppLocalizationResponse); +export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipResponse = (AppStoreVersionAppClipDefaultExperienceLinkageResponse); -export type BetaAppLocalizationsUpdateInstanceError = (ErrorResponse); +export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipError = (ErrorResponse); -export type BetaAppLocalizationsDeleteInstanceData = { +export type AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipData = { + /** + * Related linkage + */ + body: AppStoreVersionAppClipDefaultExperienceLinkageRequest; path: { /** * the id of the requested resource @@ -15754,40 +16837,54 @@ export type BetaAppLocalizationsDeleteInstanceData = { }; }; -export type BetaAppLocalizationsDeleteInstanceResponse = (void); +export type AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipResponse = (void); -export type BetaAppLocalizationsDeleteInstanceError = (ErrorResponse); +export type AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipError = (ErrorResponse); -export type BetaAppReviewDetailsGetCollectionData = { - query: { +export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedData = { + path: { /** - * the fields to include for returned resources of type apps + * the id of the requested resource */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type betaAppReviewDetails + * the fields to include for returned resources of type appClipAppStoreReviewDetails */ - 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; + 'fields[appClipAppStoreReviewDetails]'?: Array<('invocationUrls' | 'appClipDefaultExperience')>; /** - * filter by id(s) of related 'app' + * the fields to include for returned resources of type appClipDefaultExperienceLocalizations */ - 'filter[app]': Array<(string)>; + 'fields[appClipDefaultExperienceLocalizations]'?: Array<('locale' | 'subtitle' | 'appClipDefaultExperience' | 'appClipHeaderImage')>; + /** + * the fields to include for returned resources of type appClipDefaultExperiences + */ + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * the fields to include for returned resources of type appClips + */ + 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** * comma-separated list of relationships to include */ - include?: Array<('app')>; + include?: Array<('appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; /** - * maximum resources per page + * maximum number of related appClipDefaultExperienceLocalizations returned (when they are included) */ - limit?: number; + 'limit[appClipDefaultExperienceLocalizations]'?: number; }; }; -export type BetaAppReviewDetailsGetCollectionResponse = (BetaAppReviewDetailsResponse); +export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedResponse = (AppClipDefaultExperienceResponse); -export type BetaAppReviewDetailsGetCollectionError = (ErrorResponse); +export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedError = (ErrorResponse); -export type BetaAppReviewDetailsGetInstanceData = { +export type AppStoreVersionsAppStoreReviewDetailGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -15796,86 +16893,76 @@ export type BetaAppReviewDetailsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type appStoreReviewAttachments */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[appStoreReviewAttachments]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreReviewDetail')>; /** - * the fields to include for returned resources of type betaAppReviewDetails + * the fields to include for returned resources of type appStoreReviewDetails */ - 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; + 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** * comma-separated list of relationships to include */ - include?: Array<('app')>; + include?: Array<('appStoreVersion' | 'appStoreReviewAttachments')>; + /** + * maximum number of related appStoreReviewAttachments returned (when they are included) + */ + 'limit[appStoreReviewAttachments]'?: number; }; }; -export type BetaAppReviewDetailsGetInstanceResponse = (BetaAppReviewDetailResponse); +export type AppStoreVersionsAppStoreReviewDetailGetToOneRelatedResponse = (AppStoreReviewDetailResponse); -export type BetaAppReviewDetailsGetInstanceError = (ErrorResponse); +export type AppStoreVersionsAppStoreReviewDetailGetToOneRelatedError = (ErrorResponse); -export type BetaAppReviewDetailsUpdateInstanceData = { - /** - * BetaAppReviewDetail representation - */ - body: BetaAppReviewDetailUpdateRequest; +export type AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type BetaAppReviewDetailsUpdateInstanceResponse = (BetaAppReviewDetailResponse); - -export type BetaAppReviewDetailsUpdateInstanceError = (ErrorResponse); - -export type BetaAppReviewSubmissionsGetCollectionData = { - query: { + query?: { /** - * the fields to include for returned resources of type betaAppReviewSubmissions + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments')>; /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * filter by attribute 'betaReviewState' + * the fields to include for returned resources of type appStoreVersions */ - 'filter[betaReviewState]'?: Array<('WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'REJECTED' | 'APPROVED')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * filter by id(s) of related 'build' + * filter by attribute 'state' */ - 'filter[build]': Array<(string)>; + 'filter[state]'?: Array<('PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'COMPLETED' | 'STOPPED')>; /** * comma-separated list of relationships to include */ - include?: Array<('build')>; + include?: Array<('appStoreVersion' | 'appStoreVersionExperimentTreatments')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) + */ + 'limit[appStoreVersionExperimentTreatments]'?: number; }; }; -export type BetaAppReviewSubmissionsGetCollectionResponse = (BetaAppReviewSubmissionsResponse); - -export type BetaAppReviewSubmissionsGetCollectionError = (ErrorResponse); - -export type BetaAppReviewSubmissionsCreateInstanceData = { - /** - * BetaAppReviewSubmission representation - */ - body: BetaAppReviewSubmissionCreateRequest; -}; - -export type BetaAppReviewSubmissionsCreateInstanceResponse = (BetaAppReviewSubmissionResponse); +export type AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedResponse = (AppStoreVersionExperimentsResponse); -export type BetaAppReviewSubmissionsCreateInstanceError = (ErrorResponse); +export type AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedError = (ErrorResponse); -export type BetaAppReviewSubmissionsGetInstanceData = { +export type AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedData = { path: { /** * the id of the requested resource @@ -15884,69 +16971,49 @@ export type BetaAppReviewSubmissionsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type betaAppReviewSubmissions + * the fields to include for returned resources of type apps */ - 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - include?: Array<('build')>; - }; -}; - -export type BetaAppReviewSubmissionsGetInstanceResponse = (BetaAppReviewSubmissionResponse); - -export type BetaAppReviewSubmissionsGetInstanceError = (ErrorResponse); - -export type BetaBuildLocalizationsGetCollectionData = { - query?: { + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; /** - * the fields to include for returned resources of type betaBuildLocalizations + * the fields to include for returned resources of type appStoreVersions */ - 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the fields to include for returned resources of type builds + * filter by attribute 'state' */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'filter[state]'?: Array<('PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'COMPLETED' | 'STOPPED')>; /** - * filter by id(s) of related 'build' + * comma-separated list of relationships to include */ - 'filter[build]'?: Array<(string)>; + include?: Array<('app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** - * filter by attribute 'locale' + * maximum resources per page */ - 'filter[locale]'?: Array<(string)>; + limit?: number; /** - * comma-separated list of relationships to include + * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) */ - include?: Array<('build')>; + 'limit[appStoreVersionExperimentTreatments]'?: number; /** - * maximum resources per page + * maximum number of related controlVersions returned (when they are included) */ - limit?: number; + 'limit[controlVersions]'?: number; }; }; -export type BetaBuildLocalizationsGetCollectionResponse = (BetaBuildLocalizationsResponse); - -export type BetaBuildLocalizationsGetCollectionError = (ErrorResponse); - -export type BetaBuildLocalizationsCreateInstanceData = { - /** - * BetaBuildLocalization representation - */ - body: BetaBuildLocalizationCreateRequest; -}; - -export type BetaBuildLocalizationsCreateInstanceResponse = (BetaBuildLocalizationResponse); +export type AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedResponse = (AppStoreVersionExperimentsV2Response); -export type BetaBuildLocalizationsCreateInstanceError = (ErrorResponse); +export type AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedError = (ErrorResponse); -export type BetaBuildLocalizationsGetInstanceData = { +export type AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -15955,143 +17022,191 @@ export type BetaBuildLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type betaBuildLocalizations + * the fields to include for returned resources of type appPreviewSets */ - 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; + 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type appScreenshotSets */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + /** + * the fields to include for returned resources of type appStoreVersionLocalizations + */ + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * filter by attribute 'locale' + */ + 'filter[locale]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('build')>; + include?: Array<('appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appPreviewSets returned (when they are included) + */ + 'limit[appPreviewSets]'?: number; + /** + * maximum number of related appScreenshotSets returned (when they are included) + */ + 'limit[appScreenshotSets]'?: number; }; }; -export type BetaBuildLocalizationsGetInstanceResponse = (BetaBuildLocalizationResponse); +export type AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedResponse = (AppStoreVersionLocalizationsResponse); -export type BetaBuildLocalizationsGetInstanceError = (ErrorResponse); +export type AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedError = (ErrorResponse); -export type BetaBuildLocalizationsUpdateInstanceData = { - /** - * BetaBuildLocalization representation - */ - body: BetaBuildLocalizationUpdateRequest; +export type AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type appStoreVersionPhasedReleases + */ + 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber')>; + }; }; -export type BetaBuildLocalizationsUpdateInstanceResponse = (BetaBuildLocalizationResponse); +export type AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedResponse = (AppStoreVersionPhasedReleaseWithoutIncludesResponse); -export type BetaBuildLocalizationsUpdateInstanceError = (ErrorResponse); +export type AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedError = (ErrorResponse); -export type BetaBuildLocalizationsDeleteInstanceData = { +export type AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * the fields to include for returned resources of type appStoreVersionSubmissions + */ + 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appStoreVersion')>; + }; }; -export type BetaBuildLocalizationsDeleteInstanceResponse = (void); +export type AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedResponse = (AppStoreVersionSubmissionResponse); -export type BetaBuildLocalizationsDeleteInstanceError = (ErrorResponse); +export type AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedError = (ErrorResponse); -export type BetaGroupsGetCollectionData = { - query?: { +export type AppStoreVersionsBuildGetToOneRelationshipData = { + path: { /** - * the fields to include for returned resources of type apps + * the id of the requested resource */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + id: string; + }; +}; + +export type AppStoreVersionsBuildGetToOneRelationshipResponse = (AppStoreVersionBuildLinkageResponse); + +export type AppStoreVersionsBuildGetToOneRelationshipError = (ErrorResponse); + +export type AppStoreVersionsBuildUpdateToOneRelationshipData = { + /** + * Related linkage + */ + body: AppStoreVersionBuildLinkageRequest; + path: { /** - * the fields to include for returned resources of type betaGroups + * the id of the requested resource */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + id: string; + }; +}; + +export type AppStoreVersionsBuildUpdateToOneRelationshipResponse = (void); + +export type AppStoreVersionsBuildUpdateToOneRelationshipError = (ErrorResponse); + +export type AppStoreVersionsBuildGetToOneRelatedData = { + path: { /** - * the fields to include for returned resources of type betaTesters + * the id of the requested resource */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + id: string; + }; + query?: { /** * the fields to include for returned resources of type builds */ 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + }; +}; + +export type AppStoreVersionsBuildGetToOneRelatedResponse = (BuildWithoutIncludesResponse); + +export type AppStoreVersionsBuildGetToOneRelatedError = (ErrorResponse); + +export type AppStoreVersionsCustomerReviewsGetToManyRelatedData = { + path: { /** - * filter by id(s) of related 'app' - */ - 'filter[app]'?: Array<(string)>; - /** - * filter by id(s) of related 'builds' - */ - 'filter[builds]'?: Array<(string)>; - /** - * filter by id(s) + * the id of the requested resource */ - 'filter[id]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by attribute 'isInternalGroup' + * filter by publishedResponse */ - 'filter[isInternalGroup]'?: Array<(string)>; + 'exists[publishedResponse]'?: boolean; /** - * filter by attribute 'name' + * the fields to include for returned resources of type customerReviewResponses */ - 'filter[name]'?: Array<(string)>; + 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; /** - * filter by attribute 'publicLink' + * the fields to include for returned resources of type customerReviews */ - 'filter[publicLink]'?: Array<(string)>; + 'fields[customerReviews]'?: Array<('rating' | 'title' | 'body' | 'reviewerNickname' | 'createdDate' | 'territory' | 'response')>; /** - * filter by attribute 'publicLinkEnabled' + * filter by attribute 'rating' */ - 'filter[publicLinkEnabled]'?: Array<(string)>; + 'filter[rating]'?: Array<(string)>; /** - * filter by attribute 'publicLinkLimitEnabled' + * filter by attribute 'territory' */ - 'filter[publicLinkLimitEnabled]'?: Array<(string)>; + 'filter[territory]'?: Array<('ABW' | 'AFG' | 'AGO' | 'AIA' | 'ALB' | 'AND' | 'ANT' | 'ARE' | 'ARG' | 'ARM' | 'ASM' | 'ATG' | 'AUS' | 'AUT' | 'AZE' | 'BDI' | 'BEL' | 'BEN' | 'BES' | 'BFA' | 'BGD' | 'BGR' | 'BHR' | 'BHS' | 'BIH' | 'BLR' | 'BLZ' | 'BMU' | 'BOL' | 'BRA' | 'BRB' | 'BRN' | 'BTN' | 'BWA' | 'CAF' | 'CAN' | 'CHE' | 'CHL' | 'CHN' | 'CIV' | 'CMR' | 'COD' | 'COG' | 'COK' | 'COL' | 'COM' | 'CPV' | 'CRI' | 'CUB' | 'CUW' | 'CXR' | 'CYM' | 'CYP' | 'CZE' | 'DEU' | 'DJI' | 'DMA' | 'DNK' | 'DOM' | 'DZA' | 'ECU' | 'EGY' | 'ERI' | 'ESP' | 'EST' | 'ETH' | 'FIN' | 'FJI' | 'FLK' | 'FRA' | 'FRO' | 'FSM' | 'GAB' | 'GBR' | 'GEO' | 'GGY' | 'GHA' | 'GIB' | 'GIN' | 'GLP' | 'GMB' | 'GNB' | 'GNQ' | 'GRC' | 'GRD' | 'GRL' | 'GTM' | 'GUF' | 'GUM' | 'GUY' | 'HKG' | 'HND' | 'HRV' | 'HTI' | 'HUN' | 'IDN' | 'IMN' | 'IND' | 'IRL' | 'IRQ' | 'ISL' | 'ISR' | 'ITA' | 'JAM' | 'JEY' | 'JOR' | 'JPN' | 'KAZ' | 'KEN' | 'KGZ' | 'KHM' | 'KIR' | 'KNA' | 'KOR' | 'KWT' | 'LAO' | 'LBN' | 'LBR' | 'LBY' | 'LCA' | 'LIE' | 'LKA' | 'LSO' | 'LTU' | 'LUX' | 'LVA' | 'MAC' | 'MAR' | 'MCO' | 'MDA' | 'MDG' | 'MDV' | 'MEX' | 'MHL' | 'MKD' | 'MLI' | 'MLT' | 'MMR' | 'MNE' | 'MNG' | 'MNP' | 'MOZ' | 'MRT' | 'MSR' | 'MTQ' | 'MUS' | 'MWI' | 'MYS' | 'MYT' | 'NAM' | 'NCL' | 'NER' | 'NFK' | 'NGA' | 'NIC' | 'NIU' | 'NLD' | 'NOR' | 'NPL' | 'NRU' | 'NZL' | 'OMN' | 'PAK' | 'PAN' | 'PER' | 'PHL' | 'PLW' | 'PNG' | 'POL' | 'PRI' | 'PRT' | 'PRY' | 'PSE' | 'PYF' | 'QAT' | 'REU' | 'ROU' | 'RUS' | 'RWA' | 'SAU' | 'SEN' | 'SGP' | 'SHN' | 'SLB' | 'SLE' | 'SLV' | 'SMR' | 'SOM' | 'SPM' | 'SRB' | 'SSD' | 'STP' | 'SUR' | 'SVK' | 'SVN' | 'SWE' | 'SWZ' | 'SXM' | 'SYC' | 'TCA' | 'TCD' | 'TGO' | 'THA' | 'TJK' | 'TKM' | 'TLS' | 'TON' | 'TTO' | 'TUN' | 'TUR' | 'TUV' | 'TWN' | 'TZA' | 'UGA' | 'UKR' | 'UMI' | 'URY' | 'USA' | 'UZB' | 'VAT' | 'VCT' | 'VEN' | 'VGB' | 'VIR' | 'VNM' | 'VUT' | 'WLF' | 'WSM' | 'YEM' | 'ZAF' | 'ZMB' | 'ZWE')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'builds' | 'betaTesters')>; + include?: Array<('response')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related betaTesters returned (when they are included) - */ - 'limit[betaTesters]'?: number; - /** - * maximum number of related builds returned (when they are included) - */ - 'limit[builds]'?: number; /** * comma-separated list of sort expressions; resources will be sorted as specified */ - sort?: Array<('name' | '-name' | 'createdDate' | '-createdDate' | 'publicLinkEnabled' | '-publicLinkEnabled' | 'publicLinkLimit' | '-publicLinkLimit')>; + sort?: Array<('rating' | '-rating' | 'createdDate' | '-createdDate')>; }; }; -export type BetaGroupsGetCollectionResponse = (BetaGroupsResponse); - -export type BetaGroupsGetCollectionError = (ErrorResponse); - -export type BetaGroupsCreateInstanceData = { - /** - * BetaGroup representation - */ - body: BetaGroupCreateRequest; -}; - -export type BetaGroupsCreateInstanceResponse = (BetaGroupResponse); +export type AppStoreVersionsCustomerReviewsGetToManyRelatedResponse = (CustomerReviewsResponse); -export type BetaGroupsCreateInstanceError = (ErrorResponse); +export type AppStoreVersionsCustomerReviewsGetToManyRelatedError = (ErrorResponse); -export type BetaGroupsGetInstanceData = { +export type AppStoreVersionsGameCenterAppVersionGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -16100,278 +17215,227 @@ export type BetaGroupsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type betaGroups - */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; - /** - * the fields to include for returned resources of type betaTesters + * the fields to include for returned resources of type appStoreVersions */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type gameCenterAppVersions */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'builds' | 'betaTesters')>; - /** - * maximum number of related betaTesters returned (when they are included) - */ - 'limit[betaTesters]'?: number; + include?: Array<('compatibilityVersions' | 'appStoreVersion')>; /** - * maximum number of related builds returned (when they are included) + * maximum number of related compatibilityVersions returned (when they are included) */ - 'limit[builds]'?: number; + 'limit[compatibilityVersions]'?: number; }; }; -export type BetaGroupsGetInstanceResponse = (BetaGroupResponse); +export type AppStoreVersionsGameCenterAppVersionGetToOneRelatedResponse = (GameCenterAppVersionResponse); -export type BetaGroupsGetInstanceError = (ErrorResponse); +export type AppStoreVersionsGameCenterAppVersionGetToOneRelatedError = (ErrorResponse); -export type BetaGroupsUpdateInstanceData = { - /** - * BetaGroup representation - */ - body: BetaGroupUpdateRequest; +export type AppStoreVersionsRoutingAppCoverageGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type BetaGroupsUpdateInstanceResponse = (BetaGroupResponse); - -export type BetaGroupsUpdateInstanceError = (ErrorResponse); - -export type BetaGroupsDeleteInstanceData = { - path: { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type routingAppCoverages */ - id: string; + 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreVersion')>; }; }; -export type BetaGroupsDeleteInstanceResponse = (void); +export type AppStoreVersionsRoutingAppCoverageGetToOneRelatedResponse = (RoutingAppCoverageWithoutIncludesResponse); -export type BetaGroupsDeleteInstanceError = (ErrorResponse); +export type AppStoreVersionsRoutingAppCoverageGetToOneRelatedError = (ErrorResponse); -export type BetaLicenseAgreementsGetCollectionData = { +export type AppsGetCollectionData = { query?: { /** - * the fields to include for returned resources of type apps + * filter by existence or non-existence of related 'gameCenterEnabledVersions' + * @deprecated */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'exists[gameCenterEnabledVersions]'?: boolean; /** - * the fields to include for returned resources of type betaLicenseAgreements + * the fields to include for returned resources of type appClips */ - 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; + 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; /** - * filter by id(s) of related 'app' + * the fields to include for returned resources of type appCustomProductPages */ - 'filter[app]'?: Array<(string)>; + 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appEncryptionDeclarations */ - include?: Array<('app')>; + 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; /** - * maximum resources per page + * the fields to include for returned resources of type appEvents */ - limit?: number; - }; -}; - -export type BetaLicenseAgreementsGetCollectionResponse = (BetaLicenseAgreementsResponse); - -export type BetaLicenseAgreementsGetCollectionError = (ErrorResponse); - -export type BetaLicenseAgreementsGetInstanceData = { - path: { + 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'localizations')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appInfos */ - id: string; - }; - query?: { + 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'franceAgeRating' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; /** * the fields to include for returned resources of type apps */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type betaLicenseAgreements + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appStoreVersions */ - include?: Array<('app')>; - }; -}; - -export type BetaLicenseAgreementsGetInstanceResponse = (BetaLicenseAgreementResponse); - -export type BetaLicenseAgreementsGetInstanceError = (ErrorResponse); - -export type BetaLicenseAgreementsUpdateInstanceData = { - /** - * BetaLicenseAgreement representation - */ - body: BetaLicenseAgreementUpdateRequest; - path: { + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the id of the requested resource + * the fields to include for returned resources of type betaAppLocalizations */ - id: string; - }; -}; - -export type BetaLicenseAgreementsUpdateInstanceResponse = (BetaLicenseAgreementResponse); - -export type BetaLicenseAgreementsUpdateInstanceError = (ErrorResponse); - -export type BetaTesterInvitationsCreateInstanceData = { - /** - * BetaTesterInvitation representation - */ - body: BetaTesterInvitationCreateRequest; -}; - -export type BetaTesterInvitationsCreateInstanceResponse = (BetaTesterInvitationResponse); - -export type BetaTesterInvitationsCreateInstanceError = (ErrorResponse); - -export type BetaTestersGetCollectionData = { - query?: { + 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type betaAppReviewDetails */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; /** * the fields to include for returned resources of type betaGroups */ 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; /** - * the fields to include for returned resources of type betaTesters + * the fields to include for returned resources of type betaLicenseAgreements */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; /** * the fields to include for returned resources of type builds */ 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * filter by id(s) of related 'apps' + * the fields to include for returned resources of type ciProducts */ - 'filter[apps]'?: Array<(string)>; + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** - * filter by id(s) of related 'betaGroups' + * the fields to include for returned resources of type endUserLicenseAgreements */ - 'filter[betaGroups]'?: Array<(string)>; + 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; /** - * filter by id(s) of related 'builds' + * the fields to include for returned resources of type gameCenterDetails */ - 'filter[builds]'?: Array<(string)>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * filter by attribute 'email' + * the fields to include for returned resources of type gameCenterEnabledVersions + * @deprecated */ - 'filter[email]'?: Array<(string)>; + 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; /** - * filter by attribute 'firstName' + * the fields to include for returned resources of type inAppPurchases */ - 'filter[firstName]'?: Array<(string)>; + 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps' | 'name' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** - * filter by id(s) + * the fields to include for returned resources of type preReleaseVersions */ - 'filter[id]'?: Array<(string)>; + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; /** - * filter by attribute 'inviteType' + * the fields to include for returned resources of type promotedPurchases */ - 'filter[inviteType]'?: Array<('EMAIL' | 'PUBLIC_LINK')>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * filter by attribute 'lastName' + * the fields to include for returned resources of type reviewSubmissions */ - 'filter[lastName]'?: Array<(string)>; + 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type subscriptionGracePeriods */ - include?: Array<('apps' | 'betaGroups' | 'builds')>; + 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; /** - * maximum resources per page + * the fields to include for returned resources of type subscriptionGroups */ - limit?: number; + 'fields[subscriptionGroups]'?: Array<('referenceName' | 'subscriptions' | 'subscriptionGroupLocalizations')>; /** - * maximum number of related apps returned (when they are included) + * filter by attribute 'appStoreVersions.appStoreState' */ - 'limit[apps]'?: number; + 'filter[appStoreVersions.appStoreState]'?: Array<('ACCEPTED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_CONTRACT' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PREORDER_READY_FOR_SALE' | 'PROCESSING_FOR_APP_STORE' | 'READY_FOR_REVIEW' | 'READY_FOR_SALE' | 'REJECTED' | 'REMOVED_FROM_SALE' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW' | 'REPLACED_WITH_NEW_VERSION' | 'NOT_APPLICABLE')>; /** - * maximum number of related betaGroups returned (when they are included) + * filter by attribute 'appStoreVersions.appVersionState' */ - 'limit[betaGroups]'?: number; + 'filter[appStoreVersions.appVersionState]'?: Array<('ACCEPTED' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PROCESSING_FOR_DISTRIBUTION' | 'READY_FOR_DISTRIBUTION' | 'READY_FOR_REVIEW' | 'REJECTED' | 'REPLACED_WITH_NEW_VERSION' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW')>; /** - * maximum number of related builds returned (when they are included) + * filter by attribute 'appStoreVersions.platform' */ - 'limit[builds]'?: number; + 'filter[appStoreVersions.platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; /** - * comma-separated list of sort expressions; resources will be sorted as specified + * filter by id(s) of related 'appStoreVersions' */ - sort?: Array<('firstName' | '-firstName' | 'lastName' | '-lastName' | 'email' | '-email' | 'inviteType' | '-inviteType' | 'state' | '-state')>; - }; -}; - -export type BetaTestersGetCollectionResponse = (BetaTestersResponse); - -export type BetaTestersGetCollectionError = (ErrorResponse); - -export type BetaTestersCreateInstanceData = { - /** - * BetaTester representation - */ - body: BetaTesterCreateRequest; -}; - -export type BetaTestersCreateInstanceResponse = (BetaTesterResponse); - -export type BetaTestersCreateInstanceError = (ErrorResponse); - -export type BetaTestersGetInstanceData = { - path: { + 'filter[appStoreVersions]'?: Array<(string)>; /** - * the id of the requested resource + * filter by attribute 'bundleId' */ - id: string; - }; - query?: { + 'filter[bundleId]'?: Array<(string)>; /** - * the fields to include for returned resources of type apps + * filter by id(s) */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'filter[id]'?: Array<(string)>; /** - * the fields to include for returned resources of type betaGroups + * filter by attribute 'name' */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + 'filter[name]'?: Array<(string)>; /** - * the fields to include for returned resources of type betaTesters + * filter by attribute 'reviewSubmissions.platform' */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + 'filter[reviewSubmissions.platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; /** - * the fields to include for returned resources of type builds + * filter by attribute 'reviewSubmissions.state' */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'filter[reviewSubmissions.state]'?: Array<('READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'UNRESOLVED_ISSUES' | 'CANCELING' | 'COMPLETING' | 'COMPLETE')>; + /** + * filter by attribute 'sku' + */ + 'filter[sku]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('apps' | 'betaGroups' | 'builds')>; + include?: Array<('appEncryptionDeclarations' | 'ciProduct' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'endUserLicenseAgreement' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2')>; /** - * maximum number of related apps returned (when they are included) + * maximum resources per page */ - 'limit[apps]'?: number; + limit?: number; + /** + * maximum number of related appClips returned (when they are included) + */ + 'limit[appClips]'?: number; + /** + * maximum number of related appCustomProductPages returned (when they are included) + */ + 'limit[appCustomProductPages]'?: number; + /** + * maximum number of related appEncryptionDeclarations returned (when they are included) + */ + 'limit[appEncryptionDeclarations]'?: number; + /** + * maximum number of related appEvents returned (when they are included) + */ + 'limit[appEvents]'?: number; + /** + * maximum number of related appInfos returned (when they are included) + */ + 'limit[appInfos]'?: number; + /** + * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + */ + 'limit[appStoreVersionExperimentsV2]'?: number; + /** + * maximum number of related appStoreVersions returned (when they are included) + */ + 'limit[appStoreVersions]'?: number; + /** + * maximum number of related betaAppLocalizations returned (when they are included) + */ + 'limit[betaAppLocalizations]'?: number; /** * maximum number of related betaGroups returned (when they are included) */ @@ -16380,60 +17444,48 @@ export type BetaTestersGetInstanceData = { * maximum number of related builds returned (when they are included) */ 'limit[builds]'?: number; - }; -}; - -export type BetaTestersGetInstanceResponse = (BetaTesterResponse); - -export type BetaTestersGetInstanceError = (ErrorResponse); - -export type BetaTestersDeleteInstanceData = { - path: { /** - * the id of the requested resource + * maximum number of related gameCenterEnabledVersions returned (when they are included) + * @deprecated */ - id: string; - }; -}; - -export type BetaTestersDeleteInstanceResponse = (unknown | void); - -export type BetaTestersDeleteInstanceError = (ErrorResponse); - -export type BuildBetaDetailsGetCollectionData = { - query?: { + 'limit[gameCenterEnabledVersions]'?: number; /** - * the fields to include for returned resources of type buildBetaDetails + * maximum number of related inAppPurchases returned (when they are included) + * @deprecated */ - 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + 'limit[inAppPurchases]'?: number; /** - * the fields to include for returned resources of type builds + * maximum number of related inAppPurchasesV2 returned (when they are included) */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'limit[inAppPurchasesV2]'?: number; /** - * filter by id(s) of related 'build' + * maximum number of related preReleaseVersions returned (when they are included) */ - 'filter[build]'?: Array<(string)>; + 'limit[preReleaseVersions]'?: number; /** - * filter by id(s) + * maximum number of related promotedPurchases returned (when they are included) */ - 'filter[id]'?: Array<(string)>; + 'limit[promotedPurchases]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related reviewSubmissions returned (when they are included) */ - include?: Array<('build')>; + 'limit[reviewSubmissions]'?: number; /** - * maximum resources per page + * maximum number of related subscriptionGroups returned (when they are included) */ - limit?: number; + 'limit[subscriptionGroups]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('name' | '-name' | 'bundleId' | '-bundleId' | 'sku' | '-sku')>; }; }; -export type BuildBetaDetailsGetCollectionResponse = (BuildBetaDetailsResponse); +export type AppsGetCollectionResponse = (AppsResponse); -export type BuildBetaDetailsGetCollectionError = (ErrorResponse); +export type AppsGetCollectionError = (ErrorResponse); -export type BuildBetaDetailsGetInstanceData = { +export type AppsGetInstanceData = { path: { /** * the id of the requested resource @@ -16442,399 +17494,372 @@ export type BuildBetaDetailsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type buildBetaDetails + * the fields to include for returned resources of type appClips */ - 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type appCustomProductPages */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appEncryptionDeclarations */ - include?: Array<('build')>; - }; -}; - -export type BuildBetaDetailsGetInstanceResponse = (BuildBetaDetailResponse); - -export type BuildBetaDetailsGetInstanceError = (ErrorResponse); - -export type BuildBetaDetailsUpdateInstanceData = { - /** - * BuildBetaDetail representation - */ - body: BuildBetaDetailUpdateRequest; - path: { + 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appEvents */ - id: string; - }; -}; - -export type BuildBetaDetailsUpdateInstanceResponse = (BuildBetaDetailResponse); - -export type BuildBetaDetailsUpdateInstanceError = (ErrorResponse); - -export type BuildBetaNotificationsCreateInstanceData = { - /** - * BuildBetaNotification representation - */ - body: BuildBetaNotificationCreateRequest; -}; - -export type BuildBetaNotificationsCreateInstanceResponse = (BuildBetaNotificationResponse); - -export type BuildBetaNotificationsCreateInstanceError = (ErrorResponse); - -export type BuildsGetCollectionData = { - query?: { + 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'localizations')>; /** - * the fields to include for returned resources of type appEncryptionDeclarations + * the fields to include for returned resources of type appInfos */ - 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; + 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'franceAgeRating' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; /** * the fields to include for returned resources of type apps */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** - * the fields to include for returned resources of type betaAppReviewSubmissions + * the fields to include for returned resources of type appStoreVersions */ - 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the fields to include for returned resources of type betaBuildLocalizations + * the fields to include for returned resources of type betaAppLocalizations */ - 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; + 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; /** - * the fields to include for returned resources of type betaTesters + * the fields to include for returned resources of type betaAppReviewDetails */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; /** - * the fields to include for returned resources of type buildBetaDetails + * the fields to include for returned resources of type betaGroups */ - 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; /** - * the fields to include for returned resources of type buildIcons + * the fields to include for returned resources of type betaLicenseAgreements */ - 'fields[buildIcons]'?: Array<('name' | 'iconAsset' | 'iconType')>; + 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; /** * the fields to include for returned resources of type builds */ 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * the fields to include for returned resources of type preReleaseVersions + * the fields to include for returned resources of type ciProducts */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** - * filter by id(s) of related 'app' + * the fields to include for returned resources of type endUserLicenseAgreements */ - 'filter[app]'?: Array<(string)>; + 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; /** - * filter by id(s) of related 'appStoreVersion' + * the fields to include for returned resources of type gameCenterDetails */ - 'filter[appStoreVersion]'?: Array<(string)>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * filter by attribute 'betaAppReviewSubmission.betaReviewState' + * the fields to include for returned resources of type gameCenterEnabledVersions + * @deprecated */ - 'filter[betaAppReviewSubmission.betaReviewState]'?: Array<('WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'REJECTED' | 'APPROVED')>; + 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; /** - * filter by id(s) of related 'betaGroups' + * the fields to include for returned resources of type inAppPurchases */ - 'filter[betaGroups]'?: Array<(string)>; + 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps' | 'name' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** - * filter by attribute 'buildAudienceType' + * the fields to include for returned resources of type preReleaseVersions */ - 'filter[buildAudienceType]'?: Array<('INTERNAL_ONLY' | 'APP_STORE_ELIGIBLE')>; + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; /** - * filter by attribute 'expired' + * the fields to include for returned resources of type promotedPurchases */ - 'filter[expired]'?: Array<(string)>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * filter by id(s) + * the fields to include for returned resources of type reviewSubmissions */ - 'filter[id]'?: Array<(string)>; + 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; /** - * filter by attribute 'preReleaseVersion.platform' + * the fields to include for returned resources of type subscriptionGracePeriods */ - 'filter[preReleaseVersion.platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; /** - * filter by attribute 'preReleaseVersion.version' + * the fields to include for returned resources of type subscriptionGroups */ - 'filter[preReleaseVersion.version]'?: Array<(string)>; + 'fields[subscriptionGroups]'?: Array<('referenceName' | 'subscriptions' | 'subscriptionGroupLocalizations')>; /** - * filter by id(s) of related 'preReleaseVersion' + * comma-separated list of relationships to include */ - 'filter[preReleaseVersion]'?: Array<(string)>; + include?: Array<('appEncryptionDeclarations' | 'ciProduct' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'endUserLicenseAgreement' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2')>; /** - * filter by attribute 'processingState' + * maximum number of related appClips returned (when they are included) */ - 'filter[processingState]'?: Array<('PROCESSING' | 'FAILED' | 'INVALID' | 'VALID')>; + 'limit[appClips]'?: number; /** - * filter by attribute 'usesNonExemptEncryption' + * maximum number of related appCustomProductPages returned (when they are included) */ - 'filter[usesNonExemptEncryption]'?: Array<(string)>; + 'limit[appCustomProductPages]'?: number; /** - * filter by attribute 'version' + * maximum number of related appEncryptionDeclarations returned (when they are included) */ - 'filter[version]'?: Array<(string)>; + 'limit[appEncryptionDeclarations]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related appEvents returned (when they are included) */ - include?: Array<('preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles')>; + 'limit[appEvents]'?: number; /** - * maximum resources per page + * maximum number of related appInfos returned (when they are included) */ - limit?: number; + 'limit[appInfos]'?: number; /** - * maximum number of related betaBuildLocalizations returned (when they are included) + * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) */ - 'limit[betaBuildLocalizations]'?: number; + 'limit[appStoreVersionExperimentsV2]'?: number; + /** + * maximum number of related appStoreVersions returned (when they are included) + */ + 'limit[appStoreVersions]'?: number; + /** + * maximum number of related betaAppLocalizations returned (when they are included) + */ + 'limit[betaAppLocalizations]'?: number; /** * maximum number of related betaGroups returned (when they are included) */ 'limit[betaGroups]'?: number; /** - * maximum number of related buildBundles returned (when they are included) + * maximum number of related builds returned (when they are included) */ - 'limit[buildBundles]'?: number; + 'limit[builds]'?: number; /** - * maximum number of related icons returned (when they are included) + * maximum number of related gameCenterEnabledVersions returned (when they are included) + * @deprecated */ - 'limit[icons]'?: number; + 'limit[gameCenterEnabledVersions]'?: number; /** - * maximum number of related individualTesters returned (when they are included) + * maximum number of related inAppPurchases returned (when they are included) + * @deprecated */ - 'limit[individualTesters]'?: number; + 'limit[inAppPurchases]'?: number; /** - * comma-separated list of sort expressions; resources will be sorted as specified + * maximum number of related inAppPurchasesV2 returned (when they are included) */ - sort?: Array<('version' | '-version' | 'uploadedDate' | '-uploadedDate' | 'preReleaseVersion' | '-preReleaseVersion')>; + 'limit[inAppPurchasesV2]'?: number; + /** + * maximum number of related preReleaseVersions returned (when they are included) + */ + 'limit[preReleaseVersions]'?: number; + /** + * maximum number of related promotedPurchases returned (when they are included) + */ + 'limit[promotedPurchases]'?: number; + /** + * maximum number of related reviewSubmissions returned (when they are included) + */ + 'limit[reviewSubmissions]'?: number; + /** + * maximum number of related subscriptionGroups returned (when they are included) + */ + 'limit[subscriptionGroups]'?: number; }; }; -export type BuildsGetCollectionResponse = (BuildsResponse); +export type AppsGetInstanceResponse = (AppResponse); -export type BuildsGetCollectionError = (ErrorResponse); +export type AppsGetInstanceError = (ErrorResponse); -export type BuildsGetInstanceData = { +export type AppsUpdateInstanceData = { + /** + * App representation + */ + body: AppUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { +}; + +export type AppsUpdateInstanceResponse = (AppResponse); + +export type AppsUpdateInstanceError = (ErrorResponse); + +export type AppsAlternativeDistributionKeyGetToOneRelatedData = { + path: { /** - * the fields to include for returned resources of type appEncryptionDeclarations + * the id of the requested resource */ - 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type alternativeDistributionKeys */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[alternativeDistributionKeys]'?: Array<('publicKey')>; + }; +}; + +export type AppsAlternativeDistributionKeyGetToOneRelatedResponse = (AlternativeDistributionKeyResponse); + +export type AppsAlternativeDistributionKeyGetToOneRelatedError = (ErrorResponse); + +export type AppsAnalyticsReportRequestsGetToManyRelatedData = { + path: { /** - * the fields to include for returned resources of type appStoreVersions + * the id of the requested resource */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type betaAppReviewSubmissions + * the fields to include for returned resources of type analyticsReportRequests */ - 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; + 'fields[analyticsReportRequests]'?: Array<('accessType' | 'stoppedDueToInactivity' | 'reports')>; /** - * the fields to include for returned resources of type betaBuildLocalizations + * the fields to include for returned resources of type analyticsReports */ - 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; + 'fields[analyticsReports]'?: Array<('name' | 'category' | 'instances')>; /** - * the fields to include for returned resources of type betaTesters + * filter by attribute 'accessType' */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + 'filter[accessType]'?: Array<('ONE_TIME_SNAPSHOT' | 'ONGOING')>; /** - * the fields to include for returned resources of type buildBetaDetails + * comma-separated list of relationships to include */ - 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + include?: Array<('reports')>; /** - * the fields to include for returned resources of type buildIcons + * maximum resources per page */ - 'fields[buildIcons]'?: Array<('name' | 'iconAsset' | 'iconType')>; + limit?: number; /** - * the fields to include for returned resources of type builds + * maximum number of related reports returned (when they are included) */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'limit[reports]'?: number; + }; +}; + +export type AppsAnalyticsReportRequestsGetToManyRelatedResponse = (AnalyticsReportRequestsResponse); + +export type AppsAnalyticsReportRequestsGetToManyRelatedError = (ErrorResponse); + +export type AppsAppAvailabilityV2GetToOneRelatedData = { + path: { /** - * the fields to include for returned resources of type preReleaseVersions + * the id of the requested resource */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles')>; - /** - * maximum number of related betaBuildLocalizations returned (when they are included) - */ - 'limit[betaBuildLocalizations]'?: number; + id: string; + }; + query?: { /** - * maximum number of related betaGroups returned (when they are included) + * the fields to include for returned resources of type appAvailabilities */ - 'limit[betaGroups]'?: number; + 'fields[appAvailabilities]'?: Array<('availableInNewTerritories' | 'territoryAvailabilities')>; /** - * maximum number of related buildBundles returned (when they are included) + * the fields to include for returned resources of type territoryAvailabilities */ - 'limit[buildBundles]'?: number; + 'fields[territoryAvailabilities]'?: Array<('available' | 'releaseDate' | 'preOrderEnabled' | 'preOrderPublishDate' | 'contentStatuses' | 'territory')>; /** - * maximum number of related icons returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[icons]'?: number; + include?: Array<('territoryAvailabilities')>; /** - * maximum number of related individualTesters returned (when they are included) + * maximum number of related territoryAvailabilities returned (when they are included) */ - 'limit[individualTesters]'?: number; + 'limit[territoryAvailabilities]'?: number; }; }; -export type BuildsGetInstanceResponse = (BuildResponse); +export type AppsAppAvailabilityV2GetToOneRelatedResponse = (AppAvailabilityV2Response); -export type BuildsGetInstanceError = (ErrorResponse); +export type AppsAppAvailabilityV2GetToOneRelatedError = (ErrorResponse); -export type BuildsUpdateInstanceData = { - /** - * Build representation - */ - body: BuildUpdateRequest; +export type AppsAppClipsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type BuildsUpdateInstanceResponse = (BuildResponse); - -export type BuildsUpdateInstanceError = (ErrorResponse); - -export type BundleIdCapabilitiesCreateInstanceData = { - /** - * BundleIdCapability representation - */ - body: BundleIdCapabilityCreateRequest; -}; - -export type BundleIdCapabilitiesCreateInstanceResponse = (BundleIdCapabilityResponse); - -export type BundleIdCapabilitiesCreateInstanceError = (ErrorResponse); - -export type BundleIdCapabilitiesUpdateInstanceData = { - /** - * BundleIdCapability representation - */ - body: BundleIdCapabilityUpdateRequest; - path: { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type appClipDefaultExperiences */ - id: string; - }; -}; - -export type BundleIdCapabilitiesUpdateInstanceResponse = (BundleIdCapabilityResponse); - -export type BundleIdCapabilitiesUpdateInstanceError = (ErrorResponse); - -export type BundleIdCapabilitiesDeleteInstanceData = { - path: { + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appClips */ - id: string; - }; -}; - -export type BundleIdCapabilitiesDeleteInstanceResponse = (void); - -export type BundleIdCapabilitiesDeleteInstanceError = (ErrorResponse); - -export type BundleIdsGetCollectionData = { - query?: { + 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; /** * the fields to include for returned resources of type apps */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type bundleIdCapabilities + * filter by attribute 'bundleId' */ - 'fields[bundleIdCapabilities]'?: Array<('capabilityType' | 'settings' | 'bundleId')>; + 'filter[bundleId]'?: Array<(string)>; /** - * the fields to include for returned resources of type bundleIds + * comma-separated list of relationships to include */ - 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; + include?: Array<('app' | 'appClipDefaultExperiences')>; /** - * the fields to include for returned resources of type profiles + * maximum resources per page */ - 'fields[profiles]'?: Array<('name' | 'platform' | 'profileType' | 'profileState' | 'profileContent' | 'uuid' | 'createdDate' | 'expirationDate' | 'bundleId' | 'devices' | 'certificates')>; + limit?: number; /** - * filter by id(s) + * maximum number of related appClipDefaultExperiences returned (when they are included) */ - 'filter[id]'?: Array<(string)>; + 'limit[appClipDefaultExperiences]'?: number; + }; +}; + +export type AppsAppClipsGetToManyRelatedResponse = (AppClipsResponse); + +export type AppsAppClipsGetToManyRelatedError = (ErrorResponse); + +export type AppsAppCustomProductPagesGetToManyRelatedData = { + path: { /** - * filter by attribute 'identifier' + * the id of the requested resource */ - 'filter[identifier]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by attribute 'name' + * the fields to include for returned resources of type appCustomProductPages */ - 'filter[name]'?: Array<(string)>; + 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions')>; /** - * filter by attribute 'platform' + * the fields to include for returned resources of type appCustomProductPageVersions */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS')>; + 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; /** - * filter by attribute 'seedId' + * the fields to include for returned resources of type apps */ - 'filter[seedId]'?: Array<(string)>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * filter by attribute 'visible' + */ + 'filter[visible]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('profiles' | 'bundleIdCapabilities' | 'app')>; + include?: Array<('app' | 'appCustomProductPageVersions')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related bundleIdCapabilities returned (when they are included) - */ - 'limit[bundleIdCapabilities]'?: number; - /** - * maximum number of related profiles returned (when they are included) - */ - 'limit[profiles]'?: number; - /** - * comma-separated list of sort expressions; resources will be sorted as specified + * maximum number of related appCustomProductPageVersions returned (when they are included) */ - sort?: Array<('name' | '-name' | 'platform' | '-platform' | 'identifier' | '-identifier' | 'seedId' | '-seedId' | 'id' | '-id')>; + 'limit[appCustomProductPageVersions]'?: number; }; }; -export type BundleIdsGetCollectionResponse = (BundleIdsResponse); - -export type BundleIdsGetCollectionError = (ErrorResponse); - -export type BundleIdsCreateInstanceData = { - /** - * BundleId representation - */ - body: BundleIdCreateRequest; -}; - -export type BundleIdsCreateInstanceResponse = (BundleIdResponse); +export type AppsAppCustomProductPagesGetToManyRelatedResponse = (AppCustomProductPagesResponse); -export type BundleIdsCreateInstanceError = (ErrorResponse); +export type AppsAppCustomProductPagesGetToManyRelatedError = (ErrorResponse); -export type BundleIdsGetInstanceData = { +export type AppsAppEncryptionDeclarationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -16843,119 +17868,92 @@ export type BundleIdsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type appEncryptionDeclarationDocuments */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState')>; /** - * the fields to include for returned resources of type bundleIdCapabilities + * the fields to include for returned resources of type appEncryptionDeclarations */ - 'fields[bundleIdCapabilities]'?: Array<('capabilityType' | 'settings' | 'bundleId')>; + 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; /** - * the fields to include for returned resources of type bundleIds + * the fields to include for returned resources of type apps */ - 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type profiles + * the fields to include for returned resources of type builds */ - 'fields[profiles]'?: Array<('name' | 'platform' | 'profileType' | 'profileState' | 'profileContent' | 'uuid' | 'createdDate' | 'expirationDate' | 'bundleId' | 'devices' | 'certificates')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * comma-separated list of relationships to include + * filter by id(s) of related 'builds' */ - include?: Array<('profiles' | 'bundleIdCapabilities' | 'app')>; + 'filter[builds]'?: Array<(string)>; /** - * maximum number of related bundleIdCapabilities returned (when they are included) + * filter by attribute 'platform' */ - 'limit[bundleIdCapabilities]'?: number; + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; /** - * maximum number of related profiles returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[profiles]'?: number; - }; -}; - -export type BundleIdsGetInstanceResponse = (BundleIdResponse); - -export type BundleIdsGetInstanceError = (ErrorResponse); - -export type BundleIdsUpdateInstanceData = { - /** - * BundleId representation - */ - body: BundleIdUpdateRequest; - path: { + include?: Array<('app' | 'builds' | 'appEncryptionDeclarationDocument')>; /** - * the id of the requested resource + * maximum resources per page */ - id: string; + limit?: number; + /** + * maximum number of related builds returned (when they are included) + */ + 'limit[builds]'?: number; }; }; -export type BundleIdsUpdateInstanceResponse = (BundleIdResponse); +export type AppsAppEncryptionDeclarationsGetToManyRelatedResponse = (AppEncryptionDeclarationsResponse); -export type BundleIdsUpdateInstanceError = (ErrorResponse); +export type AppsAppEncryptionDeclarationsGetToManyRelatedError = (ErrorResponse); -export type BundleIdsDeleteInstanceData = { +export type AppsAppEventsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type BundleIdsDeleteInstanceResponse = (void); - -export type BundleIdsDeleteInstanceError = (ErrorResponse); - -export type CertificatesGetCollectionData = { query?: { /** - * the fields to include for returned resources of type certificates + * the fields to include for returned resources of type appEventLocalizations */ - 'fields[certificates]'?: Array<('name' | 'csrContent' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; + 'fields[appEventLocalizations]'?: Array<('locale' | 'name' | 'shortDescription' | 'longDescription' | 'appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; /** - * filter by attribute 'certificateType' + * the fields to include for returned resources of type appEvents */ - 'filter[certificateType]'?: Array<('IOS_DEVELOPMENT' | 'IOS_DISTRIBUTION' | 'MAC_APP_DISTRIBUTION' | 'MAC_INSTALLER_DISTRIBUTION' | 'MAC_APP_DEVELOPMENT' | 'DEVELOPER_ID_KEXT' | 'DEVELOPER_ID_APPLICATION' | 'DEVELOPMENT' | 'DISTRIBUTION' | 'PASS_TYPE_ID' | 'PASS_TYPE_ID_WITH_NFC')>; + 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'localizations')>; /** - * filter by attribute 'displayName' + * filter by attribute 'eventState' */ - 'filter[displayName]'?: Array<(string)>; + 'filter[eventState]'?: Array<('DRAFT' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'REJECTED' | 'ACCEPTED' | 'APPROVED' | 'PUBLISHED' | 'PAST' | 'ARCHIVED')>; /** * filter by id(s) */ 'filter[id]'?: Array<(string)>; /** - * filter by attribute 'serialNumber' + * comma-separated list of relationships to include */ - 'filter[serialNumber]'?: Array<(string)>; + include?: Array<('localizations')>; /** * maximum resources per page */ limit?: number; /** - * comma-separated list of sort expressions; resources will be sorted as specified + * maximum number of related localizations returned (when they are included) */ - sort?: Array<('displayName' | '-displayName' | 'certificateType' | '-certificateType' | 'serialNumber' | '-serialNumber' | 'id' | '-id')>; + 'limit[localizations]'?: number; }; }; -export type CertificatesGetCollectionResponse = (CertificatesResponse); - -export type CertificatesGetCollectionError = (ErrorResponse); - -export type CertificatesCreateInstanceData = { - /** - * Certificate representation - */ - body: CertificateCreateRequest; -}; - -export type CertificatesCreateInstanceResponse = (CertificateResponse); +export type AppsAppEventsGetToManyRelatedResponse = (AppEventsResponse); -export type CertificatesCreateInstanceError = (ErrorResponse); +export type AppsAppEventsGetToManyRelatedError = (ErrorResponse); -export type CertificatesGetInstanceData = { +export type AppsAppInfosGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -16964,49 +17962,45 @@ export type CertificatesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type certificates + * the fields to include for returned resources of type ageRatingDeclarations */ - 'fields[certificates]'?: Array<('name' | 'csrContent' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; - }; -}; - -export type CertificatesGetInstanceResponse = (CertificateResponse); - -export type CertificatesGetInstanceError = (ErrorResponse); - -export type CertificatesDeleteInstanceData = { - path: { + 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appCategories */ - id: string; - }; -}; - -export type CertificatesDeleteInstanceResponse = (void); - -export type CertificatesDeleteInstanceError = (ErrorResponse); - -export type CiArtifactsGetInstanceData = { - path: { + 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appInfoLocalizations */ - id: string; - }; - query?: { + 'fields[appInfoLocalizations]'?: Array<('locale' | 'name' | 'subtitle' | 'privacyPolicyUrl' | 'privacyChoicesUrl' | 'privacyPolicyText' | 'appInfo')>; /** - * the fields to include for returned resources of type ciArtifacts + * the fields to include for returned resources of type appInfos */ - 'fields[ciArtifacts]'?: Array<('fileType' | 'fileName' | 'fileSize' | 'downloadUrl')>; + 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'franceAgeRating' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related appInfoLocalizations returned (when they are included) + */ + 'limit[appInfoLocalizations]'?: number; }; }; -export type CiArtifactsGetInstanceResponse = (CiArtifactResponse); +export type AppsAppInfosGetToManyRelatedResponse = (AppInfosResponse); -export type CiArtifactsGetInstanceError = (ErrorResponse); +export type AppsAppInfosGetToManyRelatedError = (ErrorResponse); -export type CiBuildActionsGetInstanceData = { +export type AppsAppPricePointsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17015,36 +18009,37 @@ export type CiBuildActionsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type ciBuildActions + * the fields to include for returned resources of type appPricePoints */ - 'fields[ciBuildActions]'?: Array<('name' | 'actionType' | 'startedDate' | 'finishedDate' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'isRequiredToPass' | 'buildRun' | 'artifacts' | 'issues' | 'testResults')>; + 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; /** - * the fields to include for returned resources of type ciBuildRuns + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type territories + */ + 'fields[territories]'?: Array<('currency')>; + /** + * filter by id(s) of related 'territory' */ - 'fields[ciBuildRuns]'?: Array<('clean' | 'number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'buildRun' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('buildRun')>; + include?: Array<('app' | 'territory')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type CiBuildActionsGetInstanceResponse = (CiBuildActionResponse); - -export type CiBuildActionsGetInstanceError = (ErrorResponse); - -export type CiBuildRunsCreateInstanceData = { - /** - * CiBuildRun representation - */ - body: CiBuildRunCreateRequest; -}; - -export type CiBuildRunsCreateInstanceResponse = (CiBuildRunResponse); +export type AppsAppPricePointsGetToManyRelatedResponse = (AppPricePointsV3Response); -export type CiBuildRunsCreateInstanceError = (ErrorResponse); +export type AppsAppPricePointsGetToManyRelatedError = (ErrorResponse); -export type CiBuildRunsGetInstanceData = { +export type AppsAppPriceScheduleGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -17053,29 +18048,41 @@ export type CiBuildRunsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type appPrices */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[appPrices]'?: Array<('manual' | 'startDate' | 'endDate' | 'appPricePoint' | 'territory')>; /** - * the fields to include for returned resources of type ciBuildRuns + * the fields to include for returned resources of type appPriceSchedules + */ + 'fields[appPriceSchedules]'?: Array<('app' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type territories */ - 'fields[ciBuildRuns]'?: Array<('clean' | 'number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'buildRun' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; + 'fields[territories]'?: Array<('currency')>; /** * comma-separated list of relationships to include */ - include?: Array<('builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'pullRequest')>; + include?: Array<('app' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; /** - * maximum number of related builds returned (when they are included) + * maximum number of related automaticPrices returned (when they are included) */ - 'limit[builds]'?: number; + 'limit[automaticPrices]'?: number; + /** + * maximum number of related manualPrices returned (when they are included) + */ + 'limit[manualPrices]'?: number; }; }; -export type CiBuildRunsGetInstanceResponse = (CiBuildRunResponse); +export type AppsAppPriceScheduleGetToOneRelatedResponse = (AppPriceScheduleResponse); -export type CiBuildRunsGetInstanceError = (ErrorResponse); +export type AppsAppPriceScheduleGetToOneRelatedError = (ErrorResponse); -export type CiIssuesGetInstanceData = { +export type AppsAppStoreVersionExperimentsV2GetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17084,46 +18091,49 @@ export type CiIssuesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type ciIssues + * the fields to include for returned resources of type apps */ - 'fields[ciIssues]'?: Array<('issueType' | 'message' | 'fileSource' | 'category')>; - }; -}; - -export type CiIssuesGetInstanceResponse = (CiIssueResponse); - -export type CiIssuesGetInstanceError = (ErrorResponse); - -export type CiMacOsVersionsGetCollectionData = { - query?: { + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type ciMacOsVersions + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** - * the fields to include for returned resources of type ciXcodeVersions + * the fields to include for returned resources of type appStoreVersionExperimentTreatments */ - 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; + 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * filter by attribute 'state' + */ + 'filter[state]'?: Array<('PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'COMPLETED' | 'STOPPED')>; /** * comma-separated list of relationships to include */ - include?: Array<('xcodeVersions')>; + include?: Array<('app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related xcodeVersions returned (when they are included) + * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) */ - 'limit[xcodeVersions]'?: number; + 'limit[appStoreVersionExperimentTreatments]'?: number; + /** + * maximum number of related controlVersions returned (when they are included) + */ + 'limit[controlVersions]'?: number; }; }; -export type CiMacOsVersionsGetCollectionResponse = (CiMacOsVersionsResponse); +export type AppsAppStoreVersionExperimentsV2GetToManyRelatedResponse = (AppStoreVersionExperimentsV2Response); -export type CiMacOsVersionsGetCollectionError = (ErrorResponse); +export type AppsAppStoreVersionExperimentsV2GetToManyRelatedError = (ErrorResponse); -export type CiMacOsVersionsGetInstanceData = { +export type AppsAppStoreVersionsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17132,70 +18142,106 @@ export type CiMacOsVersionsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type ciMacOsVersions + * the fields to include for returned resources of type ageRatingDeclarations */ - 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; + 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; /** - * the fields to include for returned resources of type ciXcodeVersions + * the fields to include for returned resources of type alternativeDistributionPackages */ - 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; + 'fields[alternativeDistributionPackages]'?: Array<('versions')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appClipDefaultExperiences */ - include?: Array<('xcodeVersions')>; + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; /** - * maximum number of related xcodeVersions returned (when they are included) + * the fields to include for returned resources of type apps */ - 'limit[xcodeVersions]'?: number; - }; -}; - -export type CiMacOsVersionsGetInstanceResponse = (CiMacOsVersionResponse); - -export type CiMacOsVersionsGetInstanceError = (ErrorResponse); - -export type CiProductsGetCollectionData = { - query?: { + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type appStoreReviewDetails */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; /** - * the fields to include for returned resources of type ciProducts + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; /** - * the fields to include for returned resources of type scmRepositories + * the fields to include for returned resources of type appStoreVersionLocalizations */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; /** - * filter by id(s) of related 'app' + * the fields to include for returned resources of type appStoreVersionPhasedReleases */ - 'filter[app]'?: Array<(string)>; + 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber')>; /** - * filter by attribute 'productType' + * the fields to include for returned resources of type appStoreVersions */ - 'filter[productType]'?: Array<('APP' | 'FRAMEWORK')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * the fields to include for returned resources of type appStoreVersionSubmissions + */ + 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * the fields to include for returned resources of type gameCenterAppVersions + */ + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + /** + * the fields to include for returned resources of type routingAppCoverages + */ + 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreVersion')>; + /** + * filter by attribute 'appStoreState' + */ + 'filter[appStoreState]'?: Array<('ACCEPTED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_CONTRACT' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PREORDER_READY_FOR_SALE' | 'PROCESSING_FOR_APP_STORE' | 'READY_FOR_REVIEW' | 'READY_FOR_SALE' | 'REJECTED' | 'REMOVED_FROM_SALE' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW' | 'REPLACED_WITH_NEW_VERSION' | 'NOT_APPLICABLE')>; + /** + * filter by attribute 'appVersionState' + */ + 'filter[appVersionState]'?: Array<('ACCEPTED' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PROCESSING_FOR_DISTRIBUTION' | 'READY_FOR_DISTRIBUTION' | 'READY_FOR_REVIEW' | 'REJECTED' | 'REPLACED_WITH_NEW_VERSION' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW')>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'platform' + */ + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + /** + * filter by attribute 'versionString' + */ + 'filter[versionString]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'bundleId' | 'primaryRepositories')>; + include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related primaryRepositories returned (when they are included) + * maximum number of related appStoreVersionExperiments returned (when they are included) + * @deprecated */ - 'limit[primaryRepositories]'?: number; + 'limit[appStoreVersionExperiments]'?: number; + /** + * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + */ + 'limit[appStoreVersionExperimentsV2]'?: number; + /** + * maximum number of related appStoreVersionLocalizations returned (when they are included) + */ + 'limit[appStoreVersionLocalizations]'?: number; }; }; -export type CiProductsGetCollectionResponse = (CiProductsResponse); +export type AppsAppStoreVersionsGetToManyRelatedResponse = (AppStoreVersionsResponse); -export type CiProductsGetCollectionError = (ErrorResponse); +export type AppsAppStoreVersionsGetToManyRelatedError = (ErrorResponse); -export type CiProductsGetInstanceData = { +export type AppsBetaAppLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17204,46 +18250,40 @@ export type CiProductsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type ciProducts - */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; - /** - * the fields to include for returned resources of type scmRepositories - */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type betaAppLocalizations */ - include?: Array<('app' | 'bundleId' | 'primaryRepositories')>; + 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; /** - * maximum number of related primaryRepositories returned (when they are included) + * maximum resources per page */ - 'limit[primaryRepositories]'?: number; + limit?: number; }; }; -export type CiProductsGetInstanceResponse = (CiProductResponse); +export type AppsBetaAppLocalizationsGetToManyRelatedResponse = (BetaAppLocalizationsWithoutIncludesResponse); -export type CiProductsGetInstanceError = (ErrorResponse); +export type AppsBetaAppLocalizationsGetToManyRelatedError = (ErrorResponse); -export type CiProductsDeleteInstanceData = { +export type AppsBetaAppReviewDetailGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type betaAppReviewDetails + */ + 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; + }; }; -export type CiProductsDeleteInstanceResponse = (void); +export type AppsBetaAppReviewDetailGetToOneRelatedResponse = (BetaAppReviewDetailWithoutIncludesResponse); -export type CiProductsDeleteInstanceError = (ErrorResponse); +export type AppsBetaAppReviewDetailGetToOneRelatedError = (ErrorResponse); -export type CiTestResultsGetInstanceData = { +export type AppsBetaGroupsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17252,28 +18292,21 @@ export type CiTestResultsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type ciTestResults + * the fields to include for returned resources of type betaGroups */ - 'fields[ciTestResults]'?: Array<('className' | 'name' | 'status' | 'fileSource' | 'message' | 'destinationTestResults')>; + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type CiTestResultsGetInstanceResponse = (CiTestResultResponse); - -export type CiTestResultsGetInstanceError = (ErrorResponse); - -export type CiWorkflowsCreateInstanceData = { - /** - * CiWorkflow representation - */ - body: CiWorkflowCreateRequest; -}; - -export type CiWorkflowsCreateInstanceResponse = (CiWorkflowResponse); +export type AppsBetaGroupsGetToManyRelatedResponse = (BetaGroupsWithoutIncludesResponse); -export type CiWorkflowsCreateInstanceError = (ErrorResponse); +export type AppsBetaGroupsGetToManyRelatedError = (ErrorResponse); -export type CiWorkflowsGetInstanceData = { +export type AppsBetaLicenseAgreementGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -17282,29 +18315,21 @@ export type CiWorkflowsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type ciWorkflows - */ - 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; - /** - * the fields to include for returned resources of type scmRepositories - */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type betaLicenseAgreements */ - include?: Array<('product' | 'repository' | 'xcodeVersion' | 'macOsVersion')>; + 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; }; }; -export type CiWorkflowsGetInstanceResponse = (CiWorkflowResponse); +export type AppsBetaLicenseAgreementGetToOneRelatedResponse = (BetaLicenseAgreementWithoutIncludesResponse); -export type CiWorkflowsGetInstanceError = (ErrorResponse); +export type AppsBetaLicenseAgreementGetToOneRelatedError = (ErrorResponse); -export type CiWorkflowsUpdateInstanceData = { +export type AppsBetaTestersDeleteToManyRelationshipData = { /** - * CiWorkflow representation + * List of related linkages */ - body: CiWorkflowUpdateRequest; + body: AppBetaTestersLinkagesRequest; path: { /** * the id of the requested resource @@ -17313,53 +18338,34 @@ export type CiWorkflowsUpdateInstanceData = { }; }; -export type CiWorkflowsUpdateInstanceResponse = (CiWorkflowResponse); +export type AppsBetaTestersDeleteToManyRelationshipResponse = (unknown | void); -export type CiWorkflowsUpdateInstanceError = (ErrorResponse); +export type AppsBetaTestersDeleteToManyRelationshipError = (ErrorResponse); -export type CiWorkflowsDeleteInstanceData = { +export type AppsBuildsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type CiWorkflowsDeleteInstanceResponse = (void); - -export type CiWorkflowsDeleteInstanceError = (ErrorResponse); - -export type CiXcodeVersionsGetCollectionData = { query?: { /** - * the fields to include for returned resources of type ciMacOsVersions - */ - 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; - /** - * the fields to include for returned resources of type ciXcodeVersions - */ - 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type builds */ - include?: Array<('macOsVersions')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related macOsVersions returned (when they are included) - */ - 'limit[macOsVersions]'?: number; }; }; -export type CiXcodeVersionsGetCollectionResponse = (CiXcodeVersionsResponse); +export type AppsBuildsGetToManyRelatedResponse = (BuildsWithoutIncludesResponse); -export type CiXcodeVersionsGetCollectionError = (ErrorResponse); +export type AppsBuildsGetToManyRelatedError = (ErrorResponse); -export type CiXcodeVersionsGetInstanceData = { +export type AppsCiProductGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -17368,40 +18374,37 @@ export type CiXcodeVersionsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type ciMacOsVersions + * the fields to include for returned resources of type apps */ - 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type ciXcodeVersions + * the fields to include for returned resources of type bundleIds */ - 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; + 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; + /** + * the fields to include for returned resources of type ciProducts + */ + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; + /** + * the fields to include for returned resources of type scmRepositories + */ + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** * comma-separated list of relationships to include */ - include?: Array<('macOsVersions')>; + include?: Array<('app' | 'bundleId' | 'primaryRepositories')>; /** - * maximum number of related macOsVersions returned (when they are included) + * maximum number of related primaryRepositories returned (when they are included) */ - 'limit[macOsVersions]'?: number; + 'limit[primaryRepositories]'?: number; }; }; -export type CiXcodeVersionsGetInstanceResponse = (CiXcodeVersionResponse); - -export type CiXcodeVersionsGetInstanceError = (ErrorResponse); - -export type CustomerReviewResponsesCreateInstanceData = { - /** - * CustomerReviewResponse representation - */ - body: CustomerReviewResponseV1CreateRequest; -}; - -export type CustomerReviewResponsesCreateInstanceResponse = (CustomerReviewResponseV1Response); +export type AppsCiProductGetToOneRelatedResponse = (CiProductResponse); -export type CustomerReviewResponsesCreateInstanceError = (ErrorResponse); +export type AppsCiProductGetToOneRelatedError = (ErrorResponse); -export type CustomerReviewResponsesGetInstanceData = { +export type AppsCustomerReviewsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17409,35 +18412,65 @@ export type CustomerReviewResponsesGetInstanceData = { id: string; }; query?: { + /** + * filter by publishedResponse + */ + 'exists[publishedResponse]'?: boolean; /** * the fields to include for returned resources of type customerReviewResponses */ 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; + /** + * the fields to include for returned resources of type customerReviews + */ + 'fields[customerReviews]'?: Array<('rating' | 'title' | 'body' | 'reviewerNickname' | 'createdDate' | 'territory' | 'response')>; + /** + * filter by attribute 'rating' + */ + 'filter[rating]'?: Array<(string)>; + /** + * filter by attribute 'territory' + */ + 'filter[territory]'?: Array<('ABW' | 'AFG' | 'AGO' | 'AIA' | 'ALB' | 'AND' | 'ANT' | 'ARE' | 'ARG' | 'ARM' | 'ASM' | 'ATG' | 'AUS' | 'AUT' | 'AZE' | 'BDI' | 'BEL' | 'BEN' | 'BES' | 'BFA' | 'BGD' | 'BGR' | 'BHR' | 'BHS' | 'BIH' | 'BLR' | 'BLZ' | 'BMU' | 'BOL' | 'BRA' | 'BRB' | 'BRN' | 'BTN' | 'BWA' | 'CAF' | 'CAN' | 'CHE' | 'CHL' | 'CHN' | 'CIV' | 'CMR' | 'COD' | 'COG' | 'COK' | 'COL' | 'COM' | 'CPV' | 'CRI' | 'CUB' | 'CUW' | 'CXR' | 'CYM' | 'CYP' | 'CZE' | 'DEU' | 'DJI' | 'DMA' | 'DNK' | 'DOM' | 'DZA' | 'ECU' | 'EGY' | 'ERI' | 'ESP' | 'EST' | 'ETH' | 'FIN' | 'FJI' | 'FLK' | 'FRA' | 'FRO' | 'FSM' | 'GAB' | 'GBR' | 'GEO' | 'GGY' | 'GHA' | 'GIB' | 'GIN' | 'GLP' | 'GMB' | 'GNB' | 'GNQ' | 'GRC' | 'GRD' | 'GRL' | 'GTM' | 'GUF' | 'GUM' | 'GUY' | 'HKG' | 'HND' | 'HRV' | 'HTI' | 'HUN' | 'IDN' | 'IMN' | 'IND' | 'IRL' | 'IRQ' | 'ISL' | 'ISR' | 'ITA' | 'JAM' | 'JEY' | 'JOR' | 'JPN' | 'KAZ' | 'KEN' | 'KGZ' | 'KHM' | 'KIR' | 'KNA' | 'KOR' | 'KWT' | 'LAO' | 'LBN' | 'LBR' | 'LBY' | 'LCA' | 'LIE' | 'LKA' | 'LSO' | 'LTU' | 'LUX' | 'LVA' | 'MAC' | 'MAR' | 'MCO' | 'MDA' | 'MDG' | 'MDV' | 'MEX' | 'MHL' | 'MKD' | 'MLI' | 'MLT' | 'MMR' | 'MNE' | 'MNG' | 'MNP' | 'MOZ' | 'MRT' | 'MSR' | 'MTQ' | 'MUS' | 'MWI' | 'MYS' | 'MYT' | 'NAM' | 'NCL' | 'NER' | 'NFK' | 'NGA' | 'NIC' | 'NIU' | 'NLD' | 'NOR' | 'NPL' | 'NRU' | 'NZL' | 'OMN' | 'PAK' | 'PAN' | 'PER' | 'PHL' | 'PLW' | 'PNG' | 'POL' | 'PRI' | 'PRT' | 'PRY' | 'PSE' | 'PYF' | 'QAT' | 'REU' | 'ROU' | 'RUS' | 'RWA' | 'SAU' | 'SEN' | 'SGP' | 'SHN' | 'SLB' | 'SLE' | 'SLV' | 'SMR' | 'SOM' | 'SPM' | 'SRB' | 'SSD' | 'STP' | 'SUR' | 'SVK' | 'SVN' | 'SWE' | 'SWZ' | 'SXM' | 'SYC' | 'TCA' | 'TCD' | 'TGO' | 'THA' | 'TJK' | 'TKM' | 'TLS' | 'TON' | 'TTO' | 'TUN' | 'TUR' | 'TUV' | 'TWN' | 'TZA' | 'UGA' | 'UKR' | 'UMI' | 'URY' | 'USA' | 'UZB' | 'VAT' | 'VCT' | 'VEN' | 'VGB' | 'VIR' | 'VNM' | 'VUT' | 'WLF' | 'WSM' | 'YEM' | 'ZAF' | 'ZMB' | 'ZWE')>; /** * comma-separated list of relationships to include */ - include?: Array<('review')>; + include?: Array<('response')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('rating' | '-rating' | 'createdDate' | '-createdDate')>; }; }; -export type CustomerReviewResponsesGetInstanceResponse = (CustomerReviewResponseV1Response); +export type AppsCustomerReviewsGetToManyRelatedResponse = (CustomerReviewsResponse); -export type CustomerReviewResponsesGetInstanceError = (ErrorResponse); +export type AppsCustomerReviewsGetToManyRelatedError = (ErrorResponse); -export type CustomerReviewResponsesDeleteInstanceData = { +export type AppsEndUserLicenseAgreementGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type endUserLicenseAgreements + */ + 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; + }; }; -export type CustomerReviewResponsesDeleteInstanceResponse = (void); +export type AppsEndUserLicenseAgreementGetToOneRelatedResponse = (EndUserLicenseAgreementWithoutIncludesResponse); -export type CustomerReviewResponsesDeleteInstanceError = (ErrorResponse); +export type AppsEndUserLicenseAgreementGetToOneRelatedError = (ErrorResponse); -export type CustomerReviewsGetInstanceData = { +export type AppsGameCenterDetailGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -17446,135 +18479,85 @@ export type CustomerReviewsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type customerReviewResponses + * the fields to include for returned resources of type apps */ - 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type customerReviews + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'fields[customerReviews]'?: Array<('rating' | 'title' | 'body' | 'reviewerNickname' | 'createdDate' | 'territory' | 'response')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type gameCenterAchievements */ - include?: Array<('response')>; - }; -}; - -export type CustomerReviewsGetInstanceResponse = (CustomerReviewResponse); - -export type CustomerReviewsGetInstanceError = (ErrorResponse); - -export type DevicesGetCollectionData = { - query?: { + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * the fields to include for returned resources of type devices + * the fields to include for returned resources of type gameCenterAppVersions */ - 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; /** - * filter by id(s) + * the fields to include for returned resources of type gameCenterDetails */ - 'filter[id]'?: Array<(string)>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * filter by attribute 'name' + * the fields to include for returned resources of type gameCenterGroups */ - 'filter[name]'?: Array<(string)>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * filter by attribute 'platform' + * the fields to include for returned resources of type gameCenterLeaderboardReleases */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS')>; + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; /** - * filter by attribute 'status' + * the fields to include for returned resources of type gameCenterLeaderboards */ - 'filter[status]'?: Array<('ENABLED' | 'DISABLED')>; + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** - * filter by attribute 'udid' + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases */ - 'filter[udid]'?: Array<(string)>; + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterLeaderboardSets */ - limit?: number; + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** - * comma-separated list of sort expressions; resources will be sorted as specified + * comma-separated list of relationships to include */ - sort?: Array<('name' | '-name' | 'platform' | '-platform' | 'udid' | '-udid' | 'status' | '-status' | 'id' | '-id')>; - }; -}; - -export type DevicesGetCollectionResponse = (DevicesResponse); - -export type DevicesGetCollectionError = (ErrorResponse); - -export type DevicesCreateInstanceData = { - /** - * Device representation - */ - body: DeviceCreateRequest; -}; - -export type DevicesCreateInstanceResponse = (DeviceResponse); - -export type DevicesCreateInstanceError = (ErrorResponse); - -export type DevicesGetInstanceData = { - path: { + include?: Array<('app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the id of the requested resource + * maximum number of related achievementReleases returned (when they are included) */ - id: string; - }; - query?: { + 'limit[achievementReleases]'?: number; /** - * the fields to include for returned resources of type devices + * maximum number of related gameCenterAchievements returned (when they are included) */ - 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; - }; -}; - -export type DevicesGetInstanceResponse = (DeviceResponse); - -export type DevicesGetInstanceError = (ErrorResponse); - -export type DevicesUpdateInstanceData = { - /** - * Device representation - */ - body: DeviceUpdateRequest; - path: { + 'limit[gameCenterAchievements]'?: number; /** - * the id of the requested resource + * maximum number of related gameCenterAppVersions returned (when they are included) */ - id: string; + 'limit[gameCenterAppVersions]'?: number; + /** + * maximum number of related gameCenterLeaderboards returned (when they are included) + */ + 'limit[gameCenterLeaderboards]'?: number; + /** + * maximum number of related gameCenterLeaderboardSets returned (when they are included) + */ + 'limit[gameCenterLeaderboardSets]'?: number; + /** + * maximum number of related leaderboardReleases returned (when they are included) + */ + 'limit[leaderboardReleases]'?: number; + /** + * maximum number of related leaderboardSetReleases returned (when they are included) + */ + 'limit[leaderboardSetReleases]'?: number; }; }; -export type DevicesUpdateInstanceResponse = (DeviceResponse); - -export type DevicesUpdateInstanceError = (ErrorResponse); - -export type EndAppAvailabilityPreOrdersCreateInstanceData = { - /** - * EndAppAvailabilityPreOrder representation - */ - body: EndAppAvailabilityPreOrderCreateRequest; -}; - -export type EndAppAvailabilityPreOrdersCreateInstanceResponse = (EndAppAvailabilityPreOrderResponse); - -export type EndAppAvailabilityPreOrdersCreateInstanceError = (ErrorResponse); - -export type EndUserLicenseAgreementsCreateInstanceData = { - /** - * EndUserLicenseAgreement representation - */ - body: EndUserLicenseAgreementCreateRequest; -}; - -export type EndUserLicenseAgreementsCreateInstanceResponse = (EndUserLicenseAgreementResponse); +export type AppsGameCenterDetailGetToOneRelatedResponse = (GameCenterDetailResponse); -export type EndUserLicenseAgreementsCreateInstanceError = (ErrorResponse); +export type AppsGameCenterDetailGetToOneRelatedError = (ErrorResponse); -export type EndUserLicenseAgreementsGetInstanceData = { +export type AppsGameCenterEnabledVersionsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17583,95 +18566,50 @@ export type EndUserLicenseAgreementsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type endUserLicenseAgreements - */ - 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; - /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type apps */ - 'fields[territories]'?: Array<('currency')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type gameCenterEnabledVersions */ - include?: Array<('app' | 'territories')>; + 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; /** - * maximum number of related territories returned (when they are included) + * filter by id(s) */ - 'limit[territories]'?: number; - }; -}; - -export type EndUserLicenseAgreementsGetInstanceResponse = (EndUserLicenseAgreementResponse); - -export type EndUserLicenseAgreementsGetInstanceError = (ErrorResponse); - -export type EndUserLicenseAgreementsUpdateInstanceData = { - /** - * EndUserLicenseAgreement representation - */ - body: EndUserLicenseAgreementUpdateRequest; - path: { + 'filter[id]'?: Array<(string)>; /** - * the id of the requested resource + * filter by attribute 'platform' */ - id: string; - }; -}; - -export type EndUserLicenseAgreementsUpdateInstanceResponse = (EndUserLicenseAgreementResponse); - -export type EndUserLicenseAgreementsUpdateInstanceError = (ErrorResponse); - -export type EndUserLicenseAgreementsDeleteInstanceData = { - path: { + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; /** - * the id of the requested resource + * filter by attribute 'versionString' */ - id: string; - }; -}; - -export type EndUserLicenseAgreementsDeleteInstanceResponse = (void); - -export type EndUserLicenseAgreementsDeleteInstanceError = (ErrorResponse); - -export type FinanceReportsGetCollectionData = { - query: { + 'filter[versionString]'?: Array<(string)>; /** - * filter by attribute 'regionCode' + * comma-separated list of relationships to include */ - 'filter[regionCode]': Array<(string)>; + include?: Array<('compatibleVersions' | 'app')>; /** - * filter by attribute 'reportDate' + * maximum resources per page */ - 'filter[reportDate]': Array<(string)>; + limit?: number; /** - * filter by attribute 'reportType' + * maximum number of related compatibleVersions returned (when they are included) + * @deprecated */ - 'filter[reportType]': Array<('FINANCIAL' | 'FINANCE_DETAIL')>; + 'limit[compatibleVersions]'?: number; /** - * filter by attribute 'vendorNumber' + * comma-separated list of sort expressions; resources will be sorted as specified */ - 'filter[vendorNumber]': Array<(string)>; + sort?: Array<('versionString' | '-versionString')>; }; }; -export type FinanceReportsGetCollectionResponse = (gzip); - -export type FinanceReportsGetCollectionError = (ErrorResponse); - -export type GameCenterAchievementImagesCreateInstanceData = { - /** - * GameCenterAchievementImage representation - */ - body: GameCenterAchievementImageCreateRequest; -}; - -export type GameCenterAchievementImagesCreateInstanceResponse = (GameCenterAchievementImageResponse); +export type AppsGameCenterEnabledVersionsGetToManyRelatedResponse = (GameCenterEnabledVersionsResponse); -export type GameCenterAchievementImagesCreateInstanceError = (ErrorResponse); +export type AppsGameCenterEnabledVersionsGetToManyRelatedError = (ErrorResponse); -export type GameCenterAchievementImagesGetInstanceData = { +export type AppsInAppPurchasesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17680,62 +18618,45 @@ export type GameCenterAchievementImagesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementImages + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type inAppPurchases + */ + 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps')>; + /** + * filter by canBeSubmitted */ - 'fields[gameCenterAchievementImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterAchievementLocalization')>; + 'filter[canBeSubmitted]'?: Array<(string)>; + /** + * filter by attribute 'inAppPurchaseType' + */ + 'filter[inAppPurchaseType]'?: Array<('AUTOMATICALLY_RENEWABLE_SUBSCRIPTION' | 'NON_CONSUMABLE' | 'CONSUMABLE' | 'NON_RENEWING_SUBSCRIPTION' | 'FREE_SUBSCRIPTION')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterAchievementLocalization')>; - }; -}; - -export type GameCenterAchievementImagesGetInstanceResponse = (GameCenterAchievementImageResponse); - -export type GameCenterAchievementImagesGetInstanceError = (ErrorResponse); - -export type GameCenterAchievementImagesUpdateInstanceData = { - /** - * GameCenterAchievementImage representation - */ - body: GameCenterAchievementImageUpdateRequest; - path: { + include?: Array<('apps')>; /** - * the id of the requested resource + * maximum resources per page */ - id: string; - }; -}; - -export type GameCenterAchievementImagesUpdateInstanceResponse = (GameCenterAchievementImageResponse); - -export type GameCenterAchievementImagesUpdateInstanceError = (ErrorResponse); - -export type GameCenterAchievementImagesDeleteInstanceData = { - path: { + limit?: number; /** - * the id of the requested resource + * maximum number of related apps returned (when they are included) */ - id: string; + 'limit[apps]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('referenceName' | '-referenceName' | 'productId' | '-productId' | 'inAppPurchaseType' | '-inAppPurchaseType')>; }; }; -export type GameCenterAchievementImagesDeleteInstanceResponse = (void); - -export type GameCenterAchievementImagesDeleteInstanceError = (ErrorResponse); - -export type GameCenterAchievementLocalizationsCreateInstanceData = { - /** - * GameCenterAchievementLocalization representation - */ - body: GameCenterAchievementLocalizationCreateRequest; -}; - -export type GameCenterAchievementLocalizationsCreateInstanceResponse = (GameCenterAchievementLocalizationResponse); +export type AppsInAppPurchasesGetToManyRelatedResponse = (InAppPurchasesResponse); -export type GameCenterAchievementLocalizationsCreateInstanceError = (ErrorResponse); +export type AppsInAppPurchasesGetToManyRelatedError = (ErrorResponse); -export type GameCenterAchievementLocalizationsGetInstanceData = { +export type AppsInAppPurchasesV2GetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17744,70 +18665,127 @@ export type GameCenterAchievementLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementImages + * the fields to include for returned resources of type inAppPurchaseAppStoreReviewScreenshots */ - 'fields[gameCenterAchievementImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterAchievementLocalization')>; + 'fields[inAppPurchaseAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'inAppPurchaseV2')>; /** - * the fields to include for returned resources of type gameCenterAchievementLocalizations + * the fields to include for returned resources of type inAppPurchaseAvailabilities */ - 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; + 'fields[inAppPurchaseAvailabilities]'?: Array<('availableInNewTerritories' | 'availableTerritories')>; /** - * the fields to include for returned resources of type gameCenterAchievements + * the fields to include for returned resources of type inAppPurchaseContents */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[inAppPurchaseContents]'?: Array<('fileName' | 'fileSize' | 'url' | 'lastModifiedDate' | 'inAppPurchaseV2')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type inAppPurchaseImages */ - include?: Array<('gameCenterAchievement' | 'gameCenterAchievementImage')>; - }; -}; + 'fields[inAppPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'state' | 'inAppPurchase')>; + /** + * the fields to include for returned resources of type inAppPurchaseLocalizations + */ + 'fields[inAppPurchaseLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'inAppPurchaseV2')>; + /** + * the fields to include for returned resources of type inAppPurchasePriceSchedules + */ + 'fields[inAppPurchasePriceSchedules]'?: Array<('baseTerritory' | 'manualPrices' | 'automaticPrices')>; + /** + * the fields to include for returned resources of type inAppPurchases + */ + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + /** + * the fields to include for returned resources of type promotedPurchases + */ + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + /** + * filter by attribute 'inAppPurchaseType' + */ + 'filter[inAppPurchaseType]'?: Array<('CONSUMABLE' | 'NON_CONSUMABLE' | 'NON_RENEWING_SUBSCRIPTION')>; + /** + * filter by attribute 'name' + */ + 'filter[name]'?: Array<(string)>; + /** + * filter by attribute 'productId' + */ + 'filter[productId]'?: Array<(string)>; + /** + * filter by attribute 'state' + */ + 'filter[state]'?: Array<('MISSING_METADATA' | 'WAITING_FOR_UPLOAD' | 'PROCESSING_CONTENT' | 'READY_TO_SUBMIT' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'DEVELOPER_ACTION_NEEDED' | 'PENDING_BINARY_APPROVAL' | 'APPROVED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'REMOVED_FROM_SALE' | 'REJECTED')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('inAppPurchaseLocalizations' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related images returned (when they are included) + */ + 'limit[images]'?: number; + /** + * maximum number of related inAppPurchaseLocalizations returned (when they are included) + */ + 'limit[inAppPurchaseLocalizations]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('name' | '-name' | 'inAppPurchaseType' | '-inAppPurchaseType')>; + }; +}; -export type GameCenterAchievementLocalizationsGetInstanceResponse = (GameCenterAchievementLocalizationResponse); +export type AppsInAppPurchasesV2GetToManyRelatedResponse = (InAppPurchasesV2Response); -export type GameCenterAchievementLocalizationsGetInstanceError = (ErrorResponse); +export type AppsInAppPurchasesV2GetToManyRelatedError = (ErrorResponse); -export type GameCenterAchievementLocalizationsUpdateInstanceData = { - /** - * GameCenterAchievementLocalization representation - */ - body: GameCenterAchievementLocalizationUpdateRequest; +export type AppsMarketplaceSearchDetailGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type marketplaceSearchDetails + */ + 'fields[marketplaceSearchDetails]'?: Array<('catalogUrl')>; + }; }; -export type GameCenterAchievementLocalizationsUpdateInstanceResponse = (GameCenterAchievementLocalizationResponse); +export type AppsMarketplaceSearchDetailGetToOneRelatedResponse = (MarketplaceSearchDetailResponse); -export type GameCenterAchievementLocalizationsUpdateInstanceError = (ErrorResponse); +export type AppsMarketplaceSearchDetailGetToOneRelatedError = (ErrorResponse); -export type GameCenterAchievementLocalizationsDeleteInstanceData = { +export type AppsPerfPowerMetricsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * filter by attribute 'deviceType' + */ + 'filter[deviceType]'?: Array<(string)>; + /** + * filter by attribute 'metricType' + */ + 'filter[metricType]'?: Array<('DISK' | 'HANG' | 'BATTERY' | 'LAUNCH' | 'MEMORY' | 'ANIMATION' | 'TERMINATION')>; + /** + * filter by attribute 'platform' + */ + 'filter[platform]'?: Array<('IOS')>; + }; }; -export type GameCenterAchievementLocalizationsDeleteInstanceResponse = (void); - -export type GameCenterAchievementLocalizationsDeleteInstanceError = (ErrorResponse); - -export type GameCenterAchievementReleasesCreateInstanceData = { - /** - * GameCenterAchievementRelease representation - */ - body: GameCenterAchievementReleaseCreateRequest; -}; - -export type GameCenterAchievementReleasesCreateInstanceResponse = (GameCenterAchievementReleaseResponse); +export type AppsPerfPowerMetricsGetToManyRelatedResponse = (xcodeMetrics); -export type GameCenterAchievementReleasesCreateInstanceError = (ErrorResponse); +export type AppsPerfPowerMetricsGetToManyRelatedError = (ErrorResponse); -export type GameCenterAchievementReleasesGetInstanceData = { +export type AppsPreReleaseVersionsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17816,45 +18794,57 @@ export type GameCenterAchievementReleasesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementReleases + * the fields to include for returned resources of type preReleaseVersions */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; /** - * comma-separated list of relationships to include + * maximum resources per page */ - include?: Array<('gameCenterDetail' | 'gameCenterAchievement')>; + limit?: number; }; }; -export type GameCenterAchievementReleasesGetInstanceResponse = (GameCenterAchievementReleaseResponse); +export type AppsPreReleaseVersionsGetToManyRelatedResponse = (PreReleaseVersionsWithoutIncludesResponse); -export type GameCenterAchievementReleasesGetInstanceError = (ErrorResponse); +export type AppsPreReleaseVersionsGetToManyRelatedError = (ErrorResponse); -export type GameCenterAchievementReleasesDeleteInstanceData = { +export type AppsPromotedPurchasesGetToManyRelationshipData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type GameCenterAchievementReleasesDeleteInstanceResponse = (void); +export type AppsPromotedPurchasesGetToManyRelationshipResponse = (AppPromotedPurchasesLinkagesResponse); -export type GameCenterAchievementReleasesDeleteInstanceError = (ErrorResponse); +export type AppsPromotedPurchasesGetToManyRelationshipError = (ErrorResponse); -export type GameCenterAchievementsCreateInstanceData = { +export type AppsPromotedPurchasesReplaceToManyRelationshipData = { /** - * GameCenterAchievement representation + * List of related linkages */ - body: GameCenterAchievementCreateRequest; + body: AppPromotedPurchasesLinkagesRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type GameCenterAchievementsCreateInstanceResponse = (GameCenterAchievementResponse); +export type AppsPromotedPurchasesReplaceToManyRelationshipResponse = (void); -export type GameCenterAchievementsCreateInstanceError = (ErrorResponse); +export type AppsPromotedPurchasesReplaceToManyRelationshipError = (ErrorResponse); -export type GameCenterAchievementsGetInstanceData = { +export type AppsPromotedPurchasesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17863,78 +18853,116 @@ export type GameCenterAchievementsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementLocalizations + * the fields to include for returned resources of type inAppPurchases */ - 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** - * the fields to include for returned resources of type gameCenterAchievementReleases + * the fields to include for returned resources of type promotedPurchaseImages */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; + 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'state' | 'promotedPurchase')>; /** - * the fields to include for returned resources of type gameCenterAchievements + * the fields to include for returned resources of type promotedPurchases */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + /** + * the fields to include for returned resources of type subscriptions + */ + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + include?: Array<('inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * maximum number of related localizations returned (when they are included) + * maximum resources per page */ - 'limit[localizations]'?: number; + limit?: number; /** - * maximum number of related releases returned (when they are included) + * maximum number of related promotionImages returned (when they are included) + * @deprecated */ - 'limit[releases]'?: number; + 'limit[promotionImages]'?: number; }; }; -export type GameCenterAchievementsGetInstanceResponse = (GameCenterAchievementResponse); +export type AppsPromotedPurchasesGetToManyRelatedResponse = (PromotedPurchasesResponse); -export type GameCenterAchievementsGetInstanceError = (ErrorResponse); +export type AppsPromotedPurchasesGetToManyRelatedError = (ErrorResponse); -export type GameCenterAchievementsUpdateInstanceData = { - /** - * GameCenterAchievement representation - */ - body: GameCenterAchievementUpdateRequest; +export type AppsReviewSubmissionsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type actors + */ + 'fields[actors]'?: Array<('actorType' | 'userFirstName' | 'userLastName' | 'userEmail' | 'apiKeyId')>; + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * the fields to include for returned resources of type reviewSubmissionItems + */ + 'fields[reviewSubmissionItems]'?: Array<('state' | 'appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; + /** + * the fields to include for returned resources of type reviewSubmissions + */ + 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + /** + * filter by attribute 'platform' + */ + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + /** + * filter by attribute 'state' + */ + 'filter[state]'?: Array<('READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'UNRESOLVED_ISSUES' | 'CANCELING' | 'COMPLETING' | 'COMPLETE')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related items returned (when they are included) + */ + 'limit[items]'?: number; + }; }; -export type GameCenterAchievementsUpdateInstanceResponse = (GameCenterAchievementResponse); +export type AppsReviewSubmissionsGetToManyRelatedResponse = (ReviewSubmissionsResponse); -export type GameCenterAchievementsUpdateInstanceError = (ErrorResponse); +export type AppsReviewSubmissionsGetToManyRelatedError = (ErrorResponse); -export type GameCenterAchievementsDeleteInstanceData = { +export type AppsSubscriptionGracePeriodGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type subscriptionGracePeriods + */ + 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; + }; }; -export type GameCenterAchievementsDeleteInstanceResponse = (void); - -export type GameCenterAchievementsDeleteInstanceError = (ErrorResponse); - -export type GameCenterAppVersionsCreateInstanceData = { - /** - * GameCenterAppVersion representation - */ - body: GameCenterAppVersionCreateRequest; -}; - -export type GameCenterAppVersionsCreateInstanceResponse = (GameCenterAppVersionResponse); +export type AppsSubscriptionGracePeriodGetToOneRelatedResponse = (SubscriptionGracePeriodResponse); -export type GameCenterAppVersionsCreateInstanceError = (ErrorResponse); +export type AppsSubscriptionGracePeriodGetToOneRelatedError = (ErrorResponse); -export type GameCenterAppVersionsGetInstanceData = { +export type AppsSubscriptionGroupsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -17943,144 +18971,167 @@ export type GameCenterAppVersionsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type subscriptionGroupLocalizations */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[subscriptionGroupLocalizations]'?: Array<('name' | 'customAppName' | 'locale' | 'state' | 'subscriptionGroup')>; /** - * the fields to include for returned resources of type gameCenterAppVersions + * the fields to include for returned resources of type subscriptionGroups */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + 'fields[subscriptionGroups]'?: Array<('referenceName' | 'subscriptions' | 'subscriptionGroupLocalizations')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type subscriptions */ - include?: Array<('compatibilityVersions' | 'appStoreVersion')>; + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** - * maximum number of related compatibilityVersions returned (when they are included) + * filter by attribute 'referenceName' */ - 'limit[compatibilityVersions]'?: number; + 'filter[referenceName]'?: Array<(string)>; + /** + * filter by attribute 'subscriptions.state' + */ + 'filter[subscriptions.state]'?: Array<('MISSING_METADATA' | 'READY_TO_SUBMIT' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'DEVELOPER_ACTION_NEEDED' | 'PENDING_BINARY_APPROVAL' | 'APPROVED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'REMOVED_FROM_SALE' | 'REJECTED')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('subscriptions' | 'subscriptionGroupLocalizations')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related subscriptionGroupLocalizations returned (when they are included) + */ + 'limit[subscriptionGroupLocalizations]'?: number; + /** + * maximum number of related subscriptions returned (when they are included) + */ + 'limit[subscriptions]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('referenceName' | '-referenceName')>; }; }; -export type GameCenterAppVersionsGetInstanceResponse = (GameCenterAppVersionResponse); +export type AppsSubscriptionGroupsGetToManyRelatedResponse = (SubscriptionGroupsResponse); -export type GameCenterAppVersionsGetInstanceError = (ErrorResponse); +export type AppsSubscriptionGroupsGetToManyRelatedError = (ErrorResponse); -export type GameCenterAppVersionsUpdateInstanceData = { - /** - * GameCenterAppVersion representation - */ - body: GameCenterAppVersionUpdateRequest; +export type AppsBetaTesterUsagesGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * filter by 'betaTesters' relationship dimension + */ + 'filter[betaTesters]'?: string; + /** + * the dimension by which to group the results + */ + groupBy?: Array<('betaTesters')>; + /** + * maximum number of groups to return per page + */ + limit?: number; + /** + * the duration of the reporting period + */ + period?: 'P7D' | 'P30D' | 'P90D' | 'P365D'; + }; }; -export type GameCenterAppVersionsUpdateInstanceResponse = (GameCenterAppVersionResponse); +export type AppsBetaTesterUsagesGetMetricsResponse = (AppsBetaTesterUsagesV1MetricResponse); -export type GameCenterAppVersionsUpdateInstanceError = (ErrorResponse); +export type AppsBetaTesterUsagesGetMetricsError = (ErrorResponse); -export type GameCenterDetailsCreateInstanceData = { +export type BetaAppClipInvocationLocalizationsCreateInstanceData = { /** - * GameCenterDetail representation + * BetaAppClipInvocationLocalization representation */ - body: GameCenterDetailCreateRequest; + body: BetaAppClipInvocationLocalizationCreateRequest; }; -export type GameCenterDetailsCreateInstanceResponse = (GameCenterDetailResponse); +export type BetaAppClipInvocationLocalizationsCreateInstanceResponse = (BetaAppClipInvocationLocalizationResponse); -export type GameCenterDetailsCreateInstanceError = (ErrorResponse); +export type BetaAppClipInvocationLocalizationsCreateInstanceError = (ErrorResponse); -export type GameCenterDetailsGetInstanceData = { +export type BetaAppClipInvocationLocalizationsUpdateInstanceData = { + /** + * BetaAppClipInvocationLocalization representation + */ + body: BetaAppClipInvocationLocalizationUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type gameCenterAchievementReleases - */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; - /** - * the fields to include for returned resources of type gameCenterAchievements - */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterAppVersions - */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; - /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases - */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; +}; + +export type BetaAppClipInvocationLocalizationsUpdateInstanceResponse = (BetaAppClipInvocationLocalizationResponse); + +export type BetaAppClipInvocationLocalizationsUpdateInstanceError = (ErrorResponse); + +export type BetaAppClipInvocationLocalizationsDeleteInstanceData = { + path: { /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the id of the requested resource */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + id: string; + }; +}; + +export type BetaAppClipInvocationLocalizationsDeleteInstanceResponse = (void); + +export type BetaAppClipInvocationLocalizationsDeleteInstanceError = (ErrorResponse); + +export type BetaAppClipInvocationsCreateInstanceData = { + /** + * BetaAppClipInvocation representation + */ + body: BetaAppClipInvocationCreateRequest; +}; + +export type BetaAppClipInvocationsCreateInstanceResponse = (BetaAppClipInvocationResponse); + +export type BetaAppClipInvocationsCreateInstanceError = (ErrorResponse); + +export type BetaAppClipInvocationsGetInstanceData = { + path: { /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + * the id of the requested resource */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type betaAppClipInvocations */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[betaAppClipInvocations]'?: Array<('url' | 'betaAppClipInvocationLocalizations')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * maximum number of related achievementReleases returned (when they are included) - */ - 'limit[achievementReleases]'?: number; - /** - * maximum number of related gameCenterAchievements returned (when they are included) - */ - 'limit[gameCenterAchievements]'?: number; - /** - * maximum number of related gameCenterAppVersions returned (when they are included) - */ - 'limit[gameCenterAppVersions]'?: number; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) - */ - 'limit[gameCenterLeaderboardSets]'?: number; - /** - * maximum number of related leaderboardReleases returned (when they are included) - */ - 'limit[leaderboardReleases]'?: number; + include?: Array<('betaAppClipInvocationLocalizations')>; /** - * maximum number of related leaderboardSetReleases returned (when they are included) + * maximum number of related betaAppClipInvocationLocalizations returned (when they are included) */ - 'limit[leaderboardSetReleases]'?: number; + 'limit[betaAppClipInvocationLocalizations]'?: number; }; }; -export type GameCenterDetailsGetInstanceResponse = (GameCenterDetailResponse); +export type BetaAppClipInvocationsGetInstanceResponse = (BetaAppClipInvocationResponse); -export type GameCenterDetailsGetInstanceError = (ErrorResponse); +export type BetaAppClipInvocationsGetInstanceError = (ErrorResponse); -export type GameCenterDetailsUpdateInstanceData = { +export type BetaAppClipInvocationsUpdateInstanceData = { /** - * GameCenterDetail representation + * BetaAppClipInvocation representation */ - body: GameCenterDetailUpdateRequest; + body: BetaAppClipInvocationUpdateRequest; path: { /** * the id of the requested resource @@ -18089,79 +19140,68 @@ export type GameCenterDetailsUpdateInstanceData = { }; }; -export type GameCenterDetailsUpdateInstanceResponse = (GameCenterDetailResponse); +export type BetaAppClipInvocationsUpdateInstanceResponse = (BetaAppClipInvocationResponse); -export type GameCenterDetailsUpdateInstanceError = (ErrorResponse); +export type BetaAppClipInvocationsUpdateInstanceError = (ErrorResponse); -export type GameCenterGroupsGetCollectionData = { - query?: { - /** - * the fields to include for returned resources of type gameCenterAchievements - */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; +export type BetaAppClipInvocationsDeleteInstanceData = { + path: { /** - * the fields to include for returned resources of type gameCenterDetails + * the id of the requested resource */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + id: string; + }; +}; + +export type BetaAppClipInvocationsDeleteInstanceResponse = (void); + +export type BetaAppClipInvocationsDeleteInstanceError = (ErrorResponse); + +export type BetaAppLocalizationsGetCollectionData = { + query?: { /** - * the fields to include for returned resources of type gameCenterGroups + * the fields to include for returned resources of type apps */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the fields to include for returned resources of type betaAppLocalizations */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * filter by id(s) of related 'app' */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'filter[app]'?: Array<(string)>; /** - * filter by id(s) of related 'gameCenterDetails' + * filter by attribute 'locale' */ - 'filter[gameCenterDetails]'?: Array<(string)>; + 'filter[locale]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + include?: Array<('app')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related gameCenterAchievements returned (when they are included) - */ - 'limit[gameCenterAchievements]'?: number; - /** - * maximum number of related gameCenterDetails returned (when they are included) - */ - 'limit[gameCenterDetails]'?: number; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) - */ - 'limit[gameCenterLeaderboardSets]'?: number; }; }; -export type GameCenterGroupsGetCollectionResponse = (GameCenterGroupsResponse); +export type BetaAppLocalizationsGetCollectionResponse = (BetaAppLocalizationsResponse); -export type GameCenterGroupsGetCollectionError = (ErrorResponse); +export type BetaAppLocalizationsGetCollectionError = (ErrorResponse); -export type GameCenterGroupsCreateInstanceData = { +export type BetaAppLocalizationsCreateInstanceData = { /** - * GameCenterGroup representation + * BetaAppLocalization representation */ - body: GameCenterGroupCreateRequest; + body: BetaAppLocalizationCreateRequest; }; -export type GameCenterGroupsCreateInstanceResponse = (GameCenterGroupResponse); +export type BetaAppLocalizationsCreateInstanceResponse = (BetaAppLocalizationResponse); -export type GameCenterGroupsCreateInstanceError = (ErrorResponse); +export type BetaAppLocalizationsCreateInstanceError = (ErrorResponse); -export type GameCenterGroupsGetInstanceData = { +export type BetaAppLocalizationsGetInstanceData = { path: { /** * the id of the requested resource @@ -18170,57 +19210,29 @@ export type GameCenterGroupsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievements - */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the fields to include for returned resources of type apps */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type betaAppLocalizations */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * maximum number of related gameCenterAchievements returned (when they are included) - */ - 'limit[gameCenterAchievements]'?: number; - /** - * maximum number of related gameCenterDetails returned (when they are included) - */ - 'limit[gameCenterDetails]'?: number; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) - */ - 'limit[gameCenterLeaderboardSets]'?: number; + include?: Array<('app')>; }; }; -export type GameCenterGroupsGetInstanceResponse = (GameCenterGroupResponse); +export type BetaAppLocalizationsGetInstanceResponse = (BetaAppLocalizationResponse); -export type GameCenterGroupsGetInstanceError = (ErrorResponse); +export type BetaAppLocalizationsGetInstanceError = (ErrorResponse); -export type GameCenterGroupsUpdateInstanceData = { +export type BetaAppLocalizationsUpdateInstanceData = { /** - * GameCenterGroup representation + * BetaAppLocalization representation */ - body: GameCenterGroupUpdateRequest; + body: BetaAppLocalizationUpdateRequest; path: { /** * the id of the requested resource @@ -18229,11 +19241,11 @@ export type GameCenterGroupsUpdateInstanceData = { }; }; -export type GameCenterGroupsUpdateInstanceResponse = (GameCenterGroupResponse); +export type BetaAppLocalizationsUpdateInstanceResponse = (BetaAppLocalizationResponse); -export type GameCenterGroupsUpdateInstanceError = (ErrorResponse); +export type BetaAppLocalizationsUpdateInstanceError = (ErrorResponse); -export type GameCenterGroupsDeleteInstanceData = { +export type BetaAppLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -18242,33 +19254,11 @@ export type GameCenterGroupsDeleteInstanceData = { }; }; -export type GameCenterGroupsDeleteInstanceResponse = (void); - -export type GameCenterGroupsDeleteInstanceError = (ErrorResponse); - -export type GameCenterLeaderboardEntrySubmissionsCreateInstanceData = { - /** - * GameCenterLeaderboardEntrySubmission representation - */ - body: GameCenterLeaderboardEntrySubmissionCreateRequest; -}; - -export type GameCenterLeaderboardEntrySubmissionsCreateInstanceResponse = (GameCenterLeaderboardEntrySubmissionResponse); - -export type GameCenterLeaderboardEntrySubmissionsCreateInstanceError = (ErrorResponse); - -export type GameCenterLeaderboardImagesCreateInstanceData = { - /** - * GameCenterLeaderboardImage representation - */ - body: GameCenterLeaderboardImageCreateRequest; -}; - -export type GameCenterLeaderboardImagesCreateInstanceResponse = (GameCenterLeaderboardImageResponse); +export type BetaAppLocalizationsDeleteInstanceResponse = (void); -export type GameCenterLeaderboardImagesCreateInstanceError = (ErrorResponse); +export type BetaAppLocalizationsDeleteInstanceError = (ErrorResponse); -export type GameCenterLeaderboardImagesGetInstanceData = { +export type BetaAppLocalizationsAppGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -18277,62 +19267,46 @@ export type GameCenterLeaderboardImagesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardImages - */ - 'fields[gameCenterLeaderboardImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterLeaderboardLocalization')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type apps */ - include?: Array<('gameCenterLeaderboardLocalization')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; }; }; -export type GameCenterLeaderboardImagesGetInstanceResponse = (GameCenterLeaderboardImageResponse); +export type BetaAppLocalizationsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); -export type GameCenterLeaderboardImagesGetInstanceError = (ErrorResponse); +export type BetaAppLocalizationsAppGetToOneRelatedError = (ErrorResponse); -export type GameCenterLeaderboardImagesUpdateInstanceData = { - /** - * GameCenterLeaderboardImage representation - */ - body: GameCenterLeaderboardImageUpdateRequest; - path: { +export type BetaAppReviewDetailsGetCollectionData = { + query: { /** - * the id of the requested resource + * the fields to include for returned resources of type apps */ - id: string; - }; -}; - -export type GameCenterLeaderboardImagesUpdateInstanceResponse = (GameCenterLeaderboardImageResponse); - -export type GameCenterLeaderboardImagesUpdateInstanceError = (ErrorResponse); - -export type GameCenterLeaderboardImagesDeleteInstanceData = { - path: { + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the id of the requested resource + * the fields to include for returned resources of type betaAppReviewDetails */ - id: string; + 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; + /** + * filter by id(s) of related 'app' + */ + 'filter[app]': Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type GameCenterLeaderboardImagesDeleteInstanceResponse = (void); - -export type GameCenterLeaderboardImagesDeleteInstanceError = (ErrorResponse); - -export type GameCenterLeaderboardLocalizationsCreateInstanceData = { - /** - * GameCenterLeaderboardLocalization representation - */ - body: GameCenterLeaderboardLocalizationCreateRequest; -}; - -export type GameCenterLeaderboardLocalizationsCreateInstanceResponse = (GameCenterLeaderboardLocalizationResponse); +export type BetaAppReviewDetailsGetCollectionResponse = (BetaAppReviewDetailsResponse); -export type GameCenterLeaderboardLocalizationsCreateInstanceError = (ErrorResponse); +export type BetaAppReviewDetailsGetCollectionError = (ErrorResponse); -export type GameCenterLeaderboardLocalizationsGetInstanceData = { +export type BetaAppReviewDetailsGetInstanceData = { path: { /** * the id of the requested resource @@ -18341,29 +19315,29 @@ export type GameCenterLeaderboardLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardImages + * the fields to include for returned resources of type apps */ - 'fields[gameCenterLeaderboardImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterLeaderboardLocalization')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + * the fields to include for returned resources of type betaAppReviewDetails */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + include?: Array<('app')>; }; }; -export type GameCenterLeaderboardLocalizationsGetInstanceResponse = (GameCenterLeaderboardLocalizationResponse); +export type BetaAppReviewDetailsGetInstanceResponse = (BetaAppReviewDetailResponse); -export type GameCenterLeaderboardLocalizationsGetInstanceError = (ErrorResponse); +export type BetaAppReviewDetailsGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardLocalizationsUpdateInstanceData = { +export type BetaAppReviewDetailsUpdateInstanceData = { /** - * GameCenterLeaderboardLocalization representation + * BetaAppReviewDetail representation */ - body: GameCenterLeaderboardLocalizationUpdateRequest; + body: BetaAppReviewDetailUpdateRequest; path: { /** * the id of the requested resource @@ -18372,82 +19346,74 @@ export type GameCenterLeaderboardLocalizationsUpdateInstanceData = { }; }; -export type GameCenterLeaderboardLocalizationsUpdateInstanceResponse = (GameCenterLeaderboardLocalizationResponse); +export type BetaAppReviewDetailsUpdateInstanceResponse = (BetaAppReviewDetailResponse); -export type GameCenterLeaderboardLocalizationsUpdateInstanceError = (ErrorResponse); +export type BetaAppReviewDetailsUpdateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardLocalizationsDeleteInstanceData = { +export type BetaAppReviewDetailsAppGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + }; }; -export type GameCenterLeaderboardLocalizationsDeleteInstanceResponse = (void); - -export type GameCenterLeaderboardLocalizationsDeleteInstanceError = (ErrorResponse); - -export type GameCenterLeaderboardReleasesCreateInstanceData = { - /** - * GameCenterLeaderboardRelease representation - */ - body: GameCenterLeaderboardReleaseCreateRequest; -}; - -export type GameCenterLeaderboardReleasesCreateInstanceResponse = (GameCenterLeaderboardReleaseResponse); +export type BetaAppReviewDetailsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); -export type GameCenterLeaderboardReleasesCreateInstanceError = (ErrorResponse); +export type BetaAppReviewDetailsAppGetToOneRelatedError = (ErrorResponse); -export type GameCenterLeaderboardReleasesGetInstanceData = { - path: { +export type BetaAppReviewSubmissionsGetCollectionData = { + query: { /** - * the id of the requested resource + * the fields to include for returned resources of type betaAppReviewSubmissions */ - id: string; - }; - query?: { + 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases + * the fields to include for returned resources of type builds */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * filter by attribute 'betaReviewState' + */ + 'filter[betaReviewState]'?: Array<('WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'REJECTED' | 'APPROVED')>; + /** + * filter by id(s) of related 'build' + */ + 'filter[build]': Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterLeaderboard')>; - }; -}; - -export type GameCenterLeaderboardReleasesGetInstanceResponse = (GameCenterLeaderboardReleaseResponse); - -export type GameCenterLeaderboardReleasesGetInstanceError = (ErrorResponse); - -export type GameCenterLeaderboardReleasesDeleteInstanceData = { - path: { + include?: Array<('build')>; /** - * the id of the requested resource + * maximum resources per page */ - id: string; + limit?: number; }; }; -export type GameCenterLeaderboardReleasesDeleteInstanceResponse = (void); +export type BetaAppReviewSubmissionsGetCollectionResponse = (BetaAppReviewSubmissionsResponse); -export type GameCenterLeaderboardReleasesDeleteInstanceError = (ErrorResponse); +export type BetaAppReviewSubmissionsGetCollectionError = (ErrorResponse); -export type GameCenterLeaderboardSetImagesCreateInstanceData = { +export type BetaAppReviewSubmissionsCreateInstanceData = { /** - * GameCenterLeaderboardSetImage representation + * BetaAppReviewSubmission representation */ - body: GameCenterLeaderboardSetImageCreateRequest; + body: BetaAppReviewSubmissionCreateRequest; }; -export type GameCenterLeaderboardSetImagesCreateInstanceResponse = (GameCenterLeaderboardSetImageResponse); +export type BetaAppReviewSubmissionsCreateInstanceResponse = (BetaAppReviewSubmissionResponse); -export type GameCenterLeaderboardSetImagesCreateInstanceError = (ErrorResponse); +export type BetaAppReviewSubmissionsCreateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetImagesGetInstanceData = { +export type BetaAppReviewSubmissionsGetInstanceData = { path: { /** * the id of the requested resource @@ -18456,62 +19422,88 @@ export type GameCenterLeaderboardSetImagesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardSetImages + * the fields to include for returned resources of type betaAppReviewSubmissions + */ + 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; + /** + * the fields to include for returned resources of type builds */ - 'fields[gameCenterLeaderboardSetImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterLeaderboardSetLocalization')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterLeaderboardSetLocalization')>; + include?: Array<('build')>; }; }; -export type GameCenterLeaderboardSetImagesGetInstanceResponse = (GameCenterLeaderboardSetImageResponse); +export type BetaAppReviewSubmissionsGetInstanceResponse = (BetaAppReviewSubmissionResponse); -export type GameCenterLeaderboardSetImagesGetInstanceError = (ErrorResponse); +export type BetaAppReviewSubmissionsGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetImagesUpdateInstanceData = { - /** - * GameCenterLeaderboardSetImage representation - */ - body: GameCenterLeaderboardSetImageUpdateRequest; +export type BetaAppReviewSubmissionsBuildGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + }; }; -export type GameCenterLeaderboardSetImagesUpdateInstanceResponse = (GameCenterLeaderboardSetImageResponse); +export type BetaAppReviewSubmissionsBuildGetToOneRelatedResponse = (BuildWithoutIncludesResponse); -export type GameCenterLeaderboardSetImagesUpdateInstanceError = (ErrorResponse); +export type BetaAppReviewSubmissionsBuildGetToOneRelatedError = (ErrorResponse); -export type GameCenterLeaderboardSetImagesDeleteInstanceData = { - path: { +export type BetaBuildLocalizationsGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type betaBuildLocalizations */ - id: string; + 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * filter by id(s) of related 'build' + */ + 'filter[build]'?: Array<(string)>; + /** + * filter by attribute 'locale' + */ + 'filter[locale]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('build')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type GameCenterLeaderboardSetImagesDeleteInstanceResponse = (void); +export type BetaBuildLocalizationsGetCollectionResponse = (BetaBuildLocalizationsResponse); -export type GameCenterLeaderboardSetImagesDeleteInstanceError = (ErrorResponse); +export type BetaBuildLocalizationsGetCollectionError = (ErrorResponse); -export type GameCenterLeaderboardSetLocalizationsCreateInstanceData = { +export type BetaBuildLocalizationsCreateInstanceData = { /** - * GameCenterLeaderboardSetLocalization representation + * BetaBuildLocalization representation */ - body: GameCenterLeaderboardSetLocalizationCreateRequest; + body: BetaBuildLocalizationCreateRequest; }; -export type GameCenterLeaderboardSetLocalizationsCreateInstanceResponse = (GameCenterLeaderboardSetLocalizationResponse); +export type BetaBuildLocalizationsCreateInstanceResponse = (BetaBuildLocalizationResponse); -export type GameCenterLeaderboardSetLocalizationsCreateInstanceError = (ErrorResponse); +export type BetaBuildLocalizationsCreateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetLocalizationsGetInstanceData = { +export type BetaBuildLocalizationsGetInstanceData = { path: { /** * the id of the requested resource @@ -18520,29 +19512,29 @@ export type GameCenterLeaderboardSetLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardSetImages + * the fields to include for returned resources of type betaBuildLocalizations */ - 'fields[gameCenterLeaderboardSetImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterLeaderboardSetLocalization')>; + 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations + * the fields to include for returned resources of type builds */ - 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + include?: Array<('build')>; }; }; -export type GameCenterLeaderboardSetLocalizationsGetInstanceResponse = (GameCenterLeaderboardSetLocalizationResponse); +export type BetaBuildLocalizationsGetInstanceResponse = (BetaBuildLocalizationResponse); -export type GameCenterLeaderboardSetLocalizationsGetInstanceError = (ErrorResponse); +export type BetaBuildLocalizationsGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetLocalizationsUpdateInstanceData = { +export type BetaBuildLocalizationsUpdateInstanceData = { /** - * GameCenterLeaderboardSetLocalization representation + * BetaBuildLocalization representation */ - body: GameCenterLeaderboardSetLocalizationUpdateRequest; + body: BetaBuildLocalizationUpdateRequest; path: { /** * the id of the requested resource @@ -18551,11 +19543,11 @@ export type GameCenterLeaderboardSetLocalizationsUpdateInstanceData = { }; }; -export type GameCenterLeaderboardSetLocalizationsUpdateInstanceResponse = (GameCenterLeaderboardSetLocalizationResponse); +export type BetaBuildLocalizationsUpdateInstanceResponse = (BetaBuildLocalizationResponse); -export type GameCenterLeaderboardSetLocalizationsUpdateInstanceError = (ErrorResponse); +export type BetaBuildLocalizationsUpdateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetLocalizationsDeleteInstanceData = { +export type BetaBuildLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -18564,76 +19556,165 @@ export type GameCenterLeaderboardSetLocalizationsDeleteInstanceData = { }; }; -export type GameCenterLeaderboardSetLocalizationsDeleteInstanceResponse = (void); +export type BetaBuildLocalizationsDeleteInstanceResponse = (void); -export type GameCenterLeaderboardSetLocalizationsDeleteInstanceError = (ErrorResponse); +export type BetaBuildLocalizationsDeleteInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetMemberLocalizationsGetCollectionData = { - query: { +export type BetaBuildLocalizationsBuildGetToOneRelatedData = { + path: { /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the id of the requested resource */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardSetMemberLocalizations + * the fields to include for returned resources of type builds */ - 'fields[gameCenterLeaderboardSetMemberLocalizations]'?: Array<('name' | 'locale' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboard')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + }; +}; + +export type BetaBuildLocalizationsBuildGetToOneRelatedResponse = (BuildWithoutIncludesResponse); + +export type BetaBuildLocalizationsBuildGetToOneRelatedError = (ErrorResponse); + +export type BetaGroupsGetCollectionData = { + query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type apps */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * filter by id(s) of related 'gameCenterLeaderboard' + * the fields to include for returned resources of type betaGroups */ - 'filter[gameCenterLeaderboard]': Array<(string)>; + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; /** - * filter by id(s) of related 'gameCenterLeaderboardSet' + * the fields to include for returned resources of type betaTesters */ - 'filter[gameCenterLeaderboardSet]': Array<(string)>; + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * filter by id(s) of related 'app' + */ + 'filter[app]'?: Array<(string)>; + /** + * filter by id(s) of related 'builds' + */ + 'filter[builds]'?: Array<(string)>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'isInternalGroup' + */ + 'filter[isInternalGroup]'?: Array<(string)>; + /** + * filter by attribute 'name' + */ + 'filter[name]'?: Array<(string)>; + /** + * filter by attribute 'publicLink' + */ + 'filter[publicLink]'?: Array<(string)>; + /** + * filter by attribute 'publicLinkEnabled' + */ + 'filter[publicLinkEnabled]'?: Array<(string)>; + /** + * filter by attribute 'publicLinkLimitEnabled' + */ + 'filter[publicLinkLimitEnabled]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterLeaderboardSet' | 'gameCenterLeaderboard')>; + include?: Array<('app' | 'builds' | 'betaTesters')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related betaTesters returned (when they are included) + */ + 'limit[betaTesters]'?: number; + /** + * maximum number of related builds returned (when they are included) + */ + 'limit[builds]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('name' | '-name' | 'createdDate' | '-createdDate' | 'publicLinkEnabled' | '-publicLinkEnabled' | 'publicLinkLimit' | '-publicLinkLimit')>; }; }; -export type GameCenterLeaderboardSetMemberLocalizationsGetCollectionResponse = (GameCenterLeaderboardSetMemberLocalizationsResponse); +export type BetaGroupsGetCollectionResponse = (BetaGroupsResponse); -export type GameCenterLeaderboardSetMemberLocalizationsGetCollectionError = (ErrorResponse); +export type BetaGroupsGetCollectionError = (ErrorResponse); -export type GameCenterLeaderboardSetMemberLocalizationsCreateInstanceData = { +export type BetaGroupsCreateInstanceData = { /** - * GameCenterLeaderboardSetMemberLocalization representation + * BetaGroup representation */ - body: GameCenterLeaderboardSetMemberLocalizationCreateRequest; + body: BetaGroupCreateRequest; }; -export type GameCenterLeaderboardSetMemberLocalizationsCreateInstanceResponse = (GameCenterLeaderboardSetMemberLocalizationResponse); +export type BetaGroupsCreateInstanceResponse = (BetaGroupResponse); -export type GameCenterLeaderboardSetMemberLocalizationsCreateInstanceError = (ErrorResponse); +export type BetaGroupsCreateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceData = { - /** - * GameCenterLeaderboardSetMemberLocalization representation - */ - body: GameCenterLeaderboardSetMemberLocalizationUpdateRequest; +export type BetaGroupsGetInstanceData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type betaGroups + */ + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + /** + * the fields to include for returned resources of type betaTesters + */ + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'builds' | 'betaTesters')>; + /** + * maximum number of related betaTesters returned (when they are included) + */ + 'limit[betaTesters]'?: number; + /** + * maximum number of related builds returned (when they are included) + */ + 'limit[builds]'?: number; + }; }; -export type GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceResponse = (GameCenterLeaderboardSetMemberLocalizationResponse); +export type BetaGroupsGetInstanceResponse = (BetaGroupResponse); -export type GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceError = (ErrorResponse); +export type BetaGroupsGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceData = { +export type BetaGroupsUpdateInstanceData = { + /** + * BetaGroup representation + */ + body: BetaGroupUpdateRequest; path: { /** * the id of the requested resource @@ -18642,22 +19723,24 @@ export type GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceData = { }; }; -export type GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceResponse = (void); +export type BetaGroupsUpdateInstanceResponse = (BetaGroupResponse); -export type GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceError = (ErrorResponse); +export type BetaGroupsUpdateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetReleasesCreateInstanceData = { - /** - * GameCenterLeaderboardSetRelease representation - */ - body: GameCenterLeaderboardSetReleaseCreateRequest; +export type BetaGroupsDeleteInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type GameCenterLeaderboardSetReleasesCreateInstanceResponse = (GameCenterLeaderboardSetReleaseResponse); +export type BetaGroupsDeleteInstanceResponse = (void); -export type GameCenterLeaderboardSetReleasesCreateInstanceError = (ErrorResponse); +export type BetaGroupsDeleteInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetReleasesGetInstanceData = { +export type BetaGroupsAppGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -18666,21 +19749,40 @@ export type GameCenterLeaderboardSetReleasesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + * the fields to include for returned resources of type apps */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + }; +}; + +export type BetaGroupsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); + +export type BetaGroupsAppGetToOneRelatedError = (ErrorResponse); + +export type BetaGroupsBetaTestersGetToManyRelationshipData = { + path: { /** - * comma-separated list of relationships to include + * the id of the requested resource */ - include?: Array<('gameCenterDetail' | 'gameCenterLeaderboardSet')>; + id: string; + }; + query?: { + /** + * maximum resources per page + */ + limit?: number; }; }; -export type GameCenterLeaderboardSetReleasesGetInstanceResponse = (GameCenterLeaderboardSetReleaseResponse); +export type BetaGroupsBetaTestersGetToManyRelationshipResponse = (BetaGroupBetaTestersLinkagesResponse); -export type GameCenterLeaderboardSetReleasesGetInstanceError = (ErrorResponse); +export type BetaGroupsBetaTestersGetToManyRelationshipError = (ErrorResponse); -export type GameCenterLeaderboardSetReleasesDeleteInstanceData = { +export type BetaGroupsBetaTestersCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: BetaGroupBetaTestersLinkagesRequest; path: { /** * the id of the requested resource @@ -18689,22 +19791,28 @@ export type GameCenterLeaderboardSetReleasesDeleteInstanceData = { }; }; -export type GameCenterLeaderboardSetReleasesDeleteInstanceResponse = (void); +export type BetaGroupsBetaTestersCreateToManyRelationshipResponse = (void); -export type GameCenterLeaderboardSetReleasesDeleteInstanceError = (ErrorResponse); +export type BetaGroupsBetaTestersCreateToManyRelationshipError = (ErrorResponse); -export type GameCenterLeaderboardSetsCreateInstanceData = { +export type BetaGroupsBetaTestersDeleteToManyRelationshipData = { /** - * GameCenterLeaderboardSet representation + * List of related linkages */ - body: GameCenterLeaderboardSetCreateRequest; + body: BetaGroupBetaTestersLinkagesRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type GameCenterLeaderboardSetsCreateInstanceResponse = (GameCenterLeaderboardSetResponse); +export type BetaGroupsBetaTestersDeleteToManyRelationshipResponse = (void); -export type GameCenterLeaderboardSetsCreateInstanceError = (ErrorResponse); +export type BetaGroupsBetaTestersDeleteToManyRelationshipError = (ErrorResponse); -export type GameCenterLeaderboardSetsGetInstanceData = { +export type BetaGroupsBetaTestersGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -18713,62 +19821,44 @@ export type GameCenterLeaderboardSetsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations - */ - 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases - */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSets - */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related localizations returned (when they are included) + * the fields to include for returned resources of type betaTesters */ - 'limit[localizations]'?: number; + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; /** - * maximum number of related releases returned (when they are included) + * maximum resources per page */ - 'limit[releases]'?: number; + limit?: number; }; }; -export type GameCenterLeaderboardSetsGetInstanceResponse = (GameCenterLeaderboardSetResponse); +export type BetaGroupsBetaTestersGetToManyRelatedResponse = (BetaTestersWithoutIncludesResponse); -export type GameCenterLeaderboardSetsGetInstanceError = (ErrorResponse); +export type BetaGroupsBetaTestersGetToManyRelatedError = (ErrorResponse); -export type GameCenterLeaderboardSetsUpdateInstanceData = { - /** - * GameCenterLeaderboardSet representation - */ - body: GameCenterLeaderboardSetUpdateRequest; +export type BetaGroupsBuildsGetToManyRelationshipData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type GameCenterLeaderboardSetsUpdateInstanceResponse = (GameCenterLeaderboardSetResponse); +export type BetaGroupsBuildsGetToManyRelationshipResponse = (BetaGroupBuildsLinkagesResponse); -export type GameCenterLeaderboardSetsUpdateInstanceError = (ErrorResponse); +export type BetaGroupsBuildsGetToManyRelationshipError = (ErrorResponse); -export type GameCenterLeaderboardSetsDeleteInstanceData = { +export type BetaGroupsBuildsCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: BetaGroupBuildsLinkagesRequest; path: { /** * the id of the requested resource @@ -18777,22 +19867,28 @@ export type GameCenterLeaderboardSetsDeleteInstanceData = { }; }; -export type GameCenterLeaderboardSetsDeleteInstanceResponse = (void); +export type BetaGroupsBuildsCreateToManyRelationshipResponse = (void); -export type GameCenterLeaderboardSetsDeleteInstanceError = (ErrorResponse); +export type BetaGroupsBuildsCreateToManyRelationshipError = (ErrorResponse); -export type GameCenterLeaderboardsCreateInstanceData = { +export type BetaGroupsBuildsDeleteToManyRelationshipData = { /** - * GameCenterLeaderboard representation + * List of related linkages */ - body: GameCenterLeaderboardCreateRequest; + body: BetaGroupBuildsLinkagesRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type GameCenterLeaderboardsCreateInstanceResponse = (GameCenterLeaderboardResponse); +export type BetaGroupsBuildsDeleteToManyRelationshipResponse = (void); -export type GameCenterLeaderboardsCreateInstanceError = (ErrorResponse); +export type BetaGroupsBuildsDeleteToManyRelationshipError = (ErrorResponse); -export type GameCenterLeaderboardsGetInstanceData = { +export type BetaGroupsBuildsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -18801,80 +19897,69 @@ export type GameCenterLeaderboardsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations - */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases - */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) - */ - 'limit[gameCenterLeaderboardSets]'?: number; - /** - * maximum number of related localizations returned (when they are included) + * the fields to include for returned resources of type builds */ - 'limit[localizations]'?: number; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * maximum number of related releases returned (when they are included) + * maximum resources per page */ - 'limit[releases]'?: number; + limit?: number; }; }; -export type GameCenterLeaderboardsGetInstanceResponse = (GameCenterLeaderboardResponse); +export type BetaGroupsBuildsGetToManyRelatedResponse = (BuildsWithoutIncludesResponse); -export type GameCenterLeaderboardsGetInstanceError = (ErrorResponse); +export type BetaGroupsBuildsGetToManyRelatedError = (ErrorResponse); -export type GameCenterLeaderboardsUpdateInstanceData = { - /** - * GameCenterLeaderboard representation - */ - body: GameCenterLeaderboardUpdateRequest; +export type BetaGroupsBetaTesterUsagesGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type GameCenterLeaderboardsUpdateInstanceResponse = (GameCenterLeaderboardResponse); - -export type GameCenterLeaderboardsUpdateInstanceError = (ErrorResponse); - -export type GameCenterLeaderboardsDeleteInstanceData = { - path: { + query?: { /** - * the id of the requested resource + * filter by 'betaTesters' relationship dimension */ - id: string; + 'filter[betaTesters]'?: string; + /** + * the dimension by which to group the results + */ + groupBy?: Array<('betaTesters')>; + /** + * maximum number of groups to return per page + */ + limit?: number; + /** + * the duration of the reporting period + */ + period?: 'P7D' | 'P30D' | 'P90D' | 'P365D'; }; }; -export type GameCenterLeaderboardsDeleteInstanceResponse = (void); +export type BetaGroupsBetaTesterUsagesGetMetricsResponse = (AppsBetaTesterUsagesV1MetricResponse); -export type GameCenterLeaderboardsDeleteInstanceError = (ErrorResponse); +export type BetaGroupsBetaTesterUsagesGetMetricsError = (ErrorResponse); -export type GameCenterMatchmakingQueuesGetCollectionData = { +export type BetaLicenseAgreementsGetCollectionData = { query?: { /** - * the fields to include for returned resources of type gameCenterMatchmakingQueues + * the fields to include for returned resources of type apps */ - 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type betaLicenseAgreements + */ + 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; + /** + * filter by id(s) of related 'app' + */ + 'filter[app]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('ruleSet' | 'experimentRuleSet')>; + include?: Array<('app')>; /** * maximum resources per page */ @@ -18882,22 +19967,11 @@ export type GameCenterMatchmakingQueuesGetCollectionData = { }; }; -export type GameCenterMatchmakingQueuesGetCollectionResponse = (GameCenterMatchmakingQueuesResponse); - -export type GameCenterMatchmakingQueuesGetCollectionError = (ErrorResponse); - -export type GameCenterMatchmakingQueuesCreateInstanceData = { - /** - * GameCenterMatchmakingQueue representation - */ - body: GameCenterMatchmakingQueueCreateRequest; -}; - -export type GameCenterMatchmakingQueuesCreateInstanceResponse = (GameCenterMatchmakingQueueResponse); +export type BetaLicenseAgreementsGetCollectionResponse = (BetaLicenseAgreementsResponse); -export type GameCenterMatchmakingQueuesCreateInstanceError = (ErrorResponse); +export type BetaLicenseAgreementsGetCollectionError = (ErrorResponse); -export type GameCenterMatchmakingQueuesGetInstanceData = { +export type BetaLicenseAgreementsGetInstanceData = { path: { /** * the id of the requested resource @@ -18906,25 +19980,29 @@ export type GameCenterMatchmakingQueuesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterMatchmakingQueues + * the fields to include for returned resources of type apps */ - 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type betaLicenseAgreements + */ + 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; /** * comma-separated list of relationships to include */ - include?: Array<('ruleSet' | 'experimentRuleSet')>; + include?: Array<('app')>; }; }; -export type GameCenterMatchmakingQueuesGetInstanceResponse = (GameCenterMatchmakingQueueResponse); +export type BetaLicenseAgreementsGetInstanceResponse = (BetaLicenseAgreementResponse); -export type GameCenterMatchmakingQueuesGetInstanceError = (ErrorResponse); +export type BetaLicenseAgreementsGetInstanceError = (ErrorResponse); -export type GameCenterMatchmakingQueuesUpdateInstanceData = { +export type BetaLicenseAgreementsUpdateInstanceData = { /** - * GameCenterMatchmakingQueue representation + * BetaLicenseAgreement representation */ - body: GameCenterMatchmakingQueueUpdateRequest; + body: BetaLicenseAgreementUpdateRequest; path: { /** * the id of the requested resource @@ -18933,91 +20011,133 @@ export type GameCenterMatchmakingQueuesUpdateInstanceData = { }; }; -export type GameCenterMatchmakingQueuesUpdateInstanceResponse = (GameCenterMatchmakingQueueResponse); +export type BetaLicenseAgreementsUpdateInstanceResponse = (BetaLicenseAgreementResponse); -export type GameCenterMatchmakingQueuesUpdateInstanceError = (ErrorResponse); +export type BetaLicenseAgreementsUpdateInstanceError = (ErrorResponse); -export type GameCenterMatchmakingQueuesDeleteInstanceData = { +export type BetaLicenseAgreementsAppGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + }; }; -export type GameCenterMatchmakingQueuesDeleteInstanceResponse = (void); +export type BetaLicenseAgreementsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); -export type GameCenterMatchmakingQueuesDeleteInstanceError = (ErrorResponse); +export type BetaLicenseAgreementsAppGetToOneRelatedError = (ErrorResponse); -export type GameCenterMatchmakingRuleSetTestsCreateInstanceData = { +export type BetaTesterInvitationsCreateInstanceData = { /** - * GameCenterMatchmakingRuleSetTest representation + * BetaTesterInvitation representation */ - body: GameCenterMatchmakingRuleSetTestCreateRequest; + body: BetaTesterInvitationCreateRequest; }; -export type GameCenterMatchmakingRuleSetTestsCreateInstanceResponse = (GameCenterMatchmakingRuleSetTestResponse); +export type BetaTesterInvitationsCreateInstanceResponse = (BetaTesterInvitationResponse); -export type GameCenterMatchmakingRuleSetTestsCreateInstanceError = (ErrorResponse); +export type BetaTesterInvitationsCreateInstanceError = (ErrorResponse); -export type GameCenterMatchmakingRuleSetsGetCollectionData = { +export type BetaTestersGetCollectionData = { query?: { /** - * the fields to include for returned resources of type gameCenterMatchmakingQueues + * the fields to include for returned resources of type apps */ - 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type gameCenterMatchmakingRules + * the fields to include for returned resources of type betaGroups */ - 'fields[gameCenterMatchmakingRules]'?: Array<('referenceName' | 'description' | 'type' | 'expression' | 'weight' | 'ruleSet')>; + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; /** - * the fields to include for returned resources of type gameCenterMatchmakingRuleSets + * the fields to include for returned resources of type betaTesters */ - 'fields[gameCenterMatchmakingRuleSets]'?: Array<('referenceName' | 'ruleLanguageVersion' | 'minPlayers' | 'maxPlayers' | 'teams' | 'rules' | 'matchmakingQueues')>; + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; /** - * the fields to include for returned resources of type gameCenterMatchmakingTeams + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * filter by id(s) of related 'apps' + */ + 'filter[apps]'?: Array<(string)>; + /** + * filter by id(s) of related 'betaGroups' + */ + 'filter[betaGroups]'?: Array<(string)>; + /** + * filter by id(s) of related 'builds' + */ + 'filter[builds]'?: Array<(string)>; + /** + * filter by attribute 'email' + */ + 'filter[email]'?: Array<(string)>; + /** + * filter by attribute 'firstName' + */ + 'filter[firstName]'?: Array<(string)>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'inviteType' + */ + 'filter[inviteType]'?: Array<('EMAIL' | 'PUBLIC_LINK')>; + /** + * filter by attribute 'lastName' */ - 'fields[gameCenterMatchmakingTeams]'?: Array<('referenceName' | 'minPlayers' | 'maxPlayers' | 'ruleSet')>; + 'filter[lastName]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('teams' | 'rules' | 'matchmakingQueues')>; + include?: Array<('apps' | 'betaGroups' | 'builds')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related matchmakingQueues returned (when they are included) + * maximum number of related apps returned (when they are included) */ - 'limit[matchmakingQueues]'?: number; + 'limit[apps]'?: number; /** - * maximum number of related rules returned (when they are included) + * maximum number of related betaGroups returned (when they are included) */ - 'limit[rules]'?: number; + 'limit[betaGroups]'?: number; /** - * maximum number of related teams returned (when they are included) + * maximum number of related builds returned (when they are included) */ - 'limit[teams]'?: number; + 'limit[builds]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('firstName' | '-firstName' | 'lastName' | '-lastName' | 'email' | '-email' | 'inviteType' | '-inviteType' | 'state' | '-state')>; }; }; -export type GameCenterMatchmakingRuleSetsGetCollectionResponse = (GameCenterMatchmakingRuleSetsResponse); +export type BetaTestersGetCollectionResponse = (BetaTestersResponse); -export type GameCenterMatchmakingRuleSetsGetCollectionError = (ErrorResponse); +export type BetaTestersGetCollectionError = (ErrorResponse); -export type GameCenterMatchmakingRuleSetsCreateInstanceData = { +export type BetaTestersCreateInstanceData = { /** - * GameCenterMatchmakingRuleSet representation + * BetaTester representation */ - body: GameCenterMatchmakingRuleSetCreateRequest; + body: BetaTesterCreateRequest; }; -export type GameCenterMatchmakingRuleSetsCreateInstanceResponse = (GameCenterMatchmakingRuleSetResponse); +export type BetaTestersCreateInstanceResponse = (BetaTesterResponse); -export type GameCenterMatchmakingRuleSetsCreateInstanceError = (ErrorResponse); +export type BetaTestersCreateInstanceError = (ErrorResponse); -export type GameCenterMatchmakingRuleSetsGetInstanceData = { +export type BetaTestersGetInstanceData = { path: { /** * the id of the requested resource @@ -19026,49 +20146,45 @@ export type GameCenterMatchmakingRuleSetsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterMatchmakingQueues + * the fields to include for returned resources of type apps */ - 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type gameCenterMatchmakingRules + * the fields to include for returned resources of type betaGroups */ - 'fields[gameCenterMatchmakingRules]'?: Array<('referenceName' | 'description' | 'type' | 'expression' | 'weight' | 'ruleSet')>; + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; /** - * the fields to include for returned resources of type gameCenterMatchmakingRuleSets + * the fields to include for returned resources of type betaTesters */ - 'fields[gameCenterMatchmakingRuleSets]'?: Array<('referenceName' | 'ruleLanguageVersion' | 'minPlayers' | 'maxPlayers' | 'teams' | 'rules' | 'matchmakingQueues')>; + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; /** - * the fields to include for returned resources of type gameCenterMatchmakingTeams + * the fields to include for returned resources of type builds */ - 'fields[gameCenterMatchmakingTeams]'?: Array<('referenceName' | 'minPlayers' | 'maxPlayers' | 'ruleSet')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** * comma-separated list of relationships to include */ - include?: Array<('teams' | 'rules' | 'matchmakingQueues')>; + include?: Array<('apps' | 'betaGroups' | 'builds')>; /** - * maximum number of related matchmakingQueues returned (when they are included) + * maximum number of related apps returned (when they are included) */ - 'limit[matchmakingQueues]'?: number; + 'limit[apps]'?: number; /** - * maximum number of related rules returned (when they are included) + * maximum number of related betaGroups returned (when they are included) */ - 'limit[rules]'?: number; + 'limit[betaGroups]'?: number; /** - * maximum number of related teams returned (when they are included) + * maximum number of related builds returned (when they are included) */ - 'limit[teams]'?: number; + 'limit[builds]'?: number; }; }; -export type GameCenterMatchmakingRuleSetsGetInstanceResponse = (GameCenterMatchmakingRuleSetResponse); +export type BetaTestersGetInstanceResponse = (BetaTesterResponse); -export type GameCenterMatchmakingRuleSetsGetInstanceError = (ErrorResponse); +export type BetaTestersGetInstanceError = (ErrorResponse); -export type GameCenterMatchmakingRuleSetsUpdateInstanceData = { - /** - * GameCenterMatchmakingRuleSet representation - */ - body: GameCenterMatchmakingRuleSetUpdateRequest; +export type BetaTestersDeleteInstanceData = { path: { /** * the id of the requested resource @@ -19077,39 +20193,34 @@ export type GameCenterMatchmakingRuleSetsUpdateInstanceData = { }; }; -export type GameCenterMatchmakingRuleSetsUpdateInstanceResponse = (GameCenterMatchmakingRuleSetResponse); +export type BetaTestersDeleteInstanceResponse = (unknown | void); -export type GameCenterMatchmakingRuleSetsUpdateInstanceError = (ErrorResponse); +export type BetaTestersDeleteInstanceError = (ErrorResponse); -export type GameCenterMatchmakingRuleSetsDeleteInstanceData = { +export type BetaTestersAppsGetToManyRelationshipData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type GameCenterMatchmakingRuleSetsDeleteInstanceResponse = (void); - -export type GameCenterMatchmakingRuleSetsDeleteInstanceError = (ErrorResponse); - -export type GameCenterMatchmakingRulesCreateInstanceData = { - /** - * GameCenterMatchmakingRule representation - */ - body: GameCenterMatchmakingRuleCreateRequest; -}; - -export type GameCenterMatchmakingRulesCreateInstanceResponse = (GameCenterMatchmakingRuleResponse); +export type BetaTestersAppsGetToManyRelationshipResponse = (BetaTesterAppsLinkagesResponse); -export type GameCenterMatchmakingRulesCreateInstanceError = (ErrorResponse); +export type BetaTestersAppsGetToManyRelationshipError = (ErrorResponse); -export type GameCenterMatchmakingRulesUpdateInstanceData = { +export type BetaTestersAppsDeleteToManyRelationshipData = { /** - * GameCenterMatchmakingRule representation + * List of related linkages */ - body: GameCenterMatchmakingRuleUpdateRequest; + body: BetaTesterAppsLinkagesRequest; path: { /** * the id of the requested resource @@ -19118,52 +20229,57 @@ export type GameCenterMatchmakingRulesUpdateInstanceData = { }; }; -export type GameCenterMatchmakingRulesUpdateInstanceResponse = (GameCenterMatchmakingRuleResponse); +export type BetaTestersAppsDeleteToManyRelationshipResponse = (unknown | void); -export type GameCenterMatchmakingRulesUpdateInstanceError = (ErrorResponse); +export type BetaTestersAppsDeleteToManyRelationshipError = (ErrorResponse); -export type GameCenterMatchmakingRulesDeleteInstanceData = { +export type BetaTestersAppsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type GameCenterMatchmakingRulesDeleteInstanceResponse = (void); - -export type GameCenterMatchmakingRulesDeleteInstanceError = (ErrorResponse); - -export type GameCenterMatchmakingTeamsCreateInstanceData = { - /** - * GameCenterMatchmakingTeam representation - */ - body: GameCenterMatchmakingTeamCreateRequest; -}; - -export type GameCenterMatchmakingTeamsCreateInstanceResponse = (GameCenterMatchmakingTeamResponse); +export type BetaTestersAppsGetToManyRelatedResponse = (AppsWithoutIncludesResponse); -export type GameCenterMatchmakingTeamsCreateInstanceError = (ErrorResponse); +export type BetaTestersAppsGetToManyRelatedError = (ErrorResponse); -export type GameCenterMatchmakingTeamsUpdateInstanceData = { - /** - * GameCenterMatchmakingTeam representation - */ - body: GameCenterMatchmakingTeamUpdateRequest; +export type BetaTestersBetaGroupsGetToManyRelationshipData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type GameCenterMatchmakingTeamsUpdateInstanceResponse = (GameCenterMatchmakingTeamResponse); +export type BetaTestersBetaGroupsGetToManyRelationshipResponse = (BetaTesterBetaGroupsLinkagesResponse); -export type GameCenterMatchmakingTeamsUpdateInstanceError = (ErrorResponse); +export type BetaTestersBetaGroupsGetToManyRelationshipError = (ErrorResponse); -export type GameCenterMatchmakingTeamsDeleteInstanceData = { +export type BetaTestersBetaGroupsCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: BetaTesterBetaGroupsLinkagesRequest; path: { /** * the id of the requested resource @@ -19172,33 +20288,28 @@ export type GameCenterMatchmakingTeamsDeleteInstanceData = { }; }; -export type GameCenterMatchmakingTeamsDeleteInstanceResponse = (void); - -export type GameCenterMatchmakingTeamsDeleteInstanceError = (ErrorResponse); - -export type GameCenterPlayerAchievementSubmissionsCreateInstanceData = { - /** - * GameCenterPlayerAchievementSubmission representation - */ - body: GameCenterPlayerAchievementSubmissionCreateRequest; -}; - -export type GameCenterPlayerAchievementSubmissionsCreateInstanceResponse = (GameCenterPlayerAchievementSubmissionResponse); +export type BetaTestersBetaGroupsCreateToManyRelationshipResponse = (void); -export type GameCenterPlayerAchievementSubmissionsCreateInstanceError = (ErrorResponse); +export type BetaTestersBetaGroupsCreateToManyRelationshipError = (ErrorResponse); -export type InAppPurchaseAppStoreReviewScreenshotsCreateInstanceData = { +export type BetaTestersBetaGroupsDeleteToManyRelationshipData = { /** - * InAppPurchaseAppStoreReviewScreenshot representation + * List of related linkages */ - body: InAppPurchaseAppStoreReviewScreenshotCreateRequest; + body: BetaTesterBetaGroupsLinkagesRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type InAppPurchaseAppStoreReviewScreenshotsCreateInstanceResponse = (InAppPurchaseAppStoreReviewScreenshotResponse); +export type BetaTestersBetaGroupsDeleteToManyRelationshipResponse = (void); -export type InAppPurchaseAppStoreReviewScreenshotsCreateInstanceError = (ErrorResponse); +export type BetaTestersBetaGroupsDeleteToManyRelationshipError = (ErrorResponse); -export type InAppPurchaseAppStoreReviewScreenshotsGetInstanceData = { +export type BetaTestersBetaGroupsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -19207,38 +20318,44 @@ export type InAppPurchaseAppStoreReviewScreenshotsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchaseAppStoreReviewScreenshots + * the fields to include for returned resources of type betaGroups */ - 'fields[inAppPurchaseAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'inAppPurchaseV2')>; + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; /** - * comma-separated list of relationships to include + * maximum resources per page */ - include?: Array<('inAppPurchaseV2')>; + limit?: number; }; }; -export type InAppPurchaseAppStoreReviewScreenshotsGetInstanceResponse = (InAppPurchaseAppStoreReviewScreenshotResponse); +export type BetaTestersBetaGroupsGetToManyRelatedResponse = (BetaGroupsWithoutIncludesResponse); -export type InAppPurchaseAppStoreReviewScreenshotsGetInstanceError = (ErrorResponse); +export type BetaTestersBetaGroupsGetToManyRelatedError = (ErrorResponse); -export type InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceData = { - /** - * InAppPurchaseAppStoreReviewScreenshot representation - */ - body: InAppPurchaseAppStoreReviewScreenshotUpdateRequest; +export type BetaTestersBuildsGetToManyRelationshipData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceResponse = (InAppPurchaseAppStoreReviewScreenshotResponse); +export type BetaTestersBuildsGetToManyRelationshipResponse = (BetaTesterBuildsLinkagesResponse); -export type InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceError = (ErrorResponse); +export type BetaTestersBuildsGetToManyRelationshipError = (ErrorResponse); -export type InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceData = { +export type BetaTestersBuildsCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: BetaTesterBuildsLinkagesRequest; path: { /** * the id of the requested resource @@ -19247,53 +20364,28 @@ export type InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceData = { }; }; -export type InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceResponse = (void); +export type BetaTestersBuildsCreateToManyRelationshipResponse = (void); -export type InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceError = (ErrorResponse); +export type BetaTestersBuildsCreateToManyRelationshipError = (ErrorResponse); -export type InAppPurchaseAvailabilitiesCreateInstanceData = { +export type BetaTestersBuildsDeleteToManyRelationshipData = { /** - * InAppPurchaseAvailability representation + * List of related linkages */ - body: InAppPurchaseAvailabilityCreateRequest; -}; - -export type InAppPurchaseAvailabilitiesCreateInstanceResponse = (InAppPurchaseAvailabilityResponse); - -export type InAppPurchaseAvailabilitiesCreateInstanceError = (ErrorResponse); - -export type InAppPurchaseAvailabilitiesGetInstanceData = { + body: BetaTesterBuildsLinkagesRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type inAppPurchaseAvailabilities - */ - 'fields[inAppPurchaseAvailabilities]'?: Array<('availableInNewTerritories' | 'inAppPurchase' | 'availableTerritories')>; - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('availableTerritories')>; - /** - * maximum number of related availableTerritories returned (when they are included) - */ - 'limit[availableTerritories]'?: number; - }; }; -export type InAppPurchaseAvailabilitiesGetInstanceResponse = (InAppPurchaseAvailabilityResponse); +export type BetaTestersBuildsDeleteToManyRelationshipResponse = (void); -export type InAppPurchaseAvailabilitiesGetInstanceError = (ErrorResponse); +export type BetaTestersBuildsDeleteToManyRelationshipError = (ErrorResponse); -export type InAppPurchaseContentsGetInstanceData = { +export type BetaTestersBuildsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -19302,96 +20394,81 @@ export type InAppPurchaseContentsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchaseContents + * the fields to include for returned resources of type builds */ - 'fields[inAppPurchaseContents]'?: Array<('fileName' | 'fileSize' | 'url' | 'lastModifiedDate' | 'inAppPurchaseV2')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * comma-separated list of relationships to include + * maximum resources per page */ - include?: Array<('inAppPurchaseV2')>; + limit?: number; }; }; -export type InAppPurchaseContentsGetInstanceResponse = (InAppPurchaseContentResponse); - -export type InAppPurchaseContentsGetInstanceError = (ErrorResponse); - -export type InAppPurchaseImagesCreateInstanceData = { - /** - * InAppPurchaseImage representation - */ - body: InAppPurchaseImageCreateRequest; -}; - -export type InAppPurchaseImagesCreateInstanceResponse = (InAppPurchaseImageResponse); +export type BetaTestersBuildsGetToManyRelatedResponse = (BuildsWithoutIncludesResponse); -export type InAppPurchaseImagesCreateInstanceError = (ErrorResponse); +export type BetaTestersBuildsGetToManyRelatedError = (ErrorResponse); -export type InAppPurchaseImagesGetInstanceData = { +export type BetaTestersBetaTesterUsagesGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { + query: { /** - * the fields to include for returned resources of type inAppPurchaseImages + * filter by 'apps' relationship dimension */ - 'fields[inAppPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'uploaded' | 'state' | 'inAppPurchase')>; + 'filter[apps]': string; /** - * comma-separated list of relationships to include + * maximum number of groups to return per page */ - include?: Array<('inAppPurchase')>; - }; -}; - -export type InAppPurchaseImagesGetInstanceResponse = (InAppPurchaseImageResponse); - -export type InAppPurchaseImagesGetInstanceError = (ErrorResponse); - -export type InAppPurchaseImagesUpdateInstanceData = { - /** - * InAppPurchaseImage representation - */ - body: InAppPurchaseImageUpdateRequest; - path: { + limit?: number; /** - * the id of the requested resource + * the duration of the reporting period */ - id: string; + period?: 'P7D' | 'P30D' | 'P90D' | 'P365D'; }; }; -export type InAppPurchaseImagesUpdateInstanceResponse = (InAppPurchaseImageResponse); +export type BetaTestersBetaTesterUsagesGetMetricsResponse = (BetaTesterUsagesV1MetricResponse); -export type InAppPurchaseImagesUpdateInstanceError = (ErrorResponse); +export type BetaTestersBetaTesterUsagesGetMetricsError = (ErrorResponse); -export type InAppPurchaseImagesDeleteInstanceData = { - path: { +export type BuildBetaDetailsGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type buildBetaDetails */ - id: string; + 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * filter by id(s) of related 'build' + */ + 'filter[build]'?: Array<(string)>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('build')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type InAppPurchaseImagesDeleteInstanceResponse = (void); - -export type InAppPurchaseImagesDeleteInstanceError = (ErrorResponse); - -export type InAppPurchaseLocalizationsCreateInstanceData = { - /** - * InAppPurchaseLocalization representation - */ - body: InAppPurchaseLocalizationCreateRequest; -}; - -export type InAppPurchaseLocalizationsCreateInstanceResponse = (InAppPurchaseLocalizationResponse); +export type BuildBetaDetailsGetCollectionResponse = (BuildBetaDetailsResponse); -export type InAppPurchaseLocalizationsCreateInstanceError = (ErrorResponse); +export type BuildBetaDetailsGetCollectionError = (ErrorResponse); -export type InAppPurchaseLocalizationsGetInstanceData = { +export type BuildBetaDetailsGetInstanceData = { path: { /** * the id of the requested resource @@ -19400,25 +20477,29 @@ export type InAppPurchaseLocalizationsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchaseLocalizations + * the fields to include for returned resources of type buildBetaDetails */ - 'fields[inAppPurchaseLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'inAppPurchaseV2')>; + 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** * comma-separated list of relationships to include */ - include?: Array<('inAppPurchaseV2')>; + include?: Array<('build')>; }; }; -export type InAppPurchaseLocalizationsGetInstanceResponse = (InAppPurchaseLocalizationResponse); +export type BuildBetaDetailsGetInstanceResponse = (BuildBetaDetailResponse); -export type InAppPurchaseLocalizationsGetInstanceError = (ErrorResponse); +export type BuildBetaDetailsGetInstanceError = (ErrorResponse); -export type InAppPurchaseLocalizationsUpdateInstanceData = { +export type BuildBetaDetailsUpdateInstanceData = { /** - * InAppPurchaseLocalization representation + * BuildBetaDetail representation */ - body: InAppPurchaseLocalizationUpdateRequest; + body: BuildBetaDetailUpdateRequest; path: { /** * the id of the requested resource @@ -19427,123 +20508,174 @@ export type InAppPurchaseLocalizationsUpdateInstanceData = { }; }; -export type InAppPurchaseLocalizationsUpdateInstanceResponse = (InAppPurchaseLocalizationResponse); +export type BuildBetaDetailsUpdateInstanceResponse = (BuildBetaDetailResponse); -export type InAppPurchaseLocalizationsUpdateInstanceError = (ErrorResponse); +export type BuildBetaDetailsUpdateInstanceError = (ErrorResponse); -export type InAppPurchaseLocalizationsDeleteInstanceData = { +export type BuildBetaDetailsBuildGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + }; }; -export type InAppPurchaseLocalizationsDeleteInstanceResponse = (void); +export type BuildBetaDetailsBuildGetToOneRelatedResponse = (BuildWithoutIncludesResponse); -export type InAppPurchaseLocalizationsDeleteInstanceError = (ErrorResponse); +export type BuildBetaDetailsBuildGetToOneRelatedError = (ErrorResponse); -export type InAppPurchasePriceSchedulesCreateInstanceData = { +export type BuildBetaNotificationsCreateInstanceData = { /** - * InAppPurchasePriceSchedule representation + * BuildBetaNotification representation */ - body: InAppPurchasePriceScheduleCreateRequest; + body: BuildBetaNotificationCreateRequest; }; -export type InAppPurchasePriceSchedulesCreateInstanceResponse = (InAppPurchasePriceScheduleResponse); +export type BuildBetaNotificationsCreateInstanceResponse = (BuildBetaNotificationResponse); -export type InAppPurchasePriceSchedulesCreateInstanceError = (ErrorResponse); +export type BuildBetaNotificationsCreateInstanceError = (ErrorResponse); -export type InAppPurchasePriceSchedulesGetInstanceData = { - path: { +export type BuildsGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type appEncryptionDeclarations */ - id: string; - }; - query?: { + 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; /** - * the fields to include for returned resources of type inAppPurchasePrices + * the fields to include for returned resources of type apps */ - 'fields[inAppPurchasePrices]'?: Array<('startDate' | 'endDate' | 'manual' | 'inAppPurchaseV2' | 'inAppPurchasePricePoint' | 'territory')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type inAppPurchasePriceSchedules + * the fields to include for returned resources of type appStoreVersions */ - 'fields[inAppPurchasePriceSchedules]'?: Array<('inAppPurchase' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type betaAppReviewSubmissions */ - 'fields[territories]'?: Array<('currency')>; + 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type betaBuildLocalizations */ - include?: Array<('inAppPurchase' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; + 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; /** - * maximum number of related automaticPrices returned (when they are included) + * the fields to include for returned resources of type betaTesters */ - 'limit[automaticPrices]'?: number; + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; /** - * maximum number of related manualPrices returned (when they are included) + * the fields to include for returned resources of type buildBetaDetails */ - 'limit[manualPrices]'?: number; - }; -}; - -export type InAppPurchasePriceSchedulesGetInstanceResponse = (InAppPurchasePriceScheduleResponse); - -export type InAppPurchasePriceSchedulesGetInstanceError = (ErrorResponse); - -export type InAppPurchaseSubmissionsCreateInstanceData = { - /** - * InAppPurchaseSubmission representation - */ - body: InAppPurchaseSubmissionCreateRequest; -}; - -export type InAppPurchaseSubmissionsCreateInstanceResponse = (InAppPurchaseSubmissionResponse); - -export type InAppPurchaseSubmissionsCreateInstanceError = (ErrorResponse); - -export type InAppPurchasesGetInstanceData = { - path: { + 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; /** - * the id of the requested resource + * the fields to include for returned resources of type buildIcons */ - id: string; - }; - query?: { + 'fields[buildIcons]'?: Array<('name' | 'iconAsset' | 'iconType')>; /** - * the fields to include for returned resources of type inAppPurchases + * the fields to include for returned resources of type builds */ - 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * the fields to include for returned resources of type preReleaseVersions + */ + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + /** + * filter by id(s) of related 'app' + */ + 'filter[app]'?: Array<(string)>; + /** + * filter by id(s) of related 'appStoreVersion' + */ + 'filter[appStoreVersion]'?: Array<(string)>; + /** + * filter by attribute 'betaAppReviewSubmission.betaReviewState' + */ + 'filter[betaAppReviewSubmission.betaReviewState]'?: Array<('WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'REJECTED' | 'APPROVED')>; + /** + * filter by id(s) of related 'betaGroups' + */ + 'filter[betaGroups]'?: Array<(string)>; + /** + * filter by attribute 'buildAudienceType' + */ + 'filter[buildAudienceType]'?: Array<('INTERNAL_ONLY' | 'APP_STORE_ELIGIBLE')>; + /** + * filter by attribute 'expired' + */ + 'filter[expired]'?: Array<(string)>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'preReleaseVersion.platform' + */ + 'filter[preReleaseVersion.platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + /** + * filter by attribute 'preReleaseVersion.version' + */ + 'filter[preReleaseVersion.version]'?: Array<(string)>; + /** + * filter by id(s) of related 'preReleaseVersion' + */ + 'filter[preReleaseVersion]'?: Array<(string)>; + /** + * filter by attribute 'processingState' + */ + 'filter[processingState]'?: Array<('PROCESSING' | 'FAILED' | 'INVALID' | 'VALID')>; + /** + * filter by attribute 'usesNonExemptEncryption' + */ + 'filter[usesNonExemptEncryption]'?: Array<(string)>; + /** + * filter by attribute 'version' + */ + 'filter[version]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('apps')>; + include?: Array<('preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles')>; /** - * maximum number of related apps returned (when they are included) + * maximum resources per page */ - 'limit[apps]'?: number; + limit?: number; + /** + * maximum number of related betaBuildLocalizations returned (when they are included) + */ + 'limit[betaBuildLocalizations]'?: number; + /** + * maximum number of related betaGroups returned (when they are included) + */ + 'limit[betaGroups]'?: number; + /** + * maximum number of related buildBundles returned (when they are included) + */ + 'limit[buildBundles]'?: number; + /** + * maximum number of related icons returned (when they are included) + */ + 'limit[icons]'?: number; + /** + * maximum number of related individualTesters returned (when they are included) + */ + 'limit[individualTesters]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('version' | '-version' | 'uploadedDate' | '-uploadedDate' | 'preReleaseVersion' | '-preReleaseVersion')>; }; }; -export type InAppPurchasesGetInstanceResponse = (InAppPurchaseResponse); - -export type InAppPurchasesGetInstanceError = (ErrorResponse); - -export type InAppPurchasesV2CreateInstanceData = { - /** - * InAppPurchase representation - */ - body: InAppPurchaseV2CreateRequest; -}; - -export type InAppPurchasesV2CreateInstanceResponse = (InAppPurchaseV2Response); +export type BuildsGetCollectionResponse = (BuildsResponse); -export type InAppPurchasesV2CreateInstanceError = (ErrorResponse); +export type BuildsGetCollectionError = (ErrorResponse); -export type InAppPurchasesV2GetInstanceData = { +export type BuildsGetInstanceData = { path: { /** * the id of the requested resource @@ -19552,69 +20684,81 @@ export type InAppPurchasesV2GetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchaseAppStoreReviewScreenshots + * the fields to include for returned resources of type appEncryptionDeclarations + */ + 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; + /** + * the fields to include for returned resources of type apps */ - 'fields[inAppPurchaseAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'inAppPurchaseV2')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type inAppPurchaseAvailabilities + * the fields to include for returned resources of type appStoreVersions */ - 'fields[inAppPurchaseAvailabilities]'?: Array<('availableInNewTerritories' | 'inAppPurchase' | 'availableTerritories')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the fields to include for returned resources of type inAppPurchaseContents + * the fields to include for returned resources of type betaAppReviewSubmissions */ - 'fields[inAppPurchaseContents]'?: Array<('fileName' | 'fileSize' | 'url' | 'lastModifiedDate' | 'inAppPurchaseV2')>; + 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; /** - * the fields to include for returned resources of type inAppPurchaseImages + * the fields to include for returned resources of type betaBuildLocalizations */ - 'fields[inAppPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'uploaded' | 'state' | 'inAppPurchase')>; + 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; /** - * the fields to include for returned resources of type inAppPurchaseLocalizations + * the fields to include for returned resources of type betaTesters */ - 'fields[inAppPurchaseLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'inAppPurchaseV2')>; + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; /** - * the fields to include for returned resources of type inAppPurchasePricePoints + * the fields to include for returned resources of type buildBetaDetails */ - 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'inAppPurchaseV2')>; + 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; /** - * the fields to include for returned resources of type inAppPurchasePriceSchedules + * the fields to include for returned resources of type buildIcons */ - 'fields[inAppPurchasePriceSchedules]'?: Array<('inAppPurchase' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; + 'fields[buildIcons]'?: Array<('name' | 'iconAsset' | 'iconType')>; /** - * the fields to include for returned resources of type inAppPurchases + * the fields to include for returned resources of type builds */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * the fields to include for returned resources of type promotedPurchases + * the fields to include for returned resources of type preReleaseVersions */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; /** * comma-separated list of relationships to include */ - include?: Array<('inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + include?: Array<('preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles')>; /** - * maximum number of related images returned (when they are included) + * maximum number of related betaBuildLocalizations returned (when they are included) */ - 'limit[images]'?: number; + 'limit[betaBuildLocalizations]'?: number; /** - * maximum number of related inAppPurchaseLocalizations returned (when they are included) + * maximum number of related betaGroups returned (when they are included) */ - 'limit[inAppPurchaseLocalizations]'?: number; + 'limit[betaGroups]'?: number; /** - * maximum number of related pricePoints returned (when they are included) + * maximum number of related buildBundles returned (when they are included) */ - 'limit[pricePoints]'?: number; + 'limit[buildBundles]'?: number; + /** + * maximum number of related icons returned (when they are included) + */ + 'limit[icons]'?: number; + /** + * maximum number of related individualTesters returned (when they are included) + */ + 'limit[individualTesters]'?: number; }; }; -export type InAppPurchasesV2GetInstanceResponse = (InAppPurchaseV2Response); +export type BuildsGetInstanceResponse = (BuildResponse); -export type InAppPurchasesV2GetInstanceError = (ErrorResponse); +export type BuildsGetInstanceError = (ErrorResponse); -export type InAppPurchasesV2UpdateInstanceData = { +export type BuildsUpdateInstanceData = { /** - * InAppPurchase representation + * Build representation */ - body: InAppPurchaseV2UpdateRequest; + body: BuildUpdateRequest; path: { /** * the id of the requested resource @@ -19623,52 +20767,60 @@ export type InAppPurchasesV2UpdateInstanceData = { }; }; -export type InAppPurchasesV2UpdateInstanceResponse = (InAppPurchaseV2Response); +export type BuildsUpdateInstanceResponse = (BuildResponse); -export type InAppPurchasesV2UpdateInstanceError = (ErrorResponse); +export type BuildsUpdateInstanceError = (ErrorResponse); -export type InAppPurchasesV2DeleteInstanceData = { +export type BuildsAppGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + }; }; -export type InAppPurchasesV2DeleteInstanceResponse = (void); +export type BuildsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); -export type InAppPurchasesV2DeleteInstanceError = (ErrorResponse); +export type BuildsAppGetToOneRelatedError = (ErrorResponse); -export type MarketplaceDomainsGetCollectionData = { - query?: { - /** - * the fields to include for returned resources of type marketplaceDomains - */ - 'fields[marketplaceDomains]'?: Array<('domain' | 'referenceName' | 'createdDate')>; +export type BuildsAppEncryptionDeclarationGetToOneRelationshipData = { + path: { /** - * maximum resources per page + * the id of the requested resource */ - limit?: number; + id: string; }; }; -export type MarketplaceDomainsGetCollectionResponse = (MarketplaceDomainsResponse); +export type BuildsAppEncryptionDeclarationGetToOneRelationshipResponse = (BuildAppEncryptionDeclarationLinkageResponse); -export type MarketplaceDomainsGetCollectionError = (ErrorResponse); +export type BuildsAppEncryptionDeclarationGetToOneRelationshipError = (ErrorResponse); -export type MarketplaceDomainsCreateInstanceData = { +export type BuildsAppEncryptionDeclarationUpdateToOneRelationshipData = { /** - * MarketplaceDomain representation + * Related linkage */ - body: MarketplaceDomainCreateRequest; + body: BuildAppEncryptionDeclarationLinkageRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type MarketplaceDomainsCreateInstanceResponse = (MarketplaceDomainResponse); +export type BuildsAppEncryptionDeclarationUpdateToOneRelationshipResponse = (void); -export type MarketplaceDomainsCreateInstanceError = (ErrorResponse); +export type BuildsAppEncryptionDeclarationUpdateToOneRelationshipError = (ErrorResponse); -export type MarketplaceDomainsGetInstanceData = { +export type BuildsAppEncryptionDeclarationGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -19677,76 +20829,131 @@ export type MarketplaceDomainsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type marketplaceDomains + * the fields to include for returned resources of type appEncryptionDeclarations */ - 'fields[marketplaceDomains]'?: Array<('domain' | 'referenceName' | 'createdDate')>; + 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; }; }; -export type MarketplaceDomainsGetInstanceResponse = (MarketplaceDomainResponse); +export type BuildsAppEncryptionDeclarationGetToOneRelatedResponse = (AppEncryptionDeclarationWithoutIncludesResponse); -export type MarketplaceDomainsGetInstanceError = (ErrorResponse); +export type BuildsAppEncryptionDeclarationGetToOneRelatedError = (ErrorResponse); -export type MarketplaceDomainsDeleteInstanceData = { +export type BuildsAppStoreVersionGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type ageRatingDeclarations + */ + 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; + /** + * the fields to include for returned resources of type alternativeDistributionPackages + */ + 'fields[alternativeDistributionPackages]'?: Array<('versions')>; + /** + * the fields to include for returned resources of type appClipDefaultExperiences + */ + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type appStoreReviewDetails + */ + 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + /** + * the fields to include for returned resources of type appStoreVersionExperiments + */ + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; + /** + * the fields to include for returned resources of type appStoreVersionLocalizations + */ + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appStoreVersionPhasedReleases + */ + 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber')>; + /** + * the fields to include for returned resources of type appStoreVersions + */ + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + /** + * the fields to include for returned resources of type appStoreVersionSubmissions + */ + 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * the fields to include for returned resources of type gameCenterAppVersions + */ + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + /** + * the fields to include for returned resources of type routingAppCoverages + */ + 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreVersion')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; + /** + * maximum number of related appStoreVersionExperiments returned (when they are included) + * @deprecated + */ + 'limit[appStoreVersionExperiments]'?: number; + /** + * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + */ + 'limit[appStoreVersionExperimentsV2]'?: number; + /** + * maximum number of related appStoreVersionLocalizations returned (when they are included) + */ + 'limit[appStoreVersionLocalizations]'?: number; + }; }; -export type MarketplaceDomainsDeleteInstanceResponse = (void); - -export type MarketplaceDomainsDeleteInstanceError = (ErrorResponse); - -export type MarketplaceSearchDetailsCreateInstanceData = { - /** - * MarketplaceSearchDetail representation - */ - body: MarketplaceSearchDetailCreateRequest; -}; - -export type MarketplaceSearchDetailsCreateInstanceResponse = (MarketplaceSearchDetailResponse); +export type BuildsAppStoreVersionGetToOneRelatedResponse = (AppStoreVersionResponse); -export type MarketplaceSearchDetailsCreateInstanceError = (ErrorResponse); +export type BuildsAppStoreVersionGetToOneRelatedError = (ErrorResponse); -export type MarketplaceSearchDetailsUpdateInstanceData = { - /** - * MarketplaceSearchDetail representation - */ - body: MarketplaceSearchDetailUpdateRequest; +export type BuildsBetaAppReviewSubmissionGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type betaAppReviewSubmissions + */ + 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; + }; }; -export type MarketplaceSearchDetailsUpdateInstanceResponse = (MarketplaceSearchDetailResponse); +export type BuildsBetaAppReviewSubmissionGetToOneRelatedResponse = (BetaAppReviewSubmissionWithoutIncludesResponse); -export type MarketplaceSearchDetailsUpdateInstanceError = (ErrorResponse); +export type BuildsBetaAppReviewSubmissionGetToOneRelatedError = (ErrorResponse); -export type MarketplaceSearchDetailsDeleteInstanceData = { +export type BuildsBetaBuildLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type MarketplaceSearchDetailsDeleteInstanceResponse = (void); - -export type MarketplaceSearchDetailsDeleteInstanceError = (ErrorResponse); - -export type MarketplaceWebhooksGetCollectionData = { query?: { /** - * the fields to include for returned resources of type marketplaceWebhooks + * the fields to include for returned resources of type betaBuildLocalizations */ - 'fields[marketplaceWebhooks]'?: Array<('endpointUrl' | 'secret')>; + 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; /** * maximum resources per page */ @@ -19754,26 +20961,32 @@ export type MarketplaceWebhooksGetCollectionData = { }; }; -export type MarketplaceWebhooksGetCollectionResponse = (MarketplaceWebhooksResponse); +export type BuildsBetaBuildLocalizationsGetToManyRelatedResponse = (BetaBuildLocalizationsWithoutIncludesResponse); -export type MarketplaceWebhooksGetCollectionError = (ErrorResponse); +export type BuildsBetaBuildLocalizationsGetToManyRelatedError = (ErrorResponse); -export type MarketplaceWebhooksCreateInstanceData = { +export type BuildsBetaGroupsCreateToManyRelationshipData = { /** - * MarketplaceWebhook representation + * List of related linkages */ - body: MarketplaceWebhookCreateRequest; + body: BuildBetaGroupsLinkagesRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type MarketplaceWebhooksCreateInstanceResponse = (MarketplaceWebhookResponse); +export type BuildsBetaGroupsCreateToManyRelationshipResponse = (void); -export type MarketplaceWebhooksCreateInstanceError = (ErrorResponse); +export type BuildsBetaGroupsCreateToManyRelationshipError = (ErrorResponse); -export type MarketplaceWebhooksUpdateInstanceData = { +export type BuildsBetaGroupsDeleteToManyRelationshipData = { /** - * MarketplaceWebhook representation + * List of related linkages */ - body: MarketplaceWebhookUpdateRequest; + body: BuildBetaGroupsLinkagesRequest; path: { /** * the id of the requested resource @@ -19782,89 +20995,141 @@ export type MarketplaceWebhooksUpdateInstanceData = { }; }; -export type MarketplaceWebhooksUpdateInstanceResponse = (MarketplaceWebhookResponse); +export type BuildsBetaGroupsDeleteToManyRelationshipResponse = (void); -export type MarketplaceWebhooksUpdateInstanceError = (ErrorResponse); +export type BuildsBetaGroupsDeleteToManyRelationshipError = (ErrorResponse); -export type MarketplaceWebhooksDeleteInstanceData = { +export type BuildsBuildBetaDetailGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type MarketplaceWebhooksDeleteInstanceResponse = (void); - -export type MarketplaceWebhooksDeleteInstanceError = (ErrorResponse); - -export type PreReleaseVersionsGetCollectionData = { query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type buildBetaDetails */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; /** * the fields to include for returned resources of type builds */ 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * the fields to include for returned resources of type preReleaseVersions + * comma-separated list of relationships to include */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + include?: Array<('build')>; + }; +}; + +export type BuildsBuildBetaDetailGetToOneRelatedResponse = (BuildBetaDetailResponse); + +export type BuildsBuildBetaDetailGetToOneRelatedError = (ErrorResponse); + +export type BuildsDiagnosticSignaturesGetToManyRelatedData = { + path: { /** - * filter by id(s) of related 'app' + * the id of the requested resource */ - 'filter[app]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by attribute 'builds.expired' + * the fields to include for returned resources of type diagnosticSignatures */ - 'filter[builds.expired]'?: Array<(string)>; + 'fields[diagnosticSignatures]'?: Array<('diagnosticType' | 'signature' | 'weight' | 'insight' | 'logs')>; /** - * filter by attribute 'builds.processingState' + * filter by attribute 'diagnosticType' */ - 'filter[builds.processingState]'?: Array<('PROCESSING' | 'FAILED' | 'INVALID' | 'VALID')>; + 'filter[diagnosticType]'?: Array<('DISK_WRITES' | 'HANGS' | 'LAUNCHES')>; /** - * filter by attribute 'builds.version' + * maximum resources per page */ - 'filter[builds.version]'?: Array<(string)>; + limit?: number; + }; +}; + +export type BuildsDiagnosticSignaturesGetToManyRelatedResponse = (DiagnosticSignaturesResponse); + +export type BuildsDiagnosticSignaturesGetToManyRelatedError = (ErrorResponse); + +export type BuildsIconsGetToManyRelatedData = { + path: { /** - * filter by id(s) of related 'builds' + * the id of the requested resource */ - 'filter[builds]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by attribute 'platform' + * the fields to include for returned resources of type buildIcons */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'fields[buildIcons]'?: Array<('name' | 'iconAsset' | 'iconType')>; /** - * filter by attribute 'version' + * maximum resources per page */ - 'filter[version]'?: Array<(string)>; + limit?: number; + }; +}; + +export type BuildsIconsGetToManyRelatedResponse = (BuildIconsWithoutIncludesResponse); + +export type BuildsIconsGetToManyRelatedError = (ErrorResponse); + +export type BuildsIndividualTestersGetToManyRelationshipData = { + path: { /** - * comma-separated list of relationships to include + * the id of the requested resource */ - include?: Array<('builds' | 'app')>; + id: string; + }; + query?: { /** * maximum resources per page */ limit?: number; + }; +}; + +export type BuildsIndividualTestersGetToManyRelationshipResponse = (BuildIndividualTestersLinkagesResponse); + +export type BuildsIndividualTestersGetToManyRelationshipError = (ErrorResponse); + +export type BuildsIndividualTestersCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: BuildIndividualTestersLinkagesRequest; + path: { /** - * maximum number of related builds returned (when they are included) + * the id of the requested resource */ - 'limit[builds]'?: number; + id: string; + }; +}; + +export type BuildsIndividualTestersCreateToManyRelationshipResponse = (void); + +export type BuildsIndividualTestersCreateToManyRelationshipError = (ErrorResponse); + +export type BuildsIndividualTestersDeleteToManyRelationshipData = { + /** + * List of related linkages + */ + body: BuildIndividualTestersLinkagesRequest; + path: { /** - * comma-separated list of sort expressions; resources will be sorted as specified + * the id of the requested resource */ - sort?: Array<('version' | '-version')>; + id: string; }; }; -export type PreReleaseVersionsGetCollectionResponse = (PreReleaseVersionsResponse); +export type BuildsIndividualTestersDeleteToManyRelationshipResponse = (void); -export type PreReleaseVersionsGetCollectionError = (ErrorResponse); +export type BuildsIndividualTestersDeleteToManyRelationshipError = (ErrorResponse); -export type PreReleaseVersionsGetInstanceData = { +export type BuildsIndividualTestersGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -19873,46 +21138,140 @@ export type PreReleaseVersionsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type betaTesters */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; /** - * the fields to include for returned resources of type builds + * maximum resources per page */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + limit?: number; + }; +}; + +export type BuildsIndividualTestersGetToManyRelatedResponse = (BetaTestersWithoutIncludesResponse); + +export type BuildsIndividualTestersGetToManyRelatedError = (ErrorResponse); + +export type BuildsPerfPowerMetricsGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * filter by attribute 'deviceType' + */ + 'filter[deviceType]'?: Array<(string)>; + /** + * filter by attribute 'metricType' + */ + 'filter[metricType]'?: Array<('DISK' | 'HANG' | 'BATTERY' | 'LAUNCH' | 'MEMORY' | 'ANIMATION' | 'TERMINATION')>; + /** + * filter by attribute 'platform' + */ + 'filter[platform]'?: Array<('IOS')>; + }; +}; + +export type BuildsPerfPowerMetricsGetToManyRelatedResponse = (xcodeMetrics); + +export type BuildsPerfPowerMetricsGetToManyRelatedError = (ErrorResponse); + +export type BuildsPreReleaseVersionGetToOneRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { /** * the fields to include for returned resources of type preReleaseVersions */ 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + }; +}; + +export type BuildsPreReleaseVersionGetToOneRelatedResponse = (PrereleaseVersionWithoutIncludesResponse); + +export type BuildsPreReleaseVersionGetToOneRelatedError = (ErrorResponse); + +export type BuildsBetaBuildUsagesGetMetricsData = { + path: { /** - * comma-separated list of relationships to include + * the id of the requested resource */ - include?: Array<('builds' | 'app')>; + id: string; + }; + query?: { /** - * maximum number of related builds returned (when they are included) + * maximum number of groups to return per page */ - 'limit[builds]'?: number; + limit?: number; }; }; -export type PreReleaseVersionsGetInstanceResponse = (PrereleaseVersionResponse); +export type BuildsBetaBuildUsagesGetMetricsResponse = (BetaBuildUsagesV1MetricResponse); -export type PreReleaseVersionsGetInstanceError = (ErrorResponse); +export type BuildsBetaBuildUsagesGetMetricsError = (ErrorResponse); -export type ProfilesGetCollectionData = { +export type BundleIdCapabilitiesCreateInstanceData = { + /** + * BundleIdCapability representation + */ + body: BundleIdCapabilityCreateRequest; +}; + +export type BundleIdCapabilitiesCreateInstanceResponse = (BundleIdCapabilityResponse); + +export type BundleIdCapabilitiesCreateInstanceError = (ErrorResponse); + +export type BundleIdCapabilitiesUpdateInstanceData = { + /** + * BundleIdCapability representation + */ + body: BundleIdCapabilityUpdateRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type BundleIdCapabilitiesUpdateInstanceResponse = (BundleIdCapabilityResponse); + +export type BundleIdCapabilitiesUpdateInstanceError = (ErrorResponse); + +export type BundleIdCapabilitiesDeleteInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type BundleIdCapabilitiesDeleteInstanceResponse = (void); + +export type BundleIdCapabilitiesDeleteInstanceError = (ErrorResponse); + +export type BundleIdsGetCollectionData = { query?: { /** - * the fields to include for returned resources of type bundleIds + * the fields to include for returned resources of type apps */ - 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type certificates + * the fields to include for returned resources of type bundleIdCapabilities */ - 'fields[certificates]'?: Array<('name' | 'csrContent' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; + 'fields[bundleIdCapabilities]'?: Array<('capabilityType' | 'settings')>; /** - * the fields to include for returned resources of type devices + * the fields to include for returned resources of type bundleIds */ - 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; + 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; /** * the fields to include for returned resources of type profiles */ @@ -19921,57 +21280,61 @@ export type ProfilesGetCollectionData = { * filter by id(s) */ 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'identifier' + */ + 'filter[identifier]'?: Array<(string)>; /** * filter by attribute 'name' */ 'filter[name]'?: Array<(string)>; /** - * filter by attribute 'profileState' + * filter by attribute 'platform' */ - 'filter[profileState]'?: Array<('ACTIVE' | 'INVALID')>; + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'UNIVERSAL')>; /** - * filter by attribute 'profileType' + * filter by attribute 'seedId' */ - 'filter[profileType]'?: Array<('IOS_APP_DEVELOPMENT' | 'IOS_APP_STORE' | 'IOS_APP_ADHOC' | 'IOS_APP_INHOUSE' | 'MAC_APP_DEVELOPMENT' | 'MAC_APP_STORE' | 'MAC_APP_DIRECT' | 'TVOS_APP_DEVELOPMENT' | 'TVOS_APP_STORE' | 'TVOS_APP_ADHOC' | 'TVOS_APP_INHOUSE' | 'MAC_CATALYST_APP_DEVELOPMENT' | 'MAC_CATALYST_APP_STORE' | 'MAC_CATALYST_APP_DIRECT')>; + 'filter[seedId]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('bundleId' | 'devices' | 'certificates')>; + include?: Array<('profiles' | 'bundleIdCapabilities' | 'app')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related certificates returned (when they are included) + * maximum number of related bundleIdCapabilities returned (when they are included) */ - 'limit[certificates]'?: number; + 'limit[bundleIdCapabilities]'?: number; /** - * maximum number of related devices returned (when they are included) + * maximum number of related profiles returned (when they are included) */ - 'limit[devices]'?: number; + 'limit[profiles]'?: number; /** * comma-separated list of sort expressions; resources will be sorted as specified */ - sort?: Array<('name' | '-name' | 'profileType' | '-profileType' | 'profileState' | '-profileState' | 'id' | '-id')>; + sort?: Array<('name' | '-name' | 'platform' | '-platform' | 'identifier' | '-identifier' | 'seedId' | '-seedId' | 'id' | '-id')>; }; }; -export type ProfilesGetCollectionResponse = (ProfilesResponse); +export type BundleIdsGetCollectionResponse = (BundleIdsResponse); -export type ProfilesGetCollectionError = (ErrorResponse); +export type BundleIdsGetCollectionError = (ErrorResponse); -export type ProfilesCreateInstanceData = { +export type BundleIdsCreateInstanceData = { /** - * Profile representation + * BundleId representation */ - body: ProfileCreateRequest; + body: BundleIdCreateRequest; }; -export type ProfilesCreateInstanceResponse = (ProfileResponse); +export type BundleIdsCreateInstanceResponse = (BundleIdResponse); -export type ProfilesCreateInstanceError = (ErrorResponse); +export type BundleIdsCreateInstanceError = (ErrorResponse); -export type ProfilesGetInstanceData = { +export type BundleIdsGetInstanceData = { path: { /** * the id of the requested resource @@ -19980,17 +21343,17 @@ export type ProfilesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type bundleIds + * the fields to include for returned resources of type apps */ - 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type certificates + * the fields to include for returned resources of type bundleIdCapabilities */ - 'fields[certificates]'?: Array<('name' | 'csrContent' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; + 'fields[bundleIdCapabilities]'?: Array<('capabilityType' | 'settings')>; /** - * the fields to include for returned resources of type devices + * the fields to include for returned resources of type bundleIds */ - 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; + 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; /** * the fields to include for returned resources of type profiles */ @@ -19998,23 +21361,27 @@ export type ProfilesGetInstanceData = { /** * comma-separated list of relationships to include */ - include?: Array<('bundleId' | 'devices' | 'certificates')>; + include?: Array<('profiles' | 'bundleIdCapabilities' | 'app')>; /** - * maximum number of related certificates returned (when they are included) + * maximum number of related bundleIdCapabilities returned (when they are included) */ - 'limit[certificates]'?: number; + 'limit[bundleIdCapabilities]'?: number; /** - * maximum number of related devices returned (when they are included) + * maximum number of related profiles returned (when they are included) */ - 'limit[devices]'?: number; + 'limit[profiles]'?: number; }; }; -export type ProfilesGetInstanceResponse = (ProfileResponse); +export type BundleIdsGetInstanceResponse = (BundleIdResponse); -export type ProfilesGetInstanceError = (ErrorResponse); +export type BundleIdsGetInstanceError = (ErrorResponse); -export type ProfilesDeleteInstanceData = { +export type BundleIdsUpdateInstanceData = { + /** + * BundleId representation + */ + body: BundleIdUpdateRequest; path: { /** * the id of the requested resource @@ -20023,22 +21390,24 @@ export type ProfilesDeleteInstanceData = { }; }; -export type ProfilesDeleteInstanceResponse = (void); +export type BundleIdsUpdateInstanceResponse = (BundleIdResponse); -export type ProfilesDeleteInstanceError = (ErrorResponse); +export type BundleIdsUpdateInstanceError = (ErrorResponse); -export type PromotedPurchaseImagesCreateInstanceData = { - /** - * PromotedPurchaseImage representation - */ - body: PromotedPurchaseImageCreateRequest; +export type BundleIdsDeleteInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; }; -export type PromotedPurchaseImagesCreateInstanceResponse = (PromotedPurchaseImageResponse); +export type BundleIdsDeleteInstanceResponse = (void); -export type PromotedPurchaseImagesCreateInstanceError = (ErrorResponse); +export type BundleIdsDeleteInstanceError = (ErrorResponse); -export type PromotedPurchaseImagesGetInstanceData = { +export type BundleIdsAppGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -20047,112 +21416,130 @@ export type PromotedPurchaseImagesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type promotedPurchaseImages - */ - 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'uploaded' | 'state' | 'promotedPurchase')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type apps */ - include?: Array<('promotedPurchase')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; }; }; -export type PromotedPurchaseImagesGetInstanceResponse = (PromotedPurchaseImageResponse); +export type BundleIdsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); -export type PromotedPurchaseImagesGetInstanceError = (ErrorResponse); +export type BundleIdsAppGetToOneRelatedError = (ErrorResponse); -export type PromotedPurchaseImagesUpdateInstanceData = { - /** - * PromotedPurchaseImage representation - */ - body: PromotedPurchaseImageUpdateRequest; +export type BundleIdsBundleIdCapabilitiesGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type bundleIdCapabilities + */ + 'fields[bundleIdCapabilities]'?: Array<('capabilityType' | 'settings')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type PromotedPurchaseImagesUpdateInstanceResponse = (PromotedPurchaseImageResponse); +export type BundleIdsBundleIdCapabilitiesGetToManyRelatedResponse = (BundleIdCapabilitiesWithoutIncludesResponse); -export type PromotedPurchaseImagesUpdateInstanceError = (ErrorResponse); +export type BundleIdsBundleIdCapabilitiesGetToManyRelatedError = (ErrorResponse); -export type PromotedPurchaseImagesDeleteInstanceData = { +export type BundleIdsProfilesGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type profiles + */ + 'fields[profiles]'?: Array<('name' | 'platform' | 'profileType' | 'profileState' | 'profileContent' | 'uuid' | 'createdDate' | 'expirationDate' | 'bundleId' | 'devices' | 'certificates')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type PromotedPurchaseImagesDeleteInstanceResponse = (void); +export type BundleIdsProfilesGetToManyRelatedResponse = (ProfilesWithoutIncludesResponse); -export type PromotedPurchaseImagesDeleteInstanceError = (ErrorResponse); +export type BundleIdsProfilesGetToManyRelatedError = (ErrorResponse); -export type PromotedPurchasesCreateInstanceData = { - /** - * PromotedPurchase representation - */ - body: PromotedPurchaseCreateRequest; -}; - -export type PromotedPurchasesCreateInstanceResponse = (PromotedPurchaseResponse); - -export type PromotedPurchasesCreateInstanceError = (ErrorResponse); - -export type PromotedPurchasesGetInstanceData = { - path: { +export type CertificatesGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type certificates */ - id: string; - }; - query?: { + 'fields[certificates]'?: Array<('name' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; /** - * the fields to include for returned resources of type promotedPurchaseImages - * @deprecated + * filter by attribute 'certificateType' */ - 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'uploaded' | 'state' | 'promotedPurchase')>; + 'filter[certificateType]'?: Array<('IOS_DEVELOPMENT' | 'IOS_DISTRIBUTION' | 'MAC_APP_DISTRIBUTION' | 'MAC_INSTALLER_DISTRIBUTION' | 'MAC_APP_DEVELOPMENT' | 'DEVELOPER_ID_KEXT' | 'DEVELOPER_ID_KEXT_G2' | 'DEVELOPER_ID_APPLICATION' | 'DEVELOPER_ID_APPLICATION_G2' | 'DEVELOPMENT' | 'DISTRIBUTION' | 'PASS_TYPE_ID' | 'PASS_TYPE_ID_WITH_NFC')>; /** - * the fields to include for returned resources of type promotedPurchases + * filter by attribute 'displayName' */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + 'filter[displayName]'?: Array<(string)>; /** - * comma-separated list of relationships to include + * filter by id(s) */ - include?: Array<('inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + 'filter[id]'?: Array<(string)>; /** - * maximum number of related promotionImages returned (when they are included) - * @deprecated + * filter by attribute 'serialNumber' */ - 'limit[promotionImages]'?: number; + 'filter[serialNumber]'?: Array<(string)>; + /** + * maximum resources per page + */ + limit?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('displayName' | '-displayName' | 'certificateType' | '-certificateType' | 'serialNumber' | '-serialNumber' | 'id' | '-id')>; }; }; -export type PromotedPurchasesGetInstanceResponse = (PromotedPurchaseResponse); +export type CertificatesGetCollectionResponse = (CertificatesResponse); -export type PromotedPurchasesGetInstanceError = (ErrorResponse); +export type CertificatesGetCollectionError = (ErrorResponse); -export type PromotedPurchasesUpdateInstanceData = { +export type CertificatesCreateInstanceData = { /** - * PromotedPurchase representation + * Certificate representation */ - body: PromotedPurchaseUpdateRequest; + body: CertificateCreateRequest; +}; + +export type CertificatesCreateInstanceResponse = (CertificateResponse); + +export type CertificatesCreateInstanceError = (ErrorResponse); + +export type CertificatesGetInstanceData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type certificates + */ + 'fields[certificates]'?: Array<('name' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; + }; }; -export type PromotedPurchasesUpdateInstanceResponse = (PromotedPurchaseResponse); +export type CertificatesGetInstanceResponse = (CertificateResponse); -export type PromotedPurchasesUpdateInstanceError = (ErrorResponse); +export type CertificatesGetInstanceError = (ErrorResponse); -export type PromotedPurchasesDeleteInstanceData = { +export type CertificatesDeleteInstanceData = { path: { /** * the id of the requested resource @@ -20161,104 +21548,127 @@ export type PromotedPurchasesDeleteInstanceData = { }; }; -export type PromotedPurchasesDeleteInstanceResponse = (void); +export type CertificatesDeleteInstanceResponse = (void); -export type PromotedPurchasesDeleteInstanceError = (ErrorResponse); +export type CertificatesDeleteInstanceError = (ErrorResponse); -export type ReviewSubmissionItemsCreateInstanceData = { - /** - * ReviewSubmissionItem representation - */ - body: ReviewSubmissionItemCreateRequest; +export type CiArtifactsGetInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type ciArtifacts + */ + 'fields[ciArtifacts]'?: Array<('fileType' | 'fileName' | 'fileSize' | 'downloadUrl')>; + }; }; -export type ReviewSubmissionItemsCreateInstanceResponse = (ReviewSubmissionItemResponse); +export type CiArtifactsGetInstanceResponse = (CiArtifactResponse); -export type ReviewSubmissionItemsCreateInstanceError = (ErrorResponse); +export type CiArtifactsGetInstanceError = (ErrorResponse); -export type ReviewSubmissionItemsUpdateInstanceData = { - /** - * ReviewSubmissionItem representation - */ - body: ReviewSubmissionItemUpdateRequest; +export type CiBuildActionsGetInstanceData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type ciBuildActions + */ + 'fields[ciBuildActions]'?: Array<('name' | 'actionType' | 'startedDate' | 'finishedDate' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'isRequiredToPass' | 'buildRun' | 'artifacts' | 'issues' | 'testResults')>; + /** + * the fields to include for returned resources of type ciBuildRuns + */ + 'fields[ciBuildRuns]'?: Array<('number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('buildRun')>; + }; }; -export type ReviewSubmissionItemsUpdateInstanceResponse = (ReviewSubmissionItemResponse); +export type CiBuildActionsGetInstanceResponse = (CiBuildActionResponse); -export type ReviewSubmissionItemsUpdateInstanceError = (ErrorResponse); +export type CiBuildActionsGetInstanceError = (ErrorResponse); -export type ReviewSubmissionItemsDeleteInstanceData = { +export type CiBuildActionsArtifactsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type ciArtifacts + */ + 'fields[ciArtifacts]'?: Array<('fileType' | 'fileName' | 'fileSize' | 'downloadUrl')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type ReviewSubmissionItemsDeleteInstanceResponse = (void); +export type CiBuildActionsArtifactsGetToManyRelatedResponse = (CiArtifactsResponse); -export type ReviewSubmissionItemsDeleteInstanceError = (ErrorResponse); +export type CiBuildActionsArtifactsGetToManyRelatedError = (ErrorResponse); -export type ReviewSubmissionsGetCollectionData = { - query: { +export type CiBuildActionsBuildRunGetToOneRelatedData = { + path: { /** - * the fields to include for returned resources of type reviewSubmissionItems + * the id of the requested resource */ - 'fields[reviewSubmissionItems]'?: Array<('state' | 'resolved' | 'removed' | 'reviewSubmission' | 'appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type reviewSubmissions + * the fields to include for returned resources of type builds */ - 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'submitted' | 'canceled' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * filter by id(s) of related 'app' + * the fields to include for returned resources of type ciBuildRuns */ - 'filter[app]': Array<(string)>; + 'fields[ciBuildRuns]'?: Array<('number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; /** - * filter by attribute 'platform' + * the fields to include for returned resources of type ciProducts */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** - * filter by attribute 'state' + * the fields to include for returned resources of type ciWorkflows */ - 'filter[state]'?: Array<('READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'UNRESOLVED_ISSUES' | 'CANCELING' | 'COMPLETING' | 'COMPLETE')>; + 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type scmGitReferences */ - include?: Array<('app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** - * maximum resources per page + * the fields to include for returned resources of type scmPullRequests */ - limit?: number; + 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; /** - * maximum number of related items returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[items]'?: number; + include?: Array<('builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'pullRequest')>; + /** + * maximum number of related builds returned (when they are included) + */ + 'limit[builds]'?: number; }; }; -export type ReviewSubmissionsGetCollectionResponse = (ReviewSubmissionsResponse); - -export type ReviewSubmissionsGetCollectionError = (ErrorResponse); - -export type ReviewSubmissionsCreateInstanceData = { - /** - * ReviewSubmission representation - */ - body: ReviewSubmissionCreateRequest; -}; - -export type ReviewSubmissionsCreateInstanceResponse = (ReviewSubmissionResponse); +export type CiBuildActionsBuildRunGetToOneRelatedResponse = (CiBuildRunResponse); -export type ReviewSubmissionsCreateInstanceError = (ErrorResponse); +export type CiBuildActionsBuildRunGetToOneRelatedError = (ErrorResponse); -export type ReviewSubmissionsGetInstanceData = { +export type CiBuildActionsIssuesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -20267,57 +21677,55 @@ export type ReviewSubmissionsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type reviewSubmissionItems - */ - 'fields[reviewSubmissionItems]'?: Array<('state' | 'resolved' | 'removed' | 'reviewSubmission' | 'appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; - /** - * the fields to include for returned resources of type reviewSubmissions - */ - 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'submitted' | 'canceled' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type ciIssues */ - include?: Array<('app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + 'fields[ciIssues]'?: Array<('issueType' | 'message' | 'fileSource' | 'category')>; /** - * maximum number of related items returned (when they are included) + * maximum resources per page */ - 'limit[items]'?: number; + limit?: number; }; }; -export type ReviewSubmissionsGetInstanceResponse = (ReviewSubmissionResponse); +export type CiBuildActionsIssuesGetToManyRelatedResponse = (CiIssuesResponse); -export type ReviewSubmissionsGetInstanceError = (ErrorResponse); +export type CiBuildActionsIssuesGetToManyRelatedError = (ErrorResponse); -export type ReviewSubmissionsUpdateInstanceData = { - /** - * ReviewSubmission representation - */ - body: ReviewSubmissionUpdateRequest; +export type CiBuildActionsTestResultsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type ciTestResults + */ + 'fields[ciTestResults]'?: Array<('className' | 'name' | 'status' | 'fileSource' | 'message' | 'destinationTestResults')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type ReviewSubmissionsUpdateInstanceResponse = (ReviewSubmissionResponse); +export type CiBuildActionsTestResultsGetToManyRelatedResponse = (CiTestResultsResponse); -export type ReviewSubmissionsUpdateInstanceError = (ErrorResponse); +export type CiBuildActionsTestResultsGetToManyRelatedError = (ErrorResponse); -export type RoutingAppCoveragesCreateInstanceData = { +export type CiBuildRunsCreateInstanceData = { /** - * RoutingAppCoverage representation + * CiBuildRun representation */ - body: RoutingAppCoverageCreateRequest; + body: CiBuildRunCreateRequest; }; -export type RoutingAppCoveragesCreateInstanceResponse = (RoutingAppCoverageResponse); +export type CiBuildRunsCreateInstanceResponse = (CiBuildRunResponse); -export type RoutingAppCoveragesCreateInstanceError = (ErrorResponse); +export type CiBuildRunsCreateInstanceError = (ErrorResponse); -export type RoutingAppCoveragesGetInstanceData = { +export type CiBuildRunsGetInstanceData = { path: { /** * the id of the requested resource @@ -20326,129 +21734,255 @@ export type RoutingAppCoveragesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type routingAppCoverages + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * the fields to include for returned resources of type ciBuildRuns */ - 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreVersion')>; + 'fields[ciBuildRuns]'?: Array<('number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersion')>; + include?: Array<('builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'pullRequest')>; + /** + * maximum number of related builds returned (when they are included) + */ + 'limit[builds]'?: number; }; }; -export type RoutingAppCoveragesGetInstanceResponse = (RoutingAppCoverageResponse); +export type CiBuildRunsGetInstanceResponse = (CiBuildRunResponse); -export type RoutingAppCoveragesGetInstanceError = (ErrorResponse); +export type CiBuildRunsGetInstanceError = (ErrorResponse); -export type RoutingAppCoveragesUpdateInstanceData = { - /** - * RoutingAppCoverage representation - */ - body: RoutingAppCoverageUpdateRequest; +export type CiBuildRunsActionsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type ciBuildActions + */ + 'fields[ciBuildActions]'?: Array<('name' | 'actionType' | 'startedDate' | 'finishedDate' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'isRequiredToPass' | 'buildRun' | 'artifacts' | 'issues' | 'testResults')>; + /** + * the fields to include for returned resources of type ciBuildRuns + */ + 'fields[ciBuildRuns]'?: Array<('number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('buildRun')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type RoutingAppCoveragesUpdateInstanceResponse = (RoutingAppCoverageResponse); +export type CiBuildRunsActionsGetToManyRelatedResponse = (CiBuildActionsResponse); -export type RoutingAppCoveragesUpdateInstanceError = (ErrorResponse); +export type CiBuildRunsActionsGetToManyRelatedError = (ErrorResponse); -export type RoutingAppCoveragesDeleteInstanceData = { +export type CiBuildRunsBuildsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type RoutingAppCoveragesDeleteInstanceResponse = (void); - -export type RoutingAppCoveragesDeleteInstanceError = (ErrorResponse); - -export type SalesReportsGetCollectionData = { - query: { + query?: { /** - * filter by attribute 'frequency' + * the fields to include for returned resources of type appEncryptionDeclarations */ - 'filter[frequency]': Array<('DAILY' | 'WEEKLY' | 'MONTHLY' | 'YEARLY')>; + 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; /** - * filter by attribute 'reportDate' + * the fields to include for returned resources of type apps */ - 'filter[reportDate]'?: Array<(string)>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * filter by attribute 'reportSubType' + * the fields to include for returned resources of type appStoreVersions */ - 'filter[reportSubType]': Array<('SUMMARY' | 'DETAILED' | 'SUMMARY_INSTALL_TYPE' | 'SUMMARY_TERRITORY' | 'SUMMARY_CHANNEL')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * filter by attribute 'reportType' + * the fields to include for returned resources of type betaAppReviewSubmissions */ - 'filter[reportType]': Array<('SALES' | 'PRE_ORDER' | 'NEWSSTAND' | 'SUBSCRIPTION' | 'SUBSCRIPTION_EVENT' | 'SUBSCRIBER' | 'SUBSCRIPTION_OFFER_CODE_REDEMPTION' | 'INSTALLS' | 'FIRST_ANNUAL')>; + 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; /** - * filter by attribute 'vendorNumber' + * the fields to include for returned resources of type betaBuildLocalizations */ - 'filter[vendorNumber]': Array<(string)>; + 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; + /** + * the fields to include for returned resources of type betaGroups + */ + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + /** + * the fields to include for returned resources of type betaTesters + */ + 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + /** + * the fields to include for returned resources of type buildBetaDetails + */ + 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + /** + * the fields to include for returned resources of type buildBundles + */ + 'fields[buildBundles]'?: Array<('bundleId' | 'bundleType' | 'sdkBuild' | 'platformBuild' | 'fileName' | 'hasSirikit' | 'hasOnDemandResources' | 'hasPrerenderedIcon' | 'usesLocationServices' | 'isIosBuildMacAppStoreCompatible' | 'includesSymbols' | 'dSYMUrl' | 'supportedArchitectures' | 'requiredCapabilities' | 'deviceProtocols' | 'locales' | 'entitlements' | 'appClipDomainCacheStatus' | 'appClipDomainDebugStatus' | 'betaAppClipInvocations' | 'buildBundleFileSizes')>; + /** + * the fields to include for returned resources of type buildIcons + */ + 'fields[buildIcons]'?: Array<('name' | 'iconAsset' | 'iconType')>; + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * the fields to include for returned resources of type preReleaseVersions + */ + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + /** + * filter by id(s) of related 'app' + */ + 'filter[app]'?: Array<(string)>; + /** + * filter by id(s) of related 'appStoreVersion' + */ + 'filter[appStoreVersion]'?: Array<(string)>; + /** + * filter by attribute 'betaAppReviewSubmission.betaReviewState' + */ + 'filter[betaAppReviewSubmission.betaReviewState]'?: Array<('WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'REJECTED' | 'APPROVED')>; + /** + * filter by id(s) of related 'betaGroups' + */ + 'filter[betaGroups]'?: Array<(string)>; + /** + * filter by attribute 'buildAudienceType' + */ + 'filter[buildAudienceType]'?: Array<('INTERNAL_ONLY' | 'APP_STORE_ELIGIBLE')>; + /** + * filter by attribute 'expired' + */ + 'filter[expired]'?: Array<(string)>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'preReleaseVersion.platform' + */ + 'filter[preReleaseVersion.platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + /** + * filter by attribute 'preReleaseVersion.version' + */ + 'filter[preReleaseVersion.version]'?: Array<(string)>; + /** + * filter by id(s) of related 'preReleaseVersion' + */ + 'filter[preReleaseVersion]'?: Array<(string)>; + /** + * filter by attribute 'processingState' + */ + 'filter[processingState]'?: Array<('PROCESSING' | 'FAILED' | 'INVALID' | 'VALID')>; + /** + * filter by attribute 'usesNonExemptEncryption' + */ + 'filter[usesNonExemptEncryption]'?: Array<(string)>; /** * filter by attribute 'version' */ 'filter[version]'?: Array<(string)>; - }; -}; - -export type SalesReportsGetCollectionResponse = (gzip); - -export type SalesReportsGetCollectionError = (ErrorResponse); - -export type SandboxTestersV2GetCollectionData = { - query?: { /** - * the fields to include for returned resources of type sandboxTesters + * comma-separated list of relationships to include */ - 'fields[sandboxTesters]'?: Array<('firstName' | 'lastName' | 'acAccountName' | 'territory' | 'applePayCompatible' | 'interruptPurchases' | 'subscriptionRenewalRate')>; + include?: Array<('preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related betaBuildLocalizations returned (when they are included) + */ + 'limit[betaBuildLocalizations]'?: number; + /** + * maximum number of related betaGroups returned (when they are included) + */ + 'limit[betaGroups]'?: number; + /** + * maximum number of related buildBundles returned (when they are included) + */ + 'limit[buildBundles]'?: number; + /** + * maximum number of related icons returned (when they are included) + */ + 'limit[icons]'?: number; + /** + * maximum number of related individualTesters returned (when they are included) + */ + 'limit[individualTesters]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('version' | '-version' | 'uploadedDate' | '-uploadedDate' | 'preReleaseVersion' | '-preReleaseVersion')>; }; }; -export type SandboxTestersV2GetCollectionResponse = (SandboxTestersV2Response); +export type CiBuildRunsBuildsGetToManyRelatedResponse = (BuildsResponse); -export type SandboxTestersV2GetCollectionError = (ErrorResponse); +export type CiBuildRunsBuildsGetToManyRelatedError = (ErrorResponse); -export type SandboxTestersV2UpdateInstanceData = { - /** - * SandboxTester representation - */ - body: SandboxTesterV2UpdateRequest; +export type CiIssuesGetInstanceData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type ciIssues + */ + 'fields[ciIssues]'?: Array<('issueType' | 'message' | 'fileSource' | 'category')>; + }; }; -export type SandboxTestersV2UpdateInstanceResponse = (SandboxTesterV2Response); +export type CiIssuesGetInstanceResponse = (CiIssueResponse); -export type SandboxTestersV2UpdateInstanceError = (ErrorResponse); +export type CiIssuesGetInstanceError = (ErrorResponse); -export type SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceData = { - /** - * SandboxTestersClearPurchaseHistoryRequest representation - */ - body: SandboxTestersClearPurchaseHistoryRequestV2CreateRequest; +export type CiMacOsVersionsGetCollectionData = { + query?: { + /** + * the fields to include for returned resources of type ciMacOsVersions + */ + 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; + /** + * the fields to include for returned resources of type ciXcodeVersions + */ + 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('xcodeVersions')>; + /** + * maximum resources per page + */ + limit?: number; + /** + * maximum number of related xcodeVersions returned (when they are included) + */ + 'limit[xcodeVersions]'?: number; + }; }; -export type SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceResponse = (SandboxTestersClearPurchaseHistoryRequestV2Response); +export type CiMacOsVersionsGetCollectionResponse = (CiMacOsVersionsResponse); -export type SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceError = (ErrorResponse); +export type CiMacOsVersionsGetCollectionError = (ErrorResponse); -export type ScmGitReferencesGetInstanceData = { +export type CiMacOsVersionsGetInstanceData = { path: { /** * the id of the requested resource @@ -20457,38 +21991,29 @@ export type ScmGitReferencesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type scmGitReferences + * the fields to include for returned resources of type ciMacOsVersions */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; + 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type ciXcodeVersions */ - include?: Array<('repository')>; - }; -}; - -export type ScmGitReferencesGetInstanceResponse = (ScmGitReferenceResponse); - -export type ScmGitReferencesGetInstanceError = (ErrorResponse); - -export type ScmProvidersGetCollectionData = { - query?: { + 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; /** - * the fields to include for returned resources of type scmProviders + * comma-separated list of relationships to include */ - 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; + include?: Array<('xcodeVersions')>; /** - * maximum resources per page + * maximum number of related xcodeVersions returned (when they are included) */ - limit?: number; + 'limit[xcodeVersions]'?: number; }; }; -export type ScmProvidersGetCollectionResponse = (ScmProvidersResponse); +export type CiMacOsVersionsGetInstanceResponse = (CiMacOsVersionResponse); -export type ScmProvidersGetCollectionError = (ErrorResponse); +export type CiMacOsVersionsGetInstanceError = (ErrorResponse); -export type ScmProvidersGetInstanceData = { +export type CiMacOsVersionsXcodeVersionsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -20497,65 +22022,74 @@ export type ScmProvidersGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type scmProviders + * the fields to include for returned resources of type ciMacOsVersions */ - 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; - }; -}; - -export type ScmProvidersGetInstanceResponse = (ScmProviderResponse); - -export type ScmProvidersGetInstanceError = (ErrorResponse); - -export type ScmPullRequestsGetInstanceData = { - path: { + 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; /** - * the id of the requested resource + * the fields to include for returned resources of type ciXcodeVersions */ - id: string; - }; - query?: { + 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; /** - * the fields to include for returned resources of type scmPullRequests + * comma-separated list of relationships to include */ - 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; + include?: Array<('macOsVersions')>; /** - * comma-separated list of relationships to include + * maximum resources per page */ - include?: Array<('repository')>; + limit?: number; + /** + * maximum number of related macOsVersions returned (when they are included) + */ + 'limit[macOsVersions]'?: number; }; }; -export type ScmPullRequestsGetInstanceResponse = (ScmPullRequestResponse); +export type CiMacOsVersionsXcodeVersionsGetToManyRelatedResponse = (CiXcodeVersionsResponse); -export type ScmPullRequestsGetInstanceError = (ErrorResponse); +export type CiMacOsVersionsXcodeVersionsGetToManyRelatedError = (ErrorResponse); -export type ScmRepositoriesGetCollectionData = { +export type CiProductsGetCollectionData = { query?: { + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type ciProducts + */ + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** * the fields to include for returned resources of type scmRepositories */ 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** - * filter by id(s) + * filter by id(s) of related 'app' */ - 'filter[id]'?: Array<(string)>; + 'filter[app]'?: Array<(string)>; + /** + * filter by attribute 'productType' + */ + 'filter[productType]'?: Array<('APP' | 'FRAMEWORK')>; /** * comma-separated list of relationships to include */ - include?: Array<('scmProvider' | 'defaultBranch')>; + include?: Array<('app' | 'bundleId' | 'primaryRepositories')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related primaryRepositories returned (when they are included) + */ + 'limit[primaryRepositories]'?: number; }; }; -export type ScmRepositoriesGetCollectionResponse = (ScmRepositoriesResponse); +export type CiProductsGetCollectionResponse = (CiProductsResponse); -export type ScmRepositoriesGetCollectionError = (ErrorResponse); +export type CiProductsGetCollectionError = (ErrorResponse); -export type ScmRepositoriesGetInstanceData = { +export type CiProductsGetInstanceData = { path: { /** * the id of the requested resource @@ -20564,72 +22098,33 @@ export type ScmRepositoriesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type scmRepositories - */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type apps */ - include?: Array<('scmProvider' | 'defaultBranch')>; - }; -}; - -export type ScmRepositoriesGetInstanceResponse = (ScmRepositoryResponse); - -export type ScmRepositoriesGetInstanceError = (ErrorResponse); - -export type SubscriptionAppStoreReviewScreenshotsCreateInstanceData = { - /** - * SubscriptionAppStoreReviewScreenshot representation - */ - body: SubscriptionAppStoreReviewScreenshotCreateRequest; -}; - -export type SubscriptionAppStoreReviewScreenshotsCreateInstanceResponse = (SubscriptionAppStoreReviewScreenshotResponse); - -export type SubscriptionAppStoreReviewScreenshotsCreateInstanceError = (ErrorResponse); - -export type SubscriptionAppStoreReviewScreenshotsGetInstanceData = { - path: { + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the id of the requested resource + * the fields to include for returned resources of type ciProducts */ - id: string; - }; - query?: { + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** - * the fields to include for returned resources of type subscriptionAppStoreReviewScreenshots + * the fields to include for returned resources of type scmRepositories */ - 'fields[subscriptionAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'subscription')>; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** * comma-separated list of relationships to include */ - include?: Array<('subscription')>; - }; -}; - -export type SubscriptionAppStoreReviewScreenshotsGetInstanceResponse = (SubscriptionAppStoreReviewScreenshotResponse); - -export type SubscriptionAppStoreReviewScreenshotsGetInstanceError = (ErrorResponse); - -export type SubscriptionAppStoreReviewScreenshotsUpdateInstanceData = { - /** - * SubscriptionAppStoreReviewScreenshot representation - */ - body: SubscriptionAppStoreReviewScreenshotUpdateRequest; - path: { + include?: Array<('app' | 'bundleId' | 'primaryRepositories')>; /** - * the id of the requested resource + * maximum number of related primaryRepositories returned (when they are included) */ - id: string; + 'limit[primaryRepositories]'?: number; }; }; -export type SubscriptionAppStoreReviewScreenshotsUpdateInstanceResponse = (SubscriptionAppStoreReviewScreenshotResponse); +export type CiProductsGetInstanceResponse = (CiProductResponse); -export type SubscriptionAppStoreReviewScreenshotsUpdateInstanceError = (ErrorResponse); +export type CiProductsGetInstanceError = (ErrorResponse); -export type SubscriptionAppStoreReviewScreenshotsDeleteInstanceData = { +export type CiProductsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -20638,22 +22133,11 @@ export type SubscriptionAppStoreReviewScreenshotsDeleteInstanceData = { }; }; -export type SubscriptionAppStoreReviewScreenshotsDeleteInstanceResponse = (void); - -export type SubscriptionAppStoreReviewScreenshotsDeleteInstanceError = (ErrorResponse); - -export type SubscriptionAvailabilitiesCreateInstanceData = { - /** - * SubscriptionAvailability representation - */ - body: SubscriptionAvailabilityCreateRequest; -}; - -export type SubscriptionAvailabilitiesCreateInstanceResponse = (SubscriptionAvailabilityResponse); +export type CiProductsDeleteInstanceResponse = (void); -export type SubscriptionAvailabilitiesCreateInstanceError = (ErrorResponse); +export type CiProductsDeleteInstanceError = (ErrorResponse); -export type SubscriptionAvailabilitiesGetInstanceData = { +export type CiProductsAdditionalRepositoriesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -20662,29 +22146,37 @@ export type SubscriptionAvailabilitiesGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionAvailabilities + * the fields to include for returned resources of type scmGitReferences */ - 'fields[subscriptionAvailabilities]'?: Array<('availableInNewTerritories' | 'subscription' | 'availableTerritories')>; + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type scmProviders */ - 'fields[territories]'?: Array<('currency')>; + 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; + /** + * the fields to include for returned resources of type scmRepositories + */ + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('subscription' | 'availableTerritories')>; + include?: Array<('scmProvider' | 'defaultBranch')>; /** - * maximum number of related availableTerritories returned (when they are included) + * maximum resources per page */ - 'limit[availableTerritories]'?: number; + limit?: number; }; }; -export type SubscriptionAvailabilitiesGetInstanceResponse = (SubscriptionAvailabilityResponse); +export type CiProductsAdditionalRepositoriesGetToManyRelatedResponse = (ScmRepositoriesResponse); -export type SubscriptionAvailabilitiesGetInstanceError = (ErrorResponse); +export type CiProductsAdditionalRepositoriesGetToManyRelatedError = (ErrorResponse); -export type SubscriptionGracePeriodsGetInstanceData = { +export type CiProductsAppGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -20693,2265 +22185,179 @@ export type SubscriptionGracePeriodsGetInstanceData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionGracePeriods + * the fields to include for returned resources of type appClips */ - 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; - }; -}; - -export type SubscriptionGracePeriodsGetInstanceResponse = (SubscriptionGracePeriodResponse); - -export type SubscriptionGracePeriodsGetInstanceError = (ErrorResponse); - -export type SubscriptionGracePeriodsUpdateInstanceData = { - /** - * SubscriptionGracePeriod representation - */ - body: SubscriptionGracePeriodUpdateRequest; - path: { + 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appCustomProductPages */ - id: string; - }; -}; - -export type SubscriptionGracePeriodsUpdateInstanceResponse = (SubscriptionGracePeriodResponse); - -export type SubscriptionGracePeriodsUpdateInstanceError = (ErrorResponse); - -export type SubscriptionGroupLocalizationsCreateInstanceData = { - /** - * SubscriptionGroupLocalization representation - */ - body: SubscriptionGroupLocalizationCreateRequest; -}; - -export type SubscriptionGroupLocalizationsCreateInstanceResponse = (SubscriptionGroupLocalizationResponse); - -export type SubscriptionGroupLocalizationsCreateInstanceError = (ErrorResponse); - -export type SubscriptionGroupLocalizationsGetInstanceData = { - path: { + 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appEncryptionDeclarations */ - id: string; - }; - query?: { + 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; /** - * the fields to include for returned resources of type subscriptionGroupLocalizations + * the fields to include for returned resources of type appEvents */ - 'fields[subscriptionGroupLocalizations]'?: Array<('name' | 'customAppName' | 'locale' | 'state' | 'subscriptionGroup')>; + 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'localizations')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type appInfos */ - include?: Array<('subscriptionGroup')>; - }; -}; - -export type SubscriptionGroupLocalizationsGetInstanceResponse = (SubscriptionGroupLocalizationResponse); - -export type SubscriptionGroupLocalizationsGetInstanceError = (ErrorResponse); - -export type SubscriptionGroupLocalizationsUpdateInstanceData = { - /** - * SubscriptionGroupLocalization representation - */ - body: SubscriptionGroupLocalizationUpdateRequest; - path: { + 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'franceAgeRating' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; /** - * the id of the requested resource + * the fields to include for returned resources of type apps */ - id: string; - }; -}; - -export type SubscriptionGroupLocalizationsUpdateInstanceResponse = (SubscriptionGroupLocalizationResponse); - -export type SubscriptionGroupLocalizationsUpdateInstanceError = (ErrorResponse); - -export type SubscriptionGroupLocalizationsDeleteInstanceData = { - path: { + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appStoreVersionExperiments */ - id: string; - }; -}; - -export type SubscriptionGroupLocalizationsDeleteInstanceResponse = (void); - -export type SubscriptionGroupLocalizationsDeleteInstanceError = (ErrorResponse); - -export type SubscriptionGroupSubmissionsCreateInstanceData = { - /** - * SubscriptionGroupSubmission representation - */ - body: SubscriptionGroupSubmissionCreateRequest; -}; - -export type SubscriptionGroupSubmissionsCreateInstanceResponse = (SubscriptionGroupSubmissionResponse); - -export type SubscriptionGroupSubmissionsCreateInstanceError = (ErrorResponse); - -export type SubscriptionGroupsCreateInstanceData = { - /** - * SubscriptionGroup representation - */ - body: SubscriptionGroupCreateRequest; -}; - -export type SubscriptionGroupsCreateInstanceResponse = (SubscriptionGroupResponse); - -export type SubscriptionGroupsCreateInstanceError = (ErrorResponse); - -export type SubscriptionGroupsGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionGroupLocalizations - */ - 'fields[subscriptionGroupLocalizations]'?: Array<('name' | 'customAppName' | 'locale' | 'state' | 'subscriptionGroup')>; - /** - * the fields to include for returned resources of type subscriptionGroups - */ - 'fields[subscriptionGroups]'?: Array<('referenceName' | 'app' | 'subscriptions' | 'subscriptionGroupLocalizations')>; - /** - * the fields to include for returned resources of type subscriptions - */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('subscriptions' | 'subscriptionGroupLocalizations')>; - /** - * maximum number of related subscriptionGroupLocalizations returned (when they are included) - */ - 'limit[subscriptionGroupLocalizations]'?: number; - /** - * maximum number of related subscriptions returned (when they are included) - */ - 'limit[subscriptions]'?: number; - }; -}; - -export type SubscriptionGroupsGetInstanceResponse = (SubscriptionGroupResponse); - -export type SubscriptionGroupsGetInstanceError = (ErrorResponse); - -export type SubscriptionGroupsUpdateInstanceData = { - /** - * SubscriptionGroup representation - */ - body: SubscriptionGroupUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionGroupsUpdateInstanceResponse = (SubscriptionGroupResponse); - -export type SubscriptionGroupsUpdateInstanceError = (ErrorResponse); - -export type SubscriptionGroupsDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionGroupsDeleteInstanceResponse = (void); - -export type SubscriptionGroupsDeleteInstanceError = (ErrorResponse); - -export type SubscriptionImagesCreateInstanceData = { - /** - * SubscriptionImage representation - */ - body: SubscriptionImageCreateRequest; -}; - -export type SubscriptionImagesCreateInstanceResponse = (SubscriptionImageResponse); - -export type SubscriptionImagesCreateInstanceError = (ErrorResponse); - -export type SubscriptionImagesGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionImages - */ - 'fields[subscriptionImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'uploaded' | 'state' | 'subscription')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('subscription')>; - }; -}; - -export type SubscriptionImagesGetInstanceResponse = (SubscriptionImageResponse); - -export type SubscriptionImagesGetInstanceError = (ErrorResponse); - -export type SubscriptionImagesUpdateInstanceData = { - /** - * SubscriptionImage representation - */ - body: SubscriptionImageUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionImagesUpdateInstanceResponse = (SubscriptionImageResponse); - -export type SubscriptionImagesUpdateInstanceError = (ErrorResponse); - -export type SubscriptionImagesDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionImagesDeleteInstanceResponse = (void); - -export type SubscriptionImagesDeleteInstanceError = (ErrorResponse); - -export type SubscriptionIntroductoryOffersCreateInstanceData = { - /** - * SubscriptionIntroductoryOffer representation - */ - body: SubscriptionIntroductoryOfferCreateRequest; -}; - -export type SubscriptionIntroductoryOffersCreateInstanceResponse = (SubscriptionIntroductoryOfferResponse); - -export type SubscriptionIntroductoryOffersCreateInstanceError = (ErrorResponse); - -export type SubscriptionIntroductoryOffersUpdateInstanceData = { - /** - * SubscriptionIntroductoryOffer representation - */ - body: SubscriptionIntroductoryOfferUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionIntroductoryOffersUpdateInstanceResponse = (SubscriptionIntroductoryOfferResponse); - -export type SubscriptionIntroductoryOffersUpdateInstanceError = (ErrorResponse); - -export type SubscriptionIntroductoryOffersDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionIntroductoryOffersDeleteInstanceResponse = (void); - -export type SubscriptionIntroductoryOffersDeleteInstanceError = (ErrorResponse); - -export type SubscriptionLocalizationsCreateInstanceData = { - /** - * SubscriptionLocalization representation - */ - body: SubscriptionLocalizationCreateRequest; -}; - -export type SubscriptionLocalizationsCreateInstanceResponse = (SubscriptionLocalizationResponse); - -export type SubscriptionLocalizationsCreateInstanceError = (ErrorResponse); - -export type SubscriptionLocalizationsGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionLocalizations - */ - 'fields[subscriptionLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'subscription')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('subscription')>; - }; -}; - -export type SubscriptionLocalizationsGetInstanceResponse = (SubscriptionLocalizationResponse); - -export type SubscriptionLocalizationsGetInstanceError = (ErrorResponse); - -export type SubscriptionLocalizationsUpdateInstanceData = { - /** - * SubscriptionLocalization representation - */ - body: SubscriptionLocalizationUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionLocalizationsUpdateInstanceResponse = (SubscriptionLocalizationResponse); - -export type SubscriptionLocalizationsUpdateInstanceError = (ErrorResponse); - -export type SubscriptionLocalizationsDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionLocalizationsDeleteInstanceResponse = (void); - -export type SubscriptionLocalizationsDeleteInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodeCustomCodesCreateInstanceData = { - /** - * SubscriptionOfferCodeCustomCode representation - */ - body: SubscriptionOfferCodeCustomCodeCreateRequest; -}; - -export type SubscriptionOfferCodeCustomCodesCreateInstanceResponse = (SubscriptionOfferCodeCustomCodeResponse); - -export type SubscriptionOfferCodeCustomCodesCreateInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodeCustomCodesGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionOfferCodeCustomCodes - */ - 'fields[subscriptionOfferCodeCustomCodes]'?: Array<('customCode' | 'numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('offerCode')>; - }; -}; - -export type SubscriptionOfferCodeCustomCodesGetInstanceResponse = (SubscriptionOfferCodeCustomCodeResponse); - -export type SubscriptionOfferCodeCustomCodesGetInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodeCustomCodesUpdateInstanceData = { - /** - * SubscriptionOfferCodeCustomCode representation - */ - body: SubscriptionOfferCodeCustomCodeUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionOfferCodeCustomCodesUpdateInstanceResponse = (SubscriptionOfferCodeCustomCodeResponse); - -export type SubscriptionOfferCodeCustomCodesUpdateInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodeOneTimeUseCodesCreateInstanceData = { - /** - * SubscriptionOfferCodeOneTimeUseCode representation - */ - body: SubscriptionOfferCodeOneTimeUseCodeCreateRequest; -}; - -export type SubscriptionOfferCodeOneTimeUseCodesCreateInstanceResponse = (SubscriptionOfferCodeOneTimeUseCodeResponse); - -export type SubscriptionOfferCodeOneTimeUseCodesCreateInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodeOneTimeUseCodesGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionOfferCodeOneTimeUseCodes - */ - 'fields[subscriptionOfferCodeOneTimeUseCodes]'?: Array<('numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode' | 'values')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('offerCode')>; - }; -}; - -export type SubscriptionOfferCodeOneTimeUseCodesGetInstanceResponse = (SubscriptionOfferCodeOneTimeUseCodeResponse); - -export type SubscriptionOfferCodeOneTimeUseCodesGetInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceData = { - /** - * SubscriptionOfferCodeOneTimeUseCode representation - */ - body: SubscriptionOfferCodeOneTimeUseCodeUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceResponse = (SubscriptionOfferCodeOneTimeUseCodeResponse); - -export type SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodesCreateInstanceData = { - /** - * SubscriptionOfferCode representation - */ - body: SubscriptionOfferCodeCreateRequest; -}; - -export type SubscriptionOfferCodesCreateInstanceResponse = (SubscriptionOfferCodeResponse); - -export type SubscriptionOfferCodesCreateInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodesGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionOfferCodeCustomCodes - */ - 'fields[subscriptionOfferCodeCustomCodes]'?: Array<('customCode' | 'numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode')>; - /** - * the fields to include for returned resources of type subscriptionOfferCodeOneTimeUseCodes - */ - 'fields[subscriptionOfferCodeOneTimeUseCodes]'?: Array<('numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode' | 'values')>; - /** - * the fields to include for returned resources of type subscriptionOfferCodePrices - */ - 'fields[subscriptionOfferCodePrices]'?: Array<('territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type subscriptionOfferCodes - */ - 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; - /** - * maximum number of related customCodes returned (when they are included) - */ - 'limit[customCodes]'?: number; - /** - * maximum number of related oneTimeUseCodes returned (when they are included) - */ - 'limit[oneTimeUseCodes]'?: number; - /** - * maximum number of related prices returned (when they are included) - */ - 'limit[prices]'?: number; - }; -}; - -export type SubscriptionOfferCodesGetInstanceResponse = (SubscriptionOfferCodeResponse); - -export type SubscriptionOfferCodesGetInstanceError = (ErrorResponse); - -export type SubscriptionOfferCodesUpdateInstanceData = { - /** - * SubscriptionOfferCode representation - */ - body: SubscriptionOfferCodeUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionOfferCodesUpdateInstanceResponse = (SubscriptionOfferCodeResponse); - -export type SubscriptionOfferCodesUpdateInstanceError = (ErrorResponse); - -export type SubscriptionPricePointsGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionPricePoints - */ - 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'subscription' | 'equalizations')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('territory')>; - }; -}; - -export type SubscriptionPricePointsGetInstanceResponse = (SubscriptionPricePointResponse); - -export type SubscriptionPricePointsGetInstanceError = (ErrorResponse); - -export type SubscriptionPricesCreateInstanceData = { - /** - * SubscriptionPrice representation - */ - body: SubscriptionPriceCreateRequest; -}; - -export type SubscriptionPricesCreateInstanceResponse = (SubscriptionPriceResponse); - -export type SubscriptionPricesCreateInstanceError = (ErrorResponse); - -export type SubscriptionPricesDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionPricesDeleteInstanceResponse = (void); - -export type SubscriptionPricesDeleteInstanceError = (ErrorResponse); - -export type SubscriptionPromotionalOffersCreateInstanceData = { - /** - * SubscriptionPromotionalOffer representation - */ - body: SubscriptionPromotionalOfferCreateRequest; -}; - -export type SubscriptionPromotionalOffersCreateInstanceResponse = (SubscriptionPromotionalOfferResponse); - -export type SubscriptionPromotionalOffersCreateInstanceError = (ErrorResponse); - -export type SubscriptionPromotionalOffersGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionPromotionalOfferPrices - */ - 'fields[subscriptionPromotionalOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type subscriptionPromotionalOffers - */ - 'fields[subscriptionPromotionalOffers]'?: Array<('name' | 'offerCode' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'prices')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('subscription' | 'prices')>; - /** - * maximum number of related prices returned (when they are included) - */ - 'limit[prices]'?: number; - }; -}; - -export type SubscriptionPromotionalOffersGetInstanceResponse = (SubscriptionPromotionalOfferResponse); - -export type SubscriptionPromotionalOffersGetInstanceError = (ErrorResponse); - -export type SubscriptionPromotionalOffersUpdateInstanceData = { - /** - * SubscriptionPromotionalOffer representation - */ - body: SubscriptionPromotionalOfferUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionPromotionalOffersUpdateInstanceResponse = (SubscriptionPromotionalOfferResponse); - -export type SubscriptionPromotionalOffersUpdateInstanceError = (ErrorResponse); - -export type SubscriptionPromotionalOffersDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionPromotionalOffersDeleteInstanceResponse = (void); - -export type SubscriptionPromotionalOffersDeleteInstanceError = (ErrorResponse); - -export type SubscriptionSubmissionsCreateInstanceData = { - /** - * SubscriptionSubmission representation - */ - body: SubscriptionSubmissionCreateRequest; -}; - -export type SubscriptionSubmissionsCreateInstanceResponse = (SubscriptionSubmissionResponse); - -export type SubscriptionSubmissionsCreateInstanceError = (ErrorResponse); - -export type SubscriptionsCreateInstanceData = { - /** - * Subscription representation - */ - body: SubscriptionCreateRequest; -}; - -export type SubscriptionsCreateInstanceResponse = (SubscriptionResponse); - -export type SubscriptionsCreateInstanceError = (ErrorResponse); - -export type SubscriptionsGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type promotedPurchases - */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; - /** - * the fields to include for returned resources of type subscriptionAppStoreReviewScreenshots - */ - 'fields[subscriptionAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'subscription')>; - /** - * the fields to include for returned resources of type subscriptionAvailabilities - */ - 'fields[subscriptionAvailabilities]'?: Array<('availableInNewTerritories' | 'subscription' | 'availableTerritories')>; - /** - * the fields to include for returned resources of type subscriptionImages - */ - 'fields[subscriptionImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'uploaded' | 'state' | 'subscription')>; - /** - * the fields to include for returned resources of type subscriptionIntroductoryOffers - */ - 'fields[subscriptionIntroductoryOffers]'?: Array<('startDate' | 'endDate' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type subscriptionLocalizations - */ - 'fields[subscriptionLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'subscription')>; - /** - * the fields to include for returned resources of type subscriptionOfferCodes - */ - 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; - /** - * the fields to include for returned resources of type subscriptionPrices - */ - 'fields[subscriptionPrices]'?: Array<('startDate' | 'preserved' | 'preserveCurrentPrice' | 'subscription' | 'territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type subscriptionPromotionalOffers - */ - 'fields[subscriptionPromotionalOffers]'?: Array<('name' | 'offerCode' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'prices')>; - /** - * the fields to include for returned resources of type subscriptions - */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; - /** - * the fields to include for returned resources of type winBackOffers - */ - 'fields[winBackOffers]'?: Array<('referenceName' | 'offerId' | 'duration' | 'offerMode' | 'periodCount' | 'customerEligibilityPaidSubscriptionDurationInMonths' | 'customerEligibilityTimeSinceLastSubscribedInMonths' | 'customerEligibilityWaitBetweenOffersInMonths' | 'startDate' | 'endDate' | 'priority' | 'promotionIntent' | 'subscription' | 'prices')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; - /** - * maximum number of related images returned (when they are included) - */ - 'limit[images]'?: number; - /** - * maximum number of related introductoryOffers returned (when they are included) - */ - 'limit[introductoryOffers]'?: number; - /** - * maximum number of related offerCodes returned (when they are included) - */ - 'limit[offerCodes]'?: number; - /** - * maximum number of related prices returned (when they are included) - */ - 'limit[prices]'?: number; - /** - * maximum number of related promotionalOffers returned (when they are included) - */ - 'limit[promotionalOffers]'?: number; - /** - * maximum number of related subscriptionLocalizations returned (when they are included) - */ - 'limit[subscriptionLocalizations]'?: number; - /** - * maximum number of related winBackOffers returned (when they are included) - */ - 'limit[winBackOffers]'?: number; - }; -}; - -export type SubscriptionsGetInstanceResponse = (SubscriptionResponse); - -export type SubscriptionsGetInstanceError = (ErrorResponse); - -export type SubscriptionsUpdateInstanceData = { - /** - * Subscription representation - */ - body: SubscriptionUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionsUpdateInstanceResponse = (SubscriptionResponse); - -export type SubscriptionsUpdateInstanceError = (ErrorResponse); - -export type SubscriptionsDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type SubscriptionsDeleteInstanceResponse = (void); - -export type SubscriptionsDeleteInstanceError = (ErrorResponse); - -export type TerritoriesGetCollectionData = { - query?: { - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type TerritoriesGetCollectionResponse = (TerritoriesResponse); - -export type TerritoriesGetCollectionError = (ErrorResponse); - -export type TerritoryAvailabilitiesUpdateInstanceData = { - /** - * TerritoryAvailability representation - */ - body: TerritoryAvailabilityUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type TerritoryAvailabilitiesUpdateInstanceResponse = (TerritoryAvailabilityResponse); - -export type TerritoryAvailabilitiesUpdateInstanceError = (ErrorResponse); - -export type UserInvitationsGetCollectionData = { - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type userInvitations - */ - 'fields[userInvitations]'?: Array<('email' | 'firstName' | 'lastName' | 'expirationDate' | 'roles' | 'allAppsVisible' | 'provisioningAllowed' | 'visibleApps')>; - /** - * filter by attribute 'email' - */ - 'filter[email]'?: Array<(string)>; - /** - * filter by attribute 'roles' - */ - 'filter[roles]'?: Array<('ADMIN' | 'FINANCE' | 'ACCOUNT_HOLDER' | 'SALES' | 'MARKETING' | 'APP_MANAGER' | 'DEVELOPER' | 'ACCESS_TO_REPORTS' | 'CUSTOMER_SUPPORT' | 'CREATE_APPS' | 'CLOUD_MANAGED_DEVELOPER_ID' | 'CLOUD_MANAGED_APP_DISTRIBUTION' | 'GENERATE_INDIVIDUAL_KEYS')>; - /** - * filter by id(s) of related 'visibleApps' - */ - 'filter[visibleApps]'?: Array<(string)>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('visibleApps')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related visibleApps returned (when they are included) - */ - 'limit[visibleApps]'?: number; - /** - * comma-separated list of sort expressions; resources will be sorted as specified - */ - sort?: Array<('email' | '-email' | 'lastName' | '-lastName')>; - }; -}; - -export type UserInvitationsGetCollectionResponse = (UserInvitationsResponse); - -export type UserInvitationsGetCollectionError = (ErrorResponse); - -export type UserInvitationsCreateInstanceData = { - /** - * UserInvitation representation - */ - body: UserInvitationCreateRequest; -}; - -export type UserInvitationsCreateInstanceResponse = (UserInvitationResponse); - -export type UserInvitationsCreateInstanceError = (ErrorResponse); - -export type UserInvitationsGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type userInvitations - */ - 'fields[userInvitations]'?: Array<('email' | 'firstName' | 'lastName' | 'expirationDate' | 'roles' | 'allAppsVisible' | 'provisioningAllowed' | 'visibleApps')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('visibleApps')>; - /** - * maximum number of related visibleApps returned (when they are included) - */ - 'limit[visibleApps]'?: number; - }; -}; - -export type UserInvitationsGetInstanceResponse = (UserInvitationResponse); - -export type UserInvitationsGetInstanceError = (ErrorResponse); - -export type UserInvitationsDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type UserInvitationsDeleteInstanceResponse = (void); - -export type UserInvitationsDeleteInstanceError = (ErrorResponse); - -export type UsersGetCollectionData = { - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type users - */ - 'fields[users]'?: Array<('username' | 'firstName' | 'lastName' | 'roles' | 'allAppsVisible' | 'provisioningAllowed' | 'visibleApps')>; - /** - * filter by attribute 'roles' - */ - 'filter[roles]'?: Array<('ADMIN' | 'FINANCE' | 'ACCOUNT_HOLDER' | 'SALES' | 'MARKETING' | 'APP_MANAGER' | 'DEVELOPER' | 'ACCESS_TO_REPORTS' | 'CUSTOMER_SUPPORT' | 'CREATE_APPS' | 'CLOUD_MANAGED_DEVELOPER_ID' | 'CLOUD_MANAGED_APP_DISTRIBUTION' | 'GENERATE_INDIVIDUAL_KEYS')>; - /** - * filter by attribute 'username' - */ - 'filter[username]'?: Array<(string)>; - /** - * filter by id(s) of related 'visibleApps' - */ - 'filter[visibleApps]'?: Array<(string)>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('visibleApps')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related visibleApps returned (when they are included) - */ - 'limit[visibleApps]'?: number; - /** - * comma-separated list of sort expressions; resources will be sorted as specified - */ - sort?: Array<('username' | '-username' | 'lastName' | '-lastName')>; - }; -}; - -export type UsersGetCollectionResponse = (UsersResponse); - -export type UsersGetCollectionError = (ErrorResponse); - -export type UsersGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type users - */ - 'fields[users]'?: Array<('username' | 'firstName' | 'lastName' | 'roles' | 'allAppsVisible' | 'provisioningAllowed' | 'visibleApps')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('visibleApps')>; - /** - * maximum number of related visibleApps returned (when they are included) - */ - 'limit[visibleApps]'?: number; - }; -}; - -export type UsersGetInstanceResponse = (UserResponse); - -export type UsersGetInstanceError = (ErrorResponse); - -export type UsersUpdateInstanceData = { - /** - * User representation - */ - body: UserUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type UsersUpdateInstanceResponse = (UserResponse); - -export type UsersUpdateInstanceError = (ErrorResponse); - -export type UsersDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type UsersDeleteInstanceResponse = (void); - -export type UsersDeleteInstanceError = (ErrorResponse); - -export type WinBackOffersCreateInstanceData = { - /** - * WinBackOffer representation - */ - body: WinBackOfferCreateRequest; -}; - -export type WinBackOffersCreateInstanceResponse = (WinBackOfferResponse); - -export type WinBackOffersCreateInstanceError = (ErrorResponse); - -export type WinBackOffersGetInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type winBackOfferPrices - */ - 'fields[winBackOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type winBackOffers - */ - 'fields[winBackOffers]'?: Array<('referenceName' | 'offerId' | 'duration' | 'offerMode' | 'periodCount' | 'customerEligibilityPaidSubscriptionDurationInMonths' | 'customerEligibilityTimeSinceLastSubscribedInMonths' | 'customerEligibilityWaitBetweenOffersInMonths' | 'startDate' | 'endDate' | 'priority' | 'promotionIntent' | 'subscription' | 'prices')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('prices')>; - /** - * maximum number of related prices returned (when they are included) - */ - 'limit[prices]'?: number; - }; -}; - -export type WinBackOffersGetInstanceResponse = (WinBackOfferResponse); - -export type WinBackOffersGetInstanceError = (ErrorResponse); - -export type WinBackOffersUpdateInstanceData = { - /** - * WinBackOffer representation - */ - body: WinBackOfferUpdateRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type WinBackOffersUpdateInstanceResponse = (WinBackOfferResponse); - -export type WinBackOffersUpdateInstanceError = (ErrorResponse); - -export type WinBackOffersDeleteInstanceData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type WinBackOffersDeleteInstanceResponse = (void); - -export type WinBackOffersDeleteInstanceError = (ErrorResponse); - -export type AlternativeDistributionPackageVersionsDeltasGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type alternativeDistributionPackageDeltas - */ - 'fields[alternativeDistributionPackageDeltas]'?: Array<('url' | 'urlExpirationDate' | 'alternativeDistributionKeyBlob' | 'fileChecksum')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AlternativeDistributionPackageVersionsDeltasGetToManyRelatedResponse = (AlternativeDistributionPackageDeltasResponse); - -export type AlternativeDistributionPackageVersionsDeltasGetToManyRelatedError = (ErrorResponse); - -export type AlternativeDistributionPackageVersionsVariantsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type alternativeDistributionPackageVariants - */ - 'fields[alternativeDistributionPackageVariants]'?: Array<('url' | 'urlExpirationDate' | 'alternativeDistributionKeyBlob' | 'fileChecksum')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AlternativeDistributionPackageVersionsVariantsGetToManyRelatedResponse = (AlternativeDistributionPackageVariantsResponse); - -export type AlternativeDistributionPackageVersionsVariantsGetToManyRelatedError = (ErrorResponse); - -export type AlternativeDistributionPackagesVersionsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type alternativeDistributionPackageDeltas - */ - 'fields[alternativeDistributionPackageDeltas]'?: Array<('url' | 'urlExpirationDate' | 'alternativeDistributionKeyBlob' | 'fileChecksum')>; - /** - * the fields to include for returned resources of type alternativeDistributionPackages - */ - 'fields[alternativeDistributionPackages]'?: Array<('appStoreVersion' | 'versions')>; - /** - * the fields to include for returned resources of type alternativeDistributionPackageVariants - */ - 'fields[alternativeDistributionPackageVariants]'?: Array<('url' | 'urlExpirationDate' | 'alternativeDistributionKeyBlob' | 'fileChecksum')>; - /** - * the fields to include for returned resources of type alternativeDistributionPackageVersions - */ - 'fields[alternativeDistributionPackageVersions]'?: Array<('url' | 'urlExpirationDate' | 'version' | 'fileChecksum' | 'state' | 'variants' | 'deltas' | 'alternativeDistributionPackage')>; - /** - * filter by attribute 'state' - */ - 'filter[state]'?: Array<('COMPLETED' | 'REPLACED')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('variants' | 'deltas' | 'alternativeDistributionPackage')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related deltas returned (when they are included) - */ - 'limit[deltas]'?: number; - /** - * maximum number of related variants returned (when they are included) - */ - 'limit[variants]'?: number; - }; -}; - -export type AlternativeDistributionPackagesVersionsGetToManyRelatedResponse = (AlternativeDistributionPackageVersionsResponse); - -export type AlternativeDistributionPackagesVersionsGetToManyRelatedError = (ErrorResponse); - -export type AnalyticsReportInstancesSegmentsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type analyticsReportSegments - */ - 'fields[analyticsReportSegments]'?: Array<('checksum' | 'sizeInBytes' | 'url')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AnalyticsReportInstancesSegmentsGetToManyRelatedResponse = (AnalyticsReportSegmentsResponse); - -export type AnalyticsReportInstancesSegmentsGetToManyRelatedError = (ErrorResponse); - -export type AnalyticsReportRequestsReportsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type analyticsReports - */ - 'fields[analyticsReports]'?: Array<('name' | 'category' | 'instances')>; - /** - * filter by attribute 'category' - */ - 'filter[category]'?: Array<('APP_USAGE' | 'APP_STORE_ENGAGEMENT' | 'COMMERCE' | 'FRAMEWORK_USAGE' | 'PERFORMANCE')>; - /** - * filter by attribute 'name' - */ - 'filter[name]'?: Array<(string)>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AnalyticsReportRequestsReportsGetToManyRelatedResponse = (AnalyticsReportsResponse); - -export type AnalyticsReportRequestsReportsGetToManyRelatedError = (ErrorResponse); - -export type AnalyticsReportsInstancesGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type analyticsReportInstances - */ - 'fields[analyticsReportInstances]'?: Array<('granularity' | 'processingDate' | 'segments')>; - /** - * filter by attribute 'granularity' - */ - 'filter[granularity]'?: Array<('DAILY' | 'WEEKLY' | 'MONTHLY')>; - /** - * filter by attribute 'processingDate' - */ - 'filter[processingDate]'?: Array<(string)>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AnalyticsReportsInstancesGetToManyRelatedResponse = (AnalyticsReportInstancesResponse); - -export type AnalyticsReportsInstancesGetToManyRelatedError = (ErrorResponse); - -export type AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * the fields to include for returned resources of type territoryAvailabilities - */ - 'fields[territoryAvailabilities]'?: Array<('available' | 'releaseDate' | 'preOrderEnabled' | 'preOrderPublishDate' | 'contentStatuses' | 'territory')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('territory')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedResponse = (TerritoryAvailabilitiesResponse); - -export type AppAvailabilitiesV2TerritoryAvailabilitiesGetToManyRelatedError = (ErrorResponse); - -export type AppAvailabilitiesAvailableTerritoriesGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AppAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse = (TerritoriesResponse); - -export type AppAvailabilitiesAvailableTerritoriesGetToManyRelatedError = (ErrorResponse); - -export type AppCategoriesParentGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appCategories - */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; - }; -}; - -export type AppCategoriesParentGetToOneRelatedResponse = (AppCategoryWithoutIncludesResponse); - -export type AppCategoriesParentGetToOneRelatedError = (ErrorResponse); - -export type AppCategoriesSubcategoriesGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appCategories - */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AppCategoriesSubcategoriesGetToManyRelatedResponse = (AppCategoriesWithoutIncludesResponse); - -export type AppCategoriesSubcategoriesGetToManyRelatedError = (ErrorResponse); - -export type AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appClipDefaultExperienceLocalizations - */ - 'fields[appClipDefaultExperienceLocalizations]'?: Array<('locale' | 'subtitle' | 'appClipDefaultExperience' | 'appClipHeaderImage')>; - /** - * the fields to include for returned resources of type appClipHeaderImages - */ - 'fields[appClipHeaderImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appClipDefaultExperienceLocalization')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appClipDefaultExperienceLocalization')>; - }; -}; - -export type AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedResponse = (AppClipHeaderImageResponse); - -export type AppClipDefaultExperienceLocalizationsAppClipHeaderImageGetToOneRelatedError = (ErrorResponse); - -export type AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appClipAppStoreReviewDetails - */ - 'fields[appClipAppStoreReviewDetails]'?: Array<('invocationUrls' | 'appClipDefaultExperience')>; - /** - * the fields to include for returned resources of type appClipDefaultExperiences - */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appClipDefaultExperience')>; - }; -}; - -export type AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedResponse = (AppClipAppStoreReviewDetailResponse); - -export type AppClipDefaultExperiencesAppClipAppStoreReviewDetailGetToOneRelatedError = (ErrorResponse); - -export type AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appClipDefaultExperienceLocalizations - */ - 'fields[appClipDefaultExperienceLocalizations]'?: Array<('locale' | 'subtitle' | 'appClipDefaultExperience' | 'appClipHeaderImage')>; - /** - * the fields to include for returned resources of type appClipDefaultExperiences - */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; - /** - * the fields to include for returned resources of type appClipHeaderImages - */ - 'fields[appClipHeaderImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appClipDefaultExperienceLocalization')>; - /** - * filter by attribute 'locale' - */ - 'filter[locale]'?: Array<(string)>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appClipDefaultExperience' | 'appClipHeaderImage')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedResponse = (AppClipDefaultExperienceLocalizationsResponse); - -export type AppClipDefaultExperiencesAppClipDefaultExperienceLocalizationsGetToManyRelatedError = (ErrorResponse); - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipResponse = (AppClipDefaultExperienceReleaseWithAppStoreVersionLinkageResponse); - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelationshipError = (ErrorResponse); - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipData = { - /** - * Related linkage - */ - body: AppClipDefaultExperienceReleaseWithAppStoreVersionLinkageRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipResponse = (void); - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionUpdateToOneRelationshipError = (ErrorResponse); - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type ageRatingDeclarations - */ - 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; - /** - * the fields to include for returned resources of type alternativeDistributionPackages - */ - 'fields[alternativeDistributionPackages]'?: Array<('appStoreVersion' | 'versions')>; - /** - * the fields to include for returned resources of type appClipDefaultExperiences - */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type appStoreReviewDetails - */ - 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; - /** - * the fields to include for returned resources of type appStoreVersionExperiments - */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; - /** - * the fields to include for returned resources of type appStoreVersionLocalizations - */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appStoreVersionPhasedReleases - */ - 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber' | 'appStoreVersion')>; - /** - * the fields to include for returned resources of type appStoreVersions - */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; - /** - * the fields to include for returned resources of type appStoreVersionSubmissions - */ - 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; - /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - /** - * the fields to include for returned resources of type gameCenterAppVersions - */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; - /** - * the fields to include for returned resources of type routingAppCoverages - */ - 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreVersion')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; - /** - * maximum number of related appStoreVersionExperiments returned (when they are included) - * @deprecated - */ - 'limit[appStoreVersionExperiments]'?: number; - /** - * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) - */ - 'limit[appStoreVersionExperimentsV2]'?: number; - /** - * maximum number of related appStoreVersionLocalizations returned (when they are included) - */ - 'limit[appStoreVersionLocalizations]'?: number; - }; -}; - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedResponse = (AppStoreVersionResponse); - -export type AppClipDefaultExperiencesReleaseWithAppStoreVersionGetToOneRelatedError = (ErrorResponse); - -export type AppClipsAppClipAdvancedExperiencesGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appClipAdvancedExperienceImages - */ - 'fields[appClipAdvancedExperienceImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded')>; - /** - * the fields to include for returned resources of type appClipAdvancedExperienceLocalizations - */ - 'fields[appClipAdvancedExperienceLocalizations]'?: Array<('language' | 'title' | 'subtitle')>; - /** - * the fields to include for returned resources of type appClipAdvancedExperiences - */ - 'fields[appClipAdvancedExperiences]'?: Array<('link' | 'version' | 'status' | 'action' | 'isPoweredBy' | 'place' | 'placeStatus' | 'businessCategory' | 'defaultLanguage' | 'removed' | 'appClip' | 'headerImage' | 'localizations')>; - /** - * the fields to include for returned resources of type appClips - */ - 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; - /** - * filter by attribute 'action' - */ - 'filter[action]'?: Array<('OPEN' | 'VIEW' | 'PLAY')>; - /** - * filter by attribute 'placeStatus' - */ - 'filter[placeStatus]'?: Array<('PENDING' | 'MATCHED' | 'NO_MATCH')>; - /** - * filter by attribute 'status' - */ - 'filter[status]'?: Array<('RECEIVED' | 'DEACTIVATED' | 'APP_TRANSFER_IN_PROGRESS')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appClip' | 'headerImage' | 'localizations')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related localizations returned (when they are included) - */ - 'limit[localizations]'?: number; - }; -}; - -export type AppClipsAppClipAdvancedExperiencesGetToManyRelatedResponse = (AppClipAdvancedExperiencesResponse); - -export type AppClipsAppClipAdvancedExperiencesGetToManyRelatedError = (ErrorResponse); - -export type AppClipsAppClipDefaultExperiencesGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * filter by existence or non-existence of related 'releaseWithAppStoreVersion' - */ - 'exists[releaseWithAppStoreVersion]'?: boolean; - /** - * the fields to include for returned resources of type appClipAppStoreReviewDetails - */ - 'fields[appClipAppStoreReviewDetails]'?: Array<('invocationUrls' | 'appClipDefaultExperience')>; - /** - * the fields to include for returned resources of type appClipDefaultExperienceLocalizations - */ - 'fields[appClipDefaultExperienceLocalizations]'?: Array<('locale' | 'subtitle' | 'appClipDefaultExperience' | 'appClipHeaderImage')>; - /** - * the fields to include for returned resources of type appClipDefaultExperiences - */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; - /** - * the fields to include for returned resources of type appClips - */ - 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; - /** - * the fields to include for returned resources of type appStoreVersions - */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appClipDefaultExperienceLocalizations returned (when they are included) - */ - 'limit[appClipDefaultExperienceLocalizations]'?: number; - }; -}; - -export type AppClipsAppClipDefaultExperiencesGetToManyRelatedResponse = (AppClipDefaultExperiencesResponse); - -export type AppClipsAppClipDefaultExperiencesGetToManyRelatedError = (ErrorResponse); - -export type AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appCustomProductPageLocalizations - */ - 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appPreviews - */ - 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appPreviewSet')>; - /** - * the fields to include for returned resources of type appPreviewSets - */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; - /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations - */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appStoreVersionLocalizations - */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * filter by id(s) of related 'appStoreVersionExperimentTreatmentLocalization' - */ - 'filter[appStoreVersionExperimentTreatmentLocalization]'?: Array<(string)>; - /** - * filter by id(s) of related 'appStoreVersionLocalization' - */ - 'filter[appStoreVersionLocalization]'?: Array<(string)>; - /** - * filter by attribute 'previewType' - */ - 'filter[previewType]'?: Array<('IPHONE_67' | 'IPHONE_61' | 'IPHONE_65' | 'IPHONE_58' | 'IPHONE_55' | 'IPHONE_47' | 'IPHONE_40' | 'IPHONE_35' | 'IPAD_PRO_3GEN_129' | 'IPAD_PRO_3GEN_11' | 'IPAD_PRO_129' | 'IPAD_105' | 'IPAD_97' | 'DESKTOP' | 'APPLE_TV' | 'APPLE_VISION_PRO')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appPreviews returned (when they are included) - */ - 'limit[appPreviews]'?: number; - }; -}; - -export type AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedResponse = (AppPreviewSetsResponse); - -export type AppCustomProductPageLocalizationsAppPreviewSetsGetToManyRelatedError = (ErrorResponse); - -export type AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appCustomProductPageLocalizations - */ - 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appScreenshots - */ - 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appScreenshotSet')>; - /** - * the fields to include for returned resources of type appScreenshotSets - */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; - /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations - */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appStoreVersionLocalizations - */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * filter by id(s) of related 'appStoreVersionExperimentTreatmentLocalization' - */ - 'filter[appStoreVersionExperimentTreatmentLocalization]'?: Array<(string)>; - /** - * filter by id(s) of related 'appStoreVersionLocalization' - */ - 'filter[appStoreVersionLocalization]'?: Array<(string)>; - /** - * filter by attribute 'screenshotDisplayType' - */ - 'filter[screenshotDisplayType]'?: Array<('APP_IPHONE_67' | 'APP_IPHONE_61' | 'APP_IPHONE_65' | 'APP_IPHONE_58' | 'APP_IPHONE_55' | 'APP_IPHONE_47' | 'APP_IPHONE_40' | 'APP_IPHONE_35' | 'APP_IPAD_PRO_3GEN_129' | 'APP_IPAD_PRO_3GEN_11' | 'APP_IPAD_PRO_129' | 'APP_IPAD_105' | 'APP_IPAD_97' | 'APP_DESKTOP' | 'APP_WATCH_ULTRA' | 'APP_WATCH_SERIES_10' | 'APP_WATCH_SERIES_7' | 'APP_WATCH_SERIES_4' | 'APP_WATCH_SERIES_3' | 'APP_APPLE_TV' | 'APP_APPLE_VISION_PRO' | 'IMESSAGE_APP_IPHONE_67' | 'IMESSAGE_APP_IPHONE_61' | 'IMESSAGE_APP_IPHONE_65' | 'IMESSAGE_APP_IPHONE_58' | 'IMESSAGE_APP_IPHONE_55' | 'IMESSAGE_APP_IPHONE_47' | 'IMESSAGE_APP_IPHONE_40' | 'IMESSAGE_APP_IPAD_PRO_3GEN_129' | 'IMESSAGE_APP_IPAD_PRO_3GEN_11' | 'IMESSAGE_APP_IPAD_PRO_129' | 'IMESSAGE_APP_IPAD_105' | 'IMESSAGE_APP_IPAD_97')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appScreenshots returned (when they are included) - */ - 'limit[appScreenshots]'?: number; - }; -}; - -export type AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedResponse = (AppScreenshotSetsResponse); - -export type AppCustomProductPageLocalizationsAppScreenshotSetsGetToManyRelatedError = (ErrorResponse); - -export type AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appCustomProductPageLocalizations - */ - 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appCustomProductPageVersions - */ - 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; - /** - * the fields to include for returned resources of type appPreviewSets - */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; - /** - * the fields to include for returned resources of type appScreenshotSets - */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; - /** - * filter by attribute 'locale' - */ - 'filter[locale]'?: Array<(string)>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appPreviewSets returned (when they are included) - */ - 'limit[appPreviewSets]'?: number; - /** - * maximum number of related appScreenshotSets returned (when they are included) - */ - 'limit[appScreenshotSets]'?: number; - }; -}; - -export type AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedResponse = (AppCustomProductPageLocalizationsResponse); - -export type AppCustomProductPageVersionsAppCustomProductPageLocalizationsGetToManyRelatedError = (ErrorResponse); - -export type AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appCustomProductPageLocalizations - */ - 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appCustomProductPages - */ - 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions' | 'appStoreVersionTemplate' | 'customProductPageTemplate')>; - /** - * the fields to include for returned resources of type appCustomProductPageVersions - */ - 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; - /** - * filter by attribute 'state' - */ - 'filter[state]'?: Array<('PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REPLACED_WITH_NEW_VERSION' | 'REJECTED')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appCustomProductPage' | 'appCustomProductPageLocalizations')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appCustomProductPageLocalizations returned (when they are included) - */ - 'limit[appCustomProductPageLocalizations]'?: number; - }; -}; - -export type AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedResponse = (AppCustomProductPageVersionsResponse); - -export type AppCustomProductPagesAppCustomProductPageVersionsGetToManyRelatedError = (ErrorResponse); - -export type AppEncryptionDeclarationsAppGetToOneRelatedData = { - path: { + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - }; -}; - -export type AppEncryptionDeclarationsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); - -export type AppEncryptionDeclarationsAppGetToOneRelatedError = (ErrorResponse); - -export type AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appEncryptionDeclarationDocuments - */ - 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEncryptionDeclaration')>; - }; -}; - -export type AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedResponse = (AppEncryptionDeclarationDocumentResponse); - -export type AppEncryptionDeclarationsAppEncryptionDeclarationDocumentGetToOneRelatedError = (ErrorResponse); - -export type AppEncryptionDeclarationsBuildsCreateToManyRelationshipData = { - /** - * List of related linkages - */ - body: AppEncryptionDeclarationBuildsLinkagesRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; -}; - -export type AppEncryptionDeclarationsBuildsCreateToManyRelationshipResponse = (void); - -export type AppEncryptionDeclarationsBuildsCreateToManyRelationshipError = (ErrorResponse); - -export type AppEventLocalizationsAppEventScreenshotsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appEventLocalizations - */ - 'fields[appEventLocalizations]'?: Array<('locale' | 'name' | 'shortDescription' | 'longDescription' | 'appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; - /** - * the fields to include for returned resources of type appEventScreenshots - */ - 'fields[appEventScreenshots]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'assetToken' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEventAssetType' | 'appEventLocalization')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appEventLocalization')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AppEventLocalizationsAppEventScreenshotsGetToManyRelatedResponse = (AppEventScreenshotsResponse); - -export type AppEventLocalizationsAppEventScreenshotsGetToManyRelatedError = (ErrorResponse); - -export type AppEventLocalizationsAppEventVideoClipsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appEventLocalizations - */ - 'fields[appEventLocalizations]'?: Array<('locale' | 'name' | 'shortDescription' | 'longDescription' | 'appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; - /** - * the fields to include for returned resources of type appEventVideoClips - */ - 'fields[appEventVideoClips]'?: Array<('fileSize' | 'fileName' | 'previewFrameTimeCode' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEventAssetType' | 'appEventLocalization')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appEventLocalization')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type AppEventLocalizationsAppEventVideoClipsGetToManyRelatedResponse = (AppEventVideoClipsResponse); - -export type AppEventLocalizationsAppEventVideoClipsGetToManyRelatedError = (ErrorResponse); - -export type AppEventsLocalizationsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appEventLocalizations - */ - 'fields[appEventLocalizations]'?: Array<('locale' | 'name' | 'shortDescription' | 'longDescription' | 'appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; - /** - * the fields to include for returned resources of type appEvents - */ - 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'app' | 'localizations')>; - /** - * the fields to include for returned resources of type appEventScreenshots + * the fields to include for returned resources of type appStoreVersions */ - 'fields[appEventScreenshots]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'assetToken' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEventAssetType' | 'appEventLocalization')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the fields to include for returned resources of type appEventVideoClips + * the fields to include for returned resources of type betaAppLocalizations */ - 'fields[appEventVideoClips]'?: Array<('fileSize' | 'fileName' | 'previewFrameTimeCode' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEventAssetType' | 'appEventLocalization')>; + 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type betaAppReviewDetails */ - include?: Array<('appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; + 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; /** - * maximum resources per page + * the fields to include for returned resources of type betaGroups */ - limit?: number; + 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; /** - * maximum number of related appEventScreenshots returned (when they are included) + * the fields to include for returned resources of type betaLicenseAgreements */ - 'limit[appEventScreenshots]'?: number; + 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; /** - * maximum number of related appEventVideoClips returned (when they are included) + * the fields to include for returned resources of type builds */ - 'limit[appEventVideoClips]'?: number; - }; -}; - -export type AppEventsLocalizationsGetToManyRelatedResponse = (AppEventLocalizationsResponse); - -export type AppEventsLocalizationsGetToManyRelatedError = (ErrorResponse); - -export type AppInfosAgeRatingDeclarationGetToOneRelatedData = { - path: { + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * the id of the requested resource + * the fields to include for returned resources of type ciProducts */ - id: string; - }; - query?: { + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** - * the fields to include for returned resources of type ageRatingDeclarations + * the fields to include for returned resources of type endUserLicenseAgreements */ - 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; - }; -}; - -export type AppInfosAgeRatingDeclarationGetToOneRelatedResponse = (AgeRatingDeclarationResponse); - -export type AppInfosAgeRatingDeclarationGetToOneRelatedError = (ErrorResponse); - -export type AppInfosAppInfoLocalizationsGetToManyRelatedData = { - path: { + 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; /** - * the id of the requested resource + * the fields to include for returned resources of type gameCenterDetails */ - id: string; - }; - query?: { + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the fields to include for returned resources of type appInfoLocalizations + * the fields to include for returned resources of type gameCenterEnabledVersions */ - 'fields[appInfoLocalizations]'?: Array<('locale' | 'name' | 'subtitle' | 'privacyPolicyUrl' | 'privacyChoicesUrl' | 'privacyPolicyText' | 'appInfo')>; + 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; /** - * the fields to include for returned resources of type appInfos + * the fields to include for returned resources of type inAppPurchases */ - 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; + 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps' | 'name' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** - * filter by attribute 'locale' + * the fields to include for returned resources of type preReleaseVersions */ - 'filter[locale]'?: Array<(string)>; + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type promotedPurchases */ - include?: Array<('appInfo')>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * maximum resources per page + * the fields to include for returned resources of type reviewSubmissions */ - limit?: number; - }; -}; - -export type AppInfosAppInfoLocalizationsGetToManyRelatedResponse = (AppInfoLocalizationsResponse); - -export type AppInfosAppInfoLocalizationsGetToManyRelatedError = (ErrorResponse); - -export type AppInfosPrimaryCategoryGetToOneRelatedData = { - path: { + 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; /** - * the id of the requested resource + * the fields to include for returned resources of type subscriptionGracePeriods */ - id: string; - }; - query?: { + 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; /** - * the fields to include for returned resources of type appCategories + * the fields to include for returned resources of type subscriptionGroups */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + 'fields[subscriptionGroups]'?: Array<('referenceName' | 'subscriptions' | 'subscriptionGroupLocalizations')>; /** * comma-separated list of relationships to include */ - include?: Array<('subcategories' | 'parent')>; + include?: Array<('appEncryptionDeclarations' | 'ciProduct' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'endUserLicenseAgreement' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2')>; /** - * maximum number of related subcategories returned (when they are included) + * maximum number of related appClips returned (when they are included) */ - 'limit[subcategories]'?: number; - }; -}; - -export type AppInfosPrimaryCategoryGetToOneRelatedResponse = (AppCategoryResponse); - -export type AppInfosPrimaryCategoryGetToOneRelatedError = (ErrorResponse); - -export type AppInfosPrimarySubcategoryOneGetToOneRelatedData = { - path: { + 'limit[appClips]'?: number; /** - * the id of the requested resource + * maximum number of related appCustomProductPages returned (when they are included) */ - id: string; - }; - query?: { + 'limit[appCustomProductPages]'?: number; /** - * the fields to include for returned resources of type appCategories + * maximum number of related appEncryptionDeclarations returned (when they are included) */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + 'limit[appEncryptionDeclarations]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related appEvents returned (when they are included) */ - include?: Array<('subcategories' | 'parent')>; + 'limit[appEvents]'?: number; /** - * maximum number of related subcategories returned (when they are included) + * maximum number of related appInfos returned (when they are included) */ - 'limit[subcategories]'?: number; - }; -}; - -export type AppInfosPrimarySubcategoryOneGetToOneRelatedResponse = (AppCategoryResponse); - -export type AppInfosPrimarySubcategoryOneGetToOneRelatedError = (ErrorResponse); - -export type AppInfosPrimarySubcategoryTwoGetToOneRelatedData = { - path: { + 'limit[appInfos]'?: number; /** - * the id of the requested resource + * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) */ - id: string; - }; - query?: { + 'limit[appStoreVersionExperimentsV2]'?: number; /** - * the fields to include for returned resources of type appCategories + * maximum number of related appStoreVersions returned (when they are included) */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + 'limit[appStoreVersions]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related betaAppLocalizations returned (when they are included) */ - include?: Array<('subcategories' | 'parent')>; + 'limit[betaAppLocalizations]'?: number; /** - * maximum number of related subcategories returned (when they are included) + * maximum number of related betaGroups returned (when they are included) */ - 'limit[subcategories]'?: number; - }; -}; - -export type AppInfosPrimarySubcategoryTwoGetToOneRelatedResponse = (AppCategoryResponse); - -export type AppInfosPrimarySubcategoryTwoGetToOneRelatedError = (ErrorResponse); - -export type AppInfosSecondaryCategoryGetToOneRelatedData = { - path: { + 'limit[betaGroups]'?: number; /** - * the id of the requested resource + * maximum number of related builds returned (when they are included) */ - id: string; - }; - query?: { + 'limit[builds]'?: number; /** - * the fields to include for returned resources of type appCategories + * maximum number of related gameCenterEnabledVersions returned (when they are included) + * @deprecated */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + 'limit[gameCenterEnabledVersions]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related inAppPurchases returned (when they are included) + * @deprecated */ - include?: Array<('subcategories' | 'parent')>; + 'limit[inAppPurchases]'?: number; /** - * maximum number of related subcategories returned (when they are included) + * maximum number of related inAppPurchasesV2 returned (when they are included) */ - 'limit[subcategories]'?: number; - }; -}; - -export type AppInfosSecondaryCategoryGetToOneRelatedResponse = (AppCategoryResponse); - -export type AppInfosSecondaryCategoryGetToOneRelatedError = (ErrorResponse); - -export type AppInfosSecondarySubcategoryOneGetToOneRelatedData = { - path: { + 'limit[inAppPurchasesV2]'?: number; /** - * the id of the requested resource + * maximum number of related preReleaseVersions returned (when they are included) */ - id: string; - }; - query?: { + 'limit[preReleaseVersions]'?: number; /** - * the fields to include for returned resources of type appCategories + * maximum number of related promotedPurchases returned (when they are included) */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + 'limit[promotedPurchases]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related reviewSubmissions returned (when they are included) */ - include?: Array<('subcategories' | 'parent')>; + 'limit[reviewSubmissions]'?: number; /** - * maximum number of related subcategories returned (when they are included) + * maximum number of related subscriptionGroups returned (when they are included) */ - 'limit[subcategories]'?: number; + 'limit[subscriptionGroups]'?: number; }; }; -export type AppInfosSecondarySubcategoryOneGetToOneRelatedResponse = (AppCategoryResponse); +export type CiProductsAppGetToOneRelatedResponse = (AppResponse); -export type AppInfosSecondarySubcategoryOneGetToOneRelatedError = (ErrorResponse); +export type CiProductsAppGetToOneRelatedError = (ErrorResponse); -export type AppInfosSecondarySubcategoryTwoGetToOneRelatedData = { +export type CiProductsBuildRunsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -22960,92 +22366,57 @@ export type AppInfosSecondarySubcategoryTwoGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appCategories + * the fields to include for returned resources of type builds */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type ciBuildRuns */ - include?: Array<('subcategories' | 'parent')>; + 'fields[ciBuildRuns]'?: Array<('number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; /** - * maximum number of related subcategories returned (when they are included) + * the fields to include for returned resources of type ciProducts */ - 'limit[subcategories]'?: number; - }; -}; - -export type AppInfosSecondarySubcategoryTwoGetToOneRelatedResponse = (AppCategoryResponse); - -export type AppInfosSecondarySubcategoryTwoGetToOneRelatedError = (ErrorResponse); - -export type AppPreviewSetsAppPreviewsGetToManyRelationshipData = { - path: { + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** - * the id of the requested resource + * the fields to include for returned resources of type ciWorkflows */ - id: string; - }; - query?: { + 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; /** - * maximum resources per page + * the fields to include for returned resources of type scmGitReferences */ - limit?: number; - }; -}; - -export type AppPreviewSetsAppPreviewsGetToManyRelationshipResponse = (AppPreviewSetAppPreviewsLinkagesResponse); - -export type AppPreviewSetsAppPreviewsGetToManyRelationshipError = (ErrorResponse); - -export type AppPreviewSetsAppPreviewsReplaceToManyRelationshipData = { - /** - * List of related linkages - */ - body: AppPreviewSetAppPreviewsLinkagesRequest; - path: { + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** - * the id of the requested resource + * the fields to include for returned resources of type scmPullRequests */ - id: string; - }; -}; - -export type AppPreviewSetsAppPreviewsReplaceToManyRelationshipResponse = (void); - -export type AppPreviewSetsAppPreviewsReplaceToManyRelationshipError = (ErrorResponse); - -export type AppPreviewSetsAppPreviewsGetToManyRelatedData = { - path: { + 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; /** - * the id of the requested resource + * filter by id(s) of related 'builds' */ - id: string; - }; - query?: { + 'filter[builds]'?: Array<(string)>; /** - * the fields to include for returned resources of type appPreviews + * comma-separated list of relationships to include */ - 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appPreviewSet')>; + include?: Array<('builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'pullRequest')>; /** - * the fields to include for returned resources of type appPreviewSets + * maximum resources per page */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + limit?: number; /** - * comma-separated list of relationships to include + * maximum number of related builds returned (when they are included) */ - include?: Array<('appPreviewSet')>; + 'limit[builds]'?: number; /** - * maximum resources per page + * comma-separated list of sort expressions; resources will be sorted as specified */ - limit?: number; + sort?: Array<('number' | '-number')>; }; }; -export type AppPreviewSetsAppPreviewsGetToManyRelatedResponse = (AppPreviewsResponse); +export type CiProductsBuildRunsGetToManyRelatedResponse = (CiBuildRunsResponse); -export type AppPreviewSetsAppPreviewsGetToManyRelatedError = (ErrorResponse); +export type CiProductsBuildRunsGetToManyRelatedError = (ErrorResponse); -export type AppPricePointsV3EqualizationsGetToManyRelatedData = { +export type CiProductsPrimaryRepositoriesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -23054,25 +22425,25 @@ export type AppPricePointsV3EqualizationsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appPricePoints + * the fields to include for returned resources of type scmGitReferences */ - 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type scmProviders */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type scmRepositories */ - 'fields[territories]'?: Array<('currency')>; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** - * filter by id(s) of related 'territory' + * filter by id(s) */ - 'filter[territory]'?: Array<(string)>; + 'filter[id]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'territory')>; + include?: Array<('scmProvider' | 'defaultBranch')>; /** * maximum resources per page */ @@ -23080,11 +22451,11 @@ export type AppPricePointsV3EqualizationsGetToManyRelatedData = { }; }; -export type AppPricePointsV3EqualizationsGetToManyRelatedResponse = (AppPricePointsV3Response); +export type CiProductsPrimaryRepositoriesGetToManyRelatedResponse = (ScmRepositoriesResponse); -export type AppPricePointsV3EqualizationsGetToManyRelatedError = (ErrorResponse); +export type CiProductsPrimaryRepositoriesGetToManyRelatedError = (ErrorResponse); -export type AppPriceSchedulesAutomaticPricesGetToManyRelatedData = { +export type CiProductsWorkflowsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -23093,33 +22464,29 @@ export type AppPriceSchedulesAutomaticPricesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appPricePoints - */ - 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; - /** - * the fields to include for returned resources of type appPrices + * the fields to include for returned resources of type ciMacOsVersions */ - 'fields[appPrices]'?: Array<('manual' | 'startDate' | 'endDate' | 'appPricePoint' | 'territory')>; + 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type ciProducts */ - 'fields[territories]'?: Array<('currency')>; + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** - * filter by attribute 'endDate' + * the fields to include for returned resources of type ciWorkflows */ - 'filter[endDate]'?: Array<(string)>; + 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; /** - * filter by attribute 'startDate' + * the fields to include for returned resources of type ciXcodeVersions */ - 'filter[startDate]'?: Array<(string)>; + 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; /** - * filter by id(s) of related 'territory' + * the fields to include for returned resources of type scmRepositories */ - 'filter[territory]'?: Array<(string)>; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** * comma-separated list of relationships to include */ - include?: Array<('appPricePoint' | 'territory')>; + include?: Array<('product' | 'repository' | 'xcodeVersion' | 'macOsVersion')>; /** * maximum resources per page */ @@ -23127,11 +22494,11 @@ export type AppPriceSchedulesAutomaticPricesGetToManyRelatedData = { }; }; -export type AppPriceSchedulesAutomaticPricesGetToManyRelatedResponse = (AppPricesV2Response); +export type CiProductsWorkflowsGetToManyRelatedResponse = (CiWorkflowsResponse); -export type AppPriceSchedulesAutomaticPricesGetToManyRelatedError = (ErrorResponse); +export type CiProductsWorkflowsGetToManyRelatedError = (ErrorResponse); -export type AppPriceSchedulesBaseTerritoryGetToOneRelatedData = { +export type CiTestResultsGetInstanceData = { path: { /** * the id of the requested resource @@ -23140,17 +22507,28 @@ export type AppPriceSchedulesBaseTerritoryGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type ciTestResults */ - 'fields[territories]'?: Array<('currency')>; + 'fields[ciTestResults]'?: Array<('className' | 'name' | 'status' | 'fileSource' | 'message' | 'destinationTestResults')>; }; }; -export type AppPriceSchedulesBaseTerritoryGetToOneRelatedResponse = (TerritoryResponse); +export type CiTestResultsGetInstanceResponse = (CiTestResultResponse); -export type AppPriceSchedulesBaseTerritoryGetToOneRelatedError = (ErrorResponse); +export type CiTestResultsGetInstanceError = (ErrorResponse); -export type AppPriceSchedulesManualPricesGetToManyRelatedData = { +export type CiWorkflowsCreateInstanceData = { + /** + * CiWorkflow representation + */ + body: CiWorkflowCreateRequest; +}; + +export type CiWorkflowsCreateInstanceResponse = (CiWorkflowResponse); + +export type CiWorkflowsCreateInstanceError = (ErrorResponse); + +export type CiWorkflowsGetInstanceData = { path: { /** * the id of the requested resource @@ -23159,68 +22537,42 @@ export type AppPriceSchedulesManualPricesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appPricePoints - */ - 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; - /** - * the fields to include for returned resources of type appPrices - */ - 'fields[appPrices]'?: Array<('manual' | 'startDate' | 'endDate' | 'appPricePoint' | 'territory')>; - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * filter by attribute 'endDate' - */ - 'filter[endDate]'?: Array<(string)>; - /** - * filter by attribute 'startDate' + * the fields to include for returned resources of type ciWorkflows */ - 'filter[startDate]'?: Array<(string)>; + 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; /** - * filter by id(s) of related 'territory' + * the fields to include for returned resources of type scmRepositories */ - 'filter[territory]'?: Array<(string)>; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** * comma-separated list of relationships to include */ - include?: Array<('appPricePoint' | 'territory')>; - /** - * maximum resources per page - */ - limit?: number; + include?: Array<('product' | 'repository' | 'xcodeVersion' | 'macOsVersion')>; }; }; -export type AppPriceSchedulesManualPricesGetToManyRelatedResponse = (AppPricesV2Response); +export type CiWorkflowsGetInstanceResponse = (CiWorkflowResponse); -export type AppPriceSchedulesManualPricesGetToManyRelatedError = (ErrorResponse); +export type CiWorkflowsGetInstanceError = (ErrorResponse); -export type AppScreenshotSetsAppScreenshotsGetToManyRelationshipData = { +export type CiWorkflowsUpdateInstanceData = { + /** + * CiWorkflow representation + */ + body: CiWorkflowUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type AppScreenshotSetsAppScreenshotsGetToManyRelationshipResponse = (AppScreenshotSetAppScreenshotsLinkagesResponse); +export type CiWorkflowsUpdateInstanceResponse = (CiWorkflowResponse); -export type AppScreenshotSetsAppScreenshotsGetToManyRelationshipError = (ErrorResponse); +export type CiWorkflowsUpdateInstanceError = (ErrorResponse); -export type AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipData = { - /** - * List of related linkages - */ - body: AppScreenshotSetAppScreenshotsLinkagesRequest; +export type CiWorkflowsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -23229,11 +22581,11 @@ export type AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipData = { }; }; -export type AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipResponse = (void); +export type CiWorkflowsDeleteInstanceResponse = (void); -export type AppScreenshotSetsAppScreenshotsReplaceToManyRelationshipError = (ErrorResponse); +export type CiWorkflowsDeleteInstanceError = (ErrorResponse); -export type AppScreenshotSetsAppScreenshotsGetToManyRelatedData = { +export type CiWorkflowsBuildRunsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -23242,60 +22594,57 @@ export type AppScreenshotSetsAppScreenshotsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appScreenshots + * the fields to include for returned resources of type builds */ - 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appScreenshotSet')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * the fields to include for returned resources of type appScreenshotSets + * the fields to include for returned resources of type ciBuildRuns */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + 'fields[ciBuildRuns]'?: Array<('number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type ciProducts */ - include?: Array<('appScreenshotSet')>; + 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; /** - * maximum resources per page + * the fields to include for returned resources of type ciWorkflows */ - limit?: number; - }; -}; - -export type AppScreenshotSetsAppScreenshotsGetToManyRelatedResponse = (AppScreenshotsResponse); - -export type AppScreenshotSetsAppScreenshotsGetToManyRelatedError = (ErrorResponse); - -export type AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedData = { - path: { + 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; /** - * the id of the requested resource + * the fields to include for returned resources of type scmGitReferences */ - id: string; - }; - query?: { + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** - * the fields to include for returned resources of type appStoreReviewAttachments + * the fields to include for returned resources of type scmPullRequests */ - 'fields[appStoreReviewAttachments]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreReviewDetail')>; + 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; /** - * the fields to include for returned resources of type appStoreReviewDetails + * filter by id(s) of related 'builds' */ - 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + 'filter[builds]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreReviewDetail')>; + include?: Array<('builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'pullRequest')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related builds returned (when they are included) + */ + 'limit[builds]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('number' | '-number')>; }; }; -export type AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedResponse = (AppStoreReviewAttachmentsResponse); +export type CiWorkflowsBuildRunsGetToManyRelatedResponse = (CiBuildRunsResponse); -export type AppStoreReviewDetailsAppStoreReviewAttachmentsGetToManyRelatedError = (ErrorResponse); +export type CiWorkflowsBuildRunsGetToManyRelatedError = (ErrorResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedData = { +export type CiWorkflowsRepositoryGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -23304,57 +22653,58 @@ export type AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToMa }; query?: { /** - * the fields to include for returned resources of type appCustomProductPageLocalizations - */ - 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appPreviews - */ - 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appPreviewSet')>; - /** - * the fields to include for returned resources of type appPreviewSets + * the fields to include for returned resources of type scmGitReferences */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * the fields to include for returned resources of type scmProviders */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; /** - * the fields to include for returned resources of type appStoreVersionLocalizations + * the fields to include for returned resources of type scmRepositories */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** - * filter by id(s) of related 'appCustomProductPageLocalization' + * comma-separated list of relationships to include */ - 'filter[appCustomProductPageLocalization]'?: Array<(string)>; + include?: Array<('scmProvider' | 'defaultBranch')>; + }; +}; + +export type CiWorkflowsRepositoryGetToOneRelatedResponse = (ScmRepositoryResponse); + +export type CiWorkflowsRepositoryGetToOneRelatedError = (ErrorResponse); + +export type CiXcodeVersionsGetCollectionData = { + query?: { /** - * filter by id(s) of related 'appStoreVersionLocalization' + * the fields to include for returned resources of type ciMacOsVersions */ - 'filter[appStoreVersionLocalization]'?: Array<(string)>; + 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; /** - * filter by attribute 'previewType' + * the fields to include for returned resources of type ciXcodeVersions */ - 'filter[previewType]'?: Array<('IPHONE_67' | 'IPHONE_61' | 'IPHONE_65' | 'IPHONE_58' | 'IPHONE_55' | 'IPHONE_47' | 'IPHONE_40' | 'IPHONE_35' | 'IPAD_PRO_3GEN_129' | 'IPAD_PRO_3GEN_11' | 'IPAD_PRO_129' | 'IPAD_105' | 'IPAD_97' | 'DESKTOP' | 'APPLE_TV' | 'APPLE_VISION_PRO')>; + 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + include?: Array<('macOsVersions')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related appPreviews returned (when they are included) + * maximum number of related macOsVersions returned (when they are included) */ - 'limit[appPreviews]'?: number; + 'limit[macOsVersions]'?: number; }; }; -export type AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedResponse = (AppPreviewSetsResponse); +export type CiXcodeVersionsGetCollectionResponse = (CiXcodeVersionsResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsAppPreviewSetsGetToManyRelatedError = (ErrorResponse); +export type CiXcodeVersionsGetCollectionError = (ErrorResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedData = { +export type CiXcodeVersionsGetInstanceData = { path: { /** * the id of the requested resource @@ -23363,57 +22713,75 @@ export type AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetT }; query?: { /** - * the fields to include for returned resources of type appCustomProductPageLocalizations - */ - 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appScreenshots + * the fields to include for returned resources of type ciMacOsVersions */ - 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appScreenshotSet')>; + 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; /** - * the fields to include for returned resources of type appScreenshotSets + * the fields to include for returned resources of type ciXcodeVersions */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * comma-separated list of relationships to include */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + include?: Array<('macOsVersions')>; /** - * the fields to include for returned resources of type appStoreVersionLocalizations + * maximum number of related macOsVersions returned (when they are included) */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + 'limit[macOsVersions]'?: number; + }; +}; + +export type CiXcodeVersionsGetInstanceResponse = (CiXcodeVersionResponse); + +export type CiXcodeVersionsGetInstanceError = (ErrorResponse); + +export type CiXcodeVersionsMacOsVersionsGetToManyRelatedData = { + path: { /** - * filter by id(s) of related 'appCustomProductPageLocalization' + * the id of the requested resource */ - 'filter[appCustomProductPageLocalization]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by id(s) of related 'appStoreVersionLocalization' + * the fields to include for returned resources of type ciMacOsVersions */ - 'filter[appStoreVersionLocalization]'?: Array<(string)>; + 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; /** - * filter by attribute 'screenshotDisplayType' + * the fields to include for returned resources of type ciXcodeVersions */ - 'filter[screenshotDisplayType]'?: Array<('APP_IPHONE_67' | 'APP_IPHONE_61' | 'APP_IPHONE_65' | 'APP_IPHONE_58' | 'APP_IPHONE_55' | 'APP_IPHONE_47' | 'APP_IPHONE_40' | 'APP_IPHONE_35' | 'APP_IPAD_PRO_3GEN_129' | 'APP_IPAD_PRO_3GEN_11' | 'APP_IPAD_PRO_129' | 'APP_IPAD_105' | 'APP_IPAD_97' | 'APP_DESKTOP' | 'APP_WATCH_ULTRA' | 'APP_WATCH_SERIES_10' | 'APP_WATCH_SERIES_7' | 'APP_WATCH_SERIES_4' | 'APP_WATCH_SERIES_3' | 'APP_APPLE_TV' | 'APP_APPLE_VISION_PRO' | 'IMESSAGE_APP_IPHONE_67' | 'IMESSAGE_APP_IPHONE_61' | 'IMESSAGE_APP_IPHONE_65' | 'IMESSAGE_APP_IPHONE_58' | 'IMESSAGE_APP_IPHONE_55' | 'IMESSAGE_APP_IPHONE_47' | 'IMESSAGE_APP_IPHONE_40' | 'IMESSAGE_APP_IPAD_PRO_3GEN_129' | 'IMESSAGE_APP_IPAD_PRO_3GEN_11' | 'IMESSAGE_APP_IPAD_PRO_129' | 'IMESSAGE_APP_IPAD_105' | 'IMESSAGE_APP_IPAD_97')>; + 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + include?: Array<('xcodeVersions')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related appScreenshots returned (when they are included) + * maximum number of related xcodeVersions returned (when they are included) */ - 'limit[appScreenshots]'?: number; + 'limit[xcodeVersions]'?: number; }; }; -export type AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedResponse = (AppScreenshotSetsResponse); +export type CiXcodeVersionsMacOsVersionsGetToManyRelatedResponse = (CiMacOsVersionsResponse); -export type AppStoreVersionExperimentTreatmentLocalizationsAppScreenshotSetsGetToManyRelatedError = (ErrorResponse); +export type CiXcodeVersionsMacOsVersionsGetToManyRelatedError = (ErrorResponse); -export type AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedData = { +export type CustomerReviewResponsesCreateInstanceData = { + /** + * CustomerReviewResponse representation + */ + body: CustomerReviewResponseV1CreateRequest; +}; + +export type CustomerReviewResponsesCreateInstanceResponse = (CustomerReviewResponseV1Response); + +export type CustomerReviewResponsesCreateInstanceError = (ErrorResponse); + +export type CustomerReviewResponsesGetInstanceData = { path: { /** * the id of the requested resource @@ -23422,49 +22790,61 @@ export type AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmen }; query?: { /** - * the fields to include for returned resources of type appPreviewSets - */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; - /** - * the fields to include for returned resources of type appScreenshotSets - */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; - /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * the fields to include for returned resources of type customerReviewResponses */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments + * comma-separated list of relationships to include */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + include?: Array<('review')>; + }; +}; + +export type CustomerReviewResponsesGetInstanceResponse = (CustomerReviewResponseV1Response); + +export type CustomerReviewResponsesGetInstanceError = (ErrorResponse); + +export type CustomerReviewResponsesDeleteInstanceData = { + path: { /** - * filter by attribute 'locale' + * the id of the requested resource */ - 'filter[locale]'?: Array<(string)>; + id: string; + }; +}; + +export type CustomerReviewResponsesDeleteInstanceResponse = (void); + +export type CustomerReviewResponsesDeleteInstanceError = (ErrorResponse); + +export type CustomerReviewsGetInstanceData = { + path: { /** - * comma-separated list of relationships to include + * the id of the requested resource */ - include?: Array<('appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + id: string; + }; + query?: { /** - * maximum resources per page + * the fields to include for returned resources of type customerReviewResponses */ - limit?: number; + 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; /** - * maximum number of related appPreviewSets returned (when they are included) + * the fields to include for returned resources of type customerReviews */ - 'limit[appPreviewSets]'?: number; + 'fields[customerReviews]'?: Array<('rating' | 'title' | 'body' | 'reviewerNickname' | 'createdDate' | 'territory' | 'response')>; /** - * maximum number of related appScreenshotSets returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[appScreenshotSets]'?: number; + include?: Array<('response')>; }; }; -export type AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedResponse = (AppStoreVersionExperimentTreatmentLocalizationsResponse); +export type CustomerReviewsGetInstanceResponse = (CustomerReviewResponse); -export type AppStoreVersionExperimentTreatmentsAppStoreVersionExperimentTreatmentLocalizationsGetToManyRelatedError = (ErrorResponse); +export type CustomerReviewsGetInstanceError = (ErrorResponse); -export type AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedData = { +export type CustomerReviewsResponseGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -23473,76 +22853,77 @@ export type AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetTo }; query?: { /** - * the fields to include for returned resources of type appStoreVersionExperiments - */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; - /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * the fields to include for returned resources of type customerReviewResponses */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments + * the fields to include for returned resources of type customerReviews */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + 'fields[customerReviews]'?: Array<('rating' | 'title' | 'body' | 'reviewerNickname' | 'createdDate' | 'territory' | 'response')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appStoreVersionExperimentTreatmentLocalizations returned (when they are included) - */ - 'limit[appStoreVersionExperimentTreatmentLocalizations]'?: number; + include?: Array<('review')>; }; }; -export type AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedResponse = (AppStoreVersionExperimentTreatmentsResponse); +export type CustomerReviewsResponseGetToOneRelatedResponse = (CustomerReviewResponseV1Response); -export type AppStoreVersionExperimentsV2AppStoreVersionExperimentTreatmentsGetToManyRelatedError = (ErrorResponse); +export type CustomerReviewsResponseGetToOneRelatedError = (ErrorResponse); -export type AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedData = { - path: { +export type DevicesGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type devices */ - id: string; - }; - query?: { + 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; /** - * the fields to include for returned resources of type appStoreVersionExperiments + * filter by id(s) */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; + 'filter[id]'?: Array<(string)>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * filter by attribute 'name' */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + 'filter[name]'?: Array<(string)>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments + * filter by attribute 'platform' */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'UNIVERSAL')>; /** - * comma-separated list of relationships to include + * filter by attribute 'status' */ - include?: Array<('appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + 'filter[status]'?: Array<('ENABLED' | 'DISABLED')>; + /** + * filter by attribute 'udid' + */ + 'filter[udid]'?: Array<(string)>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related appStoreVersionExperimentTreatmentLocalizations returned (when they are included) + * comma-separated list of sort expressions; resources will be sorted as specified */ - 'limit[appStoreVersionExperimentTreatmentLocalizations]'?: number; + sort?: Array<('name' | '-name' | 'platform' | '-platform' | 'udid' | '-udid' | 'status' | '-status' | 'id' | '-id')>; }; }; -export type AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedResponse = (AppStoreVersionExperimentTreatmentsResponse); +export type DevicesGetCollectionResponse = (DevicesResponse); -export type AppStoreVersionExperimentsAppStoreVersionExperimentTreatmentsGetToManyRelatedError = (ErrorResponse); +export type DevicesGetCollectionError = (ErrorResponse); -export type AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedData = { +export type DevicesCreateInstanceData = { + /** + * Device representation + */ + body: DeviceCreateRequest; +}; + +export type DevicesCreateInstanceResponse = (DeviceResponse); + +export type DevicesCreateInstanceError = (ErrorResponse); + +export type DevicesGetInstanceData = { path: { /** * the id of the requested resource @@ -23551,57 +22932,117 @@ export type AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appCustomProductPageLocalizations - */ - 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appPreviews - */ - 'fields[appPreviews]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'previewFrameTimeCode' | 'mimeType' | 'videoUrl' | 'previewImage' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appPreviewSet')>; - /** - * the fields to include for returned resources of type appPreviewSets + * the fields to include for returned resources of type devices */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; + }; +}; + +export type DevicesGetInstanceResponse = (DeviceResponse); + +export type DevicesGetInstanceError = (ErrorResponse); + +export type DevicesUpdateInstanceData = { + /** + * Device representation + */ + body: DeviceUpdateRequest; + path: { /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * the id of the requested resource */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + id: string; + }; +}; + +export type DevicesUpdateInstanceResponse = (DeviceResponse); + +export type DevicesUpdateInstanceError = (ErrorResponse); + +export type EndAppAvailabilityPreOrdersCreateInstanceData = { + /** + * EndAppAvailabilityPreOrder representation + */ + body: EndAppAvailabilityPreOrderCreateRequest; +}; + +export type EndAppAvailabilityPreOrdersCreateInstanceResponse = (EndAppAvailabilityPreOrderResponse); + +export type EndAppAvailabilityPreOrdersCreateInstanceError = (ErrorResponse); + +export type EndUserLicenseAgreementsCreateInstanceData = { + /** + * EndUserLicenseAgreement representation + */ + body: EndUserLicenseAgreementCreateRequest; +}; + +export type EndUserLicenseAgreementsCreateInstanceResponse = (EndUserLicenseAgreementResponse); + +export type EndUserLicenseAgreementsCreateInstanceError = (ErrorResponse); + +export type EndUserLicenseAgreementsGetInstanceData = { + path: { /** - * the fields to include for returned resources of type appStoreVersionLocalizations + * the id of the requested resource */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + id: string; + }; + query?: { /** - * filter by id(s) of related 'appCustomProductPageLocalization' + * the fields to include for returned resources of type endUserLicenseAgreements */ - 'filter[appCustomProductPageLocalization]'?: Array<(string)>; + 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; /** - * filter by id(s) of related 'appStoreVersionExperimentTreatmentLocalization' + * the fields to include for returned resources of type territories */ - 'filter[appStoreVersionExperimentTreatmentLocalization]'?: Array<(string)>; + 'fields[territories]'?: Array<('currency')>; /** - * filter by attribute 'previewType' + * comma-separated list of relationships to include */ - 'filter[previewType]'?: Array<('IPHONE_67' | 'IPHONE_61' | 'IPHONE_65' | 'IPHONE_58' | 'IPHONE_55' | 'IPHONE_47' | 'IPHONE_40' | 'IPHONE_35' | 'IPAD_PRO_3GEN_129' | 'IPAD_PRO_3GEN_11' | 'IPAD_PRO_129' | 'IPAD_105' | 'IPAD_97' | 'DESKTOP' | 'APPLE_TV' | 'APPLE_VISION_PRO')>; + include?: Array<('app' | 'territories')>; /** - * comma-separated list of relationships to include + * maximum number of related territories returned (when they are included) */ - include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; + 'limit[territories]'?: number; + }; +}; + +export type EndUserLicenseAgreementsGetInstanceResponse = (EndUserLicenseAgreementResponse); + +export type EndUserLicenseAgreementsGetInstanceError = (ErrorResponse); + +export type EndUserLicenseAgreementsUpdateInstanceData = { + /** + * EndUserLicenseAgreement representation + */ + body: EndUserLicenseAgreementUpdateRequest; + path: { /** - * maximum resources per page + * the id of the requested resource */ - limit?: number; + id: string; + }; +}; + +export type EndUserLicenseAgreementsUpdateInstanceResponse = (EndUserLicenseAgreementResponse); + +export type EndUserLicenseAgreementsUpdateInstanceError = (ErrorResponse); + +export type EndUserLicenseAgreementsDeleteInstanceData = { + path: { /** - * maximum number of related appPreviews returned (when they are included) + * the id of the requested resource */ - 'limit[appPreviews]'?: number; + id: string; }; }; -export type AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedResponse = (AppPreviewSetsResponse); +export type EndUserLicenseAgreementsDeleteInstanceResponse = (void); -export type AppStoreVersionLocalizationsAppPreviewSetsGetToManyRelatedError = (ErrorResponse); +export type EndUserLicenseAgreementsDeleteInstanceError = (ErrorResponse); -export type AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedData = { +export type EndUserLicenseAgreementsTerritoriesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -23610,76 +23051,121 @@ export type AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedData = }; query?: { /** - * the fields to include for returned resources of type appCustomProductPageLocalizations + * the fields to include for returned resources of type territories */ - 'fields[appCustomProductPageLocalizations]'?: Array<('locale' | 'promotionalText' | 'appCustomProductPageVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + 'fields[territories]'?: Array<('currency')>; /** - * the fields to include for returned resources of type appScreenshots + * maximum resources per page */ - 'fields[appScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appScreenshotSet')>; + limit?: number; + }; +}; + +export type EndUserLicenseAgreementsTerritoriesGetToManyRelatedResponse = (TerritoriesWithoutIncludesResponse); + +export type EndUserLicenseAgreementsTerritoriesGetToManyRelatedError = (ErrorResponse); + +export type FinanceReportsGetCollectionData = { + query: { /** - * the fields to include for returned resources of type appScreenshotSets + * filter by attribute 'regionCode' */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; + 'filter[regionCode]': Array<(string)>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatmentLocalizations + * filter by attribute 'reportDate' */ - 'fields[appStoreVersionExperimentTreatmentLocalizations]'?: Array<('locale' | 'appStoreVersionExperimentTreatment' | 'appScreenshotSets' | 'appPreviewSets')>; + 'filter[reportDate]': Array<(string)>; /** - * the fields to include for returned resources of type appStoreVersionLocalizations + * filter by attribute 'reportType' */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + 'filter[reportType]': Array<('FINANCIAL' | 'FINANCE_DETAIL')>; /** - * filter by id(s) of related 'appCustomProductPageLocalization' + * filter by attribute 'vendorNumber' */ - 'filter[appCustomProductPageLocalization]'?: Array<(string)>; + 'filter[vendorNumber]': Array<(string)>; + }; +}; + +export type FinanceReportsGetCollectionResponse = (gzip); + +export type FinanceReportsGetCollectionError = (ErrorResponse); + +export type GameCenterAchievementImagesCreateInstanceData = { + /** + * GameCenterAchievementImage representation + */ + body: GameCenterAchievementImageCreateRequest; +}; + +export type GameCenterAchievementImagesCreateInstanceResponse = (GameCenterAchievementImageResponse); + +export type GameCenterAchievementImagesCreateInstanceError = (ErrorResponse); + +export type GameCenterAchievementImagesGetInstanceData = { + path: { /** - * filter by id(s) of related 'appStoreVersionExperimentTreatmentLocalization' + * the id of the requested resource */ - 'filter[appStoreVersionExperimentTreatmentLocalization]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by attribute 'screenshotDisplayType' + * the fields to include for returned resources of type gameCenterAchievementImages */ - 'filter[screenshotDisplayType]'?: Array<('APP_IPHONE_67' | 'APP_IPHONE_61' | 'APP_IPHONE_65' | 'APP_IPHONE_58' | 'APP_IPHONE_55' | 'APP_IPHONE_47' | 'APP_IPHONE_40' | 'APP_IPHONE_35' | 'APP_IPAD_PRO_3GEN_129' | 'APP_IPAD_PRO_3GEN_11' | 'APP_IPAD_PRO_129' | 'APP_IPAD_105' | 'APP_IPAD_97' | 'APP_DESKTOP' | 'APP_WATCH_ULTRA' | 'APP_WATCH_SERIES_10' | 'APP_WATCH_SERIES_7' | 'APP_WATCH_SERIES_4' | 'APP_WATCH_SERIES_3' | 'APP_APPLE_TV' | 'APP_APPLE_VISION_PRO' | 'IMESSAGE_APP_IPHONE_67' | 'IMESSAGE_APP_IPHONE_61' | 'IMESSAGE_APP_IPHONE_65' | 'IMESSAGE_APP_IPHONE_58' | 'IMESSAGE_APP_IPHONE_55' | 'IMESSAGE_APP_IPHONE_47' | 'IMESSAGE_APP_IPHONE_40' | 'IMESSAGE_APP_IPAD_PRO_3GEN_129' | 'IMESSAGE_APP_IPAD_PRO_3GEN_11' | 'IMESSAGE_APP_IPAD_PRO_129' | 'IMESSAGE_APP_IPAD_105' | 'IMESSAGE_APP_IPAD_97')>; + 'fields[gameCenterAchievementImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterAchievementLocalization')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appScreenshots returned (when they are included) - */ - 'limit[appScreenshots]'?: number; + include?: Array<('gameCenterAchievementLocalization')>; }; }; -export type AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedResponse = (AppScreenshotSetsResponse); +export type GameCenterAchievementImagesGetInstanceResponse = (GameCenterAchievementImageResponse); -export type AppStoreVersionLocalizationsAppScreenshotSetsGetToManyRelatedError = (ErrorResponse); +export type GameCenterAchievementImagesGetInstanceError = (ErrorResponse); -export type AppStoreVersionsAgeRatingDeclarationGetToOneRelatedData = { +export type GameCenterAchievementImagesUpdateInstanceData = { + /** + * GameCenterAchievementImage representation + */ + body: GameCenterAchievementImageUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { +}; + +export type GameCenterAchievementImagesUpdateInstanceResponse = (GameCenterAchievementImageResponse); + +export type GameCenterAchievementImagesUpdateInstanceError = (ErrorResponse); + +export type GameCenterAchievementImagesDeleteInstanceData = { + path: { /** - * the fields to include for returned resources of type ageRatingDeclarations + * the id of the requested resource */ - 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; + id: string; }; }; -export type AppStoreVersionsAgeRatingDeclarationGetToOneRelatedResponse = (AgeRatingDeclarationWithoutIncludesResponse); +export type GameCenterAchievementImagesDeleteInstanceResponse = (void); -export type AppStoreVersionsAgeRatingDeclarationGetToOneRelatedError = (ErrorResponse); +export type GameCenterAchievementImagesDeleteInstanceError = (ErrorResponse); -export type AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedData = { +export type GameCenterAchievementLocalizationsCreateInstanceData = { + /** + * GameCenterAchievementLocalization representation + */ + body: GameCenterAchievementLocalizationCreateRequest; +}; + +export type GameCenterAchievementLocalizationsCreateInstanceResponse = (GameCenterAchievementLocalizationResponse); + +export type GameCenterAchievementLocalizationsCreateInstanceError = (ErrorResponse); + +export type GameCenterAchievementLocalizationsGetInstanceData = { path: { /** * the id of the requested resource @@ -23688,29 +23174,33 @@ export type AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedData = }; query?: { /** - * the fields to include for returned resources of type alternativeDistributionPackages + * the fields to include for returned resources of type gameCenterAchievementImages */ - 'fields[alternativeDistributionPackages]'?: Array<('appStoreVersion' | 'versions')>; + 'fields[gameCenterAchievementImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterAchievementLocalization')>; /** - * the fields to include for returned resources of type alternativeDistributionPackageVersions + * the fields to include for returned resources of type gameCenterAchievementLocalizations */ - 'fields[alternativeDistributionPackageVersions]'?: Array<('url' | 'urlExpirationDate' | 'version' | 'fileChecksum' | 'state' | 'variants' | 'deltas' | 'alternativeDistributionPackage')>; + 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type gameCenterAchievements */ - include?: Array<('versions')>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * maximum number of related versions returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[versions]'?: number; + include?: Array<('gameCenterAchievement' | 'gameCenterAchievementImage')>; }; }; -export type AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedResponse = (AlternativeDistributionPackageResponse); +export type GameCenterAchievementLocalizationsGetInstanceResponse = (GameCenterAchievementLocalizationResponse); -export type AppStoreVersionsAlternativeDistributionPackageGetToOneRelatedError = (ErrorResponse); +export type GameCenterAchievementLocalizationsGetInstanceError = (ErrorResponse); -export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipData = { +export type GameCenterAchievementLocalizationsUpdateInstanceData = { + /** + * GameCenterAchievementLocalization representation + */ + body: GameCenterAchievementLocalizationUpdateRequest; path: { /** * the id of the requested resource @@ -23719,15 +23209,11 @@ export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipData = { }; }; -export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipResponse = (AppStoreVersionAppClipDefaultExperienceLinkageResponse); +export type GameCenterAchievementLocalizationsUpdateInstanceResponse = (GameCenterAchievementLocalizationResponse); -export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelationshipError = (ErrorResponse); +export type GameCenterAchievementLocalizationsUpdateInstanceError = (ErrorResponse); -export type AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipData = { - /** - * Related linkage - */ - body: AppStoreVersionAppClipDefaultExperienceLinkageRequest; +export type GameCenterAchievementLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -23736,11 +23222,11 @@ export type AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipData }; }; -export type AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipResponse = (void); +export type GameCenterAchievementLocalizationsDeleteInstanceResponse = (void); -export type AppStoreVersionsAppClipDefaultExperienceUpdateToOneRelationshipError = (ErrorResponse); +export type GameCenterAchievementLocalizationsDeleteInstanceError = (ErrorResponse); -export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedData = { +export type GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -23749,41 +23235,45 @@ export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appClipAppStoreReviewDetails + * the fields to include for returned resources of type gameCenterAchievementLocalizations */ - 'fields[appClipAppStoreReviewDetails]'?: Array<('invocationUrls' | 'appClipDefaultExperience')>; + 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; /** - * the fields to include for returned resources of type appClipDefaultExperienceLocalizations + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'fields[appClipDefaultExperienceLocalizations]'?: Array<('locale' | 'subtitle' | 'appClipDefaultExperience' | 'appClipHeaderImage')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** - * the fields to include for returned resources of type appClipDefaultExperiences + * the fields to include for returned resources of type gameCenterAchievements */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * the fields to include for returned resources of type appClips + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type gameCenterGroups */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** * comma-separated list of relationships to include */ - include?: Array<('appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * maximum number of related appClipDefaultExperienceLocalizations returned (when they are included) + * maximum number of related localizations returned (when they are included) */ - 'limit[appClipDefaultExperienceLocalizations]'?: number; + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedResponse = (AppClipDefaultExperienceResponse); +export type GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedResponse = (GameCenterAchievementResponse); -export type AppStoreVersionsAppClipDefaultExperienceGetToOneRelatedError = (ErrorResponse); +export type GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedError = (ErrorResponse); -export type AppStoreVersionsAppStoreReviewDetailGetToOneRelatedData = { +export type GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -23792,33 +23282,36 @@ export type AppStoreVersionsAppStoreReviewDetailGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appStoreReviewAttachments - */ - 'fields[appStoreReviewAttachments]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreReviewDetail')>; - /** - * the fields to include for returned resources of type appStoreReviewDetails + * the fields to include for returned resources of type gameCenterAchievementImages */ - 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + 'fields[gameCenterAchievementImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterAchievementLocalization')>; /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type gameCenterAchievementLocalizations */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersion' | 'appStoreReviewAttachments')>; - /** - * maximum number of related appStoreReviewAttachments returned (when they are included) - */ - 'limit[appStoreReviewAttachments]'?: number; + include?: Array<('gameCenterAchievementLocalization')>; }; }; -export type AppStoreVersionsAppStoreReviewDetailGetToOneRelatedResponse = (AppStoreReviewDetailResponse); +export type GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedResponse = (GameCenterAchievementImageResponse); -export type AppStoreVersionsAppStoreReviewDetailGetToOneRelatedError = (ErrorResponse); +export type GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedError = (ErrorResponse); -export type AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedData = { +export type GameCenterAchievementReleasesCreateInstanceData = { + /** + * GameCenterAchievementRelease representation + */ + body: GameCenterAchievementReleaseCreateRequest; +}; + +export type GameCenterAchievementReleasesCreateInstanceResponse = (GameCenterAchievementReleaseResponse); + +export type GameCenterAchievementReleasesCreateInstanceError = (ErrorResponse); + +export type GameCenterAchievementReleasesGetInstanceData = { path: { /** * the id of the requested resource @@ -23827,92 +23320,45 @@ export type AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appStoreVersionExperiments - */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments')>; - /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments - */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; - /** - * the fields to include for returned resources of type appStoreVersions - */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; - /** - * filter by attribute 'state' + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'filter[state]'?: Array<('PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'COMPLETED' | 'STOPPED')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersion' | 'appStoreVersionExperimentTreatments')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) - */ - 'limit[appStoreVersionExperimentTreatments]'?: number; + include?: Array<('gameCenterDetail' | 'gameCenterAchievement')>; }; }; -export type AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedResponse = (AppStoreVersionExperimentsResponse); +export type GameCenterAchievementReleasesGetInstanceResponse = (GameCenterAchievementReleaseResponse); -export type AppStoreVersionsAppStoreVersionExperimentsGetToManyRelatedError = (ErrorResponse); +export type GameCenterAchievementReleasesGetInstanceError = (ErrorResponse); -export type AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedData = { +export type GameCenterAchievementReleasesDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type appStoreVersionExperiments - */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; - /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments - */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; - /** - * the fields to include for returned resources of type appStoreVersions - */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; - /** - * filter by attribute 'state' - */ - 'filter[state]'?: Array<('PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'COMPLETED' | 'STOPPED')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) - */ - 'limit[appStoreVersionExperimentTreatments]'?: number; - /** - * maximum number of related controlVersions returned (when they are included) - */ - 'limit[controlVersions]'?: number; - }; }; -export type AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedResponse = (AppStoreVersionExperimentsV2Response); +export type GameCenterAchievementReleasesDeleteInstanceResponse = (void); -export type AppStoreVersionsAppStoreVersionExperimentsV2GetToManyRelatedError = (ErrorResponse); +export type GameCenterAchievementReleasesDeleteInstanceError = (ErrorResponse); + +export type GameCenterAchievementsCreateInstanceData = { + /** + * GameCenterAchievement representation + */ + body: GameCenterAchievementCreateRequest; +}; + +export type GameCenterAchievementsCreateInstanceResponse = (GameCenterAchievementResponse); + +export type GameCenterAchievementsCreateInstanceError = (ErrorResponse); -export type AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedData = { +export type GameCenterAchievementsGetInstanceData = { path: { /** * the id of the requested resource @@ -23921,95 +23367,67 @@ export type AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appPreviewSets - */ - 'fields[appPreviewSets]'?: Array<('previewType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appPreviews')>; - /** - * the fields to include for returned resources of type appScreenshotSets - */ - 'fields[appScreenshotSets]'?: Array<('screenshotDisplayType' | 'appStoreVersionLocalization' | 'appCustomProductPageLocalization' | 'appStoreVersionExperimentTreatmentLocalization' | 'appScreenshots')>; - /** - * the fields to include for returned resources of type appStoreVersionLocalizations + * the fields to include for returned resources of type gameCenterAchievementLocalizations */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** - * filter by attribute 'locale' + * the fields to include for returned resources of type gameCenterAchievements */ - 'filter[locale]'?: Array<(string)>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * maximum resources per page - */ - limit?: number; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * maximum number of related appPreviewSets returned (when they are included) + * maximum number of related localizations returned (when they are included) */ - 'limit[appPreviewSets]'?: number; + 'limit[localizations]'?: number; /** - * maximum number of related appScreenshotSets returned (when they are included) + * maximum number of related releases returned (when they are included) */ - 'limit[appScreenshotSets]'?: number; + 'limit[releases]'?: number; }; }; -export type AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedResponse = (AppStoreVersionLocalizationsResponse); +export type GameCenterAchievementsGetInstanceResponse = (GameCenterAchievementResponse); -export type AppStoreVersionsAppStoreVersionLocalizationsGetToManyRelatedError = (ErrorResponse); +export type GameCenterAchievementsGetInstanceError = (ErrorResponse); -export type AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedData = { +export type GameCenterAchievementsUpdateInstanceData = { + /** + * GameCenterAchievement representation + */ + body: GameCenterAchievementUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type appStoreVersionPhasedReleases - */ - 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber' | 'appStoreVersion')>; - }; }; -export type AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedResponse = (AppStoreVersionPhasedReleaseWithoutIncludesResponse); +export type GameCenterAchievementsUpdateInstanceResponse = (GameCenterAchievementResponse); -export type AppStoreVersionsAppStoreVersionPhasedReleaseGetToOneRelatedError = (ErrorResponse); +export type GameCenterAchievementsUpdateInstanceError = (ErrorResponse); -export type AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedData = { +export type GameCenterAchievementsDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type appStoreVersions - */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; - /** - * the fields to include for returned resources of type appStoreVersionSubmissions - */ - 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('appStoreVersion')>; - }; }; -export type AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedResponse = (AppStoreVersionSubmissionResponse); +export type GameCenterAchievementsDeleteInstanceResponse = (void); -export type AppStoreVersionsAppStoreVersionSubmissionGetToOneRelatedError = (ErrorResponse); +export type GameCenterAchievementsDeleteInstanceError = (ErrorResponse); -export type AppStoreVersionsBuildGetToOneRelationshipData = { +export type GameCenterAchievementsGroupAchievementGetToOneRelationshipData = { path: { /** * the id of the requested resource @@ -24018,15 +23436,15 @@ export type AppStoreVersionsBuildGetToOneRelationshipData = { }; }; -export type AppStoreVersionsBuildGetToOneRelationshipResponse = (AppStoreVersionBuildLinkageResponse); +export type GameCenterAchievementsGroupAchievementGetToOneRelationshipResponse = (GameCenterAchievementGroupAchievementLinkageResponse); -export type AppStoreVersionsBuildGetToOneRelationshipError = (ErrorResponse); +export type GameCenterAchievementsGroupAchievementGetToOneRelationshipError = (ErrorResponse); -export type AppStoreVersionsBuildUpdateToOneRelationshipData = { +export type GameCenterAchievementsGroupAchievementUpdateToOneRelationshipData = { /** * Related linkage */ - body: AppStoreVersionBuildLinkageRequest; + body: GameCenterAchievementGroupAchievementLinkageRequest; path: { /** * the id of the requested resource @@ -24035,11 +23453,11 @@ export type AppStoreVersionsBuildUpdateToOneRelationshipData = { }; }; -export type AppStoreVersionsBuildUpdateToOneRelationshipResponse = (void); +export type GameCenterAchievementsGroupAchievementUpdateToOneRelationshipResponse = (void); -export type AppStoreVersionsBuildUpdateToOneRelationshipError = (ErrorResponse); +export type GameCenterAchievementsGroupAchievementUpdateToOneRelationshipError = (ErrorResponse); -export type AppStoreVersionsBuildGetToOneRelatedData = { +export type GameCenterAchievementsGroupAchievementGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -24048,17 +23466,45 @@ export type AppStoreVersionsBuildGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type gameCenterAchievementLocalizations */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; + /** + * the fields to include for returned resources of type gameCenterAchievementReleases + */ + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; + /** + * the fields to include for returned resources of type gameCenterAchievements + */ + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterDetails + */ + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * the fields to include for returned resources of type gameCenterGroups + */ + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type AppStoreVersionsBuildGetToOneRelatedResponse = (BuildWithoutIncludesResponse); +export type GameCenterAchievementsGroupAchievementGetToOneRelatedResponse = (GameCenterAchievementResponse); -export type AppStoreVersionsBuildGetToOneRelatedError = (ErrorResponse); +export type GameCenterAchievementsGroupAchievementGetToOneRelatedError = (ErrorResponse); -export type AppStoreVersionsCustomerReviewsGetToManyRelatedData = { +export type GameCenterAchievementsLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -24067,45 +23513,87 @@ export type AppStoreVersionsCustomerReviewsGetToManyRelatedData = { }; query?: { /** - * filter by publishedResponse + * the fields to include for returned resources of type gameCenterAchievementImages */ - 'exists[publishedResponse]'?: boolean; + 'fields[gameCenterAchievementImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterAchievementLocalization')>; /** - * the fields to include for returned resources of type customerReviewResponses + * the fields to include for returned resources of type gameCenterAchievementLocalizations */ - 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; + 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; /** - * the fields to include for returned resources of type customerReviews + * the fields to include for returned resources of type gameCenterAchievements */ - 'fields[customerReviews]'?: Array<('rating' | 'title' | 'body' | 'reviewerNickname' | 'createdDate' | 'territory' | 'response')>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * filter by attribute 'rating' + * comma-separated list of relationships to include */ - 'filter[rating]'?: Array<(string)>; + include?: Array<('gameCenterAchievement' | 'gameCenterAchievementImage')>; /** - * filter by attribute 'territory' + * maximum resources per page */ - 'filter[territory]'?: Array<('ABW' | 'AFG' | 'AGO' | 'AIA' | 'ALB' | 'AND' | 'ANT' | 'ARE' | 'ARG' | 'ARM' | 'ASM' | 'ATG' | 'AUS' | 'AUT' | 'AZE' | 'BDI' | 'BEL' | 'BEN' | 'BES' | 'BFA' | 'BGD' | 'BGR' | 'BHR' | 'BHS' | 'BIH' | 'BLR' | 'BLZ' | 'BMU' | 'BOL' | 'BRA' | 'BRB' | 'BRN' | 'BTN' | 'BWA' | 'CAF' | 'CAN' | 'CHE' | 'CHL' | 'CHN' | 'CIV' | 'CMR' | 'COD' | 'COG' | 'COK' | 'COL' | 'COM' | 'CPV' | 'CRI' | 'CUB' | 'CUW' | 'CXR' | 'CYM' | 'CYP' | 'CZE' | 'DEU' | 'DJI' | 'DMA' | 'DNK' | 'DOM' | 'DZA' | 'ECU' | 'EGY' | 'ERI' | 'ESP' | 'EST' | 'ETH' | 'FIN' | 'FJI' | 'FLK' | 'FRA' | 'FRO' | 'FSM' | 'GAB' | 'GBR' | 'GEO' | 'GGY' | 'GHA' | 'GIB' | 'GIN' | 'GLP' | 'GMB' | 'GNB' | 'GNQ' | 'GRC' | 'GRD' | 'GRL' | 'GTM' | 'GUF' | 'GUM' | 'GUY' | 'HKG' | 'HND' | 'HRV' | 'HTI' | 'HUN' | 'IDN' | 'IMN' | 'IND' | 'IRL' | 'IRQ' | 'ISL' | 'ISR' | 'ITA' | 'JAM' | 'JEY' | 'JOR' | 'JPN' | 'KAZ' | 'KEN' | 'KGZ' | 'KHM' | 'KIR' | 'KNA' | 'KOR' | 'KWT' | 'LAO' | 'LBN' | 'LBR' | 'LBY' | 'LCA' | 'LIE' | 'LKA' | 'LSO' | 'LTU' | 'LUX' | 'LVA' | 'MAC' | 'MAR' | 'MCO' | 'MDA' | 'MDG' | 'MDV' | 'MEX' | 'MHL' | 'MKD' | 'MLI' | 'MLT' | 'MMR' | 'MNE' | 'MNG' | 'MNP' | 'MOZ' | 'MRT' | 'MSR' | 'MTQ' | 'MUS' | 'MWI' | 'MYS' | 'MYT' | 'NAM' | 'NCL' | 'NER' | 'NFK' | 'NGA' | 'NIC' | 'NIU' | 'NLD' | 'NOR' | 'NPL' | 'NRU' | 'NZL' | 'OMN' | 'PAK' | 'PAN' | 'PER' | 'PHL' | 'PLW' | 'PNG' | 'POL' | 'PRI' | 'PRT' | 'PRY' | 'PSE' | 'PYF' | 'QAT' | 'REU' | 'ROU' | 'RUS' | 'RWA' | 'SAU' | 'SEN' | 'SGP' | 'SHN' | 'SLB' | 'SLE' | 'SLV' | 'SMR' | 'SOM' | 'SPM' | 'SRB' | 'SSD' | 'STP' | 'SUR' | 'SVK' | 'SVN' | 'SWE' | 'SWZ' | 'SXM' | 'SYC' | 'TCA' | 'TCD' | 'TGO' | 'THA' | 'TJK' | 'TKM' | 'TLS' | 'TON' | 'TTO' | 'TUN' | 'TUR' | 'TUV' | 'TWN' | 'TZA' | 'UGA' | 'UKR' | 'UMI' | 'URY' | 'USA' | 'UZB' | 'VAT' | 'VCT' | 'VEN' | 'VGB' | 'VIR' | 'VNM' | 'VUT' | 'WLF' | 'WSM' | 'YEM' | 'ZAF' | 'ZMB' | 'ZWE')>; + limit?: number; + }; +}; + +export type GameCenterAchievementsLocalizationsGetToManyRelatedResponse = (GameCenterAchievementLocalizationsResponse); + +export type GameCenterAchievementsLocalizationsGetToManyRelatedError = (ErrorResponse); + +export type GameCenterAchievementsReleasesGetToManyRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type gameCenterAchievementReleases + */ + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; + /** + * the fields to include for returned resources of type gameCenterAchievements + */ + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterDetails + */ + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * filter by id(s) of related 'gameCenterDetail' + */ + 'filter[gameCenterDetail]'?: Array<(string)>; + /** + * filter by attribute 'live' + */ + 'filter[live]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('response')>; + include?: Array<('gameCenterDetail' | 'gameCenterAchievement')>; /** * maximum resources per page */ limit?: number; - /** - * comma-separated list of sort expressions; resources will be sorted as specified - */ - sort?: Array<('rating' | '-rating' | 'createdDate' | '-createdDate')>; }; }; -export type AppStoreVersionsCustomerReviewsGetToManyRelatedResponse = (CustomerReviewsResponse); +export type GameCenterAchievementsReleasesGetToManyRelatedResponse = (GameCenterAchievementReleasesResponse); -export type AppStoreVersionsCustomerReviewsGetToManyRelatedError = (ErrorResponse); +export type GameCenterAchievementsReleasesGetToManyRelatedError = (ErrorResponse); -export type AppStoreVersionsGameCenterAppVersionGetToOneRelatedData = { +export type GameCenterAppVersionsCreateInstanceData = { + /** + * GameCenterAppVersion representation + */ + body: GameCenterAppVersionCreateRequest; +}; + +export type GameCenterAppVersionsCreateInstanceResponse = (GameCenterAppVersionResponse); + +export type GameCenterAppVersionsCreateInstanceError = (ErrorResponse); + +export type GameCenterAppVersionsGetInstanceData = { path: { /** * the id of the requested resource @@ -24132,30 +23620,28 @@ export type AppStoreVersionsGameCenterAppVersionGetToOneRelatedData = { }; }; -export type AppStoreVersionsGameCenterAppVersionGetToOneRelatedResponse = (GameCenterAppVersionResponse); +export type GameCenterAppVersionsGetInstanceResponse = (GameCenterAppVersionResponse); -export type AppStoreVersionsGameCenterAppVersionGetToOneRelatedError = (ErrorResponse); +export type GameCenterAppVersionsGetInstanceError = (ErrorResponse); -export type AppStoreVersionsRoutingAppCoverageGetToOneRelatedData = { +export type GameCenterAppVersionsUpdateInstanceData = { + /** + * GameCenterAppVersion representation + */ + body: GameCenterAppVersionUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type routingAppCoverages - */ - 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreVersion')>; - }; }; -export type AppStoreVersionsRoutingAppCoverageGetToOneRelatedResponse = (RoutingAppCoverageWithoutIncludesResponse); +export type GameCenterAppVersionsUpdateInstanceResponse = (GameCenterAppVersionResponse); -export type AppStoreVersionsRoutingAppCoverageGetToOneRelatedError = (ErrorResponse); +export type GameCenterAppVersionsUpdateInstanceError = (ErrorResponse); -export type AppsAlternativeDistributionKeyGetToOneRelatedData = { +export type GameCenterAppVersionsAppStoreVersionGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -24164,56 +23650,82 @@ export type AppsAlternativeDistributionKeyGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type alternativeDistributionKeys + * the fields to include for returned resources of type ageRatingDeclarations + */ + 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; + /** + * the fields to include for returned resources of type alternativeDistributionPackages + */ + 'fields[alternativeDistributionPackages]'?: Array<('versions')>; + /** + * the fields to include for returned resources of type appClipDefaultExperiences + */ + 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail')>; + /** + * the fields to include for returned resources of type apps + */ + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + /** + * the fields to include for returned resources of type appStoreReviewDetails + */ + 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; + /** + * the fields to include for returned resources of type appStoreVersionExperiments + */ + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; + /** + * the fields to include for returned resources of type appStoreVersionLocalizations + */ + 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + /** + * the fields to include for returned resources of type appStoreVersionPhasedReleases + */ + 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber')>; + /** + * the fields to include for returned resources of type appStoreVersions */ - 'fields[alternativeDistributionKeys]'?: Array<('publicKey' | 'app')>; - }; -}; - -export type AppsAlternativeDistributionKeyGetToOneRelatedResponse = (AlternativeDistributionKeyResponse); - -export type AppsAlternativeDistributionKeyGetToOneRelatedError = (ErrorResponse); - -export type AppsAnalyticsReportRequestsGetToManyRelatedData = { - path: { + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the id of the requested resource + * the fields to include for returned resources of type appStoreVersionSubmissions */ - id: string; - }; - query?: { + 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; /** - * the fields to include for returned resources of type analyticsReportRequests + * the fields to include for returned resources of type builds */ - 'fields[analyticsReportRequests]'?: Array<('accessType' | 'stoppedDueToInactivity' | 'app' | 'reports')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * the fields to include for returned resources of type analyticsReports + * the fields to include for returned resources of type gameCenterAppVersions */ - 'fields[analyticsReports]'?: Array<('name' | 'category' | 'instances')>; + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; /** - * filter by attribute 'accessType' + * the fields to include for returned resources of type routingAppCoverages */ - 'filter[accessType]'?: Array<('ONE_TIME_SNAPSHOT' | 'ONGOING')>; + 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreVersion')>; /** * comma-separated list of relationships to include */ - include?: Array<('reports')>; + include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; /** - * maximum resources per page + * maximum number of related appStoreVersionExperiments returned (when they are included) + * @deprecated */ - limit?: number; + 'limit[appStoreVersionExperiments]'?: number; /** - * maximum number of related reports returned (when they are included) + * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) */ - 'limit[reports]'?: number; + 'limit[appStoreVersionExperimentsV2]'?: number; + /** + * maximum number of related appStoreVersionLocalizations returned (when they are included) + */ + 'limit[appStoreVersionLocalizations]'?: number; }; }; -export type AppsAnalyticsReportRequestsGetToManyRelatedResponse = (AnalyticsReportRequestsResponse); +export type GameCenterAppVersionsAppStoreVersionGetToOneRelatedResponse = (AppStoreVersionResponse); -export type AppsAnalyticsReportRequestsGetToManyRelatedError = (ErrorResponse); +export type GameCenterAppVersionsAppStoreVersionGetToOneRelatedError = (ErrorResponse); -export type AppsAppAvailabilityGetToOneRelatedData = { +export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipData = { path: { /** * the id of the requested resource @@ -24222,64 +23734,51 @@ export type AppsAppAvailabilityGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appAvailabilities - */ - 'fields[appAvailabilities]'?: Array<('availableInNewTerritories' | 'app' | 'availableTerritories')>; - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('app' | 'availableTerritories')>; - /** - * maximum number of related availableTerritories returned (when they are included) + * maximum resources per page */ - 'limit[availableTerritories]'?: number; + limit?: number; }; }; -export type AppsAppAvailabilityGetToOneRelatedResponse = (AppAvailabilityResponse); +export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipResponse = (GameCenterAppVersionCompatibilityVersionsLinkagesResponse); -export type AppsAppAvailabilityGetToOneRelatedError = (ErrorResponse); +export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipError = (ErrorResponse); -export type AppsAppAvailabilityV2GetToOneRelatedData = { +export type GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterAppVersionCompatibilityVersionsLinkagesRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type appAvailabilities - */ - 'fields[appAvailabilities]'?: Array<('availableInNewTerritories' | 'app' | 'territoryAvailabilities')>; - /** - * the fields to include for returned resources of type territoryAvailabilities - */ - 'fields[territoryAvailabilities]'?: Array<('available' | 'releaseDate' | 'preOrderEnabled' | 'preOrderPublishDate' | 'contentStatuses' | 'territory')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('territoryAvailabilities')>; +}; + +export type GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipResponse = (void); + +export type GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipError = (ErrorResponse); + +export type GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterAppVersionCompatibilityVersionsLinkagesRequest; + path: { /** - * maximum number of related territoryAvailabilities returned (when they are included) + * the id of the requested resource */ - 'limit[territoryAvailabilities]'?: number; + id: string; }; }; -export type AppsAppAvailabilityV2GetToOneRelatedResponse = (AppAvailabilityV2Response); +export type GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipResponse = (void); -export type AppsAppAvailabilityV2GetToOneRelatedError = (ErrorResponse); +export type GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipError = (ErrorResponse); -export type AppsAppClipsGetToManyRelatedData = { +export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -24288,41 +23787,48 @@ export type AppsAppClipsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appClipDefaultExperiences - */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; - /** - * the fields to include for returned resources of type appClips + * the fields to include for returned resources of type appStoreVersions */ - 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterAppVersions */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; /** - * filter by attribute 'bundleId' + * filter by attribute 'enabled' */ - 'filter[bundleId]'?: Array<(string)>; + 'filter[enabled]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'appClipDefaultExperiences')>; + include?: Array<('compatibilityVersions' | 'appStoreVersion')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related appClipDefaultExperiences returned (when they are included) + * maximum number of related compatibilityVersions returned (when they are included) */ - 'limit[appClipDefaultExperiences]'?: number; + 'limit[compatibilityVersions]'?: number; }; }; -export type AppsAppClipsGetToManyRelatedResponse = (AppClipsResponse); +export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedResponse = (GameCenterAppVersionsResponse); -export type AppsAppClipsGetToManyRelatedError = (ErrorResponse); +export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedError = (ErrorResponse); -export type AppsAppCustomProductPagesGetToManyRelatedData = { +export type GameCenterDetailsCreateInstanceData = { + /** + * GameCenterDetail representation + */ + body: GameCenterDetailCreateRequest; +}; + +export type GameCenterDetailsCreateInstanceResponse = (GameCenterDetailResponse); + +export type GameCenterDetailsCreateInstanceError = (ErrorResponse); + +export type GameCenterDetailsGetInstanceData = { path: { /** * the id of the requested resource @@ -24331,92 +23837,98 @@ export type AppsAppCustomProductPagesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appCustomProductPages + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions' | 'appStoreVersionTemplate' | 'customProductPageTemplate')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** - * the fields to include for returned resources of type appCustomProductPageVersions + * the fields to include for returned resources of type gameCenterAchievements */ - 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterAppVersions */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; /** - * filter by attribute 'visible' + * the fields to include for returned resources of type gameCenterDetails */ - 'filter[visible]'?: Array<(string)>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type gameCenterGroups */ - include?: Array<('app' | 'appCustomProductPageVersions')>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterLeaderboardReleases */ - limit?: number; + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; /** - * maximum number of related appCustomProductPageVersions returned (when they are included) + * the fields to include for returned resources of type gameCenterLeaderboards */ - 'limit[appCustomProductPageVersions]'?: number; - }; -}; - -export type AppsAppCustomProductPagesGetToManyRelatedResponse = (AppCustomProductPagesResponse); - -export type AppsAppCustomProductPagesGetToManyRelatedError = (ErrorResponse); - -export type AppsAppEncryptionDeclarationsGetToManyRelatedData = { - path: { + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** - * the id of the requested resource + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases */ - id: string; - }; - query?: { + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** - * the fields to include for returned resources of type appEncryptionDeclarationDocuments + * the fields to include for returned resources of type gameCenterLeaderboardSets */ - 'fields[appEncryptionDeclarationDocuments]'?: Array<('fileSize' | 'fileName' | 'assetToken' | 'downloadUrl' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appEncryptionDeclaration')>; + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** - * the fields to include for returned resources of type appEncryptionDeclarations + * comma-separated list of relationships to include */ - 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; + include?: Array<('app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the fields to include for returned resources of type apps + * maximum number of related achievementReleases returned (when they are included) */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'limit[achievementReleases]'?: number; /** - * the fields to include for returned resources of type builds + * maximum number of related gameCenterAchievements returned (when they are included) */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'limit[gameCenterAchievements]'?: number; /** - * filter by id(s) of related 'builds' + * maximum number of related gameCenterAppVersions returned (when they are included) */ - 'filter[builds]'?: Array<(string)>; + 'limit[gameCenterAppVersions]'?: number; /** - * filter by attribute 'platform' + * maximum number of related gameCenterLeaderboards returned (when they are included) */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'limit[gameCenterLeaderboards]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related gameCenterLeaderboardSets returned (when they are included) */ - include?: Array<('app' | 'builds' | 'appEncryptionDeclarationDocument')>; + 'limit[gameCenterLeaderboardSets]'?: number; /** - * maximum resources per page + * maximum number of related leaderboardReleases returned (when they are included) */ - limit?: number; + 'limit[leaderboardReleases]'?: number; /** - * maximum number of related builds returned (when they are included) + * maximum number of related leaderboardSetReleases returned (when they are included) */ - 'limit[builds]'?: number; + 'limit[leaderboardSetReleases]'?: number; }; }; -export type AppsAppEncryptionDeclarationsGetToManyRelatedResponse = (AppEncryptionDeclarationsResponse); +export type GameCenterDetailsGetInstanceResponse = (GameCenterDetailResponse); -export type AppsAppEncryptionDeclarationsGetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsGetInstanceError = (ErrorResponse); -export type AppsAppEventsGetToManyRelatedData = { +export type GameCenterDetailsUpdateInstanceData = { + /** + * GameCenterDetail representation + */ + body: GameCenterDetailUpdateRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type GameCenterDetailsUpdateInstanceResponse = (GameCenterDetailResponse); + +export type GameCenterDetailsUpdateInstanceError = (ErrorResponse); + +export type GameCenterDetailsAchievementReleasesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -24425,41 +23937,41 @@ export type AppsAppEventsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appEventLocalizations + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'fields[appEventLocalizations]'?: Array<('locale' | 'name' | 'shortDescription' | 'longDescription' | 'appEvent' | 'appEventScreenshots' | 'appEventVideoClips')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** - * the fields to include for returned resources of type appEvents + * the fields to include for returned resources of type gameCenterAchievements + */ + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'app' | 'localizations')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * filter by attribute 'eventState' + * filter by id(s) of related 'gameCenterAchievement' */ - 'filter[eventState]'?: Array<('DRAFT' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'REJECTED' | 'ACCEPTED' | 'APPROVED' | 'PUBLISHED' | 'PAST' | 'ARCHIVED')>; + 'filter[gameCenterAchievement]'?: Array<(string)>; /** - * filter by id(s) + * filter by attribute 'live' */ - 'filter[id]'?: Array<(string)>; + 'filter[live]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('localizations')>; + include?: Array<('gameCenterDetail' | 'gameCenterAchievement')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related localizations returned (when they are included) - */ - 'limit[localizations]'?: number; }; }; -export type AppsAppEventsGetToManyRelatedResponse = (AppEventsResponse); +export type GameCenterDetailsAchievementReleasesGetToManyRelatedResponse = (GameCenterAchievementReleasesResponse); -export type AppsAppEventsGetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsAchievementReleasesGetToManyRelatedError = (ErrorResponse); -export type AppsAppInfosGetToManyRelatedData = { +export type GameCenterDetailsGameCenterAchievementsGetToManyRelationshipData = { path: { /** * the id of the requested resource @@ -24467,46 +23979,35 @@ export type AppsAppInfosGetToManyRelatedData = { id: string; }; query?: { - /** - * the fields to include for returned resources of type ageRatingDeclarations - */ - 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; - /** - * the fields to include for returned resources of type appCategories - */ - 'fields[appCategories]'?: Array<('platforms' | 'subcategories' | 'parent')>; - /** - * the fields to include for returned resources of type appInfoLocalizations - */ - 'fields[appInfoLocalizations]'?: Array<('locale' | 'name' | 'subtitle' | 'privacyPolicyUrl' | 'privacyChoicesUrl' | 'privacyPolicyText' | 'appInfo')>; - /** - * the fields to include for returned resources of type appInfos - */ - 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; /** * maximum resources per page */ limit?: number; + }; +}; + +export type GameCenterDetailsGameCenterAchievementsGetToManyRelationshipResponse = (GameCenterDetailGameCenterAchievementsLinkagesResponse); + +export type GameCenterDetailsGameCenterAchievementsGetToManyRelationshipError = (ErrorResponse); + +export type GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterDetailGameCenterAchievementsLinkagesRequest; + path: { /** - * maximum number of related appInfoLocalizations returned (when they are included) + * the id of the requested resource */ - 'limit[appInfoLocalizations]'?: number; + id: string; }; }; -export type AppsAppInfosGetToManyRelatedResponse = (AppInfosResponse); +export type GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipResponse = (void); -export type AppsAppInfosGetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipError = (ErrorResponse); -export type AppsAppPricePointsGetToManyRelatedData = { +export type GameCenterDetailsGameCenterAchievementsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -24515,37 +24016,61 @@ export type AppsAppPricePointsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appPricePoints + * the fields to include for returned resources of type gameCenterAchievementLocalizations */ - 'fields[appPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'app' | 'equalizations' | 'territory')>; + 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type gameCenterAchievements */ - 'fields[territories]'?: Array<('currency')>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * filter by id(s) of related 'territory' + * the fields to include for returned resources of type gameCenterDetails */ - 'filter[territory]'?: Array<(string)>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * the fields to include for returned resources of type gameCenterGroups + */ + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + /** + * filter by attribute 'archived' + */ + 'filter[archived]'?: Array<(string)>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'referenceName' + */ + 'filter[referenceName]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'territory')>; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type AppsAppPricePointsGetToManyRelatedResponse = (AppPricePointsV3Response); +export type GameCenterDetailsGameCenterAchievementsGetToManyRelatedResponse = (GameCenterAchievementsResponse); -export type AppsAppPricePointsGetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsGameCenterAchievementsGetToManyRelatedError = (ErrorResponse); -export type AppsAppPriceScheduleGetToOneRelatedData = { +export type GameCenterDetailsGameCenterAppVersionsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -24554,41 +24079,37 @@ export type AppsAppPriceScheduleGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appPrices - */ - 'fields[appPrices]'?: Array<('manual' | 'startDate' | 'endDate' | 'appPricePoint' | 'territory')>; - /** - * the fields to include for returned resources of type appPriceSchedules + * the fields to include for returned resources of type appStoreVersions */ - 'fields[appPriceSchedules]'?: Array<('app' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterAppVersions */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; /** - * the fields to include for returned resources of type territories + * filter by attribute 'enabled' */ - 'fields[territories]'?: Array<('currency')>; + 'filter[enabled]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; + include?: Array<('compatibilityVersions' | 'appStoreVersion')>; /** - * maximum number of related automaticPrices returned (when they are included) + * maximum resources per page */ - 'limit[automaticPrices]'?: number; + limit?: number; /** - * maximum number of related manualPrices returned (when they are included) + * maximum number of related compatibilityVersions returned (when they are included) */ - 'limit[manualPrices]'?: number; + 'limit[compatibilityVersions]'?: number; }; }; -export type AppsAppPriceScheduleGetToOneRelatedResponse = (AppPriceScheduleResponse); +export type GameCenterDetailsGameCenterAppVersionsGetToManyRelatedResponse = (GameCenterAppVersionsResponse); -export type AppsAppPriceScheduleGetToOneRelatedError = (ErrorResponse); +export type GameCenterDetailsGameCenterAppVersionsGetToManyRelatedError = (ErrorResponse); -export type AppsAppStoreVersionExperimentsV2GetToManyRelatedData = { +export type GameCenterDetailsGameCenterGroupGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -24597,49 +24118,53 @@ export type AppsAppStoreVersionExperimentsV2GetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterAchievements */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * the fields to include for returned resources of type appStoreVersionExperiments + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the fields to include for returned resources of type appStoreVersionExperimentTreatments + * the fields to include for returned resources of type gameCenterGroups */ - 'fields[appStoreVersionExperimentTreatments]'?: Array<('name' | 'appIcon' | 'appIconName' | 'promotedDate' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appStoreVersionExperimentTreatmentLocalizations')>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type gameCenterLeaderboards */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** - * filter by attribute 'state' + * the fields to include for returned resources of type gameCenterLeaderboardSets */ - 'filter[state]'?: Array<('PREPARE_FOR_SUBMISSION' | 'READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'COMPLETED' | 'STOPPED')>; + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; + include?: Array<('gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * maximum resources per page + * maximum number of related gameCenterAchievements returned (when they are included) */ - limit?: number; + 'limit[gameCenterAchievements]'?: number; /** - * maximum number of related appStoreVersionExperimentTreatments returned (when they are included) + * maximum number of related gameCenterDetails returned (when they are included) */ - 'limit[appStoreVersionExperimentTreatments]'?: number; + 'limit[gameCenterDetails]'?: number; /** - * maximum number of related controlVersions returned (when they are included) + * maximum number of related gameCenterLeaderboards returned (when they are included) */ - 'limit[controlVersions]'?: number; + 'limit[gameCenterLeaderboards]'?: number; + /** + * maximum number of related gameCenterLeaderboardSets returned (when they are included) + */ + 'limit[gameCenterLeaderboardSets]'?: number; }; }; -export type AppsAppStoreVersionExperimentsV2GetToManyRelatedResponse = (AppStoreVersionExperimentsV2Response); +export type GameCenterDetailsGameCenterGroupGetToOneRelatedResponse = (GameCenterGroupResponse); -export type AppsAppStoreVersionExperimentsV2GetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsGameCenterGroupGetToOneRelatedError = (ErrorResponse); -export type AppsAppStoreVersionsGetToManyRelatedData = { +export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipData = { path: { /** * the id of the requested resource @@ -24648,106 +24173,101 @@ export type AppsAppStoreVersionsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type ageRatingDeclarations - */ - 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; - /** - * the fields to include for returned resources of type alternativeDistributionPackages - */ - 'fields[alternativeDistributionPackages]'?: Array<('appStoreVersion' | 'versions')>; - /** - * the fields to include for returned resources of type appClipDefaultExperiences - */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type appStoreReviewDetails - */ - 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; - /** - * the fields to include for returned resources of type appStoreVersionExperiments - */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; - /** - * the fields to include for returned resources of type appStoreVersionLocalizations + * maximum resources per page */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; + limit?: number; + }; +}; + +export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipResponse = (GameCenterDetailGameCenterLeaderboardSetsLinkagesResponse); + +export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipError = (ErrorResponse); + +export type GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterDetailGameCenterLeaderboardSetsLinkagesRequest; + path: { /** - * the fields to include for returned resources of type appStoreVersionPhasedReleases + * the id of the requested resource */ - 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber' | 'appStoreVersion')>; + id: string; + }; +}; + +export type GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipResponse = (void); + +export type GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipError = (ErrorResponse); + +export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedData = { + path: { /** - * the fields to include for returned resources of type appStoreVersions + * the id of the requested resource */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type appStoreVersionSubmissions + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type gameCenterGroups */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * the fields to include for returned resources of type gameCenterAppVersions + * the fields to include for returned resources of type gameCenterLeaderboards */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** - * the fields to include for returned resources of type routingAppCoverages + * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations */ - 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreVersion')>; + 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; /** - * filter by attribute 'appStoreState' + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases */ - 'filter[appStoreState]'?: Array<('ACCEPTED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_CONTRACT' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PREORDER_READY_FOR_SALE' | 'PROCESSING_FOR_APP_STORE' | 'READY_FOR_REVIEW' | 'READY_FOR_SALE' | 'REJECTED' | 'REMOVED_FROM_SALE' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW' | 'REPLACED_WITH_NEW_VERSION' | 'NOT_APPLICABLE')>; + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** - * filter by attribute 'appVersionState' + * the fields to include for returned resources of type gameCenterLeaderboardSets */ - 'filter[appVersionState]'?: Array<('ACCEPTED' | 'DEVELOPER_REJECTED' | 'IN_REVIEW' | 'INVALID_BINARY' | 'METADATA_REJECTED' | 'PENDING_APPLE_RELEASE' | 'PENDING_DEVELOPER_RELEASE' | 'PREPARE_FOR_SUBMISSION' | 'PROCESSING_FOR_DISTRIBUTION' | 'READY_FOR_DISTRIBUTION' | 'READY_FOR_REVIEW' | 'REJECTED' | 'REPLACED_WITH_NEW_VERSION' | 'WAITING_FOR_EXPORT_COMPLIANCE' | 'WAITING_FOR_REVIEW')>; + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** * filter by id(s) */ 'filter[id]'?: Array<(string)>; /** - * filter by attribute 'platform' - */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; - /** - * filter by attribute 'versionString' + * filter by attribute 'referenceName' */ - 'filter[versionString]'?: Array<(string)>; + 'filter[referenceName]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related appStoreVersionExperiments returned (when they are included) - * @deprecated + * maximum number of related gameCenterLeaderboards returned (when they are included) */ - 'limit[appStoreVersionExperiments]'?: number; + 'limit[gameCenterLeaderboards]'?: number; /** - * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + * maximum number of related localizations returned (when they are included) */ - 'limit[appStoreVersionExperimentsV2]'?: number; + 'limit[localizations]'?: number; /** - * maximum number of related appStoreVersionLocalizations returned (when they are included) + * maximum number of related releases returned (when they are included) */ - 'limit[appStoreVersionLocalizations]'?: number; + 'limit[releases]'?: number; }; }; -export type AppsAppStoreVersionsGetToManyRelatedResponse = (AppStoreVersionsResponse); +export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedResponse = (GameCenterLeaderboardSetsResponse); -export type AppsAppStoreVersionsGetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedError = (ErrorResponse); -export type AppsBetaAppLocalizationsGetToManyRelatedData = { +export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipData = { path: { /** * the id of the requested resource @@ -24755,10 +24275,6 @@ export type AppsBetaAppLocalizationsGetToManyRelatedData = { id: string; }; query?: { - /** - * the fields to include for returned resources of type betaAppLocalizations - */ - 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; /** * maximum resources per page */ @@ -24766,30 +24282,28 @@ export type AppsBetaAppLocalizationsGetToManyRelatedData = { }; }; -export type AppsBetaAppLocalizationsGetToManyRelatedResponse = (BetaAppLocalizationsWithoutIncludesResponse); +export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipResponse = (GameCenterDetailGameCenterLeaderboardsLinkagesResponse); -export type AppsBetaAppLocalizationsGetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipError = (ErrorResponse); -export type AppsBetaAppReviewDetailGetToOneRelatedData = { +export type GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterDetailGameCenterLeaderboardsLinkagesRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type betaAppReviewDetails - */ - 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; - }; }; -export type AppsBetaAppReviewDetailGetToOneRelatedResponse = (BetaAppReviewDetailWithoutIncludesResponse); +export type GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipResponse = (void); -export type AppsBetaAppReviewDetailGetToOneRelatedError = (ErrorResponse); +export type GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipError = (ErrorResponse); -export type AppsBetaGroupsGetToManyRelatedData = { +export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -24798,57 +24312,69 @@ export type AppsBetaGroupsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type betaGroups + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * the fields to include for returned resources of type gameCenterGroups + */ + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + */ + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardReleases + */ + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * filter by attribute 'archived' + */ + 'filter[archived]'?: Array<(string)>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'referenceName' + */ + 'filter[referenceName]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** * maximum resources per page */ limit?: number; - }; -}; - -export type AppsBetaGroupsGetToManyRelatedResponse = (BetaGroupsWithoutIncludesResponse); - -export type AppsBetaGroupsGetToManyRelatedError = (ErrorResponse); - -export type AppsBetaLicenseAgreementGetToOneRelatedData = { - path: { /** - * the id of the requested resource + * maximum number of related gameCenterLeaderboardSets returned (when they are included) */ - id: string; - }; - query?: { + 'limit[gameCenterLeaderboardSets]'?: number; /** - * the fields to include for returned resources of type betaLicenseAgreements + * maximum number of related localizations returned (when they are included) */ - 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; - }; -}; - -export type AppsBetaLicenseAgreementGetToOneRelatedResponse = (BetaLicenseAgreementWithoutIncludesResponse); - -export type AppsBetaLicenseAgreementGetToOneRelatedError = (ErrorResponse); - -export type AppsBetaTestersDeleteToManyRelationshipData = { - /** - * List of related linkages - */ - body: AppBetaTestersLinkagesRequest; - path: { + 'limit[localizations]'?: number; /** - * the id of the requested resource + * maximum number of related releases returned (when they are included) */ - id: string; + 'limit[releases]'?: number; }; }; -export type AppsBetaTestersDeleteToManyRelationshipResponse = (unknown | void); +export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedResponse = (GameCenterLeaderboardsResponse); -export type AppsBetaTestersDeleteToManyRelationshipError = (ErrorResponse); +export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedError = (ErrorResponse); -export type AppsBuildsGetToManyRelatedData = { +export type GameCenterDetailsLeaderboardReleasesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -24857,9 +24383,29 @@ export type AppsBuildsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardReleases + */ + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * filter by id(s) of related 'gameCenterLeaderboard' + */ + 'filter[gameCenterLeaderboard]'?: Array<(string)>; + /** + * filter by attribute 'live' + */ + 'filter[live]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterLeaderboard')>; /** * maximum resources per page */ @@ -24867,11 +24413,11 @@ export type AppsBuildsGetToManyRelatedData = { }; }; -export type AppsBuildsGetToManyRelatedResponse = (BuildsWithoutIncludesResponse); +export type GameCenterDetailsLeaderboardReleasesGetToManyRelatedResponse = (GameCenterLeaderboardReleasesResponse); -export type AppsBuildsGetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsLeaderboardReleasesGetToManyRelatedError = (ErrorResponse); -export type AppsCiProductGetToOneRelatedData = { +export type GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -24880,126 +24426,116 @@ export type AppsCiProductGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the fields to include for returned resources of type bundleIds + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases */ - 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** - * the fields to include for returned resources of type ciProducts + * the fields to include for returned resources of type gameCenterLeaderboardSets */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** - * the fields to include for returned resources of type scmRepositories + * filter by id(s) of related 'gameCenterLeaderboardSet' */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; + 'filter[gameCenterLeaderboardSet]'?: Array<(string)>; + /** + * filter by attribute 'live' + */ + 'filter[live]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'bundleId' | 'primaryRepositories')>; + include?: Array<('gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** - * maximum number of related primaryRepositories returned (when they are included) + * maximum resources per page */ - 'limit[primaryRepositories]'?: number; + limit?: number; }; }; -export type AppsCiProductGetToOneRelatedResponse = (CiProductResponse); +export type GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedResponse = (GameCenterLeaderboardSetReleasesResponse); -export type AppsCiProductGetToOneRelatedError = (ErrorResponse); +export type GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedError = (ErrorResponse); -export type AppsCustomerReviewsGetToManyRelatedData = { +export type GameCenterDetailsClassicMatchmakingRequestsGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * filter by publishedResponse - */ - 'exists[publishedResponse]'?: boolean; - /** - * the fields to include for returned resources of type customerReviewResponses - */ - 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; - /** - * the fields to include for returned resources of type customerReviews - */ - 'fields[customerReviews]'?: Array<('rating' | 'title' | 'body' | 'reviewerNickname' | 'createdDate' | 'territory' | 'response')>; + query: { /** - * filter by attribute 'rating' + * filter by 'result' attribute dimension */ - 'filter[rating]'?: Array<(string)>; + 'filter[result]'?: 'MATCHED' | 'CANCELED' | 'EXPIRED'; /** - * filter by attribute 'territory' + * the granularity of the per-group dataset */ - 'filter[territory]'?: Array<('ABW' | 'AFG' | 'AGO' | 'AIA' | 'ALB' | 'AND' | 'ANT' | 'ARE' | 'ARG' | 'ARM' | 'ASM' | 'ATG' | 'AUS' | 'AUT' | 'AZE' | 'BDI' | 'BEL' | 'BEN' | 'BES' | 'BFA' | 'BGD' | 'BGR' | 'BHR' | 'BHS' | 'BIH' | 'BLR' | 'BLZ' | 'BMU' | 'BOL' | 'BRA' | 'BRB' | 'BRN' | 'BTN' | 'BWA' | 'CAF' | 'CAN' | 'CHE' | 'CHL' | 'CHN' | 'CIV' | 'CMR' | 'COD' | 'COG' | 'COK' | 'COL' | 'COM' | 'CPV' | 'CRI' | 'CUB' | 'CUW' | 'CXR' | 'CYM' | 'CYP' | 'CZE' | 'DEU' | 'DJI' | 'DMA' | 'DNK' | 'DOM' | 'DZA' | 'ECU' | 'EGY' | 'ERI' | 'ESP' | 'EST' | 'ETH' | 'FIN' | 'FJI' | 'FLK' | 'FRA' | 'FRO' | 'FSM' | 'GAB' | 'GBR' | 'GEO' | 'GGY' | 'GHA' | 'GIB' | 'GIN' | 'GLP' | 'GMB' | 'GNB' | 'GNQ' | 'GRC' | 'GRD' | 'GRL' | 'GTM' | 'GUF' | 'GUM' | 'GUY' | 'HKG' | 'HND' | 'HRV' | 'HTI' | 'HUN' | 'IDN' | 'IMN' | 'IND' | 'IRL' | 'IRQ' | 'ISL' | 'ISR' | 'ITA' | 'JAM' | 'JEY' | 'JOR' | 'JPN' | 'KAZ' | 'KEN' | 'KGZ' | 'KHM' | 'KIR' | 'KNA' | 'KOR' | 'KWT' | 'LAO' | 'LBN' | 'LBR' | 'LBY' | 'LCA' | 'LIE' | 'LKA' | 'LSO' | 'LTU' | 'LUX' | 'LVA' | 'MAC' | 'MAR' | 'MCO' | 'MDA' | 'MDG' | 'MDV' | 'MEX' | 'MHL' | 'MKD' | 'MLI' | 'MLT' | 'MMR' | 'MNE' | 'MNG' | 'MNP' | 'MOZ' | 'MRT' | 'MSR' | 'MTQ' | 'MUS' | 'MWI' | 'MYS' | 'MYT' | 'NAM' | 'NCL' | 'NER' | 'NFK' | 'NGA' | 'NIC' | 'NIU' | 'NLD' | 'NOR' | 'NPL' | 'NRU' | 'NZL' | 'OMN' | 'PAK' | 'PAN' | 'PER' | 'PHL' | 'PLW' | 'PNG' | 'POL' | 'PRI' | 'PRT' | 'PRY' | 'PSE' | 'PYF' | 'QAT' | 'REU' | 'ROU' | 'RUS' | 'RWA' | 'SAU' | 'SEN' | 'SGP' | 'SHN' | 'SLB' | 'SLE' | 'SLV' | 'SMR' | 'SOM' | 'SPM' | 'SRB' | 'SSD' | 'STP' | 'SUR' | 'SVK' | 'SVN' | 'SWE' | 'SWZ' | 'SXM' | 'SYC' | 'TCA' | 'TCD' | 'TGO' | 'THA' | 'TJK' | 'TKM' | 'TLS' | 'TON' | 'TTO' | 'TUN' | 'TUR' | 'TUV' | 'TWN' | 'TZA' | 'UGA' | 'UKR' | 'UMI' | 'URY' | 'USA' | 'UZB' | 'VAT' | 'VCT' | 'VEN' | 'VGB' | 'VIR' | 'VNM' | 'VUT' | 'WLF' | 'WSM' | 'YEM' | 'ZAF' | 'ZMB' | 'ZWE')>; + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * comma-separated list of relationships to include + * the dimension by which to group the results */ - include?: Array<('response')>; + groupBy?: Array<('result')>; /** - * maximum resources per page + * maximum number of groups to return per page */ limit?: number; /** - * comma-separated list of sort expressions; resources will be sorted as specified + * comma-separated list of sort expressions; metrics will be sorted as specified */ - sort?: Array<('rating' | '-rating' | 'createdDate' | '-createdDate')>; + sort?: Array<('count' | '-count' | 'averageSecondsInQueue' | '-averageSecondsInQueue' | 'p50SecondsInQueue' | '-p50SecondsInQueue' | 'p95SecondsInQueue' | '-p95SecondsInQueue')>; }; }; -export type AppsCustomerReviewsGetToManyRelatedResponse = (CustomerReviewsResponse); +export type GameCenterDetailsClassicMatchmakingRequestsGetMetricsResponse = (GameCenterMatchmakingAppRequestsV1MetricResponse); -export type AppsCustomerReviewsGetToManyRelatedError = (ErrorResponse); +export type GameCenterDetailsClassicMatchmakingRequestsGetMetricsError = (ErrorResponse); -export type AppsEndUserLicenseAgreementGetToOneRelatedData = { +export type GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { + query: { + /** + * filter by 'result' attribute dimension + */ + 'filter[result]'?: 'MATCHED' | 'CANCELED' | 'EXPIRED'; + /** + * the granularity of the per-group dataset + */ + granularity: 'P1D' | 'PT1H' | 'PT15M'; + /** + * the dimension by which to group the results + */ + groupBy?: Array<('result')>; + /** + * maximum number of groups to return per page + */ + limit?: number; /** - * the fields to include for returned resources of type endUserLicenseAgreements + * comma-separated list of sort expressions; metrics will be sorted as specified */ - 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; + sort?: Array<('count' | '-count' | 'averageSecondsInQueue' | '-averageSecondsInQueue' | 'p50SecondsInQueue' | '-p50SecondsInQueue' | 'p95SecondsInQueue' | '-p95SecondsInQueue')>; }; }; -export type AppsEndUserLicenseAgreementGetToOneRelatedResponse = (EndUserLicenseAgreementWithoutIncludesResponse); +export type GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsResponse = (GameCenterMatchmakingAppRequestsV1MetricResponse); -export type AppsEndUserLicenseAgreementGetToOneRelatedError = (ErrorResponse); +export type GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsError = (ErrorResponse); -export type AppsGameCenterDetailGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; +export type GameCenterGroupsGetCollectionData = { query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type gameCenterAchievementReleases - */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** * the fields to include for returned resources of type gameCenterAchievements */ 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterAppVersions - */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; /** * the fields to include for returned resources of type gameCenterDetails */ @@ -25008,38 +24544,34 @@ export type AppsGameCenterDetailGetToOneRelatedData = { * the fields to include for returned resources of type gameCenterGroups */ 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases - */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; /** * the fields to include for returned resources of type gameCenterLeaderboards */ 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases - */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** * the fields to include for returned resources of type gameCenterLeaderboardSets */ 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * filter by id(s) of related 'gameCenterDetails' + */ + 'filter[gameCenterDetails]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + include?: Array<('gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * maximum number of related achievementReleases returned (when they are included) + * maximum resources per page */ - 'limit[achievementReleases]'?: number; + limit?: number; /** * maximum number of related gameCenterAchievements returned (when they are included) */ 'limit[gameCenterAchievements]'?: number; /** - * maximum number of related gameCenterAppVersions returned (when they are included) + * maximum number of related gameCenterDetails returned (when they are included) */ - 'limit[gameCenterAppVersions]'?: number; + 'limit[gameCenterDetails]'?: number; /** * maximum number of related gameCenterLeaderboards returned (when they are included) */ @@ -25048,22 +24580,25 @@ export type AppsGameCenterDetailGetToOneRelatedData = { * maximum number of related gameCenterLeaderboardSets returned (when they are included) */ 'limit[gameCenterLeaderboardSets]'?: number; - /** - * maximum number of related leaderboardReleases returned (when they are included) - */ - 'limit[leaderboardReleases]'?: number; - /** - * maximum number of related leaderboardSetReleases returned (when they are included) - */ - 'limit[leaderboardSetReleases]'?: number; }; }; -export type AppsGameCenterDetailGetToOneRelatedResponse = (GameCenterDetailResponse); +export type GameCenterGroupsGetCollectionResponse = (GameCenterGroupsResponse); -export type AppsGameCenterDetailGetToOneRelatedError = (ErrorResponse); +export type GameCenterGroupsGetCollectionError = (ErrorResponse); -export type AppsGameCenterEnabledVersionsGetToManyRelatedData = { +export type GameCenterGroupsCreateInstanceData = { + /** + * GameCenterGroup representation + */ + body: GameCenterGroupCreateRequest; +}; + +export type GameCenterGroupsCreateInstanceResponse = (GameCenterGroupResponse); + +export type GameCenterGroupsCreateInstanceError = (ErrorResponse); + +export type GameCenterGroupsGetInstanceData = { path: { /** * the id of the requested resource @@ -25072,97 +24607,119 @@ export type AppsGameCenterEnabledVersionsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterAchievements */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * the fields to include for returned resources of type gameCenterEnabledVersions + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * filter by id(s) + * the fields to include for returned resources of type gameCenterGroups */ - 'filter[id]'?: Array<(string)>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * filter by attribute 'platform' + * the fields to include for returned resources of type gameCenterLeaderboards */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** - * filter by attribute 'versionString' + * the fields to include for returned resources of type gameCenterLeaderboardSets */ - 'filter[versionString]'?: Array<(string)>; + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** * comma-separated list of relationships to include */ - include?: Array<('compatibleVersions' | 'app')>; + include?: Array<('gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * maximum resources per page + * maximum number of related gameCenterAchievements returned (when they are included) */ - limit?: number; + 'limit[gameCenterAchievements]'?: number; /** - * maximum number of related compatibleVersions returned (when they are included) - * @deprecated + * maximum number of related gameCenterDetails returned (when they are included) */ - 'limit[compatibleVersions]'?: number; + 'limit[gameCenterDetails]'?: number; /** - * comma-separated list of sort expressions; resources will be sorted as specified + * maximum number of related gameCenterLeaderboards returned (when they are included) */ - sort?: Array<('versionString' | '-versionString')>; + 'limit[gameCenterLeaderboards]'?: number; + /** + * maximum number of related gameCenterLeaderboardSets returned (when they are included) + */ + 'limit[gameCenterLeaderboardSets]'?: number; }; }; -export type AppsGameCenterEnabledVersionsGetToManyRelatedResponse = (GameCenterEnabledVersionsResponse); +export type GameCenterGroupsGetInstanceResponse = (GameCenterGroupResponse); -export type AppsGameCenterEnabledVersionsGetToManyRelatedError = (ErrorResponse); +export type GameCenterGroupsGetInstanceError = (ErrorResponse); -export type AppsInAppPurchasesGetToManyRelatedData = { +export type GameCenterGroupsUpdateInstanceData = { + /** + * GameCenterGroup representation + */ + body: GameCenterGroupUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type inAppPurchases - */ - 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps')>; - /** - * filter by canBeSubmitted - */ - 'filter[canBeSubmitted]'?: Array<(string)>; +}; + +export type GameCenterGroupsUpdateInstanceResponse = (GameCenterGroupResponse); + +export type GameCenterGroupsUpdateInstanceError = (ErrorResponse); + +export type GameCenterGroupsDeleteInstanceData = { + path: { /** - * filter by attribute 'inAppPurchaseType' + * the id of the requested resource */ - 'filter[inAppPurchaseType]'?: Array<('AUTOMATICALLY_RENEWABLE_SUBSCRIPTION' | 'NON_CONSUMABLE' | 'CONSUMABLE' | 'NON_RENEWING_SUBSCRIPTION' | 'FREE_SUBSCRIPTION')>; + id: string; + }; +}; + +export type GameCenterGroupsDeleteInstanceResponse = (void); + +export type GameCenterGroupsDeleteInstanceError = (ErrorResponse); + +export type GameCenterGroupsGameCenterAchievementsGetToManyRelationshipData = { + path: { /** - * comma-separated list of relationships to include + * the id of the requested resource */ - include?: Array<('apps')>; + id: string; + }; + query?: { /** * maximum resources per page */ limit?: number; + }; +}; + +export type GameCenterGroupsGameCenterAchievementsGetToManyRelationshipResponse = (GameCenterGroupGameCenterAchievementsLinkagesResponse); + +export type GameCenterGroupsGameCenterAchievementsGetToManyRelationshipError = (ErrorResponse); + +export type GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterGroupGameCenterAchievementsLinkagesRequest; + path: { /** - * maximum number of related apps returned (when they are included) - */ - 'limit[apps]'?: number; - /** - * comma-separated list of sort expressions; resources will be sorted as specified + * the id of the requested resource */ - sort?: Array<('referenceName' | '-referenceName' | 'productId' | '-productId' | 'inAppPurchaseType' | '-inAppPurchaseType')>; + id: string; }; }; -export type AppsInAppPurchasesGetToManyRelatedResponse = (InAppPurchasesResponse); +export type GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipResponse = (void); -export type AppsInAppPurchasesGetToManyRelatedError = (ErrorResponse); +export type GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipError = (ErrorResponse); -export type AppsInAppPurchasesV2GetToManyRelatedData = { +export type GameCenterGroupsGameCenterAchievementsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -25171,100 +24728,61 @@ export type AppsInAppPurchasesV2GetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchaseAppStoreReviewScreenshots - */ - 'fields[inAppPurchaseAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'inAppPurchaseV2')>; - /** - * the fields to include for returned resources of type inAppPurchaseAvailabilities - */ - 'fields[inAppPurchaseAvailabilities]'?: Array<('availableInNewTerritories' | 'inAppPurchase' | 'availableTerritories')>; - /** - * the fields to include for returned resources of type inAppPurchaseContents - */ - 'fields[inAppPurchaseContents]'?: Array<('fileName' | 'fileSize' | 'url' | 'lastModifiedDate' | 'inAppPurchaseV2')>; - /** - * the fields to include for returned resources of type inAppPurchaseImages - */ - 'fields[inAppPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'uploaded' | 'state' | 'inAppPurchase')>; - /** - * the fields to include for returned resources of type inAppPurchaseLocalizations + * the fields to include for returned resources of type gameCenterAchievementLocalizations */ - 'fields[inAppPurchaseLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'inAppPurchaseV2')>; + 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; /** - * the fields to include for returned resources of type inAppPurchasePriceSchedules + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'fields[inAppPurchasePriceSchedules]'?: Array<('inAppPurchase' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** - * the fields to include for returned resources of type inAppPurchases + * the fields to include for returned resources of type gameCenterAchievements */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * the fields to include for returned resources of type promotedPurchases + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * filter by attribute 'inAppPurchaseType' + * the fields to include for returned resources of type gameCenterGroups */ - 'filter[inAppPurchaseType]'?: Array<('CONSUMABLE' | 'NON_CONSUMABLE' | 'NON_RENEWING_SUBSCRIPTION')>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * filter by attribute 'name' + * filter by attribute 'archived' */ - 'filter[name]'?: Array<(string)>; + 'filter[archived]'?: Array<(string)>; /** - * filter by attribute 'productId' + * filter by id(s) */ - 'filter[productId]'?: Array<(string)>; + 'filter[id]'?: Array<(string)>; /** - * filter by attribute 'state' + * filter by attribute 'referenceName' */ - 'filter[state]'?: Array<('MISSING_METADATA' | 'WAITING_FOR_UPLOAD' | 'PROCESSING_CONTENT' | 'READY_TO_SUBMIT' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'DEVELOPER_ACTION_NEEDED' | 'PENDING_BINARY_APPROVAL' | 'APPROVED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'REMOVED_FROM_SALE' | 'REJECTED')>; + 'filter[referenceName]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('inAppPurchaseLocalizations' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related images returned (when they are included) - */ - 'limit[images]'?: number; - /** - * maximum number of related inAppPurchaseLocalizations returned (when they are included) - */ - 'limit[inAppPurchaseLocalizations]'?: number; - /** - * comma-separated list of sort expressions; resources will be sorted as specified - */ - sort?: Array<('name' | '-name' | 'inAppPurchaseType' | '-inAppPurchaseType')>; - }; -}; - -export type AppsInAppPurchasesV2GetToManyRelatedResponse = (InAppPurchasesV2Response); - -export type AppsInAppPurchasesV2GetToManyRelatedError = (ErrorResponse); - -export type AppsMarketplaceSearchDetailGetToOneRelatedData = { - path: { - /** - * the id of the requested resource + * maximum number of related localizations returned (when they are included) */ - id: string; - }; - query?: { + 'limit[localizations]'?: number; /** - * the fields to include for returned resources of type marketplaceSearchDetails + * maximum number of related releases returned (when they are included) */ - 'fields[marketplaceSearchDetails]'?: Array<('catalogUrl' | 'app')>; + 'limit[releases]'?: number; }; }; -export type AppsMarketplaceSearchDetailGetToOneRelatedResponse = (MarketplaceSearchDetailResponse); +export type GameCenterGroupsGameCenterAchievementsGetToManyRelatedResponse = (GameCenterAchievementsResponse); -export type AppsMarketplaceSearchDetailGetToOneRelatedError = (ErrorResponse); +export type GameCenterGroupsGameCenterAchievementsGetToManyRelatedError = (ErrorResponse); -export type AppsPerfPowerMetricsGetToManyRelatedData = { +export type GameCenterGroupsGameCenterDetailsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -25273,67 +24791,93 @@ export type AppsPerfPowerMetricsGetToManyRelatedData = { }; query?: { /** - * filter by attribute 'deviceType' + * the fields to include for returned resources of type apps */ - 'filter[deviceType]'?: Array<(string)>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * filter by attribute 'metricType' + * the fields to include for returned resources of type gameCenterAchievementReleases */ - 'filter[metricType]'?: Array<('DISK' | 'HANG' | 'BATTERY' | 'LAUNCH' | 'MEMORY' | 'ANIMATION' | 'TERMINATION')>; + 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; /** - * filter by attribute 'platform' + * the fields to include for returned resources of type gameCenterAchievements */ - 'filter[platform]'?: Array<('IOS')>; - }; -}; - -export type AppsPerfPowerMetricsGetToManyRelatedResponse = (xcodeMetrics); - -export type AppsPerfPowerMetricsGetToManyRelatedError = (ErrorResponse); - -export type AppsPreOrderGetToOneRelatedData = { - path: { + 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; /** - * the id of the requested resource + * the fields to include for returned resources of type gameCenterAppVersions */ - id: string; - }; - query?: { + 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; /** - * the fields to include for returned resources of type appPreOrders + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[appPreOrders]'?: Array<('preOrderAvailableDate' | 'appReleaseDate' | 'app')>; - }; -}; - -export type AppsPreOrderGetToOneRelatedResponse = (AppPreOrderWithoutIncludesResponse); - -export type AppsPreOrderGetToOneRelatedError = (ErrorResponse); - -export type AppsPreReleaseVersionsGetToManyRelatedData = { - path: { + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the id of the requested resource + * the fields to include for returned resources of type gameCenterGroups */ - id: string; - }; - query?: { + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * the fields to include for returned resources of type preReleaseVersions + * the fields to include for returned resources of type gameCenterLeaderboardReleases */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + */ + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * filter by attribute 'gameCenterAppVersions.enabled' + */ + 'filter[gameCenterAppVersions.enabled]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related achievementReleases returned (when they are included) + */ + 'limit[achievementReleases]'?: number; + /** + * maximum number of related gameCenterAchievements returned (when they are included) + */ + 'limit[gameCenterAchievements]'?: number; + /** + * maximum number of related gameCenterAppVersions returned (when they are included) + */ + 'limit[gameCenterAppVersions]'?: number; + /** + * maximum number of related gameCenterLeaderboards returned (when they are included) + */ + 'limit[gameCenterLeaderboards]'?: number; + /** + * maximum number of related gameCenterLeaderboardSets returned (when they are included) + */ + 'limit[gameCenterLeaderboardSets]'?: number; + /** + * maximum number of related leaderboardReleases returned (when they are included) + */ + 'limit[leaderboardReleases]'?: number; + /** + * maximum number of related leaderboardSetReleases returned (when they are included) + */ + 'limit[leaderboardSetReleases]'?: number; }; }; -export type AppsPreReleaseVersionsGetToManyRelatedResponse = (PreReleaseVersionsWithoutIncludesResponse); +export type GameCenterGroupsGameCenterDetailsGetToManyRelatedResponse = (GameCenterDetailsResponse); -export type AppsPreReleaseVersionsGetToManyRelatedError = (ErrorResponse); +export type GameCenterGroupsGameCenterDetailsGetToManyRelatedError = (ErrorResponse); -export type AppsPromotedPurchasesGetToManyRelationshipData = { +export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipData = { path: { /** * the id of the requested resource @@ -25348,15 +24892,15 @@ export type AppsPromotedPurchasesGetToManyRelationshipData = { }; }; -export type AppsPromotedPurchasesGetToManyRelationshipResponse = (AppPromotedPurchasesLinkagesResponse); +export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipResponse = (GameCenterGroupGameCenterLeaderboardSetsLinkagesResponse); -export type AppsPromotedPurchasesGetToManyRelationshipError = (ErrorResponse); +export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipError = (ErrorResponse); -export type AppsPromotedPurchasesReplaceToManyRelationshipData = { +export type GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipData = { /** * List of related linkages */ - body: AppPromotedPurchasesLinkagesRequest; + body: GameCenterGroupGameCenterLeaderboardSetsLinkagesRequest; path: { /** * the id of the requested resource @@ -25365,11 +24909,11 @@ export type AppsPromotedPurchasesReplaceToManyRelationshipData = { }; }; -export type AppsPromotedPurchasesReplaceToManyRelationshipResponse = (void); +export type GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipResponse = (void); -export type AppsPromotedPurchasesReplaceToManyRelationshipError = (ErrorResponse); +export type GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipError = (ErrorResponse); -export type AppsPromotedPurchasesGetToManyRelatedData = { +export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -25378,42 +24922,65 @@ export type AppsPromotedPurchasesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchases + * the fields to include for returned resources of type gameCenterDetails + */ + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * the fields to include for returned resources of type gameCenterGroups */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * the fields to include for returned resources of type promotedPurchaseImages + * the fields to include for returned resources of type gameCenterLeaderboards */ - 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'uploaded' | 'state' | 'promotedPurchase')>; + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** - * the fields to include for returned resources of type promotedPurchases + * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; /** - * the fields to include for returned resources of type subscriptions + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'referenceName' + */ + 'filter[referenceName]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related promotionImages returned (when they are included) - * @deprecated + * maximum number of related gameCenterLeaderboards returned (when they are included) */ - 'limit[promotionImages]'?: number; + 'limit[gameCenterLeaderboards]'?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type AppsPromotedPurchasesGetToManyRelatedResponse = (PromotedPurchasesResponse); +export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedResponse = (GameCenterLeaderboardSetsResponse); -export type AppsPromotedPurchasesGetToManyRelatedError = (ErrorResponse); +export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedError = (ErrorResponse); -export type AppsReviewSubmissionsGetToManyRelatedData = { +export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipData = { path: { /** * the id of the requested resource @@ -25421,73 +24988,35 @@ export type AppsReviewSubmissionsGetToManyRelatedData = { id: string; }; query?: { - /** - * the fields to include for returned resources of type actors - */ - 'fields[actors]'?: Array<('actorType' | 'userFirstName' | 'userLastName' | 'userEmail' | 'apiKeyId')>; - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type appStoreVersions - */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; - /** - * the fields to include for returned resources of type reviewSubmissionItems - */ - 'fields[reviewSubmissionItems]'?: Array<('state' | 'resolved' | 'removed' | 'reviewSubmission' | 'appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; - /** - * the fields to include for returned resources of type reviewSubmissions - */ - 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'submitted' | 'canceled' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; - /** - * filter by attribute 'platform' - */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; - /** - * filter by attribute 'state' - */ - 'filter[state]'?: Array<('READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'UNRESOLVED_ISSUES' | 'CANCELING' | 'COMPLETING' | 'COMPLETE')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related items returned (when they are included) - */ - 'limit[items]'?: number; }; }; -export type AppsReviewSubmissionsGetToManyRelatedResponse = (ReviewSubmissionsResponse); +export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipResponse = (GameCenterGroupGameCenterLeaderboardsLinkagesResponse); -export type AppsReviewSubmissionsGetToManyRelatedError = (ErrorResponse); +export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipError = (ErrorResponse); -export type AppsSubscriptionGracePeriodGetToOneRelatedData = { +export type GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterGroupGameCenterLeaderboardsLinkagesRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type subscriptionGracePeriods - */ - 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; - }; }; -export type AppsSubscriptionGracePeriodGetToOneRelatedResponse = (SubscriptionGracePeriodResponse); +export type GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipResponse = (void); -export type AppsSubscriptionGracePeriodGetToOneRelatedError = (ErrorResponse); +export type GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipError = (ErrorResponse); -export type AppsSubscriptionGroupsGetToManyRelatedData = { +export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -25496,91 +25025,91 @@ export type AppsSubscriptionGroupsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionGroupLocalizations + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[subscriptionGroupLocalizations]'?: Array<('name' | 'customAppName' | 'locale' | 'state' | 'subscriptionGroup')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the fields to include for returned resources of type subscriptionGroups + * the fields to include for returned resources of type gameCenterGroups + */ + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + */ + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardReleases + */ + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * filter by attribute 'archived' */ - 'fields[subscriptionGroups]'?: Array<('referenceName' | 'app' | 'subscriptions' | 'subscriptionGroupLocalizations')>; + 'filter[archived]'?: Array<(string)>; /** - * the fields to include for returned resources of type subscriptions + * filter by id(s) */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + 'filter[id]'?: Array<(string)>; /** * filter by attribute 'referenceName' */ 'filter[referenceName]'?: Array<(string)>; - /** - * filter by attribute 'subscriptions.state' - */ - 'filter[subscriptions.state]'?: Array<('MISSING_METADATA' | 'READY_TO_SUBMIT' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'DEVELOPER_ACTION_NEEDED' | 'PENDING_BINARY_APPROVAL' | 'APPROVED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'REMOVED_FROM_SALE' | 'REJECTED')>; /** * comma-separated list of relationships to include */ - include?: Array<('subscriptions' | 'subscriptionGroupLocalizations')>; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related subscriptionGroupLocalizations returned (when they are included) + * maximum number of related gameCenterLeaderboardSets returned (when they are included) */ - 'limit[subscriptionGroupLocalizations]'?: number; + 'limit[gameCenterLeaderboardSets]'?: number; /** - * maximum number of related subscriptions returned (when they are included) + * maximum number of related localizations returned (when they are included) */ - 'limit[subscriptions]'?: number; + 'limit[localizations]'?: number; /** - * comma-separated list of sort expressions; resources will be sorted as specified + * maximum number of related releases returned (when they are included) */ - sort?: Array<('referenceName' | '-referenceName')>; + 'limit[releases]'?: number; }; }; -export type AppsSubscriptionGroupsGetToManyRelatedResponse = (SubscriptionGroupsResponse); +export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedResponse = (GameCenterLeaderboardsResponse); -export type AppsSubscriptionGroupsGetToManyRelatedError = (ErrorResponse); +export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedError = (ErrorResponse); -export type BetaAppLocalizationsAppGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - }; +export type GameCenterLeaderboardEntrySubmissionsCreateInstanceData = { + /** + * GameCenterLeaderboardEntrySubmission representation + */ + body: GameCenterLeaderboardEntrySubmissionCreateRequest; }; -export type BetaAppLocalizationsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); +export type GameCenterLeaderboardEntrySubmissionsCreateInstanceResponse = (GameCenterLeaderboardEntrySubmissionResponse); -export type BetaAppLocalizationsAppGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardEntrySubmissionsCreateInstanceError = (ErrorResponse); -export type BetaAppReviewDetailsAppGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - }; +export type GameCenterLeaderboardImagesCreateInstanceData = { + /** + * GameCenterLeaderboardImage representation + */ + body: GameCenterLeaderboardImageCreateRequest; }; -export type BetaAppReviewDetailsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); +export type GameCenterLeaderboardImagesCreateInstanceResponse = (GameCenterLeaderboardImageResponse); -export type BetaAppReviewDetailsAppGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardImagesCreateInstanceError = (ErrorResponse); -export type BetaAppReviewSubmissionsBuildGetToOneRelatedData = { +export type GameCenterLeaderboardImagesGetInstanceData = { path: { /** * the id of the requested resource @@ -25589,55 +25118,62 @@ export type BetaAppReviewSubmissionsBuildGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type gameCenterLeaderboardImages */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[gameCenterLeaderboardImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterLeaderboardLocalization')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboardLocalization')>; }; }; -export type BetaAppReviewSubmissionsBuildGetToOneRelatedResponse = (BuildWithoutIncludesResponse); +export type GameCenterLeaderboardImagesGetInstanceResponse = (GameCenterLeaderboardImageResponse); -export type BetaAppReviewSubmissionsBuildGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardImagesGetInstanceError = (ErrorResponse); -export type BetaBuildLocalizationsBuildGetToOneRelatedData = { +export type GameCenterLeaderboardImagesUpdateInstanceData = { + /** + * GameCenterLeaderboardImage representation + */ + body: GameCenterLeaderboardImageUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - }; }; -export type BetaBuildLocalizationsBuildGetToOneRelatedResponse = (BuildWithoutIncludesResponse); +export type GameCenterLeaderboardImagesUpdateInstanceResponse = (GameCenterLeaderboardImageResponse); -export type BetaBuildLocalizationsBuildGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardImagesUpdateInstanceError = (ErrorResponse); -export type BetaGroupsAppGetToOneRelatedData = { +export type GameCenterLeaderboardImagesDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - }; }; -export type BetaGroupsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); +export type GameCenterLeaderboardImagesDeleteInstanceResponse = (void); -export type BetaGroupsAppGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardImagesDeleteInstanceError = (ErrorResponse); -export type BetaGroupsBetaTestersGetToManyRelationshipData = { +export type GameCenterLeaderboardLocalizationsCreateInstanceData = { + /** + * GameCenterLeaderboardLocalization representation + */ + body: GameCenterLeaderboardLocalizationCreateRequest; +}; + +export type GameCenterLeaderboardLocalizationsCreateInstanceResponse = (GameCenterLeaderboardLocalizationResponse); + +export type GameCenterLeaderboardLocalizationsCreateInstanceError = (ErrorResponse); + +export type GameCenterLeaderboardLocalizationsGetInstanceData = { path: { /** * the id of the requested resource @@ -25646,21 +25182,29 @@ export type BetaGroupsBetaTestersGetToManyRelationshipData = { }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterLeaderboardImages */ - limit?: number; + 'fields[gameCenterLeaderboardImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterLeaderboardLocalization')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + */ + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; }; }; -export type BetaGroupsBetaTestersGetToManyRelationshipResponse = (BetaGroupBetaTestersLinkagesResponse); +export type GameCenterLeaderboardLocalizationsGetInstanceResponse = (GameCenterLeaderboardLocalizationResponse); -export type BetaGroupsBetaTestersGetToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardLocalizationsGetInstanceError = (ErrorResponse); -export type BetaGroupsBetaTestersCreateToManyRelationshipData = { +export type GameCenterLeaderboardLocalizationsUpdateInstanceData = { /** - * List of related linkages + * GameCenterLeaderboardLocalization representation */ - body: BetaGroupBetaTestersLinkagesRequest; + body: GameCenterLeaderboardLocalizationUpdateRequest; path: { /** * the id of the requested resource @@ -25669,15 +25213,11 @@ export type BetaGroupsBetaTestersCreateToManyRelationshipData = { }; }; -export type BetaGroupsBetaTestersCreateToManyRelationshipResponse = (void); +export type GameCenterLeaderboardLocalizationsUpdateInstanceResponse = (GameCenterLeaderboardLocalizationResponse); -export type BetaGroupsBetaTestersCreateToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardLocalizationsUpdateInstanceError = (ErrorResponse); -export type BetaGroupsBetaTestersDeleteToManyRelationshipData = { - /** - * List of related linkages - */ - body: BetaGroupBetaTestersLinkagesRequest; +export type GameCenterLeaderboardLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -25686,11 +25226,11 @@ export type BetaGroupsBetaTestersDeleteToManyRelationshipData = { }; }; -export type BetaGroupsBetaTestersDeleteToManyRelationshipResponse = (void); +export type GameCenterLeaderboardLocalizationsDeleteInstanceResponse = (void); -export type BetaGroupsBetaTestersDeleteToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardLocalizationsDeleteInstanceError = (ErrorResponse); -export type BetaGroupsBetaTestersGetToManyRelatedData = { +export type GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -25699,21 +25239,36 @@ export type BetaGroupsBetaTestersGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type betaTesters + * the fields to include for returned resources of type gameCenterLeaderboardImages */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + 'fields[gameCenterLeaderboardImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterLeaderboardLocalization')>; /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations */ - limit?: number; + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboardLocalization')>; }; }; -export type BetaGroupsBetaTestersGetToManyRelatedResponse = (BetaTestersWithoutIncludesResponse); +export type GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedResponse = (GameCenterLeaderboardImageResponse); -export type BetaGroupsBetaTestersGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedError = (ErrorResponse); -export type BetaGroupsBuildsGetToManyRelationshipData = { +export type GameCenterLeaderboardReleasesCreateInstanceData = { + /** + * GameCenterLeaderboardRelease representation + */ + body: GameCenterLeaderboardReleaseCreateRequest; +}; + +export type GameCenterLeaderboardReleasesCreateInstanceResponse = (GameCenterLeaderboardReleaseResponse); + +export type GameCenterLeaderboardReleasesCreateInstanceError = (ErrorResponse); + +export type GameCenterLeaderboardReleasesGetInstanceData = { path: { /** * the id of the requested resource @@ -25722,21 +25277,21 @@ export type BetaGroupsBuildsGetToManyRelationshipData = { }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterLeaderboardReleases */ - limit?: number; + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterLeaderboard')>; }; }; -export type BetaGroupsBuildsGetToManyRelationshipResponse = (BetaGroupBuildsLinkagesResponse); +export type GameCenterLeaderboardReleasesGetInstanceResponse = (GameCenterLeaderboardReleaseResponse); -export type BetaGroupsBuildsGetToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardReleasesGetInstanceError = (ErrorResponse); -export type BetaGroupsBuildsCreateToManyRelationshipData = { - /** - * List of related linkages - */ - body: BetaGroupBuildsLinkagesRequest; +export type GameCenterLeaderboardReleasesDeleteInstanceData = { path: { /** * the id of the requested resource @@ -25745,51 +25300,86 @@ export type BetaGroupsBuildsCreateToManyRelationshipData = { }; }; -export type BetaGroupsBuildsCreateToManyRelationshipResponse = (void); +export type GameCenterLeaderboardReleasesDeleteInstanceResponse = (void); -export type BetaGroupsBuildsCreateToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardReleasesDeleteInstanceError = (ErrorResponse); -export type BetaGroupsBuildsDeleteToManyRelationshipData = { +export type GameCenterLeaderboardSetImagesCreateInstanceData = { /** - * List of related linkages + * GameCenterLeaderboardSetImage representation */ - body: BetaGroupBuildsLinkagesRequest; + body: GameCenterLeaderboardSetImageCreateRequest; +}; + +export type GameCenterLeaderboardSetImagesCreateInstanceResponse = (GameCenterLeaderboardSetImageResponse); + +export type GameCenterLeaderboardSetImagesCreateInstanceError = (ErrorResponse); + +export type GameCenterLeaderboardSetImagesGetInstanceData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetImages + */ + 'fields[gameCenterLeaderboardSetImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterLeaderboardSetLocalization')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboardSetLocalization')>; + }; }; -export type BetaGroupsBuildsDeleteToManyRelationshipResponse = (void); +export type GameCenterLeaderboardSetImagesGetInstanceResponse = (GameCenterLeaderboardSetImageResponse); -export type BetaGroupsBuildsDeleteToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetImagesGetInstanceError = (ErrorResponse); -export type BetaGroupsBuildsGetToManyRelatedData = { +export type GameCenterLeaderboardSetImagesUpdateInstanceData = { + /** + * GameCenterLeaderboardSetImage representation + */ + body: GameCenterLeaderboardSetImageUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; +}; + +export type GameCenterLeaderboardSetImagesUpdateInstanceResponse = (GameCenterLeaderboardSetImageResponse); + +export type GameCenterLeaderboardSetImagesUpdateInstanceError = (ErrorResponse); + +export type GameCenterLeaderboardSetImagesDeleteInstanceData = { + path: { /** - * maximum resources per page + * the id of the requested resource */ - limit?: number; + id: string; }; }; -export type BetaGroupsBuildsGetToManyRelatedResponse = (BuildsWithoutIncludesResponse); +export type GameCenterLeaderboardSetImagesDeleteInstanceResponse = (void); -export type BetaGroupsBuildsGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetImagesDeleteInstanceError = (ErrorResponse); -export type BetaLicenseAgreementsAppGetToOneRelatedData = { +export type GameCenterLeaderboardSetLocalizationsCreateInstanceData = { + /** + * GameCenterLeaderboardSetLocalization representation + */ + body: GameCenterLeaderboardSetLocalizationCreateRequest; +}; + +export type GameCenterLeaderboardSetLocalizationsCreateInstanceResponse = (GameCenterLeaderboardSetLocalizationResponse); + +export type GameCenterLeaderboardSetLocalizationsCreateInstanceError = (ErrorResponse); + +export type GameCenterLeaderboardSetLocalizationsGetInstanceData = { path: { /** * the id of the requested resource @@ -25798,40 +25388,42 @@ export type BetaLicenseAgreementsAppGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterLeaderboardSetImages + */ + 'fields[gameCenterLeaderboardSetImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterLeaderboardSetLocalization')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; }; }; -export type BetaLicenseAgreementsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); +export type GameCenterLeaderboardSetLocalizationsGetInstanceResponse = (GameCenterLeaderboardSetLocalizationResponse); -export type BetaLicenseAgreementsAppGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetLocalizationsGetInstanceError = (ErrorResponse); -export type BetaTestersAppsGetToManyRelationshipData = { +export type GameCenterLeaderboardSetLocalizationsUpdateInstanceData = { + /** + * GameCenterLeaderboardSetLocalization representation + */ + body: GameCenterLeaderboardSetLocalizationUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type BetaTestersAppsGetToManyRelationshipResponse = (BetaTesterAppsLinkagesResponse); +export type GameCenterLeaderboardSetLocalizationsUpdateInstanceResponse = (GameCenterLeaderboardSetLocalizationResponse); -export type BetaTestersAppsGetToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetLocalizationsUpdateInstanceError = (ErrorResponse); -export type BetaTestersAppsDeleteToManyRelationshipData = { - /** - * List of related linkages - */ - body: BetaTesterAppsLinkagesRequest; +export type GameCenterLeaderboardSetLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -25840,11 +25432,11 @@ export type BetaTestersAppsDeleteToManyRelationshipData = { }; }; -export type BetaTestersAppsDeleteToManyRelationshipResponse = (unknown | void); +export type GameCenterLeaderboardSetLocalizationsDeleteInstanceResponse = (void); -export type BetaTestersAppsDeleteToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetLocalizationsDeleteInstanceError = (ErrorResponse); -export type BetaTestersAppsGetToManyRelatedData = { +export type GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -25853,28 +25445,50 @@ export type BetaTestersAppsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterLeaderboardSetImages */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[gameCenterLeaderboardSetImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterLeaderboardSetLocalization')>; /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations */ - limit?: number; + 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboardSetLocalization')>; }; }; -export type BetaTestersAppsGetToManyRelatedResponse = (AppsWithoutIncludesResponse); +export type GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedResponse = (GameCenterLeaderboardSetImageResponse); -export type BetaTestersAppsGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedError = (ErrorResponse); -export type BetaTestersBetaGroupsGetToManyRelationshipData = { - path: { +export type GameCenterLeaderboardSetMemberLocalizationsGetCollectionData = { + query: { /** - * the id of the requested resource + * the fields to include for returned resources of type gameCenterLeaderboards */ - id: string; - }; - query?: { + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetMemberLocalizations + */ + 'fields[gameCenterLeaderboardSetMemberLocalizations]'?: Array<('name' | 'locale' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * filter by id(s) of related 'gameCenterLeaderboard' + */ + 'filter[gameCenterLeaderboard]': Array<(string)>; + /** + * filter by id(s) of related 'gameCenterLeaderboardSet' + */ + 'filter[gameCenterLeaderboardSet]': Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboardSet' | 'gameCenterLeaderboard')>; /** * maximum resources per page */ @@ -25882,15 +25496,26 @@ export type BetaTestersBetaGroupsGetToManyRelationshipData = { }; }; -export type BetaTestersBetaGroupsGetToManyRelationshipResponse = (BetaTesterBetaGroupsLinkagesResponse); +export type GameCenterLeaderboardSetMemberLocalizationsGetCollectionResponse = (GameCenterLeaderboardSetMemberLocalizationsResponse); -export type BetaTestersBetaGroupsGetToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetMemberLocalizationsGetCollectionError = (ErrorResponse); -export type BetaTestersBetaGroupsCreateToManyRelationshipData = { +export type GameCenterLeaderboardSetMemberLocalizationsCreateInstanceData = { /** - * List of related linkages + * GameCenterLeaderboardSetMemberLocalization representation */ - body: BetaTesterBetaGroupsLinkagesRequest; + body: GameCenterLeaderboardSetMemberLocalizationCreateRequest; +}; + +export type GameCenterLeaderboardSetMemberLocalizationsCreateInstanceResponse = (GameCenterLeaderboardSetMemberLocalizationResponse); + +export type GameCenterLeaderboardSetMemberLocalizationsCreateInstanceError = (ErrorResponse); + +export type GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceData = { + /** + * GameCenterLeaderboardSetMemberLocalization representation + */ + body: GameCenterLeaderboardSetMemberLocalizationUpdateRequest; path: { /** * the id of the requested resource @@ -25899,15 +25524,11 @@ export type BetaTestersBetaGroupsCreateToManyRelationshipData = { }; }; -export type BetaTestersBetaGroupsCreateToManyRelationshipResponse = (void); +export type GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceResponse = (GameCenterLeaderboardSetMemberLocalizationResponse); -export type BetaTestersBetaGroupsCreateToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetMemberLocalizationsUpdateInstanceError = (ErrorResponse); -export type BetaTestersBetaGroupsDeleteToManyRelationshipData = { - /** - * List of related linkages - */ - body: BetaTesterBetaGroupsLinkagesRequest; +export type GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -25916,11 +25537,11 @@ export type BetaTestersBetaGroupsDeleteToManyRelationshipData = { }; }; -export type BetaTestersBetaGroupsDeleteToManyRelationshipResponse = (void); +export type GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceResponse = (void); -export type BetaTestersBetaGroupsDeleteToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetMemberLocalizationsDeleteInstanceError = (ErrorResponse); -export type BetaTestersBetaGroupsGetToManyRelatedData = { +export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -25929,21 +25550,53 @@ export type BetaTestersBetaGroupsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type betaGroups + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterGroups */ - limit?: number; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + */ + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardReleases + */ + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * maximum number of related gameCenterLeaderboardSets returned (when they are included) + */ + 'limit[gameCenterLeaderboardSets]'?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type BetaTestersBetaGroupsGetToManyRelatedResponse = (BetaGroupsWithoutIncludesResponse); +export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedResponse = (GameCenterLeaderboardResponse); -export type BetaTestersBetaGroupsGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedError = (ErrorResponse); -export type BetaTestersBuildsGetToManyRelationshipData = { +export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -25952,51 +25605,64 @@ export type BetaTestersBuildsGetToManyRelationshipData = { }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterDetails */ - limit?: number; - }; -}; - -export type BetaTestersBuildsGetToManyRelationshipResponse = (BetaTesterBuildsLinkagesResponse); - -export type BetaTestersBuildsGetToManyRelationshipError = (ErrorResponse); - -export type BetaTestersBuildsCreateToManyRelationshipData = { - /** - * List of related linkages - */ - body: BetaTesterBuildsLinkagesRequest; - path: { + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the id of the requested resource + * the fields to include for returned resources of type gameCenterGroups */ - id: string; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations + */ + 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + */ + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * maximum number of related gameCenterLeaderboards returned (when they are included) + */ + 'limit[gameCenterLeaderboards]'?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type BetaTestersBuildsCreateToManyRelationshipResponse = (void); +export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedResponse = (GameCenterLeaderboardSetResponse); -export type BetaTestersBuildsCreateToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedError = (ErrorResponse); -export type BetaTestersBuildsDeleteToManyRelationshipData = { +export type GameCenterLeaderboardSetReleasesCreateInstanceData = { /** - * List of related linkages + * GameCenterLeaderboardSetRelease representation */ - body: BetaTesterBuildsLinkagesRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; + body: GameCenterLeaderboardSetReleaseCreateRequest; }; -export type BetaTestersBuildsDeleteToManyRelationshipResponse = (void); +export type GameCenterLeaderboardSetReleasesCreateInstanceResponse = (GameCenterLeaderboardSetReleaseResponse); -export type BetaTestersBuildsDeleteToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetReleasesCreateInstanceError = (ErrorResponse); -export type BetaTestersBuildsGetToManyRelatedData = { +export type GameCenterLeaderboardSetReleasesGetInstanceData = { path: { /** * the id of the requested resource @@ -26005,59 +25671,45 @@ export type BetaTestersBuildsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** - * maximum resources per page + * comma-separated list of relationships to include */ - limit?: number; + include?: Array<('gameCenterDetail' | 'gameCenterLeaderboardSet')>; }; }; -export type BetaTestersBuildsGetToManyRelatedResponse = (BuildsWithoutIncludesResponse); +export type GameCenterLeaderboardSetReleasesGetInstanceResponse = (GameCenterLeaderboardSetReleaseResponse); -export type BetaTestersBuildsGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetReleasesGetInstanceError = (ErrorResponse); -export type BuildBetaDetailsBuildGetToOneRelatedData = { +export type GameCenterLeaderboardSetReleasesDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - }; }; -export type BuildBetaDetailsBuildGetToOneRelatedResponse = (BuildWithoutIncludesResponse); +export type GameCenterLeaderboardSetReleasesDeleteInstanceResponse = (void); -export type BuildBetaDetailsBuildGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetReleasesDeleteInstanceError = (ErrorResponse); -export type BuildBundlesAppClipDomainCacheStatusGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type appClipDomainStatuses - */ - 'fields[appClipDomainStatuses]'?: Array<('domains' | 'lastUpdatedDate')>; - }; +export type GameCenterLeaderboardSetsCreateInstanceData = { + /** + * GameCenterLeaderboardSet representation + */ + body: GameCenterLeaderboardSetCreateRequest; }; -export type BuildBundlesAppClipDomainCacheStatusGetToOneRelatedResponse = (AppClipDomainStatusResponse); +export type GameCenterLeaderboardSetsCreateInstanceResponse = (GameCenterLeaderboardSetResponse); -export type BuildBundlesAppClipDomainCacheStatusGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsCreateInstanceError = (ErrorResponse); -export type BuildBundlesAppClipDomainDebugStatusGetToOneRelatedData = { +export type GameCenterLeaderboardSetsGetInstanceData = { path: { /** * the id of the requested resource @@ -26066,246 +25718,145 @@ export type BuildBundlesAppClipDomainDebugStatusGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appClipDomainStatuses + * the fields to include for returned resources of type gameCenterLeaderboards */ - 'fields[appClipDomainStatuses]'?: Array<('domains' | 'lastUpdatedDate')>; - }; -}; - -export type BuildBundlesAppClipDomainDebugStatusGetToOneRelatedResponse = (AppClipDomainStatusResponse); - -export type BuildBundlesAppClipDomainDebugStatusGetToOneRelatedError = (ErrorResponse); - -export type BuildBundlesBetaAppClipInvocationsGetToManyRelatedData = { - path: { + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** - * the id of the requested resource + * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations */ - id: string; - }; - query?: { + 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; /** - * the fields to include for returned resources of type betaAppClipInvocationLocalizations + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases */ - 'fields[betaAppClipInvocationLocalizations]'?: Array<('title' | 'locale' | 'betaAppClipInvocation')>; + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** - * the fields to include for returned resources of type betaAppClipInvocations + * the fields to include for returned resources of type gameCenterLeaderboardSets */ - 'fields[betaAppClipInvocations]'?: Array<('url' | 'buildBundle' | 'betaAppClipInvocationLocalizations')>; + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** * comma-separated list of relationships to include */ - include?: Array<('betaAppClipInvocationLocalizations')>; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** - * maximum resources per page + * maximum number of related gameCenterLeaderboards returned (when they are included) */ - limit?: number; + 'limit[gameCenterLeaderboards]'?: number; /** - * maximum number of related betaAppClipInvocationLocalizations returned (when they are included) + * maximum number of related localizations returned (when they are included) */ - 'limit[betaAppClipInvocationLocalizations]'?: number; + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type BuildBundlesBetaAppClipInvocationsGetToManyRelatedResponse = (BetaAppClipInvocationsResponse); +export type GameCenterLeaderboardSetsGetInstanceResponse = (GameCenterLeaderboardSetResponse); -export type BuildBundlesBetaAppClipInvocationsGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsGetInstanceError = (ErrorResponse); -export type BuildBundlesBuildBundleFileSizesGetToManyRelatedData = { +export type GameCenterLeaderboardSetsUpdateInstanceData = { + /** + * GameCenterLeaderboardSet representation + */ + body: GameCenterLeaderboardSetUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type buildBundleFileSizes - */ - 'fields[buildBundleFileSizes]'?: Array<('deviceModel' | 'osVersion' | 'downloadBytes' | 'installBytes')>; - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type BuildBundlesBuildBundleFileSizesGetToManyRelatedResponse = (BuildBundleFileSizesResponse); +export type GameCenterLeaderboardSetsUpdateInstanceResponse = (GameCenterLeaderboardSetResponse); -export type BuildBundlesBuildBundleFileSizesGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsUpdateInstanceError = (ErrorResponse); -export type BuildsAppGetToOneRelatedData = { +export type GameCenterLeaderboardSetsDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - }; }; -export type BuildsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); +export type GameCenterLeaderboardSetsDeleteInstanceResponse = (void); -export type BuildsAppGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsDeleteInstanceError = (ErrorResponse); -export type BuildsAppEncryptionDeclarationGetToOneRelationshipData = { +export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type BuildsAppEncryptionDeclarationGetToOneRelationshipResponse = (BuildAppEncryptionDeclarationLinkageResponse); - -export type BuildsAppEncryptionDeclarationGetToOneRelationshipError = (ErrorResponse); - -export type BuildsAppEncryptionDeclarationUpdateToOneRelationshipData = { - /** - * Related linkage - */ - body: BuildAppEncryptionDeclarationLinkageRequest; - path: { + query?: { /** - * the id of the requested resource + * maximum resources per page */ - id: string; + limit?: number; }; }; -export type BuildsAppEncryptionDeclarationUpdateToOneRelationshipResponse = (void); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipResponse = (GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesResponse); -export type BuildsAppEncryptionDeclarationUpdateToOneRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipError = (ErrorResponse); -export type BuildsAppEncryptionDeclarationGetToOneRelatedData = { +export type GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type appEncryptionDeclarations - */ - 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; - }; }; -export type BuildsAppEncryptionDeclarationGetToOneRelatedResponse = (AppEncryptionDeclarationWithoutIncludesResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipResponse = (void); -export type BuildsAppEncryptionDeclarationGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipError = (ErrorResponse); -export type BuildsAppStoreVersionGetToOneRelatedData = { +export type GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type ageRatingDeclarations - */ - 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; - /** - * the fields to include for returned resources of type alternativeDistributionPackages - */ - 'fields[alternativeDistributionPackages]'?: Array<('appStoreVersion' | 'versions')>; - /** - * the fields to include for returned resources of type appClipDefaultExperiences - */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type appStoreReviewDetails - */ - 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; - /** - * the fields to include for returned resources of type appStoreVersionExperiments - */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; - /** - * the fields to include for returned resources of type appStoreVersionLocalizations - */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appStoreVersionPhasedReleases - */ - 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber' | 'appStoreVersion')>; - /** - * the fields to include for returned resources of type appStoreVersions - */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; - /** - * the fields to include for returned resources of type appStoreVersionSubmissions - */ - 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; - /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - /** - * the fields to include for returned resources of type gameCenterAppVersions - */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; - /** - * the fields to include for returned resources of type routingAppCoverages - */ - 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreVersion')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; - /** - * maximum number of related appStoreVersionExperiments returned (when they are included) - * @deprecated - */ - 'limit[appStoreVersionExperiments]'?: number; - /** - * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) - */ - 'limit[appStoreVersionExperimentsV2]'?: number; - /** - * maximum number of related appStoreVersionLocalizations returned (when they are included) - */ - 'limit[appStoreVersionLocalizations]'?: number; - }; }; -export type BuildsAppStoreVersionGetToOneRelatedResponse = (AppStoreVersionResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipResponse = (void); -export type BuildsAppStoreVersionGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipError = (ErrorResponse); -export type BuildsBetaAppReviewSubmissionGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { +export type GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesRequest; + path: { /** - * the fields to include for returned resources of type betaAppReviewSubmissions + * the id of the requested resource */ - 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; + id: string; }; }; -export type BuildsBetaAppReviewSubmissionGetToOneRelatedResponse = (BetaAppReviewSubmissionWithoutIncludesResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipResponse = (void); -export type BuildsBetaAppReviewSubmissionGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipError = (ErrorResponse); -export type BuildsBetaBuildLocalizationsGetToManyRelatedData = { +export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -26314,25 +25865,69 @@ export type BuildsBetaBuildLocalizationsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type betaBuildLocalizations + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * the fields to include for returned resources of type gameCenterGroups + */ + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + */ + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardReleases + */ + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * filter by attribute 'archived' + */ + 'filter[archived]'?: Array<(string)>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'referenceName' + */ + 'filter[referenceName]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related gameCenterLeaderboardSets returned (when they are included) + */ + 'limit[gameCenterLeaderboardSets]'?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type BuildsBetaBuildLocalizationsGetToManyRelatedResponse = (BetaBuildLocalizationsWithoutIncludesResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedResponse = (GameCenterLeaderboardsResponse); -export type BuildsBetaBuildLocalizationsGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedError = (ErrorResponse); -export type BuildsBetaGroupsCreateToManyRelationshipData = { - /** - * List of related linkages - */ - body: BuildBetaGroupsLinkagesRequest; +export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipData = { path: { /** * the id of the requested resource @@ -26341,15 +25936,15 @@ export type BuildsBetaGroupsCreateToManyRelationshipData = { }; }; -export type BuildsBetaGroupsCreateToManyRelationshipResponse = (void); +export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipResponse = (GameCenterLeaderboardSetGroupLeaderboardSetLinkageResponse); -export type BuildsBetaGroupsCreateToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipError = (ErrorResponse); -export type BuildsBetaGroupsDeleteToManyRelationshipData = { +export type GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipData = { /** - * List of related linkages + * Related linkage */ - body: BuildBetaGroupsLinkagesRequest; + body: GameCenterLeaderboardSetGroupLeaderboardSetLinkageRequest; path: { /** * the id of the requested resource @@ -26358,11 +25953,11 @@ export type BuildsBetaGroupsDeleteToManyRelationshipData = { }; }; -export type BuildsBetaGroupsDeleteToManyRelationshipResponse = (void); +export type GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipResponse = (void); -export type BuildsBetaGroupsDeleteToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipError = (ErrorResponse); -export type BuildsBuildBetaDetailGetToOneRelatedData = { +export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -26371,25 +25966,53 @@ export type BuildsBuildBetaDetailGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type buildBetaDetails + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * the fields to include for returned resources of type builds + * the fields to include for returned resources of type gameCenterGroups */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations + */ + 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + */ + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; /** * comma-separated list of relationships to include */ - include?: Array<('build')>; + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * maximum number of related gameCenterLeaderboards returned (when they are included) + */ + 'limit[gameCenterLeaderboards]'?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type BuildsBuildBetaDetailGetToOneRelatedResponse = (BuildBetaDetailResponse); +export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedResponse = (GameCenterLeaderboardSetResponse); -export type BuildsBuildBetaDetailGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedError = (ErrorResponse); -export type BuildsDiagnosticSignaturesGetToManyRelatedData = { +export type GameCenterLeaderboardSetsLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -26398,13 +26021,21 @@ export type BuildsDiagnosticSignaturesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type diagnosticSignatures + * the fields to include for returned resources of type gameCenterLeaderboardSetImages */ - 'fields[diagnosticSignatures]'?: Array<('diagnosticType' | 'signature' | 'weight' | 'insight' | 'logs')>; + 'fields[gameCenterLeaderboardSetImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterLeaderboardSetLocalization')>; /** - * filter by attribute 'diagnosticType' + * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations */ - 'filter[diagnosticType]'?: Array<('DISK_WRITES' | 'HANGS' | 'LAUNCHES')>; + 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; /** * maximum resources per page */ @@ -26412,11 +26043,11 @@ export type BuildsDiagnosticSignaturesGetToManyRelatedData = { }; }; -export type BuildsDiagnosticSignaturesGetToManyRelatedResponse = (DiagnosticSignaturesResponse); +export type GameCenterLeaderboardSetsLocalizationsGetToManyRelatedResponse = (GameCenterLeaderboardSetLocalizationsResponse); -export type BuildsDiagnosticSignaturesGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsLocalizationsGetToManyRelatedError = (ErrorResponse); -export type BuildsIconsGetToManyRelatedData = { +export type GameCenterLeaderboardSetsReleasesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -26425,9 +26056,29 @@ export type BuildsIconsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type buildIcons + * the fields to include for returned resources of type gameCenterDetails */ - 'fields[buildIcons]'?: Array<('name' | 'iconAsset' | 'iconType')>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + */ + 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * filter by id(s) of related 'gameCenterDetail' + */ + 'filter[gameCenterDetail]'?: Array<(string)>; + /** + * filter by attribute 'live' + */ + 'filter[live]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterLeaderboardSet')>; /** * maximum resources per page */ @@ -26435,11 +26086,22 @@ export type BuildsIconsGetToManyRelatedData = { }; }; -export type BuildsIconsGetToManyRelatedResponse = (BuildIconsWithoutIncludesResponse); +export type GameCenterLeaderboardSetsReleasesGetToManyRelatedResponse = (GameCenterLeaderboardSetReleasesResponse); -export type BuildsIconsGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardSetsReleasesGetToManyRelatedError = (ErrorResponse); -export type BuildsIndividualTestersGetToManyRelationshipData = { +export type GameCenterLeaderboardsCreateInstanceData = { + /** + * GameCenterLeaderboard representation + */ + body: GameCenterLeaderboardCreateRequest; +}; + +export type GameCenterLeaderboardsCreateInstanceResponse = (GameCenterLeaderboardResponse); + +export type GameCenterLeaderboardsCreateInstanceError = (ErrorResponse); + +export type GameCenterLeaderboardsGetInstanceData = { path: { /** * the id of the requested resource @@ -26448,21 +26110,45 @@ export type BuildsIndividualTestersGetToManyRelationshipData = { }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations */ - limit?: number; + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardReleases + */ + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * maximum number of related gameCenterLeaderboardSets returned (when they are included) + */ + 'limit[gameCenterLeaderboardSets]'?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type BuildsIndividualTestersGetToManyRelationshipResponse = (BuildIndividualTestersLinkagesResponse); +export type GameCenterLeaderboardsGetInstanceResponse = (GameCenterLeaderboardResponse); -export type BuildsIndividualTestersGetToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardsGetInstanceError = (ErrorResponse); -export type BuildsIndividualTestersCreateToManyRelationshipData = { +export type GameCenterLeaderboardsUpdateInstanceData = { /** - * List of related linkages + * GameCenterLeaderboard representation */ - body: BuildIndividualTestersLinkagesRequest; + body: GameCenterLeaderboardUpdateRequest; path: { /** * the id of the requested resource @@ -26471,15 +26157,24 @@ export type BuildsIndividualTestersCreateToManyRelationshipData = { }; }; -export type BuildsIndividualTestersCreateToManyRelationshipResponse = (void); +export type GameCenterLeaderboardsUpdateInstanceResponse = (GameCenterLeaderboardResponse); -export type BuildsIndividualTestersCreateToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardsUpdateInstanceError = (ErrorResponse); -export type BuildsIndividualTestersDeleteToManyRelationshipData = { - /** - * List of related linkages - */ - body: BuildIndividualTestersLinkagesRequest; +export type GameCenterLeaderboardsDeleteInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type GameCenterLeaderboardsDeleteInstanceResponse = (void); + +export type GameCenterLeaderboardsDeleteInstanceError = (ErrorResponse); + +export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipData = { path: { /** * the id of the requested resource @@ -26488,34 +26183,28 @@ export type BuildsIndividualTestersDeleteToManyRelationshipData = { }; }; -export type BuildsIndividualTestersDeleteToManyRelationshipResponse = (void); +export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipResponse = (GameCenterLeaderboardGroupLeaderboardLinkageResponse); -export type BuildsIndividualTestersDeleteToManyRelationshipError = (ErrorResponse); +export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipError = (ErrorResponse); -export type BuildsIndividualTestersGetToManyRelatedData = { +export type GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipData = { + /** + * Related linkage + */ + body: GameCenterLeaderboardGroupLeaderboardLinkageRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type betaTesters - */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type BuildsIndividualTestersGetToManyRelatedResponse = (BetaTestersWithoutIncludesResponse); +export type GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipResponse = (void); -export type BuildsIndividualTestersGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipError = (ErrorResponse); -export type BuildsPerfPowerMetricsGetToManyRelatedData = { +export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -26524,25 +26213,53 @@ export type BuildsPerfPowerMetricsGetToManyRelatedData = { }; query?: { /** - * filter by attribute 'deviceType' + * the fields to include for returned resources of type gameCenterDetails */ - 'filter[deviceType]'?: Array<(string)>; + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; /** - * filter by attribute 'metricType' + * the fields to include for returned resources of type gameCenterGroups */ - 'filter[metricType]'?: Array<('DISK' | 'HANG' | 'BATTERY' | 'LAUNCH' | 'MEMORY' | 'ANIMATION' | 'TERMINATION')>; + 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; /** - * filter by attribute 'platform' + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations */ - 'filter[platform]'?: Array<('IOS')>; + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardReleases + */ + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardSets + */ + 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * maximum number of related gameCenterLeaderboardSets returned (when they are included) + */ + 'limit[gameCenterLeaderboardSets]'?: number; + /** + * maximum number of related localizations returned (when they are included) + */ + 'limit[localizations]'?: number; + /** + * maximum number of related releases returned (when they are included) + */ + 'limit[releases]'?: number; }; }; -export type BuildsPerfPowerMetricsGetToManyRelatedResponse = (xcodeMetrics); +export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedResponse = (GameCenterLeaderboardResponse); -export type BuildsPerfPowerMetricsGetToManyRelatedError = (ErrorResponse); +export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedError = (ErrorResponse); -export type BuildsPreReleaseVersionGetToOneRelatedData = { +export type GameCenterLeaderboardsLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -26551,17 +26268,33 @@ export type BuildsPreReleaseVersionGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type preReleaseVersions + * the fields to include for returned resources of type gameCenterLeaderboardImages */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + 'fields[gameCenterLeaderboardImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'gameCenterLeaderboardLocalization')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + */ + 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type BuildsPreReleaseVersionGetToOneRelatedResponse = (PrereleaseVersionWithoutIncludesResponse); +export type GameCenterLeaderboardsLocalizationsGetToManyRelatedResponse = (GameCenterLeaderboardLocalizationsResponse); -export type BuildsPreReleaseVersionGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardsLocalizationsGetToManyRelatedError = (ErrorResponse); -export type BundleIdsAppGetToOneRelatedData = { +export type GameCenterLeaderboardsReleasesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -26570,28 +26303,50 @@ export type BundleIdsAppGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type apps + * the fields to include for returned resources of type gameCenterDetails + */ + 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboardReleases + */ + 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * the fields to include for returned resources of type gameCenterLeaderboards + */ + 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + /** + * filter by id(s) of related 'gameCenterDetail' + */ + 'filter[gameCenterDetail]'?: Array<(string)>; + /** + * filter by attribute 'live' + */ + 'filter[live]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('gameCenterDetail' | 'gameCenterLeaderboard')>; + /** + * maximum resources per page */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + limit?: number; }; }; -export type BundleIdsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); +export type GameCenterLeaderboardsReleasesGetToManyRelatedResponse = (GameCenterLeaderboardReleasesResponse); -export type BundleIdsAppGetToOneRelatedError = (ErrorResponse); +export type GameCenterLeaderboardsReleasesGetToManyRelatedError = (ErrorResponse); -export type BundleIdsBundleIdCapabilitiesGetToManyRelatedData = { - path: { +export type GameCenterMatchmakingQueuesGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type gameCenterMatchmakingQueues */ - id: string; - }; - query?: { + 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; /** - * the fields to include for returned resources of type bundleIdCapabilities + * comma-separated list of relationships to include */ - 'fields[bundleIdCapabilities]'?: Array<('capabilityType' | 'settings' | 'bundleId')>; + include?: Array<('ruleSet' | 'experimentRuleSet')>; /** * maximum resources per page */ @@ -26599,11 +26354,22 @@ export type BundleIdsBundleIdCapabilitiesGetToManyRelatedData = { }; }; -export type BundleIdsBundleIdCapabilitiesGetToManyRelatedResponse = (BundleIdCapabilitiesWithoutIncludesResponse); +export type GameCenterMatchmakingQueuesGetCollectionResponse = (GameCenterMatchmakingQueuesResponse); -export type BundleIdsBundleIdCapabilitiesGetToManyRelatedError = (ErrorResponse); +export type GameCenterMatchmakingQueuesGetCollectionError = (ErrorResponse); -export type BundleIdsProfilesGetToManyRelatedData = { +export type GameCenterMatchmakingQueuesCreateInstanceData = { + /** + * GameCenterMatchmakingQueue representation + */ + body: GameCenterMatchmakingQueueCreateRequest; +}; + +export type GameCenterMatchmakingQueuesCreateInstanceResponse = (GameCenterMatchmakingQueueResponse); + +export type GameCenterMatchmakingQueuesCreateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingQueuesGetInstanceData = { path: { /** * the id of the requested resource @@ -26612,315 +26378,354 @@ export type BundleIdsProfilesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type profiles + * the fields to include for returned resources of type gameCenterMatchmakingQueues */ - 'fields[profiles]'?: Array<('name' | 'platform' | 'profileType' | 'profileState' | 'profileContent' | 'uuid' | 'createdDate' | 'expirationDate' | 'bundleId' | 'devices' | 'certificates')>; + 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; /** - * maximum resources per page + * comma-separated list of relationships to include */ - limit?: number; + include?: Array<('ruleSet' | 'experimentRuleSet')>; }; }; -export type BundleIdsProfilesGetToManyRelatedResponse = (ProfilesWithoutIncludesResponse); +export type GameCenterMatchmakingQueuesGetInstanceResponse = (GameCenterMatchmakingQueueResponse); -export type BundleIdsProfilesGetToManyRelatedError = (ErrorResponse); +export type GameCenterMatchmakingQueuesGetInstanceError = (ErrorResponse); -export type CiBuildActionsArtifactsGetToManyRelatedData = { +export type GameCenterMatchmakingQueuesUpdateInstanceData = { + /** + * GameCenterMatchmakingQueue representation + */ + body: GameCenterMatchmakingQueueUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type ciArtifacts - */ - 'fields[ciArtifacts]'?: Array<('fileType' | 'fileName' | 'fileSize' | 'downloadUrl')>; +}; + +export type GameCenterMatchmakingQueuesUpdateInstanceResponse = (GameCenterMatchmakingQueueResponse); + +export type GameCenterMatchmakingQueuesUpdateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingQueuesDeleteInstanceData = { + path: { /** - * maximum resources per page + * the id of the requested resource */ - limit?: number; + id: string; }; }; -export type CiBuildActionsArtifactsGetToManyRelatedResponse = (CiArtifactsResponse); +export type GameCenterMatchmakingQueuesDeleteInstanceResponse = (void); -export type CiBuildActionsArtifactsGetToManyRelatedError = (ErrorResponse); +export type GameCenterMatchmakingQueuesDeleteInstanceError = (ErrorResponse); -export type CiBuildActionsBuildRunGetToOneRelatedData = { +export type GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - /** - * the fields to include for returned resources of type ciBuildRuns - */ - 'fields[ciBuildRuns]'?: Array<('clean' | 'number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'buildRun' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; - /** - * the fields to include for returned resources of type ciProducts - */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; - /** - * the fields to include for returned resources of type ciWorkflows - */ - 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; - /** - * the fields to include for returned resources of type scmGitReferences - */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; + query: { /** - * the fields to include for returned resources of type scmPullRequests + * the granularity of the per-group dataset */ - 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * comma-separated list of relationships to include + * maximum number of groups to return per page */ - include?: Array<('builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'pullRequest')>; + limit?: number; /** - * maximum number of related builds returned (when they are included) + * comma-separated list of sort expressions; metrics will be sorted as specified */ - 'limit[builds]'?: number; + sort?: Array<('count' | '-count' | 'averageNumberOfRequests' | '-averageNumberOfRequests' | 'p50NumberOfRequests' | '-p50NumberOfRequests' | 'p95NumberOfRequests' | '-p95NumberOfRequests')>; }; }; -export type CiBuildActionsBuildRunGetToOneRelatedResponse = (CiBuildRunResponse); +export type GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsResponse = (GameCenterMatchmakingQueueSizesV1MetricResponse); -export type CiBuildActionsBuildRunGetToOneRelatedError = (ErrorResponse); +export type GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsError = (ErrorResponse); -export type CiBuildActionsIssuesGetToManyRelatedData = { +export type GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { + query: { /** - * the fields to include for returned resources of type ciIssues + * filter by 'gameCenterDetail' relationship dimension */ - 'fields[ciIssues]'?: Array<('issueType' | 'message' | 'fileSource' | 'category')>; + 'filter[gameCenterDetail]'?: string; /** - * maximum resources per page + * filter by 'result' attribute dimension */ - limit?: number; - }; -}; - -export type CiBuildActionsIssuesGetToManyRelatedResponse = (CiIssuesResponse); - -export type CiBuildActionsIssuesGetToManyRelatedError = (ErrorResponse); - -export type CiBuildActionsTestResultsGetToManyRelatedData = { - path: { + 'filter[result]'?: 'MATCHED' | 'CANCELED' | 'EXPIRED'; /** - * the id of the requested resource + * the granularity of the per-group dataset */ - id: string; - }; - query?: { + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * the fields to include for returned resources of type ciTestResults + * the dimension by which to group the results */ - 'fields[ciTestResults]'?: Array<('className' | 'name' | 'status' | 'fileSource' | 'message' | 'destinationTestResults')>; + groupBy?: Array<('result' | 'gameCenterDetail')>; /** - * maximum resources per page + * maximum number of groups to return per page */ limit?: number; + /** + * comma-separated list of sort expressions; metrics will be sorted as specified + */ + sort?: Array<('count' | '-count' | 'averageSecondsInQueue' | '-averageSecondsInQueue' | 'p50SecondsInQueue' | '-p50SecondsInQueue' | 'p95SecondsInQueue' | '-p95SecondsInQueue')>; }; }; -export type CiBuildActionsTestResultsGetToManyRelatedResponse = (CiTestResultsResponse); +export type GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsResponse = (GameCenterMatchmakingQueueRequestsV1MetricResponse); -export type CiBuildActionsTestResultsGetToManyRelatedError = (ErrorResponse); +export type GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsError = (ErrorResponse); -export type CiBuildRunsActionsGetToManyRelatedData = { +export type GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type ciBuildActions - */ - 'fields[ciBuildActions]'?: Array<('name' | 'actionType' | 'startedDate' | 'finishedDate' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'isRequiredToPass' | 'buildRun' | 'artifacts' | 'issues' | 'testResults')>; + query: { /** - * the fields to include for returned resources of type ciBuildRuns + * the granularity of the per-group dataset */ - 'fields[ciBuildRuns]'?: Array<('clean' | 'number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'buildRun' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * comma-separated list of relationships to include + * maximum number of groups to return per page */ - include?: Array<('buildRun')>; + limit?: number; /** - * maximum resources per page + * comma-separated list of sort expressions; metrics will be sorted as specified */ - limit?: number; + sort?: Array<('count' | '-count' | 'averageNumberOfRequests' | '-averageNumberOfRequests' | 'p50NumberOfRequests' | '-p50NumberOfRequests' | 'p95NumberOfRequests' | '-p95NumberOfRequests')>; }; }; -export type CiBuildRunsActionsGetToManyRelatedResponse = (CiBuildActionsResponse); +export type GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsResponse = (GameCenterMatchmakingQueueSizesV1MetricResponse); -export type CiBuildRunsActionsGetToManyRelatedError = (ErrorResponse); +export type GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsError = (ErrorResponse); -export type CiBuildRunsBuildsGetToManyRelatedData = { +export type GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type appEncryptionDeclarations - */ - 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; + query: { /** - * the fields to include for returned resources of type apps + * filter by 'gameCenterDetail' relationship dimension */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'filter[gameCenterDetail]'?: string; /** - * the fields to include for returned resources of type appStoreVersions + * filter by 'result' attribute dimension */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'filter[result]'?: 'MATCHED' | 'CANCELED' | 'EXPIRED'; /** - * the fields to include for returned resources of type betaAppReviewSubmissions + * the granularity of the per-group dataset */ - 'fields[betaAppReviewSubmissions]'?: Array<('betaReviewState' | 'submittedDate' | 'build')>; + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * the fields to include for returned resources of type betaBuildLocalizations + * the dimension by which to group the results */ - 'fields[betaBuildLocalizations]'?: Array<('whatsNew' | 'locale' | 'build')>; + groupBy?: Array<('result' | 'gameCenterDetail')>; /** - * the fields to include for returned resources of type betaGroups + * maximum number of groups to return per page */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + limit?: number; /** - * the fields to include for returned resources of type betaTesters + * comma-separated list of sort expressions; metrics will be sorted as specified */ - 'fields[betaTesters]'?: Array<('firstName' | 'lastName' | 'email' | 'inviteType' | 'state' | 'apps' | 'betaGroups' | 'builds')>; + sort?: Array<('count' | '-count' | 'averageSecondsInQueue' | '-averageSecondsInQueue' | 'p50SecondsInQueue' | '-p50SecondsInQueue' | 'p95SecondsInQueue' | '-p95SecondsInQueue')>; + }; +}; + +export type GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsResponse = (GameCenterMatchmakingQueueRequestsV1MetricResponse); + +export type GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsError = (ErrorResponse); + +export type GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsData = { + path: { /** - * the fields to include for returned resources of type buildBetaDetails + * the id of the requested resource */ - 'fields[buildBetaDetails]'?: Array<('autoNotifyEnabled' | 'internalBuildState' | 'externalBuildState' | 'build')>; + id: string; + }; + query: { /** - * the fields to include for returned resources of type buildBundles + * the granularity of the per-group dataset */ - 'fields[buildBundles]'?: Array<('bundleId' | 'bundleType' | 'sdkBuild' | 'platformBuild' | 'fileName' | 'hasSirikit' | 'hasOnDemandResources' | 'hasPrerenderedIcon' | 'usesLocationServices' | 'isIosBuildMacAppStoreCompatible' | 'includesSymbols' | 'dSYMUrl' | 'supportedArchitectures' | 'requiredCapabilities' | 'deviceProtocols' | 'locales' | 'entitlements' | 'appClipDomainCacheStatus' | 'appClipDomainDebugStatus' | 'betaAppClipInvocations' | 'buildBundleFileSizes')>; + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * the fields to include for returned resources of type buildIcons + * maximum number of groups to return per page */ - 'fields[buildIcons]'?: Array<('name' | 'iconAsset' | 'iconType')>; + limit?: number; /** - * the fields to include for returned resources of type builds + * comma-separated list of sort expressions; metrics will be sorted as specified */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + sort?: Array<('count' | '-count' | 'averagePlayerCount' | '-averagePlayerCount' | 'p50PlayerCount' | '-p50PlayerCount' | 'p95PlayerCount' | '-p95PlayerCount')>; + }; +}; + +export type GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsResponse = (GameCenterMatchmakingSessionsV1MetricResponse); + +export type GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsError = (ErrorResponse); + +export type GameCenterMatchmakingRuleSetTestsCreateInstanceData = { + /** + * GameCenterMatchmakingRuleSetTest representation + */ + body: GameCenterMatchmakingRuleSetTestCreateRequest; +}; + +export type GameCenterMatchmakingRuleSetTestsCreateInstanceResponse = (GameCenterMatchmakingRuleSetTestResponse); + +export type GameCenterMatchmakingRuleSetTestsCreateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingRuleSetsGetCollectionData = { + query?: { /** - * the fields to include for returned resources of type preReleaseVersions + * the fields to include for returned resources of type gameCenterMatchmakingQueues */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; /** - * filter by id(s) of related 'app' + * the fields to include for returned resources of type gameCenterMatchmakingRules */ - 'filter[app]'?: Array<(string)>; + 'fields[gameCenterMatchmakingRules]'?: Array<('referenceName' | 'description' | 'type' | 'expression' | 'weight')>; /** - * filter by id(s) of related 'appStoreVersion' + * the fields to include for returned resources of type gameCenterMatchmakingRuleSets */ - 'filter[appStoreVersion]'?: Array<(string)>; + 'fields[gameCenterMatchmakingRuleSets]'?: Array<('referenceName' | 'ruleLanguageVersion' | 'minPlayers' | 'maxPlayers' | 'teams' | 'rules' | 'matchmakingQueues')>; /** - * filter by attribute 'betaAppReviewSubmission.betaReviewState' + * the fields to include for returned resources of type gameCenterMatchmakingTeams */ - 'filter[betaAppReviewSubmission.betaReviewState]'?: Array<('WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'REJECTED' | 'APPROVED')>; + 'fields[gameCenterMatchmakingTeams]'?: Array<('referenceName' | 'minPlayers' | 'maxPlayers')>; /** - * filter by id(s) of related 'betaGroups' + * comma-separated list of relationships to include */ - 'filter[betaGroups]'?: Array<(string)>; + include?: Array<('teams' | 'rules' | 'matchmakingQueues')>; /** - * filter by attribute 'buildAudienceType' + * maximum resources per page */ - 'filter[buildAudienceType]'?: Array<('INTERNAL_ONLY' | 'APP_STORE_ELIGIBLE')>; + limit?: number; /** - * filter by attribute 'expired' + * maximum number of related matchmakingQueues returned (when they are included) */ - 'filter[expired]'?: Array<(string)>; + 'limit[matchmakingQueues]'?: number; /** - * filter by id(s) + * maximum number of related rules returned (when they are included) */ - 'filter[id]'?: Array<(string)>; + 'limit[rules]'?: number; /** - * filter by attribute 'preReleaseVersion.platform' + * maximum number of related teams returned (when they are included) */ - 'filter[preReleaseVersion.platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'limit[teams]'?: number; + }; +}; + +export type GameCenterMatchmakingRuleSetsGetCollectionResponse = (GameCenterMatchmakingRuleSetsResponse); + +export type GameCenterMatchmakingRuleSetsGetCollectionError = (ErrorResponse); + +export type GameCenterMatchmakingRuleSetsCreateInstanceData = { + /** + * GameCenterMatchmakingRuleSet representation + */ + body: GameCenterMatchmakingRuleSetCreateRequest; +}; + +export type GameCenterMatchmakingRuleSetsCreateInstanceResponse = (GameCenterMatchmakingRuleSetResponse); + +export type GameCenterMatchmakingRuleSetsCreateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingRuleSetsGetInstanceData = { + path: { /** - * filter by attribute 'preReleaseVersion.version' + * the id of the requested resource */ - 'filter[preReleaseVersion.version]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by id(s) of related 'preReleaseVersion' + * the fields to include for returned resources of type gameCenterMatchmakingQueues */ - 'filter[preReleaseVersion]'?: Array<(string)>; + 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; /** - * filter by attribute 'processingState' + * the fields to include for returned resources of type gameCenterMatchmakingRules */ - 'filter[processingState]'?: Array<('PROCESSING' | 'FAILED' | 'INVALID' | 'VALID')>; + 'fields[gameCenterMatchmakingRules]'?: Array<('referenceName' | 'description' | 'type' | 'expression' | 'weight')>; /** - * filter by attribute 'usesNonExemptEncryption' + * the fields to include for returned resources of type gameCenterMatchmakingRuleSets */ - 'filter[usesNonExemptEncryption]'?: Array<(string)>; + 'fields[gameCenterMatchmakingRuleSets]'?: Array<('referenceName' | 'ruleLanguageVersion' | 'minPlayers' | 'maxPlayers' | 'teams' | 'rules' | 'matchmakingQueues')>; /** - * filter by attribute 'version' + * the fields to include for returned resources of type gameCenterMatchmakingTeams */ - 'filter[version]'?: Array<(string)>; + 'fields[gameCenterMatchmakingTeams]'?: Array<('referenceName' | 'minPlayers' | 'maxPlayers')>; /** * comma-separated list of relationships to include */ - include?: Array<('preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related betaBuildLocalizations returned (when they are included) - */ - 'limit[betaBuildLocalizations]'?: number; + include?: Array<('teams' | 'rules' | 'matchmakingQueues')>; /** - * maximum number of related betaGroups returned (when they are included) + * maximum number of related matchmakingQueues returned (when they are included) */ - 'limit[betaGroups]'?: number; + 'limit[matchmakingQueues]'?: number; /** - * maximum number of related buildBundles returned (when they are included) + * maximum number of related rules returned (when they are included) */ - 'limit[buildBundles]'?: number; + 'limit[rules]'?: number; /** - * maximum number of related icons returned (when they are included) + * maximum number of related teams returned (when they are included) */ - 'limit[icons]'?: number; + 'limit[teams]'?: number; + }; +}; + +export type GameCenterMatchmakingRuleSetsGetInstanceResponse = (GameCenterMatchmakingRuleSetResponse); + +export type GameCenterMatchmakingRuleSetsGetInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingRuleSetsUpdateInstanceData = { + /** + * GameCenterMatchmakingRuleSet representation + */ + body: GameCenterMatchmakingRuleSetUpdateRequest; + path: { /** - * maximum number of related individualTesters returned (when they are included) + * the id of the requested resource */ - 'limit[individualTesters]'?: number; + id: string; + }; +}; + +export type GameCenterMatchmakingRuleSetsUpdateInstanceResponse = (GameCenterMatchmakingRuleSetResponse); + +export type GameCenterMatchmakingRuleSetsUpdateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingRuleSetsDeleteInstanceData = { + path: { /** - * comma-separated list of sort expressions; resources will be sorted as specified + * the id of the requested resource */ - sort?: Array<('version' | '-version' | 'uploadedDate' | '-uploadedDate' | 'preReleaseVersion' | '-preReleaseVersion')>; + id: string; }; }; -export type CiBuildRunsBuildsGetToManyRelatedResponse = (BuildsResponse); +export type GameCenterMatchmakingRuleSetsDeleteInstanceResponse = (void); -export type CiBuildRunsBuildsGetToManyRelatedError = (ErrorResponse); +export type GameCenterMatchmakingRuleSetsDeleteInstanceError = (ErrorResponse); -export type CiMacOsVersionsXcodeVersionsGetToManyRelatedData = { +export type GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -26929,33 +26734,29 @@ export type CiMacOsVersionsXcodeVersionsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type ciMacOsVersions + * the fields to include for returned resources of type gameCenterMatchmakingQueues */ - 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; + 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; /** - * the fields to include for returned resources of type ciXcodeVersions + * the fields to include for returned resources of type gameCenterMatchmakingRuleSets */ - 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; + 'fields[gameCenterMatchmakingRuleSets]'?: Array<('referenceName' | 'ruleLanguageVersion' | 'minPlayers' | 'maxPlayers' | 'teams' | 'rules' | 'matchmakingQueues')>; /** * comma-separated list of relationships to include */ - include?: Array<('macOsVersions')>; + include?: Array<('ruleSet' | 'experimentRuleSet')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related macOsVersions returned (when they are included) - */ - 'limit[macOsVersions]'?: number; }; }; -export type CiMacOsVersionsXcodeVersionsGetToManyRelatedResponse = (CiXcodeVersionsResponse); +export type GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedResponse = (GameCenterMatchmakingQueuesResponse); -export type CiMacOsVersionsXcodeVersionsGetToManyRelatedError = (ErrorResponse); +export type GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedError = (ErrorResponse); -export type CiProductsAdditionalRepositoriesGetToManyRelatedData = { +export type GameCenterMatchmakingRuleSetsRulesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -26964,25 +26765,9 @@ export type CiProductsAdditionalRepositoriesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type scmGitReferences - */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; - /** - * the fields to include for returned resources of type scmProviders - */ - 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; - /** - * the fields to include for returned resources of type scmRepositories - */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; - /** - * filter by id(s) - */ - 'filter[id]'?: Array<(string)>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type gameCenterMatchmakingRules */ - include?: Array<('scmProvider' | 'defaultBranch')>; + 'fields[gameCenterMatchmakingRules]'?: Array<('referenceName' | 'description' | 'type' | 'expression' | 'weight')>; /** * maximum resources per page */ @@ -26990,11 +26775,11 @@ export type CiProductsAdditionalRepositoriesGetToManyRelatedData = { }; }; -export type CiProductsAdditionalRepositoriesGetToManyRelatedResponse = (ScmRepositoriesResponse); +export type GameCenterMatchmakingRuleSetsRulesGetToManyRelatedResponse = (GameCenterMatchmakingRulesResponse); -export type CiProductsAdditionalRepositoriesGetToManyRelatedError = (ErrorResponse); +export type GameCenterMatchmakingRuleSetsRulesGetToManyRelatedError = (ErrorResponse); -export type CiProductsAppGetToOneRelatedData = { +export type GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -27003,183 +26788,386 @@ export type CiProductsAppGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appClips - */ - 'fields[appClips]'?: Array<('bundleId' | 'app' | 'appClipDefaultExperiences' | 'appClipAdvancedExperiences')>; - /** - * the fields to include for returned resources of type appCustomProductPages + * the fields to include for returned resources of type gameCenterMatchmakingTeams */ - 'fields[appCustomProductPages]'?: Array<('name' | 'url' | 'visible' | 'app' | 'appCustomProductPageVersions' | 'appStoreVersionTemplate' | 'customProductPageTemplate')>; + 'fields[gameCenterMatchmakingTeams]'?: Array<('referenceName' | 'minPlayers' | 'maxPlayers')>; /** - * the fields to include for returned resources of type appEncryptionDeclarations + * maximum resources per page */ - 'fields[appEncryptionDeclarations]'?: Array<('appDescription' | 'createdDate' | 'usesEncryption' | 'exempt' | 'containsProprietaryCryptography' | 'containsThirdPartyCryptography' | 'availableOnFrenchStore' | 'platform' | 'uploadedDate' | 'documentUrl' | 'documentName' | 'documentType' | 'appEncryptionDeclarationState' | 'codeValue' | 'app' | 'builds' | 'appEncryptionDeclarationDocument')>; + limit?: number; + }; +}; + +export type GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedResponse = (GameCenterMatchmakingTeamsResponse); + +export type GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedError = (ErrorResponse); + +export type GameCenterMatchmakingRulesCreateInstanceData = { + /** + * GameCenterMatchmakingRule representation + */ + body: GameCenterMatchmakingRuleCreateRequest; +}; + +export type GameCenterMatchmakingRulesCreateInstanceResponse = (GameCenterMatchmakingRuleResponse); + +export type GameCenterMatchmakingRulesCreateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingRulesUpdateInstanceData = { + /** + * GameCenterMatchmakingRule representation + */ + body: GameCenterMatchmakingRuleUpdateRequest; + path: { /** - * the fields to include for returned resources of type appEvents + * the id of the requested resource */ - 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'app' | 'localizations')>; + id: string; + }; +}; + +export type GameCenterMatchmakingRulesUpdateInstanceResponse = (GameCenterMatchmakingRuleResponse); + +export type GameCenterMatchmakingRulesUpdateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingRulesDeleteInstanceData = { + path: { /** - * the fields to include for returned resources of type appInfos + * the id of the requested resource */ - 'fields[appInfos]'?: Array<('appStoreState' | 'state' | 'appStoreAgeRating' | 'australiaAgeRating' | 'brazilAgeRating' | 'brazilAgeRatingV2' | 'koreaAgeRating' | 'kidsAgeBand' | 'app' | 'ageRatingDeclaration' | 'appInfoLocalizations' | 'primaryCategory' | 'primarySubcategoryOne' | 'primarySubcategoryTwo' | 'secondaryCategory' | 'secondarySubcategoryOne' | 'secondarySubcategoryTwo')>; + id: string; + }; +}; + +export type GameCenterMatchmakingRulesDeleteInstanceResponse = (void); + +export type GameCenterMatchmakingRulesDeleteInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsData = { + path: { /** - * the fields to include for returned resources of type appPreOrders + * the id of the requested resource */ - 'fields[appPreOrders]'?: Array<('preOrderAvailableDate' | 'appReleaseDate' | 'app')>; + id: string; + }; + query: { /** - * the fields to include for returned resources of type apps + * filter by 'gameCenterMatchmakingQueue' relationship dimension */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'filter[gameCenterMatchmakingQueue]'?: string; /** - * the fields to include for returned resources of type appStoreVersionExperiments + * filter by 'result' attribute dimension */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'platform' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'app' | 'latestControlVersion' | 'controlVersions' | 'appStoreVersionExperimentTreatments')>; + 'filter[result]'?: string; /** - * the fields to include for returned resources of type appStoreVersions + * the granularity of the per-group dataset */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * the fields to include for returned resources of type betaAppLocalizations + * the dimension by which to group the results */ - 'fields[betaAppLocalizations]'?: Array<('feedbackEmail' | 'marketingUrl' | 'privacyPolicyUrl' | 'tvOsPrivacyPolicy' | 'description' | 'locale' | 'app')>; + groupBy?: Array<('result' | 'gameCenterMatchmakingQueue')>; /** - * the fields to include for returned resources of type betaAppReviewDetails + * maximum number of groups to return per page */ - 'fields[betaAppReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'app')>; + limit?: number; /** - * the fields to include for returned resources of type betaGroups + * comma-separated list of sort expressions; metrics will be sorted as specified */ - 'fields[betaGroups]'?: Array<('name' | 'createdDate' | 'isInternalGroup' | 'hasAccessToAllBuilds' | 'publicLinkEnabled' | 'publicLinkId' | 'publicLinkLimitEnabled' | 'publicLinkLimit' | 'publicLink' | 'feedbackEnabled' | 'iosBuildsAvailableForAppleSiliconMac' | 'app' | 'builds' | 'betaTesters')>; + sort?: Array<('count' | '-count')>; + }; +}; + +export type GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsResponse = (GameCenterMatchmakingBooleanRuleResultsV1MetricResponse); + +export type GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsError = (ErrorResponse); + +export type GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsData = { + path: { /** - * the fields to include for returned resources of type betaLicenseAgreements + * the id of the requested resource */ - 'fields[betaLicenseAgreements]'?: Array<('agreementText' | 'app')>; + id: string; + }; + query: { /** - * the fields to include for returned resources of type builds + * filter by 'gameCenterMatchmakingQueue' relationship dimension */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + 'filter[gameCenterMatchmakingQueue]'?: string; /** - * the fields to include for returned resources of type ciProducts + * the granularity of the per-group dataset */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * the fields to include for returned resources of type endUserLicenseAgreements + * the dimension by which to group the results */ - 'fields[endUserLicenseAgreements]'?: Array<('agreementText' | 'app' | 'territories')>; + groupBy?: Array<('gameCenterMatchmakingQueue')>; /** - * the fields to include for returned resources of type gameCenterDetails + * maximum number of groups to return per page */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + limit?: number; /** - * the fields to include for returned resources of type gameCenterEnabledVersions + * comma-separated list of sort expressions; metrics will be sorted as specified */ - 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; + sort?: Array<('count' | '-count' | 'averageResult' | '-averageResult' | 'p50Result' | '-p50Result' | 'p95Result' | '-p95Result')>; + }; +}; + +export type GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsResponse = (GameCenterMatchmakingNumberRuleResultsV1MetricResponse); + +export type GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsError = (ErrorResponse); + +export type GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsData = { + path: { /** - * the fields to include for returned resources of type inAppPurchases + * the id of the requested resource */ - 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps' | 'name' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + id: string; + }; + query: { /** - * the fields to include for returned resources of type preReleaseVersions + * filter by 'gameCenterMatchmakingQueue' relationship dimension */ - 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; + 'filter[gameCenterMatchmakingQueue]'?: string; /** - * the fields to include for returned resources of type promotedPurchases + * the granularity of the per-group dataset */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + granularity: 'P1D' | 'PT1H' | 'PT15M'; /** - * the fields to include for returned resources of type reviewSubmissions + * the dimension by which to group the results */ - 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'submitted' | 'canceled' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + groupBy?: Array<('gameCenterMatchmakingQueue')>; /** - * the fields to include for returned resources of type subscriptionGracePeriods + * maximum number of groups to return per page */ - 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; + limit?: number; /** - * the fields to include for returned resources of type subscriptionGroups + * comma-separated list of sort expressions; metrics will be sorted as specified */ - 'fields[subscriptionGroups]'?: Array<('referenceName' | 'app' | 'subscriptions' | 'subscriptionGroupLocalizations')>; + sort?: Array<('count' | '-count')>; + }; +}; + +export type GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsResponse = (GameCenterMatchmakingRuleErrorsV1MetricResponse); + +export type GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsError = (ErrorResponse); + +export type GameCenterMatchmakingTeamsCreateInstanceData = { + /** + * GameCenterMatchmakingTeam representation + */ + body: GameCenterMatchmakingTeamCreateRequest; +}; + +export type GameCenterMatchmakingTeamsCreateInstanceResponse = (GameCenterMatchmakingTeamResponse); + +export type GameCenterMatchmakingTeamsCreateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingTeamsUpdateInstanceData = { + /** + * GameCenterMatchmakingTeam representation + */ + body: GameCenterMatchmakingTeamUpdateRequest; + path: { /** - * comma-separated list of relationships to include + * the id of the requested resource */ - include?: Array<('appEncryptionDeclarations' | 'ciProduct' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'endUserLicenseAgreement' | 'preOrder' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2')>; + id: string; + }; +}; + +export type GameCenterMatchmakingTeamsUpdateInstanceResponse = (GameCenterMatchmakingTeamResponse); + +export type GameCenterMatchmakingTeamsUpdateInstanceError = (ErrorResponse); + +export type GameCenterMatchmakingTeamsDeleteInstanceData = { + path: { /** - * maximum number of related appClips returned (when they are included) + * the id of the requested resource */ - 'limit[appClips]'?: number; + id: string; + }; +}; + +export type GameCenterMatchmakingTeamsDeleteInstanceResponse = (void); + +export type GameCenterMatchmakingTeamsDeleteInstanceError = (ErrorResponse); + +export type GameCenterPlayerAchievementSubmissionsCreateInstanceData = { + /** + * GameCenterPlayerAchievementSubmission representation + */ + body: GameCenterPlayerAchievementSubmissionCreateRequest; +}; + +export type GameCenterPlayerAchievementSubmissionsCreateInstanceResponse = (GameCenterPlayerAchievementSubmissionResponse); + +export type GameCenterPlayerAchievementSubmissionsCreateInstanceError = (ErrorResponse); + +export type InAppPurchaseAppStoreReviewScreenshotsCreateInstanceData = { + /** + * InAppPurchaseAppStoreReviewScreenshot representation + */ + body: InAppPurchaseAppStoreReviewScreenshotCreateRequest; +}; + +export type InAppPurchaseAppStoreReviewScreenshotsCreateInstanceResponse = (InAppPurchaseAppStoreReviewScreenshotResponse); + +export type InAppPurchaseAppStoreReviewScreenshotsCreateInstanceError = (ErrorResponse); + +export type InAppPurchaseAppStoreReviewScreenshotsGetInstanceData = { + path: { /** - * maximum number of related appCustomProductPages returned (when they are included) + * the id of the requested resource */ - 'limit[appCustomProductPages]'?: number; + id: string; + }; + query?: { /** - * maximum number of related appEncryptionDeclarations returned (when they are included) + * the fields to include for returned resources of type inAppPurchaseAppStoreReviewScreenshots */ - 'limit[appEncryptionDeclarations]'?: number; + 'fields[inAppPurchaseAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'inAppPurchaseV2')>; /** - * maximum number of related appEvents returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[appEvents]'?: number; + include?: Array<('inAppPurchaseV2')>; + }; +}; + +export type InAppPurchaseAppStoreReviewScreenshotsGetInstanceResponse = (InAppPurchaseAppStoreReviewScreenshotResponse); + +export type InAppPurchaseAppStoreReviewScreenshotsGetInstanceError = (ErrorResponse); + +export type InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceData = { + /** + * InAppPurchaseAppStoreReviewScreenshot representation + */ + body: InAppPurchaseAppStoreReviewScreenshotUpdateRequest; + path: { /** - * maximum number of related appInfos returned (when they are included) + * the id of the requested resource */ - 'limit[appInfos]'?: number; + id: string; + }; +}; + +export type InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceResponse = (InAppPurchaseAppStoreReviewScreenshotResponse); + +export type InAppPurchaseAppStoreReviewScreenshotsUpdateInstanceError = (ErrorResponse); + +export type InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceData = { + path: { /** - * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) + * the id of the requested resource */ - 'limit[appStoreVersionExperimentsV2]'?: number; + id: string; + }; +}; + +export type InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceResponse = (void); + +export type InAppPurchaseAppStoreReviewScreenshotsDeleteInstanceError = (ErrorResponse); + +export type InAppPurchaseAvailabilitiesCreateInstanceData = { + /** + * InAppPurchaseAvailability representation + */ + body: InAppPurchaseAvailabilityCreateRequest; +}; + +export type InAppPurchaseAvailabilitiesCreateInstanceResponse = (InAppPurchaseAvailabilityResponse); + +export type InAppPurchaseAvailabilitiesCreateInstanceError = (ErrorResponse); + +export type InAppPurchaseAvailabilitiesGetInstanceData = { + path: { /** - * maximum number of related appStoreVersions returned (when they are included) + * the id of the requested resource */ - 'limit[appStoreVersions]'?: number; + id: string; + }; + query?: { /** - * maximum number of related betaAppLocalizations returned (when they are included) + * the fields to include for returned resources of type inAppPurchaseAvailabilities */ - 'limit[betaAppLocalizations]'?: number; + 'fields[inAppPurchaseAvailabilities]'?: Array<('availableInNewTerritories' | 'availableTerritories')>; /** - * maximum number of related betaGroups returned (when they are included) + * the fields to include for returned resources of type territories */ - 'limit[betaGroups]'?: number; + 'fields[territories]'?: Array<('currency')>; /** - * maximum number of related builds returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[builds]'?: number; + include?: Array<('availableTerritories')>; /** - * maximum number of related gameCenterEnabledVersions returned (when they are included) - * @deprecated + * maximum number of related availableTerritories returned (when they are included) */ - 'limit[gameCenterEnabledVersions]'?: number; + 'limit[availableTerritories]'?: number; + }; +}; + +export type InAppPurchaseAvailabilitiesGetInstanceResponse = (InAppPurchaseAvailabilityResponse); + +export type InAppPurchaseAvailabilitiesGetInstanceError = (ErrorResponse); + +export type InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedData = { + path: { /** - * maximum number of related inAppPurchases returned (when they are included) - * @deprecated + * the id of the requested resource */ - 'limit[inAppPurchases]'?: number; + id: string; + }; + query?: { /** - * maximum number of related inAppPurchasesV2 returned (when they are included) + * the fields to include for returned resources of type territories */ - 'limit[inAppPurchasesV2]'?: number; + 'fields[territories]'?: Array<('currency')>; /** - * maximum number of related preReleaseVersions returned (when they are included) + * maximum resources per page */ - 'limit[preReleaseVersions]'?: number; + limit?: number; + }; +}; + +export type InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse = (TerritoriesResponse); + +export type InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedError = (ErrorResponse); + +export type InAppPurchaseContentsGetInstanceData = { + path: { /** - * maximum number of related promotedPurchases returned (when they are included) + * the id of the requested resource */ - 'limit[promotedPurchases]'?: number; + id: string; + }; + query?: { /** - * maximum number of related reviewSubmissions returned (when they are included) + * the fields to include for returned resources of type inAppPurchaseContents */ - 'limit[reviewSubmissions]'?: number; + 'fields[inAppPurchaseContents]'?: Array<('fileName' | 'fileSize' | 'url' | 'lastModifiedDate' | 'inAppPurchaseV2')>; /** - * maximum number of related subscriptionGroups returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[subscriptionGroups]'?: number; + include?: Array<('inAppPurchaseV2')>; }; }; -export type CiProductsAppGetToOneRelatedResponse = (AppResponse); +export type InAppPurchaseContentsGetInstanceResponse = (InAppPurchaseContentResponse); -export type CiProductsAppGetToOneRelatedError = (ErrorResponse); +export type InAppPurchaseContentsGetInstanceError = (ErrorResponse); -export type CiProductsBuildRunsGetToManyRelatedData = { +export type InAppPurchaseImagesCreateInstanceData = { + /** + * InAppPurchaseImage representation + */ + body: InAppPurchaseImageCreateRequest; +}; + +export type InAppPurchaseImagesCreateInstanceResponse = (InAppPurchaseImageResponse); + +export type InAppPurchaseImagesCreateInstanceError = (ErrorResponse); + +export type InAppPurchaseImagesGetInstanceData = { path: { /** * the id of the requested resource @@ -27188,96 +27176,126 @@ export type CiProductsBuildRunsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - /** - * the fields to include for returned resources of type ciBuildRuns + * the fields to include for returned resources of type inAppPurchaseImages */ - 'fields[ciBuildRuns]'?: Array<('clean' | 'number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'buildRun' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; + 'fields[inAppPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'state' | 'inAppPurchase')>; /** - * the fields to include for returned resources of type ciProducts + * comma-separated list of relationships to include */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; + include?: Array<('inAppPurchase')>; + }; +}; + +export type InAppPurchaseImagesGetInstanceResponse = (InAppPurchaseImageResponse); + +export type InAppPurchaseImagesGetInstanceError = (ErrorResponse); + +export type InAppPurchaseImagesUpdateInstanceData = { + /** + * InAppPurchaseImage representation + */ + body: InAppPurchaseImageUpdateRequest; + path: { /** - * the fields to include for returned resources of type ciWorkflows + * the id of the requested resource */ - 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; + id: string; + }; +}; + +export type InAppPurchaseImagesUpdateInstanceResponse = (InAppPurchaseImageResponse); + +export type InAppPurchaseImagesUpdateInstanceError = (ErrorResponse); + +export type InAppPurchaseImagesDeleteInstanceData = { + path: { /** - * the fields to include for returned resources of type scmGitReferences + * the id of the requested resource */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; + id: string; + }; +}; + +export type InAppPurchaseImagesDeleteInstanceResponse = (void); + +export type InAppPurchaseImagesDeleteInstanceError = (ErrorResponse); + +export type InAppPurchaseLocalizationsCreateInstanceData = { + /** + * InAppPurchaseLocalization representation + */ + body: InAppPurchaseLocalizationCreateRequest; +}; + +export type InAppPurchaseLocalizationsCreateInstanceResponse = (InAppPurchaseLocalizationResponse); + +export type InAppPurchaseLocalizationsCreateInstanceError = (ErrorResponse); + +export type InAppPurchaseLocalizationsGetInstanceData = { + path: { /** - * the fields to include for returned resources of type scmPullRequests + * the id of the requested resource */ - 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; + id: string; + }; + query?: { /** - * filter by id(s) of related 'builds' + * the fields to include for returned resources of type inAppPurchaseLocalizations */ - 'filter[builds]'?: Array<(string)>; + 'fields[inAppPurchaseLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'inAppPurchaseV2')>; /** * comma-separated list of relationships to include */ - include?: Array<('builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'pullRequest')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related builds returned (when they are included) - */ - 'limit[builds]'?: number; + include?: Array<('inAppPurchaseV2')>; + }; +}; + +export type InAppPurchaseLocalizationsGetInstanceResponse = (InAppPurchaseLocalizationResponse); + +export type InAppPurchaseLocalizationsGetInstanceError = (ErrorResponse); + +export type InAppPurchaseLocalizationsUpdateInstanceData = { + /** + * InAppPurchaseLocalization representation + */ + body: InAppPurchaseLocalizationUpdateRequest; + path: { /** - * comma-separated list of sort expressions; resources will be sorted as specified + * the id of the requested resource */ - sort?: Array<('number' | '-number')>; + id: string; }; }; -export type CiProductsBuildRunsGetToManyRelatedResponse = (CiBuildRunsResponse); +export type InAppPurchaseLocalizationsUpdateInstanceResponse = (InAppPurchaseLocalizationResponse); -export type CiProductsBuildRunsGetToManyRelatedError = (ErrorResponse); +export type InAppPurchaseLocalizationsUpdateInstanceError = (ErrorResponse); -export type CiProductsPrimaryRepositoriesGetToManyRelatedData = { +export type InAppPurchaseLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type scmGitReferences - */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; - /** - * the fields to include for returned resources of type scmProviders - */ - 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; - /** - * the fields to include for returned resources of type scmRepositories - */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; - /** - * filter by id(s) - */ - 'filter[id]'?: Array<(string)>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('scmProvider' | 'defaultBranch')>; - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type CiProductsPrimaryRepositoriesGetToManyRelatedResponse = (ScmRepositoriesResponse); +export type InAppPurchaseLocalizationsDeleteInstanceResponse = (void); -export type CiProductsPrimaryRepositoriesGetToManyRelatedError = (ErrorResponse); +export type InAppPurchaseLocalizationsDeleteInstanceError = (ErrorResponse); -export type CiProductsWorkflowsGetToManyRelatedData = { +export type InAppPurchasePriceSchedulesCreateInstanceData = { + /** + * InAppPurchasePriceSchedule representation + */ + body: InAppPurchasePriceScheduleCreateRequest; +}; + +export type InAppPurchasePriceSchedulesCreateInstanceResponse = (InAppPurchasePriceScheduleResponse); + +export type InAppPurchasePriceSchedulesCreateInstanceError = (ErrorResponse); + +export type InAppPurchasePriceSchedulesGetInstanceData = { path: { /** * the id of the requested resource @@ -27286,41 +27304,37 @@ export type CiProductsWorkflowsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type ciMacOsVersions - */ - 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; - /** - * the fields to include for returned resources of type ciProducts + * the fields to include for returned resources of type inAppPurchasePrices */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; + 'fields[inAppPurchasePrices]'?: Array<('startDate' | 'endDate' | 'manual' | 'inAppPurchasePricePoint' | 'territory')>; /** - * the fields to include for returned resources of type ciWorkflows + * the fields to include for returned resources of type inAppPurchasePriceSchedules */ - 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; + 'fields[inAppPurchasePriceSchedules]'?: Array<('baseTerritory' | 'manualPrices' | 'automaticPrices')>; /** - * the fields to include for returned resources of type ciXcodeVersions + * the fields to include for returned resources of type territories */ - 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; + 'fields[territories]'?: Array<('currency')>; /** - * the fields to include for returned resources of type scmRepositories + * comma-separated list of relationships to include */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; + include?: Array<('baseTerritory' | 'manualPrices' | 'automaticPrices')>; /** - * comma-separated list of relationships to include + * maximum number of related automaticPrices returned (when they are included) */ - include?: Array<('product' | 'repository' | 'xcodeVersion' | 'macOsVersion')>; + 'limit[automaticPrices]'?: number; /** - * maximum resources per page + * maximum number of related manualPrices returned (when they are included) */ - limit?: number; + 'limit[manualPrices]'?: number; }; }; -export type CiProductsWorkflowsGetToManyRelatedResponse = (CiWorkflowsResponse); +export type InAppPurchasePriceSchedulesGetInstanceResponse = (InAppPurchasePriceScheduleResponse); -export type CiProductsWorkflowsGetToManyRelatedError = (ErrorResponse); +export type InAppPurchasePriceSchedulesGetInstanceError = (ErrorResponse); -export type CiWorkflowsBuildRunsGetToManyRelatedData = { +export type InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -27329,57 +27343,37 @@ export type CiWorkflowsBuildRunsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - /** - * the fields to include for returned resources of type ciBuildRuns - */ - 'fields[ciBuildRuns]'?: Array<('clean' | 'number' | 'createdDate' | 'startedDate' | 'finishedDate' | 'sourceCommit' | 'destinationCommit' | 'isPullRequestBuild' | 'issueCounts' | 'executionProgress' | 'completionStatus' | 'startReason' | 'cancelReason' | 'buildRun' | 'builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'actions' | 'pullRequest')>; - /** - * the fields to include for returned resources of type ciProducts - */ - 'fields[ciProducts]'?: Array<('name' | 'createdDate' | 'productType' | 'app' | 'bundleId' | 'workflows' | 'primaryRepositories' | 'additionalRepositories' | 'buildRuns')>; - /** - * the fields to include for returned resources of type ciWorkflows + * the fields to include for returned resources of type inAppPurchasePricePoints */ - 'fields[ciWorkflows]'?: Array<('name' | 'description' | 'branchStartCondition' | 'tagStartCondition' | 'pullRequestStartCondition' | 'scheduledStartCondition' | 'manualBranchStartCondition' | 'manualTagStartCondition' | 'manualPullRequestStartCondition' | 'actions' | 'isEnabled' | 'isLockedForEditing' | 'clean' | 'containerFilePath' | 'lastModifiedDate' | 'product' | 'repository' | 'xcodeVersion' | 'macOsVersion' | 'buildRuns')>; + 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'equalizations')>; /** - * the fields to include for returned resources of type scmGitReferences + * the fields to include for returned resources of type inAppPurchasePrices */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; + 'fields[inAppPurchasePrices]'?: Array<('startDate' | 'endDate' | 'manual' | 'inAppPurchasePricePoint' | 'territory')>; /** - * the fields to include for returned resources of type scmPullRequests + * the fields to include for returned resources of type territories */ - 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; + 'fields[territories]'?: Array<('currency')>; /** - * filter by id(s) of related 'builds' + * filter by id(s) of related 'territory' */ - 'filter[builds]'?: Array<(string)>; + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('builds' | 'workflow' | 'product' | 'sourceBranchOrTag' | 'destinationBranch' | 'pullRequest')>; + include?: Array<('inAppPurchasePricePoint' | 'territory')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related builds returned (when they are included) - */ - 'limit[builds]'?: number; - /** - * comma-separated list of sort expressions; resources will be sorted as specified - */ - sort?: Array<('number' | '-number')>; }; }; -export type CiWorkflowsBuildRunsGetToManyRelatedResponse = (CiBuildRunsResponse); +export type InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedResponse = (InAppPurchasePricesResponse); -export type CiWorkflowsBuildRunsGetToManyRelatedError = (ErrorResponse); +export type InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedError = (ErrorResponse); -export type CiWorkflowsRepositoryGetToOneRelatedData = { +export type InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -27388,29 +27382,17 @@ export type CiWorkflowsRepositoryGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type scmGitReferences - */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; - /** - * the fields to include for returned resources of type scmProviders - */ - 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; - /** - * the fields to include for returned resources of type scmRepositories - */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type territories */ - include?: Array<('scmProvider' | 'defaultBranch')>; + 'fields[territories]'?: Array<('currency')>; }; }; -export type CiWorkflowsRepositoryGetToOneRelatedResponse = (ScmRepositoryResponse); +export type InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedResponse = (TerritoryResponse); -export type CiWorkflowsRepositoryGetToOneRelatedError = (ErrorResponse); +export type InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedError = (ErrorResponse); -export type CiXcodeVersionsMacOsVersionsGetToManyRelatedData = { +export type InAppPurchasePriceSchedulesManualPricesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -27419,33 +27401,48 @@ export type CiXcodeVersionsMacOsVersionsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type ciMacOsVersions + * the fields to include for returned resources of type inAppPurchasePricePoints */ - 'fields[ciMacOsVersions]'?: Array<('version' | 'name' | 'xcodeVersions')>; + 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'equalizations')>; /** - * the fields to include for returned resources of type ciXcodeVersions + * the fields to include for returned resources of type inAppPurchasePrices */ - 'fields[ciXcodeVersions]'?: Array<('version' | 'name' | 'testDestinations' | 'macOsVersions')>; + 'fields[inAppPurchasePrices]'?: Array<('startDate' | 'endDate' | 'manual' | 'inAppPurchasePricePoint' | 'territory')>; + /** + * the fields to include for returned resources of type territories + */ + 'fields[territories]'?: Array<('currency')>; + /** + * filter by id(s) of related 'territory' + */ + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('xcodeVersions')>; + include?: Array<('inAppPurchasePricePoint' | 'territory')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related xcodeVersions returned (when they are included) - */ - 'limit[xcodeVersions]'?: number; }; }; -export type CiXcodeVersionsMacOsVersionsGetToManyRelatedResponse = (CiMacOsVersionsResponse); +export type InAppPurchasePriceSchedulesManualPricesGetToManyRelatedResponse = (InAppPurchasePricesResponse); -export type CiXcodeVersionsMacOsVersionsGetToManyRelatedError = (ErrorResponse); +export type InAppPurchasePriceSchedulesManualPricesGetToManyRelatedError = (ErrorResponse); -export type CustomerReviewsResponseGetToOneRelatedData = { +export type InAppPurchaseSubmissionsCreateInstanceData = { + /** + * InAppPurchaseSubmission representation + */ + body: InAppPurchaseSubmissionCreateRequest; +}; + +export type InAppPurchaseSubmissionsCreateInstanceResponse = (InAppPurchaseSubmissionResponse); + +export type InAppPurchaseSubmissionsCreateInstanceError = (ErrorResponse); + +export type InAppPurchasesGetInstanceData = { path: { /** * the id of the requested resource @@ -27454,44 +27451,36 @@ export type CustomerReviewsResponseGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type customerReviewResponses + * the fields to include for returned resources of type inAppPurchases */ - 'fields[customerReviewResponses]'?: Array<('responseBody' | 'lastModifiedDate' | 'state' | 'review')>; + 'fields[inAppPurchases]'?: Array<('referenceName' | 'productId' | 'inAppPurchaseType' | 'state' | 'apps')>; /** - * the fields to include for returned resources of type customerReviews + * comma-separated list of relationships to include */ - 'fields[customerReviews]'?: Array<('rating' | 'title' | 'body' | 'reviewerNickname' | 'createdDate' | 'territory' | 'response')>; + include?: Array<('apps')>; /** - * comma-separated list of relationships to include + * maximum number of related apps returned (when they are included) */ - include?: Array<('review')>; + 'limit[apps]'?: number; }; }; -export type CustomerReviewsResponseGetToOneRelatedResponse = (CustomerReviewResponseV1Response); +export type InAppPurchasesGetInstanceResponse = (InAppPurchaseResponse); -export type CustomerReviewsResponseGetToOneRelatedError = (ErrorResponse); +export type InAppPurchasesGetInstanceError = (ErrorResponse); -export type DiagnosticSignaturesLogsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * maximum resources per page - */ - limit?: number; - }; +export type InAppPurchasesV2CreateInstanceData = { + /** + * InAppPurchase representation + */ + body: InAppPurchaseV2CreateRequest; }; -export type DiagnosticSignaturesLogsGetToManyRelatedResponse = (diagnosticLogs); +export type InAppPurchasesV2CreateInstanceResponse = (InAppPurchaseV2Response); -export type DiagnosticSignaturesLogsGetToManyRelatedError = (ErrorResponse); +export type InAppPurchasesV2CreateInstanceError = (ErrorResponse); -export type EndUserLicenseAgreementsTerritoriesGetToManyRelatedData = { +export type InAppPurchasesV2GetInstanceData = { path: { /** * the id of the requested resource @@ -27500,95 +27489,69 @@ export type EndUserLicenseAgreementsTerritoriesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * maximum resources per page - */ - limit?: number; - }; -}; - -export type EndUserLicenseAgreementsTerritoriesGetToManyRelatedResponse = (TerritoriesWithoutIncludesResponse); - -export type EndUserLicenseAgreementsTerritoriesGetToManyRelatedError = (ErrorResponse); - -export type GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedData = { - path: { - /** - * the id of the requested resource + * the fields to include for returned resources of type inAppPurchaseAppStoreReviewScreenshots */ - id: string; - }; - query?: { + 'fields[inAppPurchaseAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'inAppPurchaseV2')>; /** - * the fields to include for returned resources of type gameCenterAchievementLocalizations + * the fields to include for returned resources of type inAppPurchaseAvailabilities */ - 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; + 'fields[inAppPurchaseAvailabilities]'?: Array<('availableInNewTerritories' | 'availableTerritories')>; /** - * the fields to include for returned resources of type gameCenterAchievementReleases + * the fields to include for returned resources of type inAppPurchaseContents */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; + 'fields[inAppPurchaseContents]'?: Array<('fileName' | 'fileSize' | 'url' | 'lastModifiedDate' | 'inAppPurchaseV2')>; /** - * the fields to include for returned resources of type gameCenterAchievements + * the fields to include for returned resources of type inAppPurchaseImages */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[inAppPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'state' | 'inAppPurchase')>; /** - * the fields to include for returned resources of type gameCenterDetails + * the fields to include for returned resources of type inAppPurchaseLocalizations */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + 'fields[inAppPurchaseLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'inAppPurchaseV2')>; /** - * the fields to include for returned resources of type gameCenterGroups + * the fields to include for returned resources of type inAppPurchasePricePoints */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'equalizations')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type inAppPurchasePriceSchedules */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[inAppPurchasePriceSchedules]'?: Array<('baseTerritory' | 'manualPrices' | 'automaticPrices')>; /** - * maximum number of related localizations returned (when they are included) + * the fields to include for returned resources of type inAppPurchases */ - 'limit[localizations]'?: number; + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** - * maximum number of related releases returned (when they are included) + * the fields to include for returned resources of type promotedPurchases */ - 'limit[releases]'?: number; - }; -}; - -export type GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedResponse = (GameCenterAchievementResponse); - -export type GameCenterAchievementLocalizationsGameCenterAchievementGetToOneRelatedError = (ErrorResponse); - -export type GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedData = { - path: { + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * the id of the requested resource + * comma-separated list of relationships to include */ - id: string; - }; - query?: { + include?: Array<('inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** - * the fields to include for returned resources of type gameCenterAchievementImages + * maximum number of related images returned (when they are included) */ - 'fields[gameCenterAchievementImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterAchievementLocalization')>; + 'limit[images]'?: number; /** - * the fields to include for returned resources of type gameCenterAchievementLocalizations + * maximum number of related inAppPurchaseLocalizations returned (when they are included) */ - 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; + 'limit[inAppPurchaseLocalizations]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related pricePoints returned (when they are included) */ - include?: Array<('gameCenterAchievementLocalization')>; + 'limit[pricePoints]'?: number; }; }; -export type GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedResponse = (GameCenterAchievementImageResponse); +export type InAppPurchasesV2GetInstanceResponse = (InAppPurchaseV2Response); -export type GameCenterAchievementLocalizationsGameCenterAchievementImageGetToOneRelatedError = (ErrorResponse); +export type InAppPurchasesV2GetInstanceError = (ErrorResponse); -export type GameCenterAchievementsGroupAchievementGetToOneRelationshipData = { +export type InAppPurchasesV2UpdateInstanceData = { + /** + * InAppPurchase representation + */ + body: InAppPurchaseV2UpdateRequest; path: { /** * the id of the requested resource @@ -27597,15 +27560,11 @@ export type GameCenterAchievementsGroupAchievementGetToOneRelationshipData = { }; }; -export type GameCenterAchievementsGroupAchievementGetToOneRelationshipResponse = (GameCenterAchievementGroupAchievementLinkageResponse); +export type InAppPurchasesV2UpdateInstanceResponse = (InAppPurchaseV2Response); -export type GameCenterAchievementsGroupAchievementGetToOneRelationshipError = (ErrorResponse); +export type InAppPurchasesV2UpdateInstanceError = (ErrorResponse); -export type GameCenterAchievementsGroupAchievementUpdateToOneRelationshipData = { - /** - * Related linkage - */ - body: GameCenterAchievementGroupAchievementLinkageRequest; +export type InAppPurchasesV2DeleteInstanceData = { path: { /** * the id of the requested resource @@ -27614,11 +27573,11 @@ export type GameCenterAchievementsGroupAchievementUpdateToOneRelationshipData = }; }; -export type GameCenterAchievementsGroupAchievementUpdateToOneRelationshipResponse = (void); +export type InAppPurchasesV2DeleteInstanceResponse = (void); -export type GameCenterAchievementsGroupAchievementUpdateToOneRelationshipError = (ErrorResponse); +export type InAppPurchasesV2DeleteInstanceError = (ErrorResponse); -export type GameCenterAchievementsGroupAchievementGetToOneRelatedData = { +export type InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -27627,45 +27586,25 @@ export type GameCenterAchievementsGroupAchievementGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementLocalizations - */ - 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; - /** - * the fields to include for returned resources of type gameCenterAchievementReleases - */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; - /** - * the fields to include for returned resources of type gameCenterAchievements - */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterDetails + * the fields to include for returned resources of type inAppPurchaseAppStoreReviewScreenshots */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + 'fields[inAppPurchaseAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'inAppPurchaseV2')>; /** - * the fields to include for returned resources of type gameCenterGroups + * the fields to include for returned resources of type inAppPurchases */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; - /** - * maximum number of related localizations returned (when they are included) - */ - 'limit[localizations]'?: number; - /** - * maximum number of related releases returned (when they are included) - */ - 'limit[releases]'?: number; + include?: Array<('inAppPurchaseV2')>; }; }; -export type GameCenterAchievementsGroupAchievementGetToOneRelatedResponse = (GameCenterAchievementResponse); +export type InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedResponse = (InAppPurchaseAppStoreReviewScreenshotResponse); -export type GameCenterAchievementsGroupAchievementGetToOneRelatedError = (ErrorResponse); +export type InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedError = (ErrorResponse); -export type GameCenterAchievementsLocalizationsGetToManyRelatedData = { +export type InAppPurchasesV2ContentGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -27674,33 +27613,25 @@ export type GameCenterAchievementsLocalizationsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementImages - */ - 'fields[gameCenterAchievementImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterAchievementLocalization')>; - /** - * the fields to include for returned resources of type gameCenterAchievementLocalizations + * the fields to include for returned resources of type inAppPurchaseContents */ - 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; + 'fields[inAppPurchaseContents]'?: Array<('fileName' | 'fileSize' | 'url' | 'lastModifiedDate' | 'inAppPurchaseV2')>; /** - * the fields to include for returned resources of type gameCenterAchievements + * the fields to include for returned resources of type inAppPurchases */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterAchievement' | 'gameCenterAchievementImage')>; - /** - * maximum resources per page - */ - limit?: number; + include?: Array<('inAppPurchaseV2')>; }; }; -export type GameCenterAchievementsLocalizationsGetToManyRelatedResponse = (GameCenterAchievementLocalizationsResponse); +export type InAppPurchasesV2ContentGetToOneRelatedResponse = (InAppPurchaseContentResponse); -export type GameCenterAchievementsLocalizationsGetToManyRelatedError = (ErrorResponse); +export type InAppPurchasesV2ContentGetToOneRelatedError = (ErrorResponse); -export type GameCenterAchievementsReleasesGetToManyRelatedData = { +export type InAppPurchasesV2IapPriceScheduleGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -27709,41 +27640,37 @@ export type GameCenterAchievementsReleasesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementReleases - */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; - /** - * the fields to include for returned resources of type gameCenterAchievements + * the fields to include for returned resources of type inAppPurchasePrices */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[inAppPurchasePrices]'?: Array<('startDate' | 'endDate' | 'manual' | 'inAppPurchasePricePoint' | 'territory')>; /** - * the fields to include for returned resources of type gameCenterDetails + * the fields to include for returned resources of type inAppPurchasePriceSchedules */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + 'fields[inAppPurchasePriceSchedules]'?: Array<('baseTerritory' | 'manualPrices' | 'automaticPrices')>; /** - * filter by id(s) of related 'gameCenterDetail' + * the fields to include for returned resources of type territories */ - 'filter[gameCenterDetail]'?: Array<(string)>; + 'fields[territories]'?: Array<('currency')>; /** - * filter by attribute 'live' + * comma-separated list of relationships to include */ - 'filter[live]'?: Array<(string)>; + include?: Array<('baseTerritory' | 'manualPrices' | 'automaticPrices')>; /** - * comma-separated list of relationships to include + * maximum number of related automaticPrices returned (when they are included) */ - include?: Array<('gameCenterDetail' | 'gameCenterAchievement')>; + 'limit[automaticPrices]'?: number; /** - * maximum resources per page + * maximum number of related manualPrices returned (when they are included) */ - limit?: number; + 'limit[manualPrices]'?: number; }; }; -export type GameCenterAchievementsReleasesGetToManyRelatedResponse = (GameCenterAchievementReleasesResponse); +export type InAppPurchasesV2IapPriceScheduleGetToOneRelatedResponse = (InAppPurchasePriceScheduleResponse); -export type GameCenterAchievementsReleasesGetToManyRelatedError = (ErrorResponse); +export type InAppPurchasesV2IapPriceScheduleGetToOneRelatedError = (ErrorResponse); -export type GameCenterAppVersionsAppStoreVersionGetToOneRelatedData = { +export type InAppPurchasesV2ImagesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -27752,82 +27679,29 @@ export type GameCenterAppVersionsAppStoreVersionGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type ageRatingDeclarations - */ - 'fields[ageRatingDeclarations]'?: Array<('alcoholTobaccoOrDrugUseOrReferences' | 'contests' | 'gamblingAndContests' | 'gambling' | 'gamblingSimulated' | 'kidsAgeBand' | 'lootBox' | 'medicalOrTreatmentInformation' | 'profanityOrCrudeHumor' | 'sexualContentGraphicAndNudity' | 'sexualContentOrNudity' | 'horrorOrFearThemes' | 'matureOrSuggestiveThemes' | 'unrestrictedWebAccess' | 'violenceCartoonOrFantasy' | 'violenceRealisticProlongedGraphicOrSadistic' | 'violenceRealistic' | 'ageRatingOverride' | 'koreaAgeRatingOverride' | 'seventeenPlus')>; - /** - * the fields to include for returned resources of type alternativeDistributionPackages - */ - 'fields[alternativeDistributionPackages]'?: Array<('appStoreVersion' | 'versions')>; - /** - * the fields to include for returned resources of type appClipDefaultExperiences - */ - 'fields[appClipDefaultExperiences]'?: Array<('action' | 'appClip' | 'releaseWithAppStoreVersion' | 'appClipDefaultExperienceLocalizations' | 'appClipAppStoreReviewDetail' | 'appClipDefaultExperienceTemplate')>; - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type appStoreReviewDetails - */ - 'fields[appStoreReviewDetails]'?: Array<('contactFirstName' | 'contactLastName' | 'contactPhone' | 'contactEmail' | 'demoAccountName' | 'demoAccountPassword' | 'demoAccountRequired' | 'notes' | 'appStoreVersion' | 'appStoreReviewAttachments')>; - /** - * the fields to include for returned resources of type appStoreVersionExperiments - */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; - /** - * the fields to include for returned resources of type appStoreVersionLocalizations - */ - 'fields[appStoreVersionLocalizations]'?: Array<('description' | 'locale' | 'keywords' | 'marketingUrl' | 'promotionalText' | 'supportUrl' | 'whatsNew' | 'appStoreVersion' | 'appScreenshotSets' | 'appPreviewSets')>; - /** - * the fields to include for returned resources of type appStoreVersionPhasedReleases - */ - 'fields[appStoreVersionPhasedReleases]'?: Array<('phasedReleaseState' | 'startDate' | 'totalPauseDuration' | 'currentDayNumber' | 'appStoreVersion')>; - /** - * the fields to include for returned resources of type appStoreVersions - */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; - /** - * the fields to include for returned resources of type appStoreVersionSubmissions - */ - 'fields[appStoreVersionSubmissions]'?: Array<('appStoreVersion')>; - /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - /** - * the fields to include for returned resources of type gameCenterAppVersions + * the fields to include for returned resources of type inAppPurchaseImages */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + 'fields[inAppPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'state' | 'inAppPurchase')>; /** - * the fields to include for returned resources of type routingAppCoverages + * the fields to include for returned resources of type inAppPurchases */ - 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'appStoreVersion')>; + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionPackage')>; - /** - * maximum number of related appStoreVersionExperiments returned (when they are included) - * @deprecated - */ - 'limit[appStoreVersionExperiments]'?: number; - /** - * maximum number of related appStoreVersionExperimentsV2 returned (when they are included) - */ - 'limit[appStoreVersionExperimentsV2]'?: number; + include?: Array<('inAppPurchase')>; /** - * maximum number of related appStoreVersionLocalizations returned (when they are included) + * maximum resources per page */ - 'limit[appStoreVersionLocalizations]'?: number; + limit?: number; }; }; -export type GameCenterAppVersionsAppStoreVersionGetToOneRelatedResponse = (AppStoreVersionResponse); +export type InAppPurchasesV2ImagesGetToManyRelatedResponse = (InAppPurchaseImagesResponse); -export type GameCenterAppVersionsAppStoreVersionGetToOneRelatedError = (ErrorResponse); +export type InAppPurchasesV2ImagesGetToManyRelatedError = (ErrorResponse); -export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipData = { +export type InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -27836,51 +27710,60 @@ export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipData }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type inAppPurchaseAvailabilities */ - limit?: number; + 'fields[inAppPurchaseAvailabilities]'?: Array<('availableInNewTerritories' | 'availableTerritories')>; + /** + * the fields to include for returned resources of type territories + */ + 'fields[territories]'?: Array<('currency')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('availableTerritories')>; + /** + * maximum number of related availableTerritories returned (when they are included) + */ + 'limit[availableTerritories]'?: number; }; }; -export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipResponse = (GameCenterAppVersionCompatibilityVersionsLinkagesResponse); +export type InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedResponse = (InAppPurchaseAvailabilityResponse); -export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelationshipError = (ErrorResponse); +export type InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedError = (ErrorResponse); -export type GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipData = { - /** - * List of related linkages - */ - body: GameCenterAppVersionCompatibilityVersionsLinkagesRequest; +export type InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipResponse = (void); - -export type GameCenterAppVersionsCompatibilityVersionsCreateToManyRelationshipError = (ErrorResponse); - -export type GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipData = { - /** - * List of related linkages - */ - body: GameCenterAppVersionCompatibilityVersionsLinkagesRequest; - path: { + query?: { + /** + * the fields to include for returned resources of type inAppPurchaseLocalizations + */ + 'fields[inAppPurchaseLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'inAppPurchaseV2')>; + /** + * the fields to include for returned resources of type inAppPurchases + */ + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** - * the id of the requested resource + * comma-separated list of relationships to include */ - id: string; + include?: Array<('inAppPurchaseV2')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipResponse = (void); +export type InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedResponse = (InAppPurchaseLocalizationsResponse); -export type GameCenterAppVersionsCompatibilityVersionsDeleteToManyRelationshipError = (ErrorResponse); +export type InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedError = (ErrorResponse); -export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedData = { +export type InAppPurchasesV2PricePointsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -27889,37 +27772,33 @@ export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type inAppPurchasePricePoints */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'equalizations')>; /** - * the fields to include for returned resources of type gameCenterAppVersions + * the fields to include for returned resources of type territories */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + 'fields[territories]'?: Array<('currency')>; /** - * filter by attribute 'enabled' + * filter by id(s) of related 'territory' */ - 'filter[enabled]'?: Array<(string)>; + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('compatibilityVersions' | 'appStoreVersion')>; + include?: Array<('territory')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related compatibilityVersions returned (when they are included) - */ - 'limit[compatibilityVersions]'?: number; }; }; -export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedResponse = (GameCenterAppVersionsResponse); +export type InAppPurchasesV2PricePointsGetToManyRelatedResponse = (InAppPurchasePricePointsResponse); -export type GameCenterAppVersionsCompatibilityVersionsGetToManyRelatedError = (ErrorResponse); +export type InAppPurchasesV2PricePointsGetToManyRelatedError = (ErrorResponse); -export type GameCenterDetailsAchievementReleasesGetToManyRelatedData = { +export type InAppPurchasesV2PromotedPurchaseGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -27928,29 +27807,43 @@ export type GameCenterDetailsAchievementReleasesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementReleases + * the fields to include for returned resources of type inAppPurchases */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; /** - * the fields to include for returned resources of type gameCenterAchievements + * the fields to include for returned resources of type promotedPurchaseImages */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'state' | 'promotedPurchase')>; /** - * the fields to include for returned resources of type gameCenterDetails + * the fields to include for returned resources of type promotedPurchases */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * filter by id(s) of related 'gameCenterAchievement' + * the fields to include for returned resources of type subscriptions */ - 'filter[gameCenterAchievement]'?: Array<(string)>; + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** - * filter by attribute 'live' + * comma-separated list of relationships to include */ - 'filter[live]'?: Array<(string)>; + include?: Array<('inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * comma-separated list of relationships to include + * maximum number of related promotionImages returned (when they are included) + * @deprecated */ - include?: Array<('gameCenterDetail' | 'gameCenterAchievement')>; + 'limit[promotionImages]'?: number; + }; +}; + +export type InAppPurchasesV2PromotedPurchaseGetToOneRelatedResponse = (PromotedPurchaseResponse); + +export type InAppPurchasesV2PromotedPurchaseGetToOneRelatedError = (ErrorResponse); + +export type MarketplaceDomainsGetCollectionData = { + query?: { + /** + * the fields to include for returned resources of type marketplaceDomains + */ + 'fields[marketplaceDomains]'?: Array<('domain' | 'referenceName' | 'createdDate')>; /** * maximum resources per page */ @@ -27958,11 +27851,22 @@ export type GameCenterDetailsAchievementReleasesGetToManyRelatedData = { }; }; -export type GameCenterDetailsAchievementReleasesGetToManyRelatedResponse = (GameCenterAchievementReleasesResponse); +export type MarketplaceDomainsGetCollectionResponse = (MarketplaceDomainsResponse); -export type GameCenterDetailsAchievementReleasesGetToManyRelatedError = (ErrorResponse); +export type MarketplaceDomainsGetCollectionError = (ErrorResponse); -export type GameCenterDetailsGameCenterAchievementsGetToManyRelationshipData = { +export type MarketplaceDomainsCreateInstanceData = { + /** + * MarketplaceDomain representation + */ + body: MarketplaceDomainCreateRequest; +}; + +export type MarketplaceDomainsCreateInstanceResponse = (MarketplaceDomainResponse); + +export type MarketplaceDomainsCreateInstanceError = (ErrorResponse); + +export type MarketplaceDomainsGetInstanceData = { path: { /** * the id of the requested resource @@ -27971,21 +27875,45 @@ export type GameCenterDetailsGameCenterAchievementsGetToManyRelationshipData = { }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type marketplaceDomains */ - limit?: number; + 'fields[marketplaceDomains]'?: Array<('domain' | 'referenceName' | 'createdDate')>; }; }; -export type GameCenterDetailsGameCenterAchievementsGetToManyRelationshipResponse = (GameCenterDetailGameCenterAchievementsLinkagesResponse); +export type MarketplaceDomainsGetInstanceResponse = (MarketplaceDomainResponse); -export type GameCenterDetailsGameCenterAchievementsGetToManyRelationshipError = (ErrorResponse); +export type MarketplaceDomainsGetInstanceError = (ErrorResponse); -export type GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipData = { +export type MarketplaceDomainsDeleteInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type MarketplaceDomainsDeleteInstanceResponse = (void); + +export type MarketplaceDomainsDeleteInstanceError = (ErrorResponse); + +export type MarketplaceSearchDetailsCreateInstanceData = { /** - * List of related linkages + * MarketplaceSearchDetail representation */ - body: GameCenterDetailGameCenterAchievementsLinkagesRequest; + body: MarketplaceSearchDetailCreateRequest; +}; + +export type MarketplaceSearchDetailsCreateInstanceResponse = (MarketplaceSearchDetailResponse); + +export type MarketplaceSearchDetailsCreateInstanceError = (ErrorResponse); + +export type MarketplaceSearchDetailsUpdateInstanceData = { + /** + * MarketplaceSearchDetail representation + */ + body: MarketplaceSearchDetailUpdateRequest; path: { /** * the id of the requested resource @@ -27994,113 +27922,147 @@ export type GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipData }; }; -export type GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipResponse = (void); +export type MarketplaceSearchDetailsUpdateInstanceResponse = (MarketplaceSearchDetailResponse); -export type GameCenterDetailsGameCenterAchievementsReplaceToManyRelationshipError = (ErrorResponse); +export type MarketplaceSearchDetailsUpdateInstanceError = (ErrorResponse); -export type GameCenterDetailsGameCenterAchievementsGetToManyRelatedData = { +export type MarketplaceSearchDetailsDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; +}; + +export type MarketplaceSearchDetailsDeleteInstanceResponse = (void); + +export type MarketplaceSearchDetailsDeleteInstanceError = (ErrorResponse); + +export type MarketplaceWebhooksGetCollectionData = { query?: { /** - * the fields to include for returned resources of type gameCenterAchievementLocalizations - */ - 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; - /** - * the fields to include for returned resources of type gameCenterAchievementReleases - */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; - /** - * the fields to include for returned resources of type gameCenterAchievements + * the fields to include for returned resources of type marketplaceWebhooks */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[marketplaceWebhooks]'?: Array<('endpointUrl')>; /** - * the fields to include for returned resources of type gameCenterDetails + * maximum resources per page */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + limit?: number; + }; +}; + +export type MarketplaceWebhooksGetCollectionResponse = (MarketplaceWebhooksResponse); + +export type MarketplaceWebhooksGetCollectionError = (ErrorResponse); + +export type MarketplaceWebhooksCreateInstanceData = { + /** + * MarketplaceWebhook representation + */ + body: MarketplaceWebhookCreateRequest; +}; + +export type MarketplaceWebhooksCreateInstanceResponse = (MarketplaceWebhookResponse); + +export type MarketplaceWebhooksCreateInstanceError = (ErrorResponse); + +export type MarketplaceWebhooksUpdateInstanceData = { + /** + * MarketplaceWebhook representation + */ + body: MarketplaceWebhookUpdateRequest; + path: { /** - * the fields to include for returned resources of type gameCenterGroups + * the id of the requested resource */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + id: string; + }; +}; + +export type MarketplaceWebhooksUpdateInstanceResponse = (MarketplaceWebhookResponse); + +export type MarketplaceWebhooksUpdateInstanceError = (ErrorResponse); + +export type MarketplaceWebhooksDeleteInstanceData = { + path: { /** - * filter by attribute 'archived' + * the id of the requested resource */ - 'filter[archived]'?: Array<(string)>; + id: string; + }; +}; + +export type MarketplaceWebhooksDeleteInstanceResponse = (void); + +export type MarketplaceWebhooksDeleteInstanceError = (ErrorResponse); + +export type PreReleaseVersionsGetCollectionData = { + query?: { /** - * filter by id(s) + * the fields to include for returned resources of type apps */ - 'filter[id]'?: Array<(string)>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * filter by attribute 'referenceName' + * the fields to include for returned resources of type builds */ - 'filter[referenceName]'?: Array<(string)>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type preReleaseVersions */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; /** - * maximum resources per page + * filter by id(s) of related 'app' */ - limit?: number; + 'filter[app]'?: Array<(string)>; /** - * maximum number of related localizations returned (when they are included) + * filter by attribute 'builds.expired' */ - 'limit[localizations]'?: number; + 'filter[builds.expired]'?: Array<(string)>; /** - * maximum number of related releases returned (when they are included) + * filter by attribute 'builds.processingState' */ - 'limit[releases]'?: number; - }; -}; - -export type GameCenterDetailsGameCenterAchievementsGetToManyRelatedResponse = (GameCenterAchievementsResponse); - -export type GameCenterDetailsGameCenterAchievementsGetToManyRelatedError = (ErrorResponse); - -export type GameCenterDetailsGameCenterAppVersionsGetToManyRelatedData = { - path: { + 'filter[builds.processingState]'?: Array<('PROCESSING' | 'FAILED' | 'INVALID' | 'VALID')>; /** - * the id of the requested resource + * filter by attribute 'builds.version' */ - id: string; - }; - query?: { + 'filter[builds.version]'?: Array<(string)>; /** - * the fields to include for returned resources of type appStoreVersions + * filter by id(s) of related 'builds' */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'filter[builds]'?: Array<(string)>; /** - * the fields to include for returned resources of type gameCenterAppVersions + * filter by attribute 'platform' */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; /** - * filter by attribute 'enabled' + * filter by attribute 'version' */ - 'filter[enabled]'?: Array<(string)>; + 'filter[version]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('compatibilityVersions' | 'appStoreVersion')>; + include?: Array<('builds' | 'app')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related compatibilityVersions returned (when they are included) + * maximum number of related builds returned (when they are included) */ - 'limit[compatibilityVersions]'?: number; + 'limit[builds]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('version' | '-version')>; }; }; -export type GameCenterDetailsGameCenterAppVersionsGetToManyRelatedResponse = (GameCenterAppVersionsResponse); +export type PreReleaseVersionsGetCollectionResponse = (PreReleaseVersionsResponse); -export type GameCenterDetailsGameCenterAppVersionsGetToManyRelatedError = (ErrorResponse); +export type PreReleaseVersionsGetCollectionError = (ErrorResponse); -export type GameCenterDetailsGameCenterGroupGetToOneRelatedData = { +export type PreReleaseVersionsGetInstanceData = { path: { /** * the id of the requested resource @@ -28109,53 +28071,33 @@ export type GameCenterDetailsGameCenterGroupGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievements - */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups + * the fields to include for returned resources of type apps */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the fields to include for returned resources of type builds */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type preReleaseVersions */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[preReleaseVersions]'?: Array<('version' | 'platform' | 'builds' | 'app')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * maximum number of related gameCenterAchievements returned (when they are included) - */ - 'limit[gameCenterAchievements]'?: number; - /** - * maximum number of related gameCenterDetails returned (when they are included) - */ - 'limit[gameCenterDetails]'?: number; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; + include?: Array<('builds' | 'app')>; /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) + * maximum number of related builds returned (when they are included) */ - 'limit[gameCenterLeaderboardSets]'?: number; + 'limit[builds]'?: number; }; }; -export type GameCenterDetailsGameCenterGroupGetToOneRelatedResponse = (GameCenterGroupResponse); +export type PreReleaseVersionsGetInstanceResponse = (PrereleaseVersionResponse); -export type GameCenterDetailsGameCenterGroupGetToOneRelatedError = (ErrorResponse); +export type PreReleaseVersionsGetInstanceError = (ErrorResponse); -export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipData = { +export type PreReleaseVersionsAppGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -28164,137 +28106,112 @@ export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipData }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type apps */ - limit?: number; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; }; }; -export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipResponse = (GameCenterDetailGameCenterLeaderboardSetsLinkagesResponse); +export type PreReleaseVersionsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); -export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelationshipError = (ErrorResponse); +export type PreReleaseVersionsAppGetToOneRelatedError = (ErrorResponse); -export type GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipData = { - /** - * List of related linkages - */ - body: GameCenterDetailGameCenterLeaderboardSetsLinkagesRequest; +export type PreReleaseVersionsBuildsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; + query?: { + /** + * the fields to include for returned resources of type builds + */ + 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; + /** + * maximum resources per page + */ + limit?: number; + }; }; -export type GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipResponse = (void); +export type PreReleaseVersionsBuildsGetToManyRelatedResponse = (BuildsWithoutIncludesResponse); -export type GameCenterDetailsGameCenterLeaderboardSetsReplaceToManyRelationshipError = (ErrorResponse); +export type PreReleaseVersionsBuildsGetToManyRelatedError = (ErrorResponse); -export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; +export type ProfilesGetCollectionData = { query?: { /** - * the fields to include for returned resources of type gameCenterDetails + * the fields to include for returned resources of type bundleIds */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; /** - * the fields to include for returned resources of type gameCenterGroups + * the fields to include for returned resources of type certificates */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + 'fields[certificates]'?: Array<('name' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the fields to include for returned resources of type devices */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations + * the fields to include for returned resources of type profiles */ - 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + 'fields[profiles]'?: Array<('name' | 'platform' | 'profileType' | 'profileState' | 'profileContent' | 'uuid' | 'createdDate' | 'expirationDate' | 'bundleId' | 'devices' | 'certificates')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + * filter by id(s) */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + 'filter[id]'?: Array<(string)>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * filter by attribute 'name' */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'filter[name]'?: Array<(string)>; /** - * filter by id(s) + * filter by attribute 'profileState' */ - 'filter[id]'?: Array<(string)>; + 'filter[profileState]'?: Array<('ACTIVE' | 'INVALID')>; /** - * filter by attribute 'referenceName' + * filter by attribute 'profileType' */ - 'filter[referenceName]'?: Array<(string)>; + 'filter[profileType]'?: Array<('IOS_APP_DEVELOPMENT' | 'IOS_APP_STORE' | 'IOS_APP_ADHOC' | 'IOS_APP_INHOUSE' | 'MAC_APP_DEVELOPMENT' | 'MAC_APP_STORE' | 'MAC_APP_DIRECT' | 'TVOS_APP_DEVELOPMENT' | 'TVOS_APP_STORE' | 'TVOS_APP_ADHOC' | 'TVOS_APP_INHOUSE' | 'MAC_CATALYST_APP_DEVELOPMENT' | 'MAC_CATALYST_APP_STORE' | 'MAC_CATALYST_APP_DIRECT')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + include?: Array<('bundleId' | 'devices' | 'certificates')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related localizations returned (when they are included) - */ - 'limit[localizations]'?: number; - /** - * maximum number of related releases returned (when they are included) + * maximum number of related certificates returned (when they are included) */ - 'limit[releases]'?: number; - }; -}; - -export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedResponse = (GameCenterLeaderboardSetsResponse); - -export type GameCenterDetailsGameCenterLeaderboardSetsGetToManyRelatedError = (ErrorResponse); - -export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipData = { - path: { + 'limit[certificates]'?: number; /** - * the id of the requested resource + * maximum number of related devices returned (when they are included) */ - id: string; - }; - query?: { + 'limit[devices]'?: number; /** - * maximum resources per page + * comma-separated list of sort expressions; resources will be sorted as specified */ - limit?: number; + sort?: Array<('name' | '-name' | 'profileType' | '-profileType' | 'profileState' | '-profileState' | 'id' | '-id')>; }; }; -export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipResponse = (GameCenterDetailGameCenterLeaderboardsLinkagesResponse); +export type ProfilesGetCollectionResponse = (ProfilesResponse); -export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelationshipError = (ErrorResponse); +export type ProfilesGetCollectionError = (ErrorResponse); -export type GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipData = { +export type ProfilesCreateInstanceData = { /** - * List of related linkages + * Profile representation */ - body: GameCenterDetailGameCenterLeaderboardsLinkagesRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; + body: ProfileCreateRequest; }; -export type GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipResponse = (void); +export type ProfilesCreateInstanceResponse = (ProfileResponse); -export type GameCenterDetailsGameCenterLeaderboardsReplaceToManyRelationshipError = (ErrorResponse); +export type ProfilesCreateInstanceError = (ErrorResponse); -export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedData = { +export type ProfilesGetInstanceData = { path: { /** * the id of the requested resource @@ -28303,69 +28220,73 @@ export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations - */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases - */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the fields to include for returned resources of type bundleIds */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type certificates */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[certificates]'?: Array<('name' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; /** - * filter by attribute 'archived' + * the fields to include for returned resources of type devices */ - 'filter[archived]'?: Array<(string)>; + 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; /** - * filter by id(s) + * the fields to include for returned resources of type profiles */ - 'filter[id]'?: Array<(string)>; + 'fields[profiles]'?: Array<('name' | 'platform' | 'profileType' | 'profileState' | 'profileContent' | 'uuid' | 'createdDate' | 'expirationDate' | 'bundleId' | 'devices' | 'certificates')>; /** - * filter by attribute 'referenceName' + * comma-separated list of relationships to include */ - 'filter[referenceName]'?: Array<(string)>; + include?: Array<('bundleId' | 'devices' | 'certificates')>; /** - * comma-separated list of relationships to include + * maximum number of related certificates returned (when they are included) */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'limit[certificates]'?: number; /** - * maximum resources per page + * maximum number of related devices returned (when they are included) */ - limit?: number; + 'limit[devices]'?: number; + }; +}; + +export type ProfilesGetInstanceResponse = (ProfileResponse); + +export type ProfilesGetInstanceError = (ErrorResponse); + +export type ProfilesDeleteInstanceData = { + path: { /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) + * the id of the requested resource */ - 'limit[gameCenterLeaderboardSets]'?: number; + id: string; + }; +}; + +export type ProfilesDeleteInstanceResponse = (void); + +export type ProfilesDeleteInstanceError = (ErrorResponse); + +export type ProfilesBundleIdGetToOneRelatedData = { + path: { /** - * maximum number of related localizations returned (when they are included) + * the id of the requested resource */ - 'limit[localizations]'?: number; + id: string; + }; + query?: { /** - * maximum number of related releases returned (when they are included) + * the fields to include for returned resources of type bundleIds */ - 'limit[releases]'?: number; + 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; }; }; -export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedResponse = (GameCenterLeaderboardsResponse); +export type ProfilesBundleIdGetToOneRelatedResponse = (BundleIdWithoutIncludesResponse); -export type GameCenterDetailsGameCenterLeaderboardsGetToManyRelatedError = (ErrorResponse); +export type ProfilesBundleIdGetToOneRelatedError = (ErrorResponse); -export type GameCenterDetailsLeaderboardReleasesGetToManyRelatedData = { +export type ProfilesCertificatesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -28374,29 +28295,9 @@ export type GameCenterDetailsLeaderboardReleasesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases - */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * filter by id(s) of related 'gameCenterLeaderboard' - */ - 'filter[gameCenterLeaderboard]'?: Array<(string)>; - /** - * filter by attribute 'live' - */ - 'filter[live]'?: Array<(string)>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type certificates */ - include?: Array<('gameCenterDetail' | 'gameCenterLeaderboard')>; + 'fields[certificates]'?: Array<('name' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; /** * maximum resources per page */ @@ -28404,11 +28305,11 @@ export type GameCenterDetailsLeaderboardReleasesGetToManyRelatedData = { }; }; -export type GameCenterDetailsLeaderboardReleasesGetToManyRelatedResponse = (GameCenterLeaderboardReleasesResponse); +export type ProfilesCertificatesGetToManyRelatedResponse = (CertificatesWithoutIncludesResponse); -export type GameCenterDetailsLeaderboardReleasesGetToManyRelatedError = (ErrorResponse); +export type ProfilesCertificatesGetToManyRelatedError = (ErrorResponse); -export type GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedData = { +export type ProfilesDevicesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -28417,29 +28318,9 @@ export type GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases - */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSets - */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; - /** - * filter by id(s) of related 'gameCenterLeaderboardSet' - */ - 'filter[gameCenterLeaderboardSet]'?: Array<(string)>; - /** - * filter by attribute 'live' - */ - 'filter[live]'?: Array<(string)>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type devices */ - include?: Array<('gameCenterDetail' | 'gameCenterLeaderboardSet')>; + 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; /** * maximum resources per page */ @@ -28447,11 +28328,22 @@ export type GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedData = { }; }; -export type GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedResponse = (GameCenterLeaderboardSetReleasesResponse); +export type ProfilesDevicesGetToManyRelatedResponse = (DevicesWithoutIncludesResponse); -export type GameCenterDetailsLeaderboardSetReleasesGetToManyRelatedError = (ErrorResponse); +export type ProfilesDevicesGetToManyRelatedError = (ErrorResponse); -export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipData = { +export type PromotedPurchaseImagesCreateInstanceData = { + /** + * PromotedPurchaseImage representation + */ + body: PromotedPurchaseImageCreateRequest; +}; + +export type PromotedPurchaseImagesCreateInstanceResponse = (PromotedPurchaseImageResponse); + +export type PromotedPurchaseImagesCreateInstanceError = (ErrorResponse); + +export type PromotedPurchaseImagesGetInstanceData = { path: { /** * the id of the requested resource @@ -28460,21 +28352,25 @@ export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipData }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type promotedPurchaseImages */ - limit?: number; + 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'state' | 'promotedPurchase')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('promotedPurchase')>; }; }; -export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipResponse = (GameCenterEnabledVersionCompatibleVersionsLinkagesResponse); +export type PromotedPurchaseImagesGetInstanceResponse = (PromotedPurchaseImageResponse); -export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipError = (ErrorResponse); +export type PromotedPurchaseImagesGetInstanceError = (ErrorResponse); -export type GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipData = { +export type PromotedPurchaseImagesUpdateInstanceData = { /** - * List of related linkages + * PromotedPurchaseImage representation */ - body: GameCenterEnabledVersionCompatibleVersionsLinkagesRequest; + body: PromotedPurchaseImageUpdateRequest; path: { /** * the id of the requested resource @@ -28483,15 +28379,11 @@ export type GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipD }; }; -export type GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipResponse = (void); +export type PromotedPurchaseImagesUpdateInstanceResponse = (PromotedPurchaseImageResponse); -export type GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipError = (ErrorResponse); +export type PromotedPurchaseImagesUpdateInstanceError = (ErrorResponse); -export type GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipData = { - /** - * List of related linkages - */ - body: GameCenterEnabledVersionCompatibleVersionsLinkagesRequest; +export type PromotedPurchaseImagesDeleteInstanceData = { path: { /** * the id of the requested resource @@ -28500,28 +28392,22 @@ export type GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationship }; }; -export type GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipResponse = (void); +export type PromotedPurchaseImagesDeleteInstanceResponse = (void); -export type GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipError = (ErrorResponse); +export type PromotedPurchaseImagesDeleteInstanceError = (ErrorResponse); -export type GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipData = { +export type PromotedPurchasesCreateInstanceData = { /** - * List of related linkages + * PromotedPurchase representation */ - body: GameCenterEnabledVersionCompatibleVersionsLinkagesRequest; - path: { - /** - * the id of the requested resource - */ - id: string; - }; + body: PromotedPurchaseCreateRequest; }; -export type GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipResponse = (void); +export type PromotedPurchasesCreateInstanceResponse = (PromotedPurchaseResponse); -export type GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipError = (ErrorResponse); +export type PromotedPurchasesCreateInstanceError = (ErrorResponse); -export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedData = { +export type PromotedPurchasesGetInstanceData = { path: { /** * the id of the requested resource @@ -28530,77 +28416,48 @@ export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type gameCenterEnabledVersions - */ - 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; - /** - * filter by id(s) of related 'app' - */ - 'filter[app]'?: Array<(string)>; - /** - * filter by id(s) - */ - 'filter[id]'?: Array<(string)>; - /** - * filter by attribute 'platform' + * the fields to include for returned resources of type promotedPurchaseImages + * @deprecated */ - 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'state' | 'promotedPurchase')>; /** - * filter by attribute 'versionString' + * the fields to include for returned resources of type promotedPurchases */ - 'filter[versionString]'?: Array<(string)>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** * comma-separated list of relationships to include */ - include?: Array<('compatibleVersions' | 'app')>; - /** - * maximum resources per page - */ - limit?: number; + include?: Array<('inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * maximum number of related compatibleVersions returned (when they are included) + * maximum number of related promotionImages returned (when they are included) * @deprecated */ - 'limit[compatibleVersions]'?: number; - /** - * comma-separated list of sort expressions; resources will be sorted as specified - */ - sort?: Array<('versionString' | '-versionString')>; + 'limit[promotionImages]'?: number; }; }; -export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedResponse = (GameCenterEnabledVersionsResponse); +export type PromotedPurchasesGetInstanceResponse = (PromotedPurchaseResponse); -export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedError = (ErrorResponse); +export type PromotedPurchasesGetInstanceError = (ErrorResponse); -export type GameCenterGroupsGameCenterAchievementsGetToManyRelationshipData = { +export type PromotedPurchasesUpdateInstanceData = { + /** + * PromotedPurchase representation + */ + body: PromotedPurchaseUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type GameCenterGroupsGameCenterAchievementsGetToManyRelationshipResponse = (GameCenterGroupGameCenterAchievementsLinkagesResponse); +export type PromotedPurchasesUpdateInstanceResponse = (PromotedPurchaseResponse); -export type GameCenterGroupsGameCenterAchievementsGetToManyRelationshipError = (ErrorResponse); +export type PromotedPurchasesUpdateInstanceError = (ErrorResponse); -export type GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipData = { - /** - * List of related linkages - */ - body: GameCenterGroupGameCenterAchievementsLinkagesRequest; +export type PromotedPurchasesDeleteInstanceData = { path: { /** * the id of the requested resource @@ -28609,11 +28466,11 @@ export type GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipData }; }; -export type GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipResponse = (void); +export type PromotedPurchasesDeleteInstanceResponse = (void); -export type GameCenterGroupsGameCenterAchievementsReplaceToManyRelationshipError = (ErrorResponse); +export type PromotedPurchasesDeleteInstanceError = (ErrorResponse); -export type GameCenterGroupsGameCenterAchievementsGetToManyRelatedData = { +export type PromotedPurchasesPromotionImagesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -28622,156 +28479,122 @@ export type GameCenterGroupsGameCenterAchievementsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterAchievementLocalizations - */ - 'fields[gameCenterAchievementLocalizations]'?: Array<('locale' | 'name' | 'beforeEarnedDescription' | 'afterEarnedDescription' | 'gameCenterAchievement' | 'gameCenterAchievementImage')>; - /** - * the fields to include for returned resources of type gameCenterAchievementReleases - */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; - /** - * the fields to include for returned resources of type gameCenterAchievements - */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * filter by attribute 'archived' - */ - 'filter[archived]'?: Array<(string)>; - /** - * filter by id(s) + * the fields to include for returned resources of type promotedPurchaseImages */ - 'filter[id]'?: Array<(string)>; + 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'state' | 'promotedPurchase')>; /** - * filter by attribute 'referenceName' + * the fields to include for returned resources of type promotedPurchases */ - 'filter[referenceName]'?: Array<(string)>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; + include?: Array<('promotedPurchase')>; /** * maximum resources per page */ limit?: number; + }; +}; + +export type PromotedPurchasesPromotionImagesGetToManyRelatedResponse = (PromotedPurchaseImagesResponse); + +export type PromotedPurchasesPromotionImagesGetToManyRelatedError = (ErrorResponse); + +export type ReviewSubmissionItemsCreateInstanceData = { + /** + * ReviewSubmissionItem representation + */ + body: ReviewSubmissionItemCreateRequest; +}; + +export type ReviewSubmissionItemsCreateInstanceResponse = (ReviewSubmissionItemResponse); + +export type ReviewSubmissionItemsCreateInstanceError = (ErrorResponse); + +export type ReviewSubmissionItemsUpdateInstanceData = { + /** + * ReviewSubmissionItem representation + */ + body: ReviewSubmissionItemUpdateRequest; + path: { /** - * maximum number of related localizations returned (when they are included) - */ - 'limit[localizations]'?: number; - /** - * maximum number of related releases returned (when they are included) + * the id of the requested resource */ - 'limit[releases]'?: number; + id: string; }; }; -export type GameCenterGroupsGameCenterAchievementsGetToManyRelatedResponse = (GameCenterAchievementsResponse); +export type ReviewSubmissionItemsUpdateInstanceResponse = (ReviewSubmissionItemResponse); -export type GameCenterGroupsGameCenterAchievementsGetToManyRelatedError = (ErrorResponse); +export type ReviewSubmissionItemsUpdateInstanceError = (ErrorResponse); -export type GameCenterGroupsGameCenterDetailsGetToManyRelatedData = { +export type ReviewSubmissionItemsDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * the fields to include for returned resources of type gameCenterAchievementReleases - */ - 'fields[gameCenterAchievementReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterAchievement')>; - /** - * the fields to include for returned resources of type gameCenterAchievements - */ - 'fields[gameCenterAchievements]'?: Array<('referenceName' | 'vendorIdentifier' | 'points' | 'showBeforeEarned' | 'repeatable' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupAchievement' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterAppVersions - */ - 'fields[gameCenterAppVersions]'?: Array<('enabled' | 'compatibilityVersions' | 'appStoreVersion')>; - /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; +}; + +export type ReviewSubmissionItemsDeleteInstanceResponse = (void); + +export type ReviewSubmissionItemsDeleteInstanceError = (ErrorResponse); + +export type ReviewSubmissionsGetCollectionData = { + query: { /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases + * the fields to include for returned resources of type reviewSubmissionItems */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + 'fields[reviewSubmissionItems]'?: Array<('state' | 'appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the fields to include for returned resources of type reviewSubmissions */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + * filter by id(s) of related 'app' */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + 'filter[app]': Array<(string)>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * filter by attribute 'platform' */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; /** - * filter by attribute 'gameCenterAppVersions.enabled' + * filter by attribute 'state' */ - 'filter[gameCenterAppVersions.enabled]'?: Array<(string)>; + 'filter[state]'?: Array<('READY_FOR_REVIEW' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'UNRESOLVED_ISSUES' | 'CANCELING' | 'COMPLETING' | 'COMPLETE')>; /** * comma-separated list of relationships to include */ - include?: Array<('app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + include?: Array<('app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; /** * maximum resources per page */ limit?: number; /** - * maximum number of related achievementReleases returned (when they are included) - */ - 'limit[achievementReleases]'?: number; - /** - * maximum number of related gameCenterAchievements returned (when they are included) - */ - 'limit[gameCenterAchievements]'?: number; - /** - * maximum number of related gameCenterAppVersions returned (when they are included) - */ - 'limit[gameCenterAppVersions]'?: number; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) - */ - 'limit[gameCenterLeaderboardSets]'?: number; - /** - * maximum number of related leaderboardReleases returned (when they are included) - */ - 'limit[leaderboardReleases]'?: number; - /** - * maximum number of related leaderboardSetReleases returned (when they are included) + * maximum number of related items returned (when they are included) */ - 'limit[leaderboardSetReleases]'?: number; + 'limit[items]'?: number; }; }; -export type GameCenterGroupsGameCenterDetailsGetToManyRelatedResponse = (GameCenterDetailsResponse); +export type ReviewSubmissionsGetCollectionResponse = (ReviewSubmissionsResponse); -export type GameCenterGroupsGameCenterDetailsGetToManyRelatedError = (ErrorResponse); +export type ReviewSubmissionsGetCollectionError = (ErrorResponse); -export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipData = { +export type ReviewSubmissionsCreateInstanceData = { + /** + * ReviewSubmission representation + */ + body: ReviewSubmissionCreateRequest; +}; + +export type ReviewSubmissionsCreateInstanceResponse = (ReviewSubmissionResponse); + +export type ReviewSubmissionsCreateInstanceError = (ErrorResponse); + +export type ReviewSubmissionsGetInstanceData = { path: { /** * the id of the requested resource @@ -28780,21 +28603,33 @@ export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipData = }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type reviewSubmissionItems */ - limit?: number; + 'fields[reviewSubmissionItems]'?: Array<('state' | 'appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; + /** + * the fields to include for returned resources of type reviewSubmissions + */ + 'fields[reviewSubmissions]'?: Array<('platform' | 'submittedDate' | 'state' | 'app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('app' | 'items' | 'appStoreVersionForReview' | 'submittedByActor' | 'lastUpdatedByActor')>; + /** + * maximum number of related items returned (when they are included) + */ + 'limit[items]'?: number; }; }; -export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipResponse = (GameCenterGroupGameCenterLeaderboardSetsLinkagesResponse); +export type ReviewSubmissionsGetInstanceResponse = (ReviewSubmissionResponse); -export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelationshipError = (ErrorResponse); +export type ReviewSubmissionsGetInstanceError = (ErrorResponse); -export type GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipData = { +export type ReviewSubmissionsUpdateInstanceData = { /** - * List of related linkages + * ReviewSubmission representation */ - body: GameCenterGroupGameCenterLeaderboardSetsLinkagesRequest; + body: ReviewSubmissionUpdateRequest; path: { /** * the id of the requested resource @@ -28803,11 +28638,11 @@ export type GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipDa }; }; -export type GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipResponse = (void); +export type ReviewSubmissionsUpdateInstanceResponse = (ReviewSubmissionResponse); -export type GameCenterGroupsGameCenterLeaderboardSetsReplaceToManyRelationshipError = (ErrorResponse); +export type ReviewSubmissionsUpdateInstanceError = (ErrorResponse); -export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedData = { +export type ReviewSubmissionsItemsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -28816,65 +28651,52 @@ export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations + * the fields to include for returned resources of type appCustomProductPageVersions */ - 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + * the fields to include for returned resources of type appEvents */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'localizations')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type appStoreVersionExperiments */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; /** - * filter by id(s) + * the fields to include for returned resources of type appStoreVersions */ - 'filter[id]'?: Array<(string)>; + 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; /** - * filter by attribute 'referenceName' + * the fields to include for returned resources of type reviewSubmissionItems */ - 'filter[referenceName]'?: Array<(string)>; + 'fields[reviewSubmissionItems]'?: Array<('state' | 'appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + include?: Array<('appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related localizations returned (when they are included) - */ - 'limit[localizations]'?: number; - /** - * maximum number of related releases returned (when they are included) - */ - 'limit[releases]'?: number; }; }; -export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedResponse = (GameCenterLeaderboardSetsResponse); +export type ReviewSubmissionsItemsGetToManyRelatedResponse = (ReviewSubmissionItemsResponse); -export type GameCenterGroupsGameCenterLeaderboardSetsGetToManyRelatedError = (ErrorResponse); +export type ReviewSubmissionsItemsGetToManyRelatedError = (ErrorResponse); -export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipData = { +export type RoutingAppCoveragesCreateInstanceData = { + /** + * RoutingAppCoverage representation + */ + body: RoutingAppCoverageCreateRequest; +}; + +export type RoutingAppCoveragesCreateInstanceResponse = (RoutingAppCoverageResponse); + +export type RoutingAppCoveragesCreateInstanceError = (ErrorResponse); + +export type RoutingAppCoveragesGetInstanceData = { path: { /** * the id of the requested resource @@ -28883,21 +28705,25 @@ export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipData = { }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type routingAppCoverages */ - limit?: number; + 'fields[routingAppCoverages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'uploadOperations' | 'assetDeliveryState' | 'appStoreVersion')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('appStoreVersion')>; }; }; -export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipResponse = (GameCenterGroupGameCenterLeaderboardsLinkagesResponse); +export type RoutingAppCoveragesGetInstanceResponse = (RoutingAppCoverageResponse); -export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelationshipError = (ErrorResponse); +export type RoutingAppCoveragesGetInstanceError = (ErrorResponse); -export type GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipData = { +export type RoutingAppCoveragesUpdateInstanceData = { /** - * List of related linkages + * RoutingAppCoverage representation */ - body: GameCenterGroupGameCenterLeaderboardsLinkagesRequest; + body: RoutingAppCoverageUpdateRequest; path: { /** * the id of the requested resource @@ -28906,136 +28732,102 @@ export type GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipData }; }; -export type GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipResponse = (void); +export type RoutingAppCoveragesUpdateInstanceResponse = (RoutingAppCoverageResponse); -export type GameCenterGroupsGameCenterLeaderboardsReplaceToManyRelationshipError = (ErrorResponse); +export type RoutingAppCoveragesUpdateInstanceError = (ErrorResponse); -export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedData = { +export type RoutingAppCoveragesDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations - */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases - */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSets - */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; - /** - * filter by attribute 'archived' - */ - 'filter[archived]'?: Array<(string)>; - /** - * filter by id(s) - */ - 'filter[id]'?: Array<(string)>; +}; + +export type RoutingAppCoveragesDeleteInstanceResponse = (void); + +export type RoutingAppCoveragesDeleteInstanceError = (ErrorResponse); + +export type SalesReportsGetCollectionData = { + query: { /** - * filter by attribute 'referenceName' + * filter by attribute 'frequency' */ - 'filter[referenceName]'?: Array<(string)>; + 'filter[frequency]': Array<('DAILY' | 'WEEKLY' | 'MONTHLY' | 'YEARLY')>; /** - * comma-separated list of relationships to include + * filter by attribute 'reportDate' */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'filter[reportDate]'?: Array<(string)>; /** - * maximum resources per page + * filter by attribute 'reportSubType' */ - limit?: number; + 'filter[reportSubType]': Array<('SUMMARY' | 'DETAILED' | 'SUMMARY_INSTALL_TYPE' | 'SUMMARY_TERRITORY' | 'SUMMARY_CHANNEL')>; /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) + * filter by attribute 'reportType' */ - 'limit[gameCenterLeaderboardSets]'?: number; + 'filter[reportType]': Array<('SALES' | 'PRE_ORDER' | 'NEWSSTAND' | 'SUBSCRIPTION' | 'SUBSCRIPTION_EVENT' | 'SUBSCRIBER' | 'SUBSCRIPTION_OFFER_CODE_REDEMPTION' | 'INSTALLS' | 'FIRST_ANNUAL' | 'WIN_BACK_ELIGIBILITY')>; /** - * maximum number of related localizations returned (when they are included) + * filter by attribute 'vendorNumber' */ - 'limit[localizations]'?: number; + 'filter[vendorNumber]': Array<(string)>; /** - * maximum number of related releases returned (when they are included) + * filter by attribute 'version' */ - 'limit[releases]'?: number; + 'filter[version]'?: Array<(string)>; }; }; -export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedResponse = (GameCenterLeaderboardsResponse); +export type SalesReportsGetCollectionResponse = (gzip); -export type GameCenterGroupsGameCenterLeaderboardsGetToManyRelatedError = (ErrorResponse); +export type SalesReportsGetCollectionError = (ErrorResponse); -export type GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; +export type SandboxTestersV2GetCollectionData = { query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardImages - */ - 'fields[gameCenterLeaderboardImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterLeaderboardLocalization')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + * the fields to include for returned resources of type sandboxTesters */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + 'fields[sandboxTesters]'?: Array<('firstName' | 'lastName' | 'acAccountName' | 'territory' | 'applePayCompatible' | 'interruptPurchases' | 'subscriptionRenewalRate')>; /** - * comma-separated list of relationships to include + * maximum resources per page */ - include?: Array<('gameCenterLeaderboardLocalization')>; + limit?: number; }; }; -export type GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedResponse = (GameCenterLeaderboardImageResponse); +export type SandboxTestersV2GetCollectionResponse = (SandboxTestersV2Response); -export type GameCenterLeaderboardLocalizationsGameCenterLeaderboardImageGetToOneRelatedError = (ErrorResponse); +export type SandboxTestersV2GetCollectionError = (ErrorResponse); -export type GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedData = { +export type SandboxTestersV2UpdateInstanceData = { + /** + * SandboxTester representation + */ + body: SandboxTesterV2UpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetImages - */ - 'fields[gameCenterLeaderboardSetImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterLeaderboardSetLocalization')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations - */ - 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('gameCenterLeaderboardSetLocalization')>; - }; }; -export type GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedResponse = (GameCenterLeaderboardSetImageResponse); +export type SandboxTestersV2UpdateInstanceResponse = (SandboxTesterV2Response); -export type GameCenterLeaderboardSetLocalizationsGameCenterLeaderboardSetImageGetToOneRelatedError = (ErrorResponse); +export type SandboxTestersV2UpdateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedData = { +export type SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceData = { + /** + * SandboxTestersClearPurchaseHistoryRequest representation + */ + body: SandboxTestersClearPurchaseHistoryRequestV2CreateRequest; +}; + +export type SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceResponse = (SandboxTestersClearPurchaseHistoryRequestV2Response); + +export type SandboxTestersClearPurchaseHistoryRequestV2CreateInstanceError = (ErrorResponse); + +export type ScmGitReferencesGetInstanceData = { path: { /** * the id of the requested resource @@ -29044,53 +28836,38 @@ export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetT }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations - */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases - */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type scmGitReferences */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) - */ - 'limit[gameCenterLeaderboardSets]'?: number; + include?: Array<('repository')>; + }; +}; + +export type ScmGitReferencesGetInstanceResponse = (ScmGitReferenceResponse); + +export type ScmGitReferencesGetInstanceError = (ErrorResponse); + +export type ScmProvidersGetCollectionData = { + query?: { /** - * maximum number of related localizations returned (when they are included) + * the fields to include for returned resources of type scmProviders */ - 'limit[localizations]'?: number; + 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; /** - * maximum number of related releases returned (when they are included) + * maximum resources per page */ - 'limit[releases]'?: number; + limit?: number; }; }; -export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedResponse = (GameCenterLeaderboardResponse); +export type ScmProvidersGetCollectionResponse = (ScmProvidersResponse); -export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardGetToOneRelatedError = (ErrorResponse); +export type ScmProvidersGetCollectionError = (ErrorResponse); -export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedData = { +export type ScmProvidersGetInstanceData = { path: { /** * the id of the requested resource @@ -29099,53 +28876,56 @@ export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetG }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails + * the fields to include for returned resources of type scmProviders */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; + 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; + }; +}; + +export type ScmProvidersGetInstanceResponse = (ScmProviderResponse); + +export type ScmProvidersGetInstanceError = (ErrorResponse); + +export type ScmProvidersRepositoriesGetToManyRelatedData = { + path: { /** - * the fields to include for returned resources of type gameCenterGroups + * the id of the requested resource */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; + id: string; + }; + query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the fields to include for returned resources of type scmGitReferences */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations + * the fields to include for returned resources of type scmProviders */ - 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + * the fields to include for returned resources of type scmRepositories */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * filter by id(s) */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'filter[id]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related localizations returned (when they are included) - */ - 'limit[localizations]'?: number; + include?: Array<('scmProvider' | 'defaultBranch')>; /** - * maximum number of related releases returned (when they are included) + * maximum resources per page */ - 'limit[releases]'?: number; + limit?: number; }; }; -export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedResponse = (GameCenterLeaderboardSetResponse); +export type ScmProvidersRepositoriesGetToManyRelatedResponse = (ScmRepositoriesResponse); -export type GameCenterLeaderboardSetMemberLocalizationsGameCenterLeaderboardSetGetToOneRelatedError = (ErrorResponse); +export type ScmProvidersRepositoriesGetToManyRelatedError = (ErrorResponse); -export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipData = { +export type ScmPullRequestsGetInstanceData = { path: { /** * the id of the requested resource @@ -29154,68 +28934,69 @@ export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationship }; query?: { /** - * maximum resources per page + * the fields to include for returned resources of type scmPullRequests */ - limit?: number; + 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('repository')>; }; }; -export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipResponse = (GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesResponse); +export type ScmPullRequestsGetInstanceResponse = (ScmPullRequestResponse); -export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelationshipError = (ErrorResponse); +export type ScmPullRequestsGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipData = { - /** - * List of related linkages - */ - body: GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesRequest; - path: { +export type ScmRepositoriesGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type scmRepositories */ - id: string; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; + /** + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('scmProvider' | 'defaultBranch')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipResponse = (void); +export type ScmRepositoriesGetCollectionResponse = (ScmRepositoriesResponse); -export type GameCenterLeaderboardSetsGameCenterLeaderboardsCreateToManyRelationshipError = (ErrorResponse); +export type ScmRepositoriesGetCollectionError = (ErrorResponse); -export type GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipData = { - /** - * List of related linkages - */ - body: GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesRequest; +export type ScmRepositoriesGetInstanceData = { path: { /** * the id of the requested resource */ id: string; }; -}; - -export type GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipResponse = (void); - -export type GameCenterLeaderboardSetsGameCenterLeaderboardsReplaceToManyRelationshipError = (ErrorResponse); - -export type GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipData = { - /** - * List of related linkages - */ - body: GameCenterLeaderboardSetGameCenterLeaderboardsLinkagesRequest; - path: { + query?: { + /** + * the fields to include for returned resources of type scmRepositories + */ + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** - * the id of the requested resource + * comma-separated list of relationships to include */ - id: string; + include?: Array<('scmProvider' | 'defaultBranch')>; }; }; -export type GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipResponse = (void); +export type ScmRepositoriesGetInstanceResponse = (ScmRepositoryResponse); -export type GameCenterLeaderboardSetsGameCenterLeaderboardsDeleteToManyRelationshipError = (ErrorResponse); +export type ScmRepositoriesGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedData = { +export type ScmRepositoriesGitReferencesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -29224,69 +29005,98 @@ export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedData }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations + * the fields to include for returned resources of type scmGitReferences */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; + 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases + * the fields to include for returned resources of type scmRepositories */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** - * the fields to include for returned resources of type gameCenterLeaderboards + * comma-separated list of relationships to include */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + include?: Array<('repository')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * maximum resources per page */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + limit?: number; + }; +}; + +export type ScmRepositoriesGitReferencesGetToManyRelatedResponse = (ScmGitReferencesResponse); + +export type ScmRepositoriesGitReferencesGetToManyRelatedError = (ErrorResponse); + +export type ScmRepositoriesPullRequestsGetToManyRelatedData = { + path: { /** - * filter by attribute 'archived' + * the id of the requested resource */ - 'filter[archived]'?: Array<(string)>; + id: string; + }; + query?: { /** - * filter by id(s) + * the fields to include for returned resources of type scmPullRequests */ - 'filter[id]'?: Array<(string)>; + 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; /** - * filter by attribute 'referenceName' + * the fields to include for returned resources of type scmRepositories */ - 'filter[referenceName]'?: Array<(string)>; + 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + include?: Array<('repository')>; /** * maximum resources per page */ limit?: number; + }; +}; + +export type ScmRepositoriesPullRequestsGetToManyRelatedResponse = (ScmPullRequestsResponse); + +export type ScmRepositoriesPullRequestsGetToManyRelatedError = (ErrorResponse); + +export type SubscriptionAppStoreReviewScreenshotsCreateInstanceData = { + /** + * SubscriptionAppStoreReviewScreenshot representation + */ + body: SubscriptionAppStoreReviewScreenshotCreateRequest; +}; + +export type SubscriptionAppStoreReviewScreenshotsCreateInstanceResponse = (SubscriptionAppStoreReviewScreenshotResponse); + +export type SubscriptionAppStoreReviewScreenshotsCreateInstanceError = (ErrorResponse); + +export type SubscriptionAppStoreReviewScreenshotsGetInstanceData = { + path: { /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) + * the id of the requested resource */ - 'limit[gameCenterLeaderboardSets]'?: number; + id: string; + }; + query?: { /** - * maximum number of related localizations returned (when they are included) + * the fields to include for returned resources of type subscriptionAppStoreReviewScreenshots */ - 'limit[localizations]'?: number; + 'fields[subscriptionAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'subscription')>; /** - * maximum number of related releases returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[releases]'?: number; + include?: Array<('subscription')>; }; }; -export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedResponse = (GameCenterLeaderboardsResponse); +export type SubscriptionAppStoreReviewScreenshotsGetInstanceResponse = (SubscriptionAppStoreReviewScreenshotResponse); -export type GameCenterLeaderboardSetsGameCenterLeaderboardsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionAppStoreReviewScreenshotsGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipData = { +export type SubscriptionAppStoreReviewScreenshotsUpdateInstanceData = { + /** + * SubscriptionAppStoreReviewScreenshot representation + */ + body: SubscriptionAppStoreReviewScreenshotUpdateRequest; path: { /** * the id of the requested resource @@ -29295,15 +29105,11 @@ export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipData }; }; -export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipResponse = (GameCenterLeaderboardSetGroupLeaderboardSetLinkageResponse); +export type SubscriptionAppStoreReviewScreenshotsUpdateInstanceResponse = (SubscriptionAppStoreReviewScreenshotResponse); -export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelationshipError = (ErrorResponse); +export type SubscriptionAppStoreReviewScreenshotsUpdateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipData = { - /** - * Related linkage - */ - body: GameCenterLeaderboardSetGroupLeaderboardSetLinkageRequest; +export type SubscriptionAppStoreReviewScreenshotsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -29312,11 +29118,22 @@ export type GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipD }; }; -export type GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipResponse = (void); +export type SubscriptionAppStoreReviewScreenshotsDeleteInstanceResponse = (void); -export type GameCenterLeaderboardSetsGroupLeaderboardSetUpdateToOneRelationshipError = (ErrorResponse); +export type SubscriptionAppStoreReviewScreenshotsDeleteInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedData = { +export type SubscriptionAvailabilitiesCreateInstanceData = { + /** + * SubscriptionAvailability representation + */ + body: SubscriptionAvailabilityCreateRequest; +}; + +export type SubscriptionAvailabilitiesCreateInstanceResponse = (SubscriptionAvailabilityResponse); + +export type SubscriptionAvailabilitiesCreateInstanceError = (ErrorResponse); + +export type SubscriptionAvailabilitiesGetInstanceData = { path: { /** * the id of the requested resource @@ -29325,53 +29142,29 @@ export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations - */ - 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases + * the fields to include for returned resources of type subscriptionAvailabilities */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; + 'fields[subscriptionAvailabilities]'?: Array<('availableInNewTerritories' | 'availableTerritories')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type territories */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[territories]'?: Array<('currency')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; - /** - * maximum number of related gameCenterLeaderboards returned (when they are included) - */ - 'limit[gameCenterLeaderboards]'?: number; - /** - * maximum number of related localizations returned (when they are included) - */ - 'limit[localizations]'?: number; + include?: Array<('availableTerritories')>; /** - * maximum number of related releases returned (when they are included) + * maximum number of related availableTerritories returned (when they are included) */ - 'limit[releases]'?: number; + 'limit[availableTerritories]'?: number; }; }; -export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedResponse = (GameCenterLeaderboardSetResponse); +export type SubscriptionAvailabilitiesGetInstanceResponse = (SubscriptionAvailabilityResponse); -export type GameCenterLeaderboardSetsGroupLeaderboardSetGetToOneRelatedError = (ErrorResponse); +export type SubscriptionAvailabilitiesGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardSetsLocalizationsGetToManyRelatedData = { +export type SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -29380,21 +29173,9 @@ export type GameCenterLeaderboardSetsLocalizationsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterLeaderboardSetImages - */ - 'fields[gameCenterLeaderboardSetImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterLeaderboardSetLocalization')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetLocalizations - */ - 'fields[gameCenterLeaderboardSetLocalizations]'?: Array<('locale' | 'name' | 'gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSets - */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type territories */ - include?: Array<('gameCenterLeaderboardSet' | 'gameCenterLeaderboardSetImage')>; + 'fields[territories]'?: Array<('currency')>; /** * maximum resources per page */ @@ -29402,11 +29183,11 @@ export type GameCenterLeaderboardSetsLocalizationsGetToManyRelatedData = { }; }; -export type GameCenterLeaderboardSetsLocalizationsGetToManyRelatedResponse = (GameCenterLeaderboardSetLocalizationsResponse); +export type SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse = (TerritoriesResponse); -export type GameCenterLeaderboardSetsLocalizationsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedError = (ErrorResponse); -export type GameCenterLeaderboardSetsReleasesGetToManyRelatedData = { +export type SubscriptionGracePeriodsGetInstanceData = { path: { /** * the id of the requested resource @@ -29415,41 +29196,72 @@ export type GameCenterLeaderboardSetsReleasesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSetReleases - */ - 'fields[gameCenterLeaderboardSetReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboardSet')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type subscriptionGracePeriods */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[subscriptionGracePeriods]'?: Array<('optIn' | 'sandboxOptIn' | 'duration' | 'renewalType')>; + }; +}; + +export type SubscriptionGracePeriodsGetInstanceResponse = (SubscriptionGracePeriodResponse); + +export type SubscriptionGracePeriodsGetInstanceError = (ErrorResponse); + +export type SubscriptionGracePeriodsUpdateInstanceData = { + /** + * SubscriptionGracePeriod representation + */ + body: SubscriptionGracePeriodUpdateRequest; + path: { /** - * filter by id(s) of related 'gameCenterDetail' + * the id of the requested resource */ - 'filter[gameCenterDetail]'?: Array<(string)>; + id: string; + }; +}; + +export type SubscriptionGracePeriodsUpdateInstanceResponse = (SubscriptionGracePeriodResponse); + +export type SubscriptionGracePeriodsUpdateInstanceError = (ErrorResponse); + +export type SubscriptionGroupLocalizationsCreateInstanceData = { + /** + * SubscriptionGroupLocalization representation + */ + body: SubscriptionGroupLocalizationCreateRequest; +}; + +export type SubscriptionGroupLocalizationsCreateInstanceResponse = (SubscriptionGroupLocalizationResponse); + +export type SubscriptionGroupLocalizationsCreateInstanceError = (ErrorResponse); + +export type SubscriptionGroupLocalizationsGetInstanceData = { + path: { /** - * filter by attribute 'live' + * the id of the requested resource */ - 'filter[live]'?: Array<(string)>; + id: string; + }; + query?: { /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type subscriptionGroupLocalizations */ - include?: Array<('gameCenterDetail' | 'gameCenterLeaderboardSet')>; + 'fields[subscriptionGroupLocalizations]'?: Array<('name' | 'customAppName' | 'locale' | 'state' | 'subscriptionGroup')>; /** - * maximum resources per page + * comma-separated list of relationships to include */ - limit?: number; + include?: Array<('subscriptionGroup')>; }; }; -export type GameCenterLeaderboardSetsReleasesGetToManyRelatedResponse = (GameCenterLeaderboardSetReleasesResponse); +export type SubscriptionGroupLocalizationsGetInstanceResponse = (SubscriptionGroupLocalizationResponse); -export type GameCenterLeaderboardSetsReleasesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionGroupLocalizationsGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipData = { +export type SubscriptionGroupLocalizationsUpdateInstanceData = { + /** + * SubscriptionGroupLocalization representation + */ + body: SubscriptionGroupLocalizationUpdateRequest; path: { /** * the id of the requested resource @@ -29458,15 +29270,11 @@ export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipData = { }; }; -export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipResponse = (GameCenterLeaderboardGroupLeaderboardLinkageResponse); +export type SubscriptionGroupLocalizationsUpdateInstanceResponse = (SubscriptionGroupLocalizationResponse); -export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelationshipError = (ErrorResponse); +export type SubscriptionGroupLocalizationsUpdateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipData = { - /** - * Related linkage - */ - body: GameCenterLeaderboardGroupLeaderboardLinkageRequest; +export type SubscriptionGroupLocalizationsDeleteInstanceData = { path: { /** * the id of the requested resource @@ -29475,11 +29283,33 @@ export type GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipData = }; }; -export type GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipResponse = (void); +export type SubscriptionGroupLocalizationsDeleteInstanceResponse = (void); -export type GameCenterLeaderboardsGroupLeaderboardUpdateToOneRelationshipError = (ErrorResponse); +export type SubscriptionGroupLocalizationsDeleteInstanceError = (ErrorResponse); -export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedData = { +export type SubscriptionGroupSubmissionsCreateInstanceData = { + /** + * SubscriptionGroupSubmission representation + */ + body: SubscriptionGroupSubmissionCreateRequest; +}; + +export type SubscriptionGroupSubmissionsCreateInstanceResponse = (SubscriptionGroupSubmissionResponse); + +export type SubscriptionGroupSubmissionsCreateInstanceError = (ErrorResponse); + +export type SubscriptionGroupsCreateInstanceData = { + /** + * SubscriptionGroup representation + */ + body: SubscriptionGroupCreateRequest; +}; + +export type SubscriptionGroupsCreateInstanceResponse = (SubscriptionGroupResponse); + +export type SubscriptionGroupsCreateInstanceError = (ErrorResponse); + +export type SubscriptionGroupsGetInstanceData = { path: { /** * the id of the requested resource @@ -29488,131 +29318,67 @@ export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterGroups - */ - 'fields[gameCenterGroups]'?: Array<('referenceName' | 'gameCenterDetails' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations - */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases + * the fields to include for returned resources of type subscriptionGroupLocalizations */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; + 'fields[subscriptionGroupLocalizations]'?: Array<('name' | 'customAppName' | 'locale' | 'state' | 'subscriptionGroup')>; /** - * the fields to include for returned resources of type gameCenterLeaderboards + * the fields to include for returned resources of type subscriptionGroups */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; + 'fields[subscriptionGroups]'?: Array<('referenceName' | 'subscriptions' | 'subscriptionGroupLocalizations')>; /** - * the fields to include for returned resources of type gameCenterLeaderboardSets + * the fields to include for returned resources of type subscriptions */ - 'fields[gameCenterLeaderboardSets]'?: Array<('referenceName' | 'vendorIdentifier' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboardSet' | 'localizations' | 'gameCenterLeaderboards' | 'releases')>; + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** * comma-separated list of relationships to include */ - include?: Array<('gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * maximum number of related gameCenterLeaderboardSets returned (when they are included) - */ - 'limit[gameCenterLeaderboardSets]'?: number; + include?: Array<('subscriptions' | 'subscriptionGroupLocalizations')>; /** - * maximum number of related localizations returned (when they are included) + * maximum number of related subscriptionGroupLocalizations returned (when they are included) */ - 'limit[localizations]'?: number; + 'limit[subscriptionGroupLocalizations]'?: number; /** - * maximum number of related releases returned (when they are included) + * maximum number of related subscriptions returned (when they are included) */ - 'limit[releases]'?: number; + 'limit[subscriptions]'?: number; }; }; -export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedResponse = (GameCenterLeaderboardResponse); +export type SubscriptionGroupsGetInstanceResponse = (SubscriptionGroupResponse); -export type GameCenterLeaderboardsGroupLeaderboardGetToOneRelatedError = (ErrorResponse); +export type SubscriptionGroupsGetInstanceError = (ErrorResponse); -export type GameCenterLeaderboardsLocalizationsGetToManyRelatedData = { +export type SubscriptionGroupsUpdateInstanceData = { + /** + * SubscriptionGroup representation + */ + body: SubscriptionGroupUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type gameCenterLeaderboardImages - */ - 'fields[gameCenterLeaderboardImages]'?: Array<('fileSize' | 'fileName' | 'imageAsset' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'gameCenterLeaderboardLocalization')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardLocalizations - */ - 'fields[gameCenterLeaderboardLocalizations]'?: Array<('locale' | 'name' | 'formatterOverride' | 'formatterSuffix' | 'formatterSuffixSingular' | 'gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('gameCenterLeaderboard' | 'gameCenterLeaderboardImage')>; - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type GameCenterLeaderboardsLocalizationsGetToManyRelatedResponse = (GameCenterLeaderboardLocalizationsResponse); +export type SubscriptionGroupsUpdateInstanceResponse = (SubscriptionGroupResponse); -export type GameCenterLeaderboardsLocalizationsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionGroupsUpdateInstanceError = (ErrorResponse); -export type GameCenterLeaderboardsReleasesGetToManyRelatedData = { +export type SubscriptionGroupsDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type gameCenterDetails - */ - 'fields[gameCenterDetails]'?: Array<('arcadeEnabled' | 'challengeEnabled' | 'app' | 'gameCenterAppVersions' | 'gameCenterGroup' | 'gameCenterLeaderboards' | 'gameCenterLeaderboardSets' | 'gameCenterAchievements' | 'defaultLeaderboard' | 'defaultGroupLeaderboard' | 'achievementReleases' | 'leaderboardReleases' | 'leaderboardSetReleases')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboardReleases - */ - 'fields[gameCenterLeaderboardReleases]'?: Array<('live' | 'gameCenterDetail' | 'gameCenterLeaderboard')>; - /** - * the fields to include for returned resources of type gameCenterLeaderboards - */ - 'fields[gameCenterLeaderboards]'?: Array<('defaultFormatter' | 'referenceName' | 'vendorIdentifier' | 'submissionType' | 'scoreSortType' | 'scoreRangeStart' | 'scoreRangeEnd' | 'recurrenceStartDate' | 'recurrenceDuration' | 'recurrenceRule' | 'archived' | 'gameCenterDetail' | 'gameCenterGroup' | 'groupLeaderboard' | 'gameCenterLeaderboardSets' | 'localizations' | 'releases')>; - /** - * filter by id(s) of related 'gameCenterDetail' - */ - 'filter[gameCenterDetail]'?: Array<(string)>; - /** - * filter by attribute 'live' - */ - 'filter[live]'?: Array<(string)>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('gameCenterDetail' | 'gameCenterLeaderboard')>; - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type GameCenterLeaderboardsReleasesGetToManyRelatedResponse = (GameCenterLeaderboardReleasesResponse); +export type SubscriptionGroupsDeleteInstanceResponse = (void); -export type GameCenterLeaderboardsReleasesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionGroupsDeleteInstanceError = (ErrorResponse); -export type GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedData = { +export type SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -29621,17 +29387,17 @@ export type GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedData = }; query?: { /** - * the fields to include for returned resources of type gameCenterMatchmakingQueues + * the fields to include for returned resources of type subscriptionGroupLocalizations */ - 'fields[gameCenterMatchmakingQueues]'?: Array<('referenceName' | 'classicMatchmakingBundleIds' | 'ruleSet' | 'experimentRuleSet')>; + 'fields[subscriptionGroupLocalizations]'?: Array<('name' | 'customAppName' | 'locale' | 'state' | 'subscriptionGroup')>; /** - * the fields to include for returned resources of type gameCenterMatchmakingRuleSets + * the fields to include for returned resources of type subscriptionGroups */ - 'fields[gameCenterMatchmakingRuleSets]'?: Array<('referenceName' | 'ruleLanguageVersion' | 'minPlayers' | 'maxPlayers' | 'teams' | 'rules' | 'matchmakingQueues')>; + 'fields[subscriptionGroups]'?: Array<('referenceName' | 'subscriptions' | 'subscriptionGroupLocalizations')>; /** * comma-separated list of relationships to include */ - include?: Array<('ruleSet' | 'experimentRuleSet')>; + include?: Array<('subscriptionGroup')>; /** * maximum resources per page */ @@ -29639,11 +29405,11 @@ export type GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedData = }; }; -export type GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedResponse = (GameCenterMatchmakingQueuesResponse); +export type SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedResponse = (SubscriptionGroupLocalizationsResponse); -export type GameCenterMatchmakingRuleSetsMatchmakingQueuesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedError = (ErrorResponse); -export type GameCenterMatchmakingRuleSetsRulesGetToManyRelatedData = { +export type SubscriptionGroupsSubscriptionsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -29652,164 +29418,124 @@ export type GameCenterMatchmakingRuleSetsRulesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type gameCenterMatchmakingRules + * the fields to include for returned resources of type promotedPurchases */ - 'fields[gameCenterMatchmakingRules]'?: Array<('referenceName' | 'description' | 'type' | 'expression' | 'weight' | 'ruleSet')>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** - * maximum resources per page + * the fields to include for returned resources of type subscriptionAppStoreReviewScreenshots */ - limit?: number; - }; -}; - -export type GameCenterMatchmakingRuleSetsRulesGetToManyRelatedResponse = (GameCenterMatchmakingRulesResponse); - -export type GameCenterMatchmakingRuleSetsRulesGetToManyRelatedError = (ErrorResponse); - -export type GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedData = { - path: { + 'fields[subscriptionAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'subscription')>; /** - * the id of the requested resource + * the fields to include for returned resources of type subscriptionAvailabilities */ - id: string; - }; - query?: { + 'fields[subscriptionAvailabilities]'?: Array<('availableInNewTerritories' | 'availableTerritories')>; /** - * the fields to include for returned resources of type gameCenterMatchmakingTeams + * the fields to include for returned resources of type subscriptionGroups */ - 'fields[gameCenterMatchmakingTeams]'?: Array<('referenceName' | 'minPlayers' | 'maxPlayers' | 'ruleSet')>; + 'fields[subscriptionGroups]'?: Array<('referenceName' | 'subscriptions' | 'subscriptionGroupLocalizations')>; /** - * maximum resources per page + * the fields to include for returned resources of type subscriptionImages */ - limit?: number; - }; -}; - -export type GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedResponse = (GameCenterMatchmakingTeamsResponse); - -export type GameCenterMatchmakingRuleSetsTeamsGetToManyRelatedError = (ErrorResponse); - -export type InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedData = { - path: { + 'fields[subscriptionImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'state' | 'subscription')>; /** - * the id of the requested resource + * the fields to include for returned resources of type subscriptionIntroductoryOffers */ - id: string; - }; - query?: { + 'fields[subscriptionIntroductoryOffers]'?: Array<('startDate' | 'endDate' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'territory' | 'subscriptionPricePoint')>; /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type subscriptionLocalizations */ - 'fields[territories]'?: Array<('currency')>; + 'fields[subscriptionLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'subscription')>; /** - * maximum resources per page + * the fields to include for returned resources of type subscriptionOfferCodes */ - limit?: number; - }; -}; - -export type InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse = (TerritoriesResponse); - -export type InAppPurchaseAvailabilitiesAvailableTerritoriesGetToManyRelatedError = (ErrorResponse); - -export type InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedData = { - path: { + 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; /** - * the id of the requested resource + * the fields to include for returned resources of type subscriptionPrices */ - id: string; - }; - query?: { + 'fields[subscriptionPrices]'?: Array<('startDate' | 'preserved' | 'territory' | 'subscriptionPricePoint')>; /** - * the fields to include for returned resources of type inAppPurchasePricePoints + * the fields to include for returned resources of type subscriptionPromotionalOffers + */ + 'fields[subscriptionPromotionalOffers]'?: Array<('name' | 'offerCode' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'prices')>; + /** + * the fields to include for returned resources of type subscriptions */ - 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'inAppPurchaseV2')>; + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** - * the fields to include for returned resources of type inAppPurchasePrices + * the fields to include for returned resources of type winBackOffers */ - 'fields[inAppPurchasePrices]'?: Array<('startDate' | 'endDate' | 'manual' | 'inAppPurchaseV2' | 'inAppPurchasePricePoint' | 'territory')>; + 'fields[winBackOffers]'?: Array<('referenceName' | 'offerId' | 'duration' | 'offerMode' | 'periodCount' | 'customerEligibilityPaidSubscriptionDurationInMonths' | 'customerEligibilityTimeSinceLastSubscribedInMonths' | 'customerEligibilityWaitBetweenOffersInMonths' | 'startDate' | 'endDate' | 'priority' | 'promotionIntent' | 'prices')>; /** - * the fields to include for returned resources of type territories + * filter by attribute 'name' */ - 'fields[territories]'?: Array<('currency')>; + 'filter[name]'?: Array<(string)>; /** - * filter by id(s) of related 'territory' + * filter by attribute 'productId' + */ + 'filter[productId]'?: Array<(string)>; + /** + * filter by attribute 'state' */ - 'filter[territory]'?: Array<(string)>; + 'filter[state]'?: Array<('MISSING_METADATA' | 'READY_TO_SUBMIT' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'DEVELOPER_ACTION_NEEDED' | 'PENDING_BINARY_APPROVAL' | 'APPROVED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'REMOVED_FROM_SALE' | 'REJECTED')>; /** * comma-separated list of relationships to include */ - include?: Array<('inAppPurchasePricePoint' | 'territory')>; + include?: Array<('subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** * maximum resources per page */ limit?: number; - }; -}; - -export type InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedResponse = (InAppPurchasePricesResponse); - -export type InAppPurchasePriceSchedulesAutomaticPricesGetToManyRelatedError = (ErrorResponse); - -export type InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { /** - * the fields to include for returned resources of type territories + * maximum number of related images returned (when they are included) */ - 'fields[territories]'?: Array<('currency')>; - }; -}; - -export type InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedResponse = (TerritoryResponse); - -export type InAppPurchasePriceSchedulesBaseTerritoryGetToOneRelatedError = (ErrorResponse); - -export type InAppPurchasePriceSchedulesManualPricesGetToManyRelatedData = { - path: { + 'limit[images]'?: number; /** - * the id of the requested resource + * maximum number of related introductoryOffers returned (when they are included) */ - id: string; - }; - query?: { + 'limit[introductoryOffers]'?: number; /** - * the fields to include for returned resources of type inAppPurchasePricePoints + * maximum number of related offerCodes returned (when they are included) */ - 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'inAppPurchaseV2')>; + 'limit[offerCodes]'?: number; /** - * the fields to include for returned resources of type inAppPurchasePrices + * maximum number of related prices returned (when they are included) */ - 'fields[inAppPurchasePrices]'?: Array<('startDate' | 'endDate' | 'manual' | 'inAppPurchaseV2' | 'inAppPurchasePricePoint' | 'territory')>; + 'limit[prices]'?: number; /** - * the fields to include for returned resources of type territories + * maximum number of related promotionalOffers returned (when they are included) */ - 'fields[territories]'?: Array<('currency')>; + 'limit[promotionalOffers]'?: number; /** - * filter by id(s) of related 'territory' + * maximum number of related subscriptionLocalizations returned (when they are included) */ - 'filter[territory]'?: Array<(string)>; + 'limit[subscriptionLocalizations]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related winBackOffers returned (when they are included) */ - include?: Array<('inAppPurchasePricePoint' | 'territory')>; + 'limit[winBackOffers]'?: number; /** - * maximum resources per page + * comma-separated list of sort expressions; resources will be sorted as specified */ - limit?: number; + sort?: Array<('name' | '-name')>; }; }; -export type InAppPurchasePriceSchedulesManualPricesGetToManyRelatedResponse = (InAppPurchasePricesResponse); +export type SubscriptionGroupsSubscriptionsGetToManyRelatedResponse = (SubscriptionsResponse); -export type InAppPurchasePriceSchedulesManualPricesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionGroupsSubscriptionsGetToManyRelatedError = (ErrorResponse); -export type InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedData = { +export type SubscriptionImagesCreateInstanceData = { + /** + * SubscriptionImage representation + */ + body: SubscriptionImageCreateRequest; +}; + +export type SubscriptionImagesCreateInstanceResponse = (SubscriptionImageResponse); + +export type SubscriptionImagesCreateInstanceError = (ErrorResponse); + +export type SubscriptionImagesGetInstanceData = { path: { /** * the id of the requested resource @@ -29818,126 +29544,103 @@ export type InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchaseAppStoreReviewScreenshots - */ - 'fields[inAppPurchaseAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'inAppPurchaseV2')>; - /** - * the fields to include for returned resources of type inAppPurchases + * the fields to include for returned resources of type subscriptionImages */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + 'fields[subscriptionImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'state' | 'subscription')>; /** * comma-separated list of relationships to include */ - include?: Array<('inAppPurchaseV2')>; + include?: Array<('subscription')>; }; }; -export type InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedResponse = (InAppPurchaseAppStoreReviewScreenshotResponse); +export type SubscriptionImagesGetInstanceResponse = (SubscriptionImageResponse); -export type InAppPurchasesV2AppStoreReviewScreenshotGetToOneRelatedError = (ErrorResponse); +export type SubscriptionImagesGetInstanceError = (ErrorResponse); -export type InAppPurchasesV2ContentGetToOneRelatedData = { +export type SubscriptionImagesUpdateInstanceData = { + /** + * SubscriptionImage representation + */ + body: SubscriptionImageUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type inAppPurchaseContents - */ - 'fields[inAppPurchaseContents]'?: Array<('fileName' | 'fileSize' | 'url' | 'lastModifiedDate' | 'inAppPurchaseV2')>; - /** - * the fields to include for returned resources of type inAppPurchases - */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('inAppPurchaseV2')>; - }; }; -export type InAppPurchasesV2ContentGetToOneRelatedResponse = (InAppPurchaseContentResponse); +export type SubscriptionImagesUpdateInstanceResponse = (SubscriptionImageResponse); -export type InAppPurchasesV2ContentGetToOneRelatedError = (ErrorResponse); +export type SubscriptionImagesUpdateInstanceError = (ErrorResponse); -export type InAppPurchasesV2IapPriceScheduleGetToOneRelatedData = { +export type SubscriptionImagesDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type inAppPurchasePrices - */ - 'fields[inAppPurchasePrices]'?: Array<('startDate' | 'endDate' | 'manual' | 'inAppPurchaseV2' | 'inAppPurchasePricePoint' | 'territory')>; - /** - * the fields to include for returned resources of type inAppPurchasePriceSchedules - */ - 'fields[inAppPurchasePriceSchedules]'?: Array<('inAppPurchase' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; - /** - * the fields to include for returned resources of type inAppPurchases - */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('inAppPurchase' | 'baseTerritory' | 'manualPrices' | 'automaticPrices')>; - /** - * maximum number of related automaticPrices returned (when they are included) - */ - 'limit[automaticPrices]'?: number; - /** - * maximum number of related manualPrices returned (when they are included) - */ - 'limit[manualPrices]'?: number; - }; }; -export type InAppPurchasesV2IapPriceScheduleGetToOneRelatedResponse = (InAppPurchasePriceScheduleResponse); +export type SubscriptionImagesDeleteInstanceResponse = (void); -export type InAppPurchasesV2IapPriceScheduleGetToOneRelatedError = (ErrorResponse); +export type SubscriptionImagesDeleteInstanceError = (ErrorResponse); -export type InAppPurchasesV2ImagesGetToManyRelatedData = { +export type SubscriptionIntroductoryOffersCreateInstanceData = { + /** + * SubscriptionIntroductoryOffer representation + */ + body: SubscriptionIntroductoryOfferCreateRequest; +}; + +export type SubscriptionIntroductoryOffersCreateInstanceResponse = (SubscriptionIntroductoryOfferResponse); + +export type SubscriptionIntroductoryOffersCreateInstanceError = (ErrorResponse); + +export type SubscriptionIntroductoryOffersUpdateInstanceData = { + /** + * SubscriptionIntroductoryOffer representation + */ + body: SubscriptionIntroductoryOfferUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type inAppPurchaseImages - */ - 'fields[inAppPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'uploaded' | 'state' | 'inAppPurchase')>; - /** - * the fields to include for returned resources of type inAppPurchases - */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('inAppPurchase')>; +}; + +export type SubscriptionIntroductoryOffersUpdateInstanceResponse = (SubscriptionIntroductoryOfferResponse); + +export type SubscriptionIntroductoryOffersUpdateInstanceError = (ErrorResponse); + +export type SubscriptionIntroductoryOffersDeleteInstanceData = { + path: { /** - * maximum resources per page + * the id of the requested resource */ - limit?: number; + id: string; }; }; -export type InAppPurchasesV2ImagesGetToManyRelatedResponse = (InAppPurchaseImagesResponse); +export type SubscriptionIntroductoryOffersDeleteInstanceResponse = (void); -export type InAppPurchasesV2ImagesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionIntroductoryOffersDeleteInstanceError = (ErrorResponse); -export type InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedData = { +export type SubscriptionLocalizationsCreateInstanceData = { + /** + * SubscriptionLocalization representation + */ + body: SubscriptionLocalizationCreateRequest; +}; + +export type SubscriptionLocalizationsCreateInstanceResponse = (SubscriptionLocalizationResponse); + +export type SubscriptionLocalizationsCreateInstanceError = (ErrorResponse); + +export type SubscriptionLocalizationsGetInstanceData = { path: { /** * the id of the requested resource @@ -29946,60 +29649,62 @@ export type InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchaseAvailabilities - */ - 'fields[inAppPurchaseAvailabilities]'?: Array<('availableInNewTerritories' | 'inAppPurchase' | 'availableTerritories')>; - /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type subscriptionLocalizations */ - 'fields[territories]'?: Array<('currency')>; + 'fields[subscriptionLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'subscription')>; /** * comma-separated list of relationships to include */ - include?: Array<('availableTerritories')>; - /** - * maximum number of related availableTerritories returned (when they are included) - */ - 'limit[availableTerritories]'?: number; + include?: Array<('subscription')>; }; }; -export type InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedResponse = (InAppPurchaseAvailabilityResponse); +export type SubscriptionLocalizationsGetInstanceResponse = (SubscriptionLocalizationResponse); -export type InAppPurchasesV2InAppPurchaseAvailabilityGetToOneRelatedError = (ErrorResponse); +export type SubscriptionLocalizationsGetInstanceError = (ErrorResponse); -export type InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedData = { +export type SubscriptionLocalizationsUpdateInstanceData = { + /** + * SubscriptionLocalization representation + */ + body: SubscriptionLocalizationUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type inAppPurchaseLocalizations - */ - 'fields[inAppPurchaseLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'inAppPurchaseV2')>; - /** - * the fields to include for returned resources of type inAppPurchases - */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('inAppPurchaseV2')>; +}; + +export type SubscriptionLocalizationsUpdateInstanceResponse = (SubscriptionLocalizationResponse); + +export type SubscriptionLocalizationsUpdateInstanceError = (ErrorResponse); + +export type SubscriptionLocalizationsDeleteInstanceData = { + path: { /** - * maximum resources per page + * the id of the requested resource */ - limit?: number; + id: string; }; }; -export type InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedResponse = (InAppPurchaseLocalizationsResponse); +export type SubscriptionLocalizationsDeleteInstanceResponse = (void); + +export type SubscriptionLocalizationsDeleteInstanceError = (ErrorResponse); + +export type SubscriptionOfferCodeCustomCodesCreateInstanceData = { + /** + * SubscriptionOfferCodeCustomCode representation + */ + body: SubscriptionOfferCodeCustomCodeCreateRequest; +}; + +export type SubscriptionOfferCodeCustomCodesCreateInstanceResponse = (SubscriptionOfferCodeCustomCodeResponse); -export type InAppPurchasesV2InAppPurchaseLocalizationsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionOfferCodeCustomCodesCreateInstanceError = (ErrorResponse); -export type InAppPurchasesV2PricePointsGetToManyRelatedData = { +export type SubscriptionOfferCodeCustomCodesGetInstanceData = { path: { /** * the id of the requested resource @@ -30008,33 +29713,49 @@ export type InAppPurchasesV2PricePointsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchasePricePoints - */ - 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'inAppPurchaseV2')>; - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * filter by id(s) of related 'territory' + * the fields to include for returned resources of type subscriptionOfferCodeCustomCodes */ - 'filter[territory]'?: Array<(string)>; + 'fields[subscriptionOfferCodeCustomCodes]'?: Array<('customCode' | 'numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode')>; /** * comma-separated list of relationships to include */ - include?: Array<('territory')>; + include?: Array<('offerCode')>; + }; +}; + +export type SubscriptionOfferCodeCustomCodesGetInstanceResponse = (SubscriptionOfferCodeCustomCodeResponse); + +export type SubscriptionOfferCodeCustomCodesGetInstanceError = (ErrorResponse); + +export type SubscriptionOfferCodeCustomCodesUpdateInstanceData = { + /** + * SubscriptionOfferCodeCustomCode representation + */ + body: SubscriptionOfferCodeCustomCodeUpdateRequest; + path: { /** - * maximum resources per page + * the id of the requested resource */ - limit?: number; + id: string; }; }; -export type InAppPurchasesV2PricePointsGetToManyRelatedResponse = (InAppPurchasePricePointsResponse); +export type SubscriptionOfferCodeCustomCodesUpdateInstanceResponse = (SubscriptionOfferCodeCustomCodeResponse); -export type InAppPurchasesV2PricePointsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionOfferCodeCustomCodesUpdateInstanceError = (ErrorResponse); -export type InAppPurchasesV2PromotedPurchaseGetToOneRelatedData = { +export type SubscriptionOfferCodeOneTimeUseCodesCreateInstanceData = { + /** + * SubscriptionOfferCodeOneTimeUseCode representation + */ + body: SubscriptionOfferCodeOneTimeUseCodeCreateRequest; +}; + +export type SubscriptionOfferCodeOneTimeUseCodesCreateInstanceResponse = (SubscriptionOfferCodeOneTimeUseCodeResponse); + +export type SubscriptionOfferCodeOneTimeUseCodesCreateInstanceError = (ErrorResponse); + +export type SubscriptionOfferCodeOneTimeUseCodesGetInstanceData = { path: { /** * the id of the requested resource @@ -30043,80 +29764,62 @@ export type InAppPurchasesV2PromotedPurchaseGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchases - */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; - /** - * the fields to include for returned resources of type promotedPurchaseImages - */ - 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'uploaded' | 'state' | 'promotedPurchase')>; - /** - * the fields to include for returned resources of type promotedPurchases - */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; - /** - * the fields to include for returned resources of type subscriptions + * the fields to include for returned resources of type subscriptionOfferCodeOneTimeUseCodes */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + 'fields[subscriptionOfferCodeOneTimeUseCodes]'?: Array<('numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode' | 'values')>; /** * comma-separated list of relationships to include */ - include?: Array<('inAppPurchaseV2' | 'subscription' | 'promotionImages')>; - /** - * maximum number of related promotionImages returned (when they are included) - * @deprecated - */ - 'limit[promotionImages]'?: number; + include?: Array<('offerCode')>; }; }; -export type InAppPurchasesV2PromotedPurchaseGetToOneRelatedResponse = (PromotedPurchaseResponse); +export type SubscriptionOfferCodeOneTimeUseCodesGetInstanceResponse = (SubscriptionOfferCodeOneTimeUseCodeResponse); -export type InAppPurchasesV2PromotedPurchaseGetToOneRelatedError = (ErrorResponse); +export type SubscriptionOfferCodeOneTimeUseCodesGetInstanceError = (ErrorResponse); -export type PreReleaseVersionsAppGetToOneRelatedData = { +export type SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceData = { + /** + * SubscriptionOfferCodeOneTimeUseCode representation + */ + body: SubscriptionOfferCodeOneTimeUseCodeUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - }; }; -export type PreReleaseVersionsAppGetToOneRelatedResponse = (AppWithoutIncludesResponse); +export type SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceResponse = (SubscriptionOfferCodeOneTimeUseCodeResponse); -export type PreReleaseVersionsAppGetToOneRelatedError = (ErrorResponse); +export type SubscriptionOfferCodeOneTimeUseCodesUpdateInstanceError = (ErrorResponse); -export type PreReleaseVersionsBuildsGetToManyRelatedData = { +export type SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type builds - */ - 'fields[builds]'?: Array<('version' | 'uploadedDate' | 'expirationDate' | 'expired' | 'minOsVersion' | 'lsMinimumSystemVersion' | 'computedMinMacOsVersion' | 'iconAssetToken' | 'processingState' | 'buildAudienceType' | 'usesNonExemptEncryption' | 'preReleaseVersion' | 'individualTesters' | 'betaGroups' | 'betaBuildLocalizations' | 'appEncryptionDeclaration' | 'betaAppReviewSubmission' | 'app' | 'buildBetaDetail' | 'appStoreVersion' | 'icons' | 'buildBundles' | 'perfPowerMetrics' | 'diagnosticSignatures')>; - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type PreReleaseVersionsBuildsGetToManyRelatedResponse = (BuildsWithoutIncludesResponse); +export type SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedResponse = (csv); -export type PreReleaseVersionsBuildsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedError = (ErrorResponse); -export type ProfilesBundleIdGetToOneRelatedData = { +export type SubscriptionOfferCodesCreateInstanceData = { + /** + * SubscriptionOfferCode representation + */ + body: SubscriptionOfferCodeCreateRequest; +}; + +export type SubscriptionOfferCodesCreateInstanceResponse = (SubscriptionOfferCodeResponse); + +export type SubscriptionOfferCodesCreateInstanceError = (ErrorResponse); + +export type SubscriptionOfferCodesGetInstanceData = { path: { /** * the id of the requested resource @@ -30125,40 +29828,62 @@ export type ProfilesBundleIdGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type bundleIds + * the fields to include for returned resources of type subscriptionOfferCodeCustomCodes */ - 'fields[bundleIds]'?: Array<('name' | 'platform' | 'identifier' | 'seedId' | 'profiles' | 'bundleIdCapabilities' | 'app')>; + 'fields[subscriptionOfferCodeCustomCodes]'?: Array<('customCode' | 'numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode')>; + /** + * the fields to include for returned resources of type subscriptionOfferCodeOneTimeUseCodes + */ + 'fields[subscriptionOfferCodeOneTimeUseCodes]'?: Array<('numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode' | 'values')>; + /** + * the fields to include for returned resources of type subscriptionOfferCodePrices + */ + 'fields[subscriptionOfferCodePrices]'?: Array<('territory' | 'subscriptionPricePoint')>; + /** + * the fields to include for returned resources of type subscriptionOfferCodes + */ + 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; + /** + * maximum number of related customCodes returned (when they are included) + */ + 'limit[customCodes]'?: number; + /** + * maximum number of related oneTimeUseCodes returned (when they are included) + */ + 'limit[oneTimeUseCodes]'?: number; + /** + * maximum number of related prices returned (when they are included) + */ + 'limit[prices]'?: number; }; }; -export type ProfilesBundleIdGetToOneRelatedResponse = (BundleIdWithoutIncludesResponse); +export type SubscriptionOfferCodesGetInstanceResponse = (SubscriptionOfferCodeResponse); -export type ProfilesBundleIdGetToOneRelatedError = (ErrorResponse); +export type SubscriptionOfferCodesGetInstanceError = (ErrorResponse); -export type ProfilesCertificatesGetToManyRelatedData = { +export type SubscriptionOfferCodesUpdateInstanceData = { + /** + * SubscriptionOfferCode representation + */ + body: SubscriptionOfferCodeUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type certificates - */ - 'fields[certificates]'?: Array<('name' | 'csrContent' | 'certificateType' | 'displayName' | 'serialNumber' | 'platform' | 'expirationDate' | 'certificateContent')>; - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type ProfilesCertificatesGetToManyRelatedResponse = (CertificatesWithoutIncludesResponse); +export type SubscriptionOfferCodesUpdateInstanceResponse = (SubscriptionOfferCodeResponse); -export type ProfilesCertificatesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionOfferCodesUpdateInstanceError = (ErrorResponse); -export type ProfilesDevicesGetToManyRelatedData = { +export type SubscriptionOfferCodesCustomCodesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30167,9 +29892,17 @@ export type ProfilesDevicesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type devices + * the fields to include for returned resources of type subscriptionOfferCodeCustomCodes */ - 'fields[devices]'?: Array<('name' | 'platform' | 'udid' | 'deviceClass' | 'status' | 'model' | 'addedDate')>; + 'fields[subscriptionOfferCodeCustomCodes]'?: Array<('customCode' | 'numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode')>; + /** + * the fields to include for returned resources of type subscriptionOfferCodes + */ + 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('offerCode')>; /** * maximum resources per page */ @@ -30177,11 +29910,11 @@ export type ProfilesDevicesGetToManyRelatedData = { }; }; -export type ProfilesDevicesGetToManyRelatedResponse = (DevicesWithoutIncludesResponse); +export type SubscriptionOfferCodesCustomCodesGetToManyRelatedResponse = (SubscriptionOfferCodeCustomCodesResponse); -export type ProfilesDevicesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionOfferCodesCustomCodesGetToManyRelatedError = (ErrorResponse); -export type PromotedPurchasesPromotionImagesGetToManyRelatedData = { +export type SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30190,17 +29923,17 @@ export type PromotedPurchasesPromotionImagesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type promotedPurchaseImages + * the fields to include for returned resources of type subscriptionOfferCodeOneTimeUseCodes */ - 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'uploaded' | 'state' | 'promotedPurchase')>; + 'fields[subscriptionOfferCodeOneTimeUseCodes]'?: Array<('numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode' | 'values')>; /** - * the fields to include for returned resources of type promotedPurchases + * the fields to include for returned resources of type subscriptionOfferCodes */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; /** * comma-separated list of relationships to include */ - include?: Array<('promotedPurchase')>; + include?: Array<('offerCode')>; /** * maximum resources per page */ @@ -30208,11 +29941,11 @@ export type PromotedPurchasesPromotionImagesGetToManyRelatedData = { }; }; -export type PromotedPurchasesPromotionImagesGetToManyRelatedResponse = (PromotedPurchaseImagesResponse); +export type SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedResponse = (SubscriptionOfferCodeOneTimeUseCodesResponse); -export type PromotedPurchasesPromotionImagesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedError = (ErrorResponse); -export type ReviewSubmissionsItemsGetToManyRelatedData = { +export type SubscriptionOfferCodesPricesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30221,29 +29954,25 @@ export type ReviewSubmissionsItemsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type appCustomProductPageVersions - */ - 'fields[appCustomProductPageVersions]'?: Array<('version' | 'state' | 'deepLink' | 'appCustomProductPage' | 'appCustomProductPageLocalizations')>; - /** - * the fields to include for returned resources of type appEvents + * the fields to include for returned resources of type subscriptionOfferCodePrices */ - 'fields[appEvents]'?: Array<('referenceName' | 'badge' | 'eventState' | 'deepLink' | 'purchaseRequirement' | 'primaryLocale' | 'priority' | 'purpose' | 'territorySchedules' | 'archivedTerritorySchedules' | 'app' | 'localizations')>; + 'fields[subscriptionOfferCodePrices]'?: Array<('territory' | 'subscriptionPricePoint')>; /** - * the fields to include for returned resources of type appStoreVersionExperiments + * the fields to include for returned resources of type subscriptionPricePoints */ - 'fields[appStoreVersionExperiments]'?: Array<('name' | 'trafficProportion' | 'state' | 'reviewRequired' | 'startDate' | 'endDate' | 'started' | 'appStoreVersion' | 'appStoreVersionExperimentTreatments' | 'platform' | 'app' | 'latestControlVersion' | 'controlVersions')>; + 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'equalizations')>; /** - * the fields to include for returned resources of type appStoreVersions + * the fields to include for returned resources of type territories */ - 'fields[appStoreVersions]'?: Array<('platform' | 'versionString' | 'appStoreState' | 'appVersionState' | 'copyright' | 'reviewType' | 'releaseType' | 'earliestReleaseDate' | 'downloadable' | 'createdDate' | 'app' | 'ageRatingDeclaration' | 'appStoreVersionLocalizations' | 'build' | 'appStoreVersionPhasedRelease' | 'gameCenterAppVersion' | 'routingAppCoverage' | 'appStoreReviewDetail' | 'appStoreVersionSubmission' | 'appClipDefaultExperience' | 'appStoreVersionExperiments' | 'appStoreVersionExperimentsV2' | 'customerReviews' | 'alternativeDistributionPackage')>; + 'fields[territories]'?: Array<('currency')>; /** - * the fields to include for returned resources of type reviewSubmissionItems + * filter by id(s) of related 'territory' */ - 'fields[reviewSubmissionItems]'?: Array<('state' | 'resolved' | 'removed' | 'reviewSubmission' | 'appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('appStoreVersion' | 'appCustomProductPageVersion' | 'appStoreVersionExperiment' | 'appStoreVersionExperimentV2' | 'appEvent')>; + include?: Array<('territory' | 'subscriptionPricePoint')>; /** * maximum resources per page */ @@ -30251,11 +29980,11 @@ export type ReviewSubmissionsItemsGetToManyRelatedData = { }; }; -export type ReviewSubmissionsItemsGetToManyRelatedResponse = (ReviewSubmissionItemsResponse); +export type SubscriptionOfferCodesPricesGetToManyRelatedResponse = (SubscriptionOfferCodePricesResponse); -export type ReviewSubmissionsItemsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionOfferCodesPricesGetToManyRelatedError = (ErrorResponse); -export type ScmProvidersRepositoriesGetToManyRelatedData = { +export type SubscriptionPricePointsGetInstanceData = { path: { /** * the id of the requested resource @@ -30264,37 +29993,21 @@ export type ScmProvidersRepositoriesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type scmGitReferences - */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; - /** - * the fields to include for returned resources of type scmProviders - */ - 'fields[scmProviders]'?: Array<('scmProviderType' | 'url' | 'repositories')>; - /** - * the fields to include for returned resources of type scmRepositories - */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; - /** - * filter by id(s) - */ - 'filter[id]'?: Array<(string)>; - /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type subscriptionPricePoints */ - include?: Array<('scmProvider' | 'defaultBranch')>; + 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'equalizations')>; /** - * maximum resources per page + * comma-separated list of relationships to include */ - limit?: number; + include?: Array<('territory')>; }; }; -export type ScmProvidersRepositoriesGetToManyRelatedResponse = (ScmRepositoriesResponse); +export type SubscriptionPricePointsGetInstanceResponse = (SubscriptionPricePointResponse); -export type ScmProvidersRepositoriesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionPricePointsGetInstanceError = (ErrorResponse); -export type ScmRepositoriesGitReferencesGetToManyRelatedData = { +export type SubscriptionPricePointsEqualizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30303,17 +30016,25 @@ export type ScmRepositoriesGitReferencesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type scmGitReferences + * the fields to include for returned resources of type subscriptionPricePoints */ - 'fields[scmGitReferences]'?: Array<('name' | 'canonicalName' | 'isDeleted' | 'kind' | 'repository')>; + 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'equalizations')>; /** - * the fields to include for returned resources of type scmRepositories + * the fields to include for returned resources of type territories */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; + 'fields[territories]'?: Array<('currency')>; + /** + * filter by id(s) of related 'subscription' + */ + 'filter[subscription]'?: Array<(string)>; + /** + * filter by id(s) of related 'territory' + */ + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('repository')>; + include?: Array<('territory')>; /** * maximum resources per page */ @@ -30321,11 +30042,46 @@ export type ScmRepositoriesGitReferencesGetToManyRelatedData = { }; }; -export type ScmRepositoriesGitReferencesGetToManyRelatedResponse = (ScmGitReferencesResponse); +export type SubscriptionPricePointsEqualizationsGetToManyRelatedResponse = (SubscriptionPricePointsResponse); -export type ScmRepositoriesGitReferencesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionPricePointsEqualizationsGetToManyRelatedError = (ErrorResponse); -export type ScmRepositoriesPullRequestsGetToManyRelatedData = { +export type SubscriptionPricesCreateInstanceData = { + /** + * SubscriptionPrice representation + */ + body: SubscriptionPriceCreateRequest; +}; + +export type SubscriptionPricesCreateInstanceResponse = (SubscriptionPriceResponse); + +export type SubscriptionPricesCreateInstanceError = (ErrorResponse); + +export type SubscriptionPricesDeleteInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type SubscriptionPricesDeleteInstanceResponse = (void); + +export type SubscriptionPricesDeleteInstanceError = (ErrorResponse); + +export type SubscriptionPromotionalOffersCreateInstanceData = { + /** + * SubscriptionPromotionalOffer representation + */ + body: SubscriptionPromotionalOfferCreateRequest; +}; + +export type SubscriptionPromotionalOffersCreateInstanceResponse = (SubscriptionPromotionalOfferResponse); + +export type SubscriptionPromotionalOffersCreateInstanceError = (ErrorResponse); + +export type SubscriptionPromotionalOffersGetInstanceData = { path: { /** * the id of the requested resource @@ -30334,52 +30090,59 @@ export type ScmRepositoriesPullRequestsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type scmPullRequests + * the fields to include for returned resources of type subscriptionPromotionalOfferPrices */ - 'fields[scmPullRequests]'?: Array<('title' | 'number' | 'webUrl' | 'sourceRepositoryOwner' | 'sourceRepositoryName' | 'sourceBranchName' | 'destinationRepositoryOwner' | 'destinationRepositoryName' | 'destinationBranchName' | 'isClosed' | 'isCrossRepository' | 'repository')>; + 'fields[subscriptionPromotionalOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; /** - * the fields to include for returned resources of type scmRepositories + * the fields to include for returned resources of type subscriptionPromotionalOffers */ - 'fields[scmRepositories]'?: Array<('lastAccessedDate' | 'httpCloneUrl' | 'sshCloneUrl' | 'ownerName' | 'repositoryName' | 'scmProvider' | 'defaultBranch' | 'gitReferences' | 'pullRequests')>; + 'fields[subscriptionPromotionalOffers]'?: Array<('name' | 'offerCode' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'prices')>; /** * comma-separated list of relationships to include */ - include?: Array<('repository')>; + include?: Array<('subscription' | 'prices')>; /** - * maximum resources per page + * maximum number of related prices returned (when they are included) */ - limit?: number; + 'limit[prices]'?: number; }; }; -export type ScmRepositoriesPullRequestsGetToManyRelatedResponse = (ScmPullRequestsResponse); +export type SubscriptionPromotionalOffersGetInstanceResponse = (SubscriptionPromotionalOfferResponse); -export type ScmRepositoriesPullRequestsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionPromotionalOffersGetInstanceError = (ErrorResponse); -export type SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedData = { +export type SubscriptionPromotionalOffersUpdateInstanceData = { + /** + * SubscriptionPromotionalOffer representation + */ + body: SubscriptionPromotionalOfferUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; +}; + +export type SubscriptionPromotionalOffersUpdateInstanceResponse = (SubscriptionPromotionalOfferResponse); + +export type SubscriptionPromotionalOffersUpdateInstanceError = (ErrorResponse); + +export type SubscriptionPromotionalOffersDeleteInstanceData = { + path: { /** - * maximum resources per page + * the id of the requested resource */ - limit?: number; + id: string; }; }; -export type SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedResponse = (TerritoriesResponse); +export type SubscriptionPromotionalOffersDeleteInstanceResponse = (void); -export type SubscriptionAvailabilitiesAvailableTerritoriesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionPromotionalOffersDeleteInstanceError = (ErrorResponse); -export type SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedData = { +export type SubscriptionPromotionalOffersPricesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30388,17 +30151,25 @@ export type SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedData }; query?: { /** - * the fields to include for returned resources of type subscriptionGroupLocalizations + * the fields to include for returned resources of type subscriptionPricePoints */ - 'fields[subscriptionGroupLocalizations]'?: Array<('name' | 'customAppName' | 'locale' | 'state' | 'subscriptionGroup')>; + 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'equalizations')>; /** - * the fields to include for returned resources of type subscriptionGroups + * the fields to include for returned resources of type subscriptionPromotionalOfferPrices + */ + 'fields[subscriptionPromotionalOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; + /** + * the fields to include for returned resources of type territories + */ + 'fields[territories]'?: Array<('currency')>; + /** + * filter by id(s) of related 'territory' */ - 'fields[subscriptionGroups]'?: Array<('referenceName' | 'app' | 'subscriptions' | 'subscriptionGroupLocalizations')>; + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('subscriptionGroup')>; + include?: Array<('territory' | 'subscriptionPricePoint')>; /** * maximum resources per page */ @@ -30406,11 +30177,33 @@ export type SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedData }; }; -export type SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedResponse = (SubscriptionGroupLocalizationsResponse); +export type SubscriptionPromotionalOffersPricesGetToManyRelatedResponse = (SubscriptionPromotionalOfferPricesResponse); -export type SubscriptionGroupsSubscriptionGroupLocalizationsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionPromotionalOffersPricesGetToManyRelatedError = (ErrorResponse); -export type SubscriptionGroupsSubscriptionsGetToManyRelatedData = { +export type SubscriptionSubmissionsCreateInstanceData = { + /** + * SubscriptionSubmission representation + */ + body: SubscriptionSubmissionCreateRequest; +}; + +export type SubscriptionSubmissionsCreateInstanceResponse = (SubscriptionSubmissionResponse); + +export type SubscriptionSubmissionsCreateInstanceError = (ErrorResponse); + +export type SubscriptionsCreateInstanceData = { + /** + * Subscription representation + */ + body: SubscriptionCreateRequest; +}; + +export type SubscriptionsCreateInstanceResponse = (SubscriptionResponse); + +export type SubscriptionsCreateInstanceError = (ErrorResponse); + +export type SubscriptionsGetInstanceData = { path: { /** * the id of the requested resource @@ -30421,23 +30214,19 @@ export type SubscriptionGroupsSubscriptionsGetToManyRelatedData = { /** * the fields to include for returned resources of type promotedPurchases */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** * the fields to include for returned resources of type subscriptionAppStoreReviewScreenshots */ - 'fields[subscriptionAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'subscription')>; + 'fields[subscriptionAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'subscription')>; /** * the fields to include for returned resources of type subscriptionAvailabilities */ - 'fields[subscriptionAvailabilities]'?: Array<('availableInNewTerritories' | 'subscription' | 'availableTerritories')>; - /** - * the fields to include for returned resources of type subscriptionGroups - */ - 'fields[subscriptionGroups]'?: Array<('referenceName' | 'app' | 'subscriptions' | 'subscriptionGroupLocalizations')>; + 'fields[subscriptionAvailabilities]'?: Array<('availableInNewTerritories' | 'availableTerritories')>; /** * the fields to include for returned resources of type subscriptionImages */ - 'fields[subscriptionImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'uploaded' | 'state' | 'subscription')>; + 'fields[subscriptionImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'state' | 'subscription')>; /** * the fields to include for returned resources of type subscriptionIntroductoryOffers */ @@ -30453,7 +30242,7 @@ export type SubscriptionGroupsSubscriptionsGetToManyRelatedData = { /** * the fields to include for returned resources of type subscriptionPrices */ - 'fields[subscriptionPrices]'?: Array<('startDate' | 'preserved' | 'preserveCurrentPrice' | 'subscription' | 'territory' | 'subscriptionPricePoint')>; + 'fields[subscriptionPrices]'?: Array<('startDate' | 'preserved' | 'territory' | 'subscriptionPricePoint')>; /** * the fields to include for returned resources of type subscriptionPromotionalOffers */ @@ -30465,67 +30254,158 @@ export type SubscriptionGroupsSubscriptionsGetToManyRelatedData = { /** * the fields to include for returned resources of type winBackOffers */ - 'fields[winBackOffers]'?: Array<('referenceName' | 'offerId' | 'duration' | 'offerMode' | 'periodCount' | 'customerEligibilityPaidSubscriptionDurationInMonths' | 'customerEligibilityTimeSinceLastSubscribedInMonths' | 'customerEligibilityWaitBetweenOffersInMonths' | 'startDate' | 'endDate' | 'priority' | 'promotionIntent' | 'subscription' | 'prices')>; + 'fields[winBackOffers]'?: Array<('referenceName' | 'offerId' | 'duration' | 'offerMode' | 'periodCount' | 'customerEligibilityPaidSubscriptionDurationInMonths' | 'customerEligibilityTimeSinceLastSubscribedInMonths' | 'customerEligibilityWaitBetweenOffersInMonths' | 'startDate' | 'endDate' | 'priority' | 'promotionIntent' | 'prices')>; /** - * filter by attribute 'name' + * comma-separated list of relationships to include */ - 'filter[name]'?: Array<(string)>; + include?: Array<('subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** - * filter by attribute 'productId' + * maximum number of related images returned (when they are included) */ - 'filter[productId]'?: Array<(string)>; + 'limit[images]'?: number; /** - * filter by attribute 'state' + * maximum number of related introductoryOffers returned (when they are included) */ - 'filter[state]'?: Array<('MISSING_METADATA' | 'READY_TO_SUBMIT' | 'WAITING_FOR_REVIEW' | 'IN_REVIEW' | 'DEVELOPER_ACTION_NEEDED' | 'PENDING_BINARY_APPROVAL' | 'APPROVED' | 'DEVELOPER_REMOVED_FROM_SALE' | 'REMOVED_FROM_SALE' | 'REJECTED')>; + 'limit[introductoryOffers]'?: number; /** - * comma-separated list of relationships to include + * maximum number of related offerCodes returned (when they are included) */ - include?: Array<('subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + 'limit[offerCodes]'?: number; /** - * maximum resources per page + * maximum number of related prices returned (when they are included) */ - limit?: number; + 'limit[prices]'?: number; /** - * maximum number of related images returned (when they are included) + * maximum number of related promotionalOffers returned (when they are included) */ - 'limit[images]'?: number; + 'limit[promotionalOffers]'?: number; + /** + * maximum number of related subscriptionLocalizations returned (when they are included) + */ + 'limit[subscriptionLocalizations]'?: number; + /** + * maximum number of related winBackOffers returned (when they are included) + */ + 'limit[winBackOffers]'?: number; + }; +}; + +export type SubscriptionsGetInstanceResponse = (SubscriptionResponse); + +export type SubscriptionsGetInstanceError = (ErrorResponse); + +export type SubscriptionsUpdateInstanceData = { + /** + * Subscription representation + */ + body: SubscriptionUpdateRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type SubscriptionsUpdateInstanceResponse = (SubscriptionResponse); + +export type SubscriptionsUpdateInstanceError = (ErrorResponse); + +export type SubscriptionsDeleteInstanceData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type SubscriptionsDeleteInstanceResponse = (void); + +export type SubscriptionsDeleteInstanceError = (ErrorResponse); + +export type SubscriptionsAppStoreReviewScreenshotGetToOneRelatedData = { + path: { + /** + * the id of the requested resource + */ + id: string; + }; + query?: { + /** + * the fields to include for returned resources of type subscriptionAppStoreReviewScreenshots + */ + 'fields[subscriptionAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'subscription')>; + /** + * the fields to include for returned resources of type subscriptions + */ + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('subscription')>; + }; +}; + +export type SubscriptionsAppStoreReviewScreenshotGetToOneRelatedResponse = (SubscriptionAppStoreReviewScreenshotResponse); + +export type SubscriptionsAppStoreReviewScreenshotGetToOneRelatedError = (ErrorResponse); + +export type SubscriptionsImagesGetToManyRelatedData = { + path: { /** - * maximum number of related introductoryOffers returned (when they are included) + * the id of the requested resource */ - 'limit[introductoryOffers]'?: number; + id: string; + }; + query?: { /** - * maximum number of related offerCodes returned (when they are included) + * the fields to include for returned resources of type subscriptionImages */ - 'limit[offerCodes]'?: number; + 'fields[subscriptionImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'state' | 'subscription')>; /** - * maximum number of related prices returned (when they are included) + * the fields to include for returned resources of type subscriptions */ - 'limit[prices]'?: number; + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** - * maximum number of related promotionalOffers returned (when they are included) + * comma-separated list of relationships to include */ - 'limit[promotionalOffers]'?: number; + include?: Array<('subscription')>; /** - * maximum number of related subscriptionLocalizations returned (when they are included) + * maximum resources per page */ - 'limit[subscriptionLocalizations]'?: number; + limit?: number; + }; +}; + +export type SubscriptionsImagesGetToManyRelatedResponse = (SubscriptionImagesResponse); + +export type SubscriptionsImagesGetToManyRelatedError = (ErrorResponse); + +export type SubscriptionsIntroductoryOffersGetToManyRelationshipData = { + path: { /** - * maximum number of related winBackOffers returned (when they are included) + * the id of the requested resource */ - 'limit[winBackOffers]'?: number; + id: string; + }; + query?: { /** - * comma-separated list of sort expressions; resources will be sorted as specified + * maximum resources per page */ - sort?: Array<('name' | '-name')>; + limit?: number; }; }; -export type SubscriptionGroupsSubscriptionsGetToManyRelatedResponse = (SubscriptionsResponse); +export type SubscriptionsIntroductoryOffersGetToManyRelationshipResponse = (SubscriptionIntroductoryOffersLinkagesResponse); -export type SubscriptionGroupsSubscriptionsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsIntroductoryOffersGetToManyRelationshipError = (ErrorResponse); -export type SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedData = { +export type SubscriptionsIntroductoryOffersDeleteToManyRelationshipData = { + /** + * List of related linkages + */ + body: SubscriptionIntroductoryOffersLinkagesRequest; path: { /** * the id of the requested resource @@ -30534,11 +30414,11 @@ export type SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedData = { }; }; -export type SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedResponse = (csv); +export type SubscriptionsIntroductoryOffersDeleteToManyRelationshipResponse = (void); -export type SubscriptionOfferCodeOneTimeUseCodesValuesGetToOneRelatedError = (ErrorResponse); +export type SubscriptionsIntroductoryOffersDeleteToManyRelationshipError = (ErrorResponse); -export type SubscriptionOfferCodesCustomCodesGetToManyRelatedData = { +export type SubscriptionsIntroductoryOffersGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30547,17 +30427,29 @@ export type SubscriptionOfferCodesCustomCodesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionOfferCodeCustomCodes + * the fields to include for returned resources of type subscriptionIntroductoryOffers */ - 'fields[subscriptionOfferCodeCustomCodes]'?: Array<('customCode' | 'numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode')>; + 'fields[subscriptionIntroductoryOffers]'?: Array<('startDate' | 'endDate' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'territory' | 'subscriptionPricePoint')>; /** - * the fields to include for returned resources of type subscriptionOfferCodes + * the fields to include for returned resources of type subscriptionPricePoints */ - 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; + 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'equalizations')>; + /** + * the fields to include for returned resources of type subscriptions + */ + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + /** + * the fields to include for returned resources of type territories + */ + 'fields[territories]'?: Array<('currency')>; + /** + * filter by id(s) of related 'territory' + */ + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('offerCode')>; + include?: Array<('subscription' | 'territory' | 'subscriptionPricePoint')>; /** * maximum resources per page */ @@ -30565,11 +30457,11 @@ export type SubscriptionOfferCodesCustomCodesGetToManyRelatedData = { }; }; -export type SubscriptionOfferCodesCustomCodesGetToManyRelatedResponse = (SubscriptionOfferCodeCustomCodesResponse); +export type SubscriptionsIntroductoryOffersGetToManyRelatedResponse = (SubscriptionIntroductoryOffersResponse); -export type SubscriptionOfferCodesCustomCodesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsIntroductoryOffersGetToManyRelatedError = (ErrorResponse); -export type SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedData = { +export type SubscriptionsOfferCodesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30577,30 +30469,58 @@ export type SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedData = { id: string; }; query?: { + /** + * the fields to include for returned resources of type subscriptionOfferCodeCustomCodes + */ + 'fields[subscriptionOfferCodeCustomCodes]'?: Array<('customCode' | 'numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode')>; /** * the fields to include for returned resources of type subscriptionOfferCodeOneTimeUseCodes */ 'fields[subscriptionOfferCodeOneTimeUseCodes]'?: Array<('numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode' | 'values')>; + /** + * the fields to include for returned resources of type subscriptionOfferCodePrices + */ + 'fields[subscriptionOfferCodePrices]'?: Array<('territory' | 'subscriptionPricePoint')>; /** * the fields to include for returned resources of type subscriptionOfferCodes */ 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; + /** + * the fields to include for returned resources of type subscriptions + */ + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + /** + * filter by territory + */ + 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('offerCode')>; + include?: Array<('subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related customCodes returned (when they are included) + */ + 'limit[customCodes]'?: number; + /** + * maximum number of related oneTimeUseCodes returned (when they are included) + */ + 'limit[oneTimeUseCodes]'?: number; + /** + * maximum number of related prices returned (when they are included) + */ + 'limit[prices]'?: number; }; }; -export type SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedResponse = (SubscriptionOfferCodeOneTimeUseCodesResponse); +export type SubscriptionsOfferCodesGetToManyRelatedResponse = (SubscriptionOfferCodesResponse); -export type SubscriptionOfferCodesOneTimeUseCodesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsOfferCodesGetToManyRelatedError = (ErrorResponse); -export type SubscriptionOfferCodesPricesGetToManyRelatedData = { +export type SubscriptionsPricePointsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30608,14 +30528,10 @@ export type SubscriptionOfferCodesPricesGetToManyRelatedData = { id: string; }; query?: { - /** - * the fields to include for returned resources of type subscriptionOfferCodePrices - */ - 'fields[subscriptionOfferCodePrices]'?: Array<('territory' | 'subscriptionPricePoint')>; /** * the fields to include for returned resources of type subscriptionPricePoints */ - 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'subscription' | 'equalizations')>; + 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'equalizations')>; /** * the fields to include for returned resources of type territories */ @@ -30627,7 +30543,7 @@ export type SubscriptionOfferCodesPricesGetToManyRelatedData = { /** * comma-separated list of relationships to include */ - include?: Array<('territory' | 'subscriptionPricePoint')>; + include?: Array<('territory')>; /** * maximum resources per page */ @@ -30635,11 +30551,11 @@ export type SubscriptionOfferCodesPricesGetToManyRelatedData = { }; }; -export type SubscriptionOfferCodesPricesGetToManyRelatedResponse = (SubscriptionOfferCodePricesResponse); +export type SubscriptionsPricePointsGetToManyRelatedResponse = (SubscriptionPricePointsResponse); -export type SubscriptionOfferCodesPricesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsPricePointsGetToManyRelatedError = (ErrorResponse); -export type SubscriptionPricePointsEqualizationsGetToManyRelatedData = { +export type SubscriptionsPricesGetToManyRelationshipData = { path: { /** * the id of the requested resource @@ -30647,26 +30563,6 @@ export type SubscriptionPricePointsEqualizationsGetToManyRelatedData = { id: string; }; query?: { - /** - * the fields to include for returned resources of type subscriptionPricePoints - */ - 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'subscription' | 'equalizations')>; - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * filter by id(s) of related 'subscription' - */ - 'filter[subscription]'?: Array<(string)>; - /** - * filter by id(s) of related 'territory' - */ - 'filter[territory]'?: Array<(string)>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('territory')>; /** * maximum resources per page */ @@ -30674,11 +30570,28 @@ export type SubscriptionPricePointsEqualizationsGetToManyRelatedData = { }; }; -export type SubscriptionPricePointsEqualizationsGetToManyRelatedResponse = (SubscriptionPricePointsResponse); +export type SubscriptionsPricesGetToManyRelationshipResponse = (SubscriptionPricesLinkagesResponse); -export type SubscriptionPricePointsEqualizationsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsPricesGetToManyRelationshipError = (ErrorResponse); -export type SubscriptionPromotionalOffersPricesGetToManyRelatedData = { +export type SubscriptionsPricesDeleteToManyRelationshipData = { + /** + * List of related linkages + */ + body: SubscriptionPricesLinkagesRequest; + path: { + /** + * the id of the requested resource + */ + id: string; + }; +}; + +export type SubscriptionsPricesDeleteToManyRelationshipResponse = (void); + +export type SubscriptionsPricesDeleteToManyRelationshipError = (ErrorResponse); + +export type SubscriptionsPricesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30689,15 +30602,19 @@ export type SubscriptionPromotionalOffersPricesGetToManyRelatedData = { /** * the fields to include for returned resources of type subscriptionPricePoints */ - 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'subscription' | 'equalizations')>; + 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'equalizations')>; /** - * the fields to include for returned resources of type subscriptionPromotionalOfferPrices + * the fields to include for returned resources of type subscriptionPrices */ - 'fields[subscriptionPromotionalOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; + 'fields[subscriptionPrices]'?: Array<('startDate' | 'preserved' | 'territory' | 'subscriptionPricePoint')>; /** * the fields to include for returned resources of type territories */ 'fields[territories]'?: Array<('currency')>; + /** + * filter by id(s) of related 'subscriptionPricePoint' + */ + 'filter[subscriptionPricePoint]'?: Array<(string)>; /** * filter by id(s) of related 'territory' */ @@ -30713,11 +30630,11 @@ export type SubscriptionPromotionalOffersPricesGetToManyRelatedData = { }; }; -export type SubscriptionPromotionalOffersPricesGetToManyRelatedResponse = (SubscriptionPromotionalOfferPricesResponse); +export type SubscriptionsPricesGetToManyRelatedResponse = (SubscriptionPricesResponse); -export type SubscriptionPromotionalOffersPricesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsPricesGetToManyRelatedError = (ErrorResponse); -export type SubscriptionsAppStoreReviewScreenshotGetToOneRelatedData = { +export type SubscriptionsPromotedPurchaseGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -30726,9 +30643,17 @@ export type SubscriptionsAppStoreReviewScreenshotGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionAppStoreReviewScreenshots + * the fields to include for returned resources of type inAppPurchases + */ + 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; + /** + * the fields to include for returned resources of type promotedPurchaseImages + */ + 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'state' | 'promotedPurchase')>; + /** + * the fields to include for returned resources of type promotedPurchases */ - 'fields[subscriptionAppStoreReviewScreenshots]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'imageAsset' | 'assetToken' | 'assetType' | 'uploadOperations' | 'assetDeliveryState' | 'uploaded' | 'subscription')>; + 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; /** * the fields to include for returned resources of type subscriptions */ @@ -30736,15 +30661,20 @@ export type SubscriptionsAppStoreReviewScreenshotGetToOneRelatedData = { /** * comma-separated list of relationships to include */ - include?: Array<('subscription')>; + include?: Array<('inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + /** + * maximum number of related promotionImages returned (when they are included) + * @deprecated + */ + 'limit[promotionImages]'?: number; }; }; -export type SubscriptionsAppStoreReviewScreenshotGetToOneRelatedResponse = (SubscriptionAppStoreReviewScreenshotResponse); +export type SubscriptionsPromotedPurchaseGetToOneRelatedResponse = (PromotedPurchaseResponse); -export type SubscriptionsAppStoreReviewScreenshotGetToOneRelatedError = (ErrorResponse); +export type SubscriptionsPromotedPurchaseGetToOneRelatedError = (ErrorResponse); -export type SubscriptionsImagesGetToManyRelatedData = { +export type SubscriptionsPromotionalOffersGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30753,65 +30683,41 @@ export type SubscriptionsImagesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionImages + * the fields to include for returned resources of type subscriptionPromotionalOfferPrices */ - 'fields[subscriptionImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'uploadOperations' | 'uploaded' | 'state' | 'subscription')>; + 'fields[subscriptionPromotionalOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; /** - * the fields to include for returned resources of type subscriptions + * the fields to include for returned resources of type subscriptionPromotionalOffers */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + 'fields[subscriptionPromotionalOffers]'?: Array<('name' | 'offerCode' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'prices')>; /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type subscriptions */ - include?: Array<('subscription')>; + 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; /** - * maximum resources per page + * filter by territory */ - limit?: number; - }; -}; - -export type SubscriptionsImagesGetToManyRelatedResponse = (SubscriptionImagesResponse); - -export type SubscriptionsImagesGetToManyRelatedError = (ErrorResponse); - -export type SubscriptionsIntroductoryOffersGetToManyRelationshipData = { - path: { + 'filter[territory]'?: Array<(string)>; /** - * the id of the requested resource + * comma-separated list of relationships to include */ - id: string; - }; - query?: { + include?: Array<('subscription' | 'prices')>; /** * maximum resources per page */ limit?: number; - }; -}; - -export type SubscriptionsIntroductoryOffersGetToManyRelationshipResponse = (SubscriptionIntroductoryOffersLinkagesResponse); - -export type SubscriptionsIntroductoryOffersGetToManyRelationshipError = (ErrorResponse); - -export type SubscriptionsIntroductoryOffersDeleteToManyRelationshipData = { - /** - * List of related linkages - */ - body: SubscriptionIntroductoryOffersLinkagesRequest; - path: { /** - * the id of the requested resource + * maximum number of related prices returned (when they are included) */ - id: string; + 'limit[prices]'?: number; }; }; -export type SubscriptionsIntroductoryOffersDeleteToManyRelationshipResponse = (void); +export type SubscriptionsPromotionalOffersGetToManyRelatedResponse = (SubscriptionPromotionalOffersResponse); -export type SubscriptionsIntroductoryOffersDeleteToManyRelationshipError = (ErrorResponse); +export type SubscriptionsPromotionalOffersGetToManyRelatedError = (ErrorResponse); -export type SubscriptionsIntroductoryOffersGetToManyRelatedData = { +export type SubscriptionsSubscriptionAvailabilityGetToOneRelatedData = { path: { /** * the id of the requested resource @@ -30820,41 +30726,29 @@ export type SubscriptionsIntroductoryOffersGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionIntroductoryOffers - */ - 'fields[subscriptionIntroductoryOffers]'?: Array<('startDate' | 'endDate' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type subscriptionPricePoints - */ - 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'subscription' | 'equalizations')>; - /** - * the fields to include for returned resources of type subscriptions + * the fields to include for returned resources of type subscriptionAvailabilities */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + 'fields[subscriptionAvailabilities]'?: Array<('availableInNewTerritories' | 'availableTerritories')>; /** * the fields to include for returned resources of type territories */ 'fields[territories]'?: Array<('currency')>; - /** - * filter by id(s) of related 'territory' - */ - 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('subscription' | 'territory' | 'subscriptionPricePoint')>; + include?: Array<('availableTerritories')>; /** - * maximum resources per page + * maximum number of related availableTerritories returned (when they are included) */ - limit?: number; + 'limit[availableTerritories]'?: number; }; }; -export type SubscriptionsIntroductoryOffersGetToManyRelatedResponse = (SubscriptionIntroductoryOffersResponse); +export type SubscriptionsSubscriptionAvailabilityGetToOneRelatedResponse = (SubscriptionAvailabilityResponse); -export type SubscriptionsIntroductoryOffersGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsSubscriptionAvailabilityGetToOneRelatedError = (ErrorResponse); -export type SubscriptionsOfferCodesGetToManyRelatedData = { +export type SubscriptionsSubscriptionLocalizationsGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30863,57 +30757,29 @@ export type SubscriptionsOfferCodesGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionOfferCodeCustomCodes - */ - 'fields[subscriptionOfferCodeCustomCodes]'?: Array<('customCode' | 'numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode')>; - /** - * the fields to include for returned resources of type subscriptionOfferCodeOneTimeUseCodes - */ - 'fields[subscriptionOfferCodeOneTimeUseCodes]'?: Array<('numberOfCodes' | 'createdDate' | 'expirationDate' | 'active' | 'offerCode' | 'values')>; - /** - * the fields to include for returned resources of type subscriptionOfferCodePrices - */ - 'fields[subscriptionOfferCodePrices]'?: Array<('territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type subscriptionOfferCodes + * the fields to include for returned resources of type subscriptionLocalizations */ - 'fields[subscriptionOfferCodes]'?: Array<('name' | 'customerEligibilities' | 'offerEligibility' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'totalNumberOfCodes' | 'active' | 'subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; + 'fields[subscriptionLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'subscription')>; /** * the fields to include for returned resources of type subscriptions */ 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; - /** - * filter by territory - */ - 'filter[territory]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('subscription' | 'oneTimeUseCodes' | 'customCodes' | 'prices')>; + include?: Array<('subscription')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related customCodes returned (when they are included) - */ - 'limit[customCodes]'?: number; - /** - * maximum number of related oneTimeUseCodes returned (when they are included) - */ - 'limit[oneTimeUseCodes]'?: number; - /** - * maximum number of related prices returned (when they are included) - */ - 'limit[prices]'?: number; }; }; -export type SubscriptionsOfferCodesGetToManyRelatedResponse = (SubscriptionOfferCodesResponse); +export type SubscriptionsSubscriptionLocalizationsGetToManyRelatedResponse = (SubscriptionLocalizationsResponse); -export type SubscriptionsOfferCodesGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsSubscriptionLocalizationsGetToManyRelatedError = (ErrorResponse); -export type SubscriptionsPricePointsGetToManyRelatedData = { +export type SubscriptionsWinBackOffersGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -30922,40 +30788,38 @@ export type SubscriptionsPricePointsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionPricePoints - */ - 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'subscription' | 'equalizations')>; - /** - * the fields to include for returned resources of type territories + * the fields to include for returned resources of type winBackOfferPrices */ - 'fields[territories]'?: Array<('currency')>; + 'fields[winBackOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; /** - * filter by id(s) of related 'territory' + * the fields to include for returned resources of type winBackOffers */ - 'filter[territory]'?: Array<(string)>; + 'fields[winBackOffers]'?: Array<('referenceName' | 'offerId' | 'duration' | 'offerMode' | 'periodCount' | 'customerEligibilityPaidSubscriptionDurationInMonths' | 'customerEligibilityTimeSinceLastSubscribedInMonths' | 'customerEligibilityWaitBetweenOffersInMonths' | 'startDate' | 'endDate' | 'priority' | 'promotionIntent' | 'prices')>; /** * comma-separated list of relationships to include */ - include?: Array<('territory')>; + include?: Array<('prices')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related prices returned (when they are included) + */ + 'limit[prices]'?: number; }; }; -export type SubscriptionsPricePointsGetToManyRelatedResponse = (SubscriptionPricePointsResponse); +export type SubscriptionsWinBackOffersGetToManyRelatedResponse = (WinBackOffersResponse); -export type SubscriptionsPricePointsGetToManyRelatedError = (ErrorResponse); +export type SubscriptionsWinBackOffersGetToManyRelatedError = (ErrorResponse); -export type SubscriptionsPricesGetToManyRelationshipData = { - path: { +export type TerritoriesGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type territories */ - id: string; - }; - query?: { + 'fields[territories]'?: Array<('currency')>; /** * maximum resources per page */ @@ -30963,15 +30827,15 @@ export type SubscriptionsPricesGetToManyRelationshipData = { }; }; -export type SubscriptionsPricesGetToManyRelationshipResponse = (SubscriptionPricesLinkagesResponse); +export type TerritoriesGetCollectionResponse = (TerritoriesResponse); -export type SubscriptionsPricesGetToManyRelationshipError = (ErrorResponse); +export type TerritoriesGetCollectionError = (ErrorResponse); -export type SubscriptionsPricesDeleteToManyRelationshipData = { +export type TerritoryAvailabilitiesUpdateInstanceData = { /** - * List of related linkages + * TerritoryAvailability representation */ - body: SubscriptionPricesLinkagesRequest; + body: TerritoryAvailabilityUpdateRequest; path: { /** * the id of the requested resource @@ -30980,54 +30844,67 @@ export type SubscriptionsPricesDeleteToManyRelationshipData = { }; }; -export type SubscriptionsPricesDeleteToManyRelationshipResponse = (void); +export type TerritoryAvailabilitiesUpdateInstanceResponse = (TerritoryAvailabilityResponse); -export type SubscriptionsPricesDeleteToManyRelationshipError = (ErrorResponse); +export type TerritoryAvailabilitiesUpdateInstanceError = (ErrorResponse); -export type SubscriptionsPricesGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; +export type UserInvitationsGetCollectionData = { query?: { /** - * the fields to include for returned resources of type subscriptionPricePoints + * the fields to include for returned resources of type apps */ - 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'subscription' | 'equalizations')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type subscriptionPrices + * the fields to include for returned resources of type userInvitations */ - 'fields[subscriptionPrices]'?: Array<('startDate' | 'preserved' | 'preserveCurrentPrice' | 'subscription' | 'territory' | 'subscriptionPricePoint')>; + 'fields[userInvitations]'?: Array<('email' | 'firstName' | 'lastName' | 'expirationDate' | 'roles' | 'allAppsVisible' | 'provisioningAllowed' | 'visibleApps')>; /** - * the fields to include for returned resources of type territories + * filter by attribute 'email' */ - 'fields[territories]'?: Array<('currency')>; + 'filter[email]'?: Array<(string)>; /** - * filter by id(s) of related 'subscriptionPricePoint' + * filter by attribute 'roles' */ - 'filter[subscriptionPricePoint]'?: Array<(string)>; + 'filter[roles]'?: Array<('ADMIN' | 'FINANCE' | 'ACCOUNT_HOLDER' | 'SALES' | 'MARKETING' | 'APP_MANAGER' | 'DEVELOPER' | 'ACCESS_TO_REPORTS' | 'CUSTOMER_SUPPORT' | 'CREATE_APPS' | 'CLOUD_MANAGED_DEVELOPER_ID' | 'CLOUD_MANAGED_APP_DISTRIBUTION' | 'GENERATE_INDIVIDUAL_KEYS')>; /** - * filter by id(s) of related 'territory' + * filter by id(s) of related 'visibleApps' */ - 'filter[territory]'?: Array<(string)>; + 'filter[visibleApps]'?: Array<(string)>; /** * comma-separated list of relationships to include */ - include?: Array<('territory' | 'subscriptionPricePoint')>; + include?: Array<('visibleApps')>; /** * maximum resources per page */ limit?: number; + /** + * maximum number of related visibleApps returned (when they are included) + */ + 'limit[visibleApps]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('email' | '-email' | 'lastName' | '-lastName')>; }; }; -export type SubscriptionsPricesGetToManyRelatedResponse = (SubscriptionPricesResponse); +export type UserInvitationsGetCollectionResponse = (UserInvitationsResponse); -export type SubscriptionsPricesGetToManyRelatedError = (ErrorResponse); +export type UserInvitationsGetCollectionError = (ErrorResponse); -export type SubscriptionsPromotedPurchaseGetToOneRelatedData = { +export type UserInvitationsCreateInstanceData = { + /** + * UserInvitation representation + */ + body: UserInvitationCreateRequest; +}; + +export type UserInvitationsCreateInstanceResponse = (UserInvitationResponse); + +export type UserInvitationsCreateInstanceError = (ErrorResponse); + +export type UserInvitationsGetInstanceData = { path: { /** * the id of the requested resource @@ -31036,116 +30913,110 @@ export type SubscriptionsPromotedPurchaseGetToOneRelatedData = { }; query?: { /** - * the fields to include for returned resources of type inAppPurchases - */ - 'fields[inAppPurchases]'?: Array<('name' | 'productId' | 'inAppPurchaseType' | 'state' | 'reviewNote' | 'familySharable' | 'contentHosting' | 'app' | 'inAppPurchaseLocalizations' | 'pricePoints' | 'content' | 'appStoreReviewScreenshot' | 'promotedPurchase' | 'iapPriceSchedule' | 'inAppPurchaseAvailability' | 'images')>; - /** - * the fields to include for returned resources of type promotedPurchaseImages - */ - 'fields[promotedPurchaseImages]'?: Array<('fileSize' | 'fileName' | 'sourceFileChecksum' | 'assetToken' | 'imageAsset' | 'assetType' | 'uploadOperations' | 'uploaded' | 'state' | 'promotedPurchase')>; - /** - * the fields to include for returned resources of type promotedPurchases + * the fields to include for returned resources of type apps */ - 'fields[promotedPurchases]'?: Array<('visibleForAllUsers' | 'enabled' | 'state' | 'app' | 'inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type subscriptions + * the fields to include for returned resources of type userInvitations */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + 'fields[userInvitations]'?: Array<('email' | 'firstName' | 'lastName' | 'expirationDate' | 'roles' | 'allAppsVisible' | 'provisioningAllowed' | 'visibleApps')>; /** * comma-separated list of relationships to include */ - include?: Array<('inAppPurchaseV2' | 'subscription' | 'promotionImages')>; + include?: Array<('visibleApps')>; /** - * maximum number of related promotionImages returned (when they are included) - * @deprecated + * maximum number of related visibleApps returned (when they are included) */ - 'limit[promotionImages]'?: number; + 'limit[visibleApps]'?: number; }; }; -export type SubscriptionsPromotedPurchaseGetToOneRelatedResponse = (PromotedPurchaseResponse); +export type UserInvitationsGetInstanceResponse = (UserInvitationResponse); -export type SubscriptionsPromotedPurchaseGetToOneRelatedError = (ErrorResponse); +export type UserInvitationsGetInstanceError = (ErrorResponse); -export type SubscriptionsPromotionalOffersGetToManyRelatedData = { +export type UserInvitationsDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type subscriptionPromotionalOfferPrices - */ - 'fields[subscriptionPromotionalOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type subscriptionPromotionalOffers - */ - 'fields[subscriptionPromotionalOffers]'?: Array<('name' | 'offerCode' | 'duration' | 'offerMode' | 'numberOfPeriods' | 'subscription' | 'prices')>; - /** - * the fields to include for returned resources of type subscriptions - */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; +}; + +export type UserInvitationsDeleteInstanceResponse = (void); + +export type UserInvitationsDeleteInstanceError = (ErrorResponse); + +export type UserInvitationsVisibleAppsGetToManyRelatedData = { + path: { /** - * filter by territory + * the id of the requested resource */ - 'filter[territory]'?: Array<(string)>; + id: string; + }; + query?: { /** - * comma-separated list of relationships to include + * the fields to include for returned resources of type apps */ - include?: Array<('subscription' | 'prices')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** * maximum resources per page */ limit?: number; - /** - * maximum number of related prices returned (when they are included) - */ - 'limit[prices]'?: number; }; }; -export type SubscriptionsPromotionalOffersGetToManyRelatedResponse = (SubscriptionPromotionalOffersResponse); +export type UserInvitationsVisibleAppsGetToManyRelatedResponse = (AppsWithoutIncludesResponse); -export type SubscriptionsPromotionalOffersGetToManyRelatedError = (ErrorResponse); +export type UserInvitationsVisibleAppsGetToManyRelatedError = (ErrorResponse); -export type SubscriptionsSubscriptionAvailabilityGetToOneRelatedData = { - path: { +export type UsersGetCollectionData = { + query?: { /** - * the id of the requested resource + * the fields to include for returned resources of type apps */ - id: string; - }; - query?: { + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type subscriptionAvailabilities + * the fields to include for returned resources of type users */ - 'fields[subscriptionAvailabilities]'?: Array<('availableInNewTerritories' | 'subscription' | 'availableTerritories')>; + 'fields[users]'?: Array<('username' | 'firstName' | 'lastName' | 'roles' | 'allAppsVisible' | 'provisioningAllowed' | 'visibleApps')>; /** - * the fields to include for returned resources of type subscriptions + * filter by attribute 'roles' + */ + 'filter[roles]'?: Array<('ADMIN' | 'FINANCE' | 'ACCOUNT_HOLDER' | 'SALES' | 'MARKETING' | 'APP_MANAGER' | 'DEVELOPER' | 'ACCESS_TO_REPORTS' | 'CUSTOMER_SUPPORT' | 'CREATE_APPS' | 'CLOUD_MANAGED_DEVELOPER_ID' | 'CLOUD_MANAGED_APP_DISTRIBUTION' | 'GENERATE_INDIVIDUAL_KEYS')>; + /** + * filter by attribute 'username' + */ + 'filter[username]'?: Array<(string)>; + /** + * filter by id(s) of related 'visibleApps' + */ + 'filter[visibleApps]'?: Array<(string)>; + /** + * comma-separated list of relationships to include */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + include?: Array<('visibleApps')>; /** - * the fields to include for returned resources of type territories + * maximum resources per page */ - 'fields[territories]'?: Array<('currency')>; + limit?: number; /** - * comma-separated list of relationships to include + * maximum number of related visibleApps returned (when they are included) */ - include?: Array<('subscription' | 'availableTerritories')>; + 'limit[visibleApps]'?: number; /** - * maximum number of related availableTerritories returned (when they are included) + * comma-separated list of sort expressions; resources will be sorted as specified */ - 'limit[availableTerritories]'?: number; + sort?: Array<('username' | '-username' | 'lastName' | '-lastName')>; }; }; -export type SubscriptionsSubscriptionAvailabilityGetToOneRelatedResponse = (SubscriptionAvailabilityResponse); +export type UsersGetCollectionResponse = (UsersResponse); -export type SubscriptionsSubscriptionAvailabilityGetToOneRelatedError = (ErrorResponse); +export type UsersGetCollectionError = (ErrorResponse); -export type SubscriptionsSubscriptionLocalizationsGetToManyRelatedData = { +export type UsersGetInstanceData = { path: { /** * the id of the requested resource @@ -31154,85 +31025,57 @@ export type SubscriptionsSubscriptionLocalizationsGetToManyRelatedData = { }; query?: { /** - * the fields to include for returned resources of type subscriptionLocalizations + * the fields to include for returned resources of type apps */ - 'fields[subscriptionLocalizations]'?: Array<('name' | 'locale' | 'description' | 'state' | 'subscription')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the fields to include for returned resources of type subscriptions + * the fields to include for returned resources of type users */ - 'fields[subscriptions]'?: Array<('name' | 'productId' | 'familySharable' | 'state' | 'subscriptionPeriod' | 'reviewNote' | 'groupLevel' | 'subscriptionLocalizations' | 'appStoreReviewScreenshot' | 'group' | 'introductoryOffers' | 'promotionalOffers' | 'offerCodes' | 'prices' | 'pricePoints' | 'promotedPurchase' | 'subscriptionAvailability' | 'winBackOffers' | 'images')>; + 'fields[users]'?: Array<('username' | 'firstName' | 'lastName' | 'roles' | 'allAppsVisible' | 'provisioningAllowed' | 'visibleApps')>; /** * comma-separated list of relationships to include */ - include?: Array<('subscription')>; + include?: Array<('visibleApps')>; /** - * maximum resources per page + * maximum number of related visibleApps returned (when they are included) */ - limit?: number; + 'limit[visibleApps]'?: number; }; }; -export type SubscriptionsSubscriptionLocalizationsGetToManyRelatedResponse = (SubscriptionLocalizationsResponse); +export type UsersGetInstanceResponse = (UserResponse); -export type SubscriptionsSubscriptionLocalizationsGetToManyRelatedError = (ErrorResponse); +export type UsersGetInstanceError = (ErrorResponse); -export type SubscriptionsWinBackOffersGetToManyRelatedData = { +export type UsersUpdateInstanceData = { + /** + * User representation + */ + body: UserUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type winBackOfferPrices - */ - 'fields[winBackOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; - /** - * the fields to include for returned resources of type winBackOffers - */ - 'fields[winBackOffers]'?: Array<('referenceName' | 'offerId' | 'duration' | 'offerMode' | 'periodCount' | 'customerEligibilityPaidSubscriptionDurationInMonths' | 'customerEligibilityTimeSinceLastSubscribedInMonths' | 'customerEligibilityWaitBetweenOffersInMonths' | 'startDate' | 'endDate' | 'priority' | 'promotionIntent' | 'subscription' | 'prices')>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('prices')>; - /** - * maximum resources per page - */ - limit?: number; - /** - * maximum number of related prices returned (when they are included) - */ - 'limit[prices]'?: number; - }; }; -export type SubscriptionsWinBackOffersGetToManyRelatedResponse = (WinBackOffersResponse); +export type UsersUpdateInstanceResponse = (UserResponse); -export type SubscriptionsWinBackOffersGetToManyRelatedError = (ErrorResponse); +export type UsersUpdateInstanceError = (ErrorResponse); -export type UserInvitationsVisibleAppsGetToManyRelatedData = { +export type UsersDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * the fields to include for returned resources of type apps - */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; - /** - * maximum resources per page - */ - limit?: number; - }; }; -export type UserInvitationsVisibleAppsGetToManyRelatedResponse = (AppsWithoutIncludesResponse); +export type UsersDeleteInstanceResponse = (void); -export type UserInvitationsVisibleAppsGetToManyRelatedError = (ErrorResponse); +export type UsersDeleteInstanceError = (ErrorResponse); export type UsersVisibleAppsGetToManyRelationshipData = { path: { @@ -31315,7 +31158,7 @@ export type UsersVisibleAppsGetToManyRelatedData = { /** * the fields to include for returned resources of type apps */ - 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'preOrder' | 'appPriceSchedule' | 'appAvailability' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** * maximum resources per page */ @@ -31327,46 +31170,18 @@ export type UsersVisibleAppsGetToManyRelatedResponse = (AppsWithoutIncludesRespo export type UsersVisibleAppsGetToManyRelatedError = (ErrorResponse); -export type WinBackOffersPricesGetToManyRelatedData = { - path: { - /** - * the id of the requested resource - */ - id: string; - }; - query?: { - /** - * the fields to include for returned resources of type subscriptionPricePoints - */ - 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'subscription' | 'equalizations')>; - /** - * the fields to include for returned resources of type territories - */ - 'fields[territories]'?: Array<('currency')>; - /** - * the fields to include for returned resources of type winBackOfferPrices - */ - 'fields[winBackOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; - /** - * filter by id(s) of related 'territory' - */ - 'filter[territory]'?: Array<(string)>; - /** - * comma-separated list of relationships to include - */ - include?: Array<('territory' | 'subscriptionPricePoint')>; - /** - * maximum resources per page - */ - limit?: number; - }; +export type WinBackOffersCreateInstanceData = { + /** + * WinBackOffer representation + */ + body: WinBackOfferCreateRequest; }; -export type WinBackOffersPricesGetToManyRelatedResponse = (WinBackOfferPricesResponse); +export type WinBackOffersCreateInstanceResponse = (WinBackOfferResponse); -export type WinBackOffersPricesGetToManyRelatedError = (ErrorResponse); +export type WinBackOffersCreateInstanceError = (ErrorResponse); -export type AppsBetaTesterUsagesGetMetricsData = { +export type WinBackOffersGetInstanceData = { path: { /** * the id of the requested resource @@ -31375,87 +31190,59 @@ export type AppsBetaTesterUsagesGetMetricsData = { }; query?: { /** - * filter by 'betaTesters' relationship dimension + * the fields to include for returned resources of type winBackOfferPrices */ - 'filter[betaTesters]'?: string; + 'fields[winBackOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; /** - * the dimension by which to group the results + * the fields to include for returned resources of type winBackOffers */ - groupBy?: Array<('betaTesters')>; + 'fields[winBackOffers]'?: Array<('referenceName' | 'offerId' | 'duration' | 'offerMode' | 'periodCount' | 'customerEligibilityPaidSubscriptionDurationInMonths' | 'customerEligibilityTimeSinceLastSubscribedInMonths' | 'customerEligibilityWaitBetweenOffersInMonths' | 'startDate' | 'endDate' | 'priority' | 'promotionIntent' | 'prices')>; /** - * maximum number of groups to return per page + * comma-separated list of relationships to include */ - limit?: number; + include?: Array<('prices')>; /** - * the duration of the reporting period + * maximum number of related prices returned (when they are included) */ - period?: 'P7D' | 'P30D' | 'P90D' | 'P365D'; + 'limit[prices]'?: number; }; }; -export type AppsBetaTesterUsagesGetMetricsResponse = (AppsBetaTesterUsagesV1MetricResponse); +export type WinBackOffersGetInstanceResponse = (WinBackOfferResponse); -export type AppsBetaTesterUsagesGetMetricsError = (ErrorResponse); +export type WinBackOffersGetInstanceError = (ErrorResponse); -export type BetaGroupsBetaTesterUsagesGetMetricsData = { +export type WinBackOffersUpdateInstanceData = { + /** + * WinBackOffer representation + */ + body: WinBackOfferUpdateRequest; path: { /** * the id of the requested resource */ id: string; }; - query?: { - /** - * filter by 'betaTesters' relationship dimension - */ - 'filter[betaTesters]'?: string; - /** - * the dimension by which to group the results - */ - groupBy?: Array<('betaTesters')>; - /** - * maximum number of groups to return per page - */ - limit?: number; - /** - * the duration of the reporting period - */ - period?: 'P7D' | 'P30D' | 'P90D' | 'P365D'; - }; }; -export type BetaGroupsBetaTesterUsagesGetMetricsResponse = (AppsBetaTesterUsagesV1MetricResponse); +export type WinBackOffersUpdateInstanceResponse = (WinBackOfferResponse); -export type BetaGroupsBetaTesterUsagesGetMetricsError = (ErrorResponse); +export type WinBackOffersUpdateInstanceError = (ErrorResponse); -export type BetaTestersBetaTesterUsagesGetMetricsData = { +export type WinBackOffersDeleteInstanceData = { path: { /** * the id of the requested resource */ id: string; }; - query: { - /** - * filter by 'apps' relationship dimension - */ - 'filter[apps]': string; - /** - * maximum number of groups to return per page - */ - limit?: number; - /** - * the duration of the reporting period - */ - period?: 'P7D' | 'P30D' | 'P90D' | 'P365D'; - }; }; -export type BetaTestersBetaTesterUsagesGetMetricsResponse = (BetaTesterUsagesV1MetricResponse); +export type WinBackOffersDeleteInstanceResponse = (void); -export type BetaTestersBetaTesterUsagesGetMetricsError = (ErrorResponse); +export type WinBackOffersDeleteInstanceError = (ErrorResponse); -export type BuildsBetaBuildUsagesGetMetricsData = { +export type WinBackOffersPricesGetToManyRelatedData = { path: { /** * the id of the requested resource @@ -31464,350 +31251,312 @@ export type BuildsBetaBuildUsagesGetMetricsData = { }; query?: { /** - * maximum number of groups to return per page + * the fields to include for returned resources of type subscriptionPricePoints */ - limit?: number; - }; -}; - -export type BuildsBetaBuildUsagesGetMetricsResponse = (BetaBuildUsagesV1MetricResponse); - -export type BuildsBetaBuildUsagesGetMetricsError = (ErrorResponse); - -export type GameCenterDetailsClassicMatchmakingRequestsGetMetricsData = { - path: { + 'fields[subscriptionPricePoints]'?: Array<('customerPrice' | 'proceeds' | 'proceedsYear2' | 'territory' | 'equalizations')>; /** - * the id of the requested resource + * the fields to include for returned resources of type territories */ - id: string; - }; - query: { + 'fields[territories]'?: Array<('currency')>; /** - * filter by 'result' attribute dimension + * the fields to include for returned resources of type winBackOfferPrices */ - 'filter[result]'?: 'MATCHED' | 'CANCELED' | 'EXPIRED'; + 'fields[winBackOfferPrices]'?: Array<('territory' | 'subscriptionPricePoint')>; /** - * the granularity of the per-group dataset + * filter by id(s) of related 'territory' */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; + 'filter[territory]'?: Array<(string)>; /** - * the dimension by which to group the results + * comma-separated list of relationships to include */ - groupBy?: Array<('result')>; + include?: Array<('territory' | 'subscriptionPricePoint')>; /** - * maximum number of groups to return per page + * maximum resources per page */ limit?: number; - /** - * comma-separated list of sort expressions; metrics will be sorted as specified - */ - sort?: Array<('count' | '-count' | 'averageSecondsInQueue' | '-averageSecondsInQueue' | 'p50SecondsInQueue' | '-p50SecondsInQueue' | 'p95SecondsInQueue' | '-p95SecondsInQueue')>; }; }; -export type GameCenterDetailsClassicMatchmakingRequestsGetMetricsResponse = (GameCenterMatchmakingAppRequestsV1MetricResponse); +export type WinBackOffersPricesGetToManyRelatedResponse = (WinBackOfferPricesResponse); -export type GameCenterDetailsClassicMatchmakingRequestsGetMetricsError = (ErrorResponse); +export type WinBackOffersPricesGetToManyRelatedError = (ErrorResponse); -export type GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsData = { +export type BuildBundlesAppClipDomainCacheStatusGetToOneRelatedData = { path: { /** * the id of the requested resource */ - id: string; - }; - query: { - /** - * filter by 'result' attribute dimension - */ - 'filter[result]'?: 'MATCHED' | 'CANCELED' | 'EXPIRED'; - /** - * the granularity of the per-group dataset - */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; - /** - * the dimension by which to group the results - */ - groupBy?: Array<('result')>; - /** - * maximum number of groups to return per page - */ - limit?: number; + id: string; + }; + query?: { /** - * comma-separated list of sort expressions; metrics will be sorted as specified + * the fields to include for returned resources of type appClipDomainStatuses */ - sort?: Array<('count' | '-count' | 'averageSecondsInQueue' | '-averageSecondsInQueue' | 'p50SecondsInQueue' | '-p50SecondsInQueue' | 'p95SecondsInQueue' | '-p95SecondsInQueue')>; + 'fields[appClipDomainStatuses]'?: Array<('domains' | 'lastUpdatedDate')>; }; }; -export type GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsResponse = (GameCenterMatchmakingAppRequestsV1MetricResponse); +export type BuildBundlesAppClipDomainCacheStatusGetToOneRelatedResponse = (AppClipDomainStatusResponse); -export type GameCenterDetailsRuleBasedMatchmakingRequestsGetMetricsError = (ErrorResponse); +export type BuildBundlesAppClipDomainCacheStatusGetToOneRelatedError = (ErrorResponse); -export type GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsData = { +export type BuildBundlesAppClipDomainDebugStatusGetToOneRelatedData = { path: { /** * the id of the requested resource */ id: string; }; - query: { - /** - * the granularity of the per-group dataset - */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; - /** - * maximum number of groups to return per page - */ - limit?: number; + query?: { /** - * comma-separated list of sort expressions; metrics will be sorted as specified + * the fields to include for returned resources of type appClipDomainStatuses */ - sort?: Array<('count' | '-count' | 'averageNumberOfRequests' | '-averageNumberOfRequests' | 'p50NumberOfRequests' | '-p50NumberOfRequests' | 'p95NumberOfRequests' | '-p95NumberOfRequests')>; + 'fields[appClipDomainStatuses]'?: Array<('domains' | 'lastUpdatedDate')>; }; }; -export type GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsResponse = (GameCenterMatchmakingQueueSizesV1MetricResponse); +export type BuildBundlesAppClipDomainDebugStatusGetToOneRelatedResponse = (AppClipDomainStatusResponse); -export type GameCenterMatchmakingQueuesExperimentMatchmakingQueueSizesGetMetricsError = (ErrorResponse); +export type BuildBundlesAppClipDomainDebugStatusGetToOneRelatedError = (ErrorResponse); -export type GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsData = { +export type BuildBundlesBetaAppClipInvocationsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; - query: { - /** - * filter by 'gameCenterDetail' relationship dimension - */ - 'filter[gameCenterDetail]'?: string; + query?: { /** - * filter by 'result' attribute dimension + * the fields to include for returned resources of type betaAppClipInvocationLocalizations */ - 'filter[result]'?: 'MATCHED' | 'CANCELED' | 'EXPIRED'; + 'fields[betaAppClipInvocationLocalizations]'?: Array<('title' | 'locale')>; /** - * the granularity of the per-group dataset + * the fields to include for returned resources of type betaAppClipInvocations */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; + 'fields[betaAppClipInvocations]'?: Array<('url' | 'betaAppClipInvocationLocalizations')>; /** - * the dimension by which to group the results + * comma-separated list of relationships to include */ - groupBy?: Array<('result' | 'gameCenterDetail')>; + include?: Array<('betaAppClipInvocationLocalizations')>; /** - * maximum number of groups to return per page + * maximum resources per page */ limit?: number; /** - * comma-separated list of sort expressions; metrics will be sorted as specified + * maximum number of related betaAppClipInvocationLocalizations returned (when they are included) */ - sort?: Array<('count' | '-count' | 'averageSecondsInQueue' | '-averageSecondsInQueue' | 'p50SecondsInQueue' | '-p50SecondsInQueue' | 'p95SecondsInQueue' | '-p95SecondsInQueue')>; + 'limit[betaAppClipInvocationLocalizations]'?: number; }; }; -export type GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsResponse = (GameCenterMatchmakingQueueRequestsV1MetricResponse); +export type BuildBundlesBetaAppClipInvocationsGetToManyRelatedResponse = (BetaAppClipInvocationsResponse); -export type GameCenterMatchmakingQueuesExperimentMatchmakingRequestsGetMetricsError = (ErrorResponse); +export type BuildBundlesBetaAppClipInvocationsGetToManyRelatedError = (ErrorResponse); -export type GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsData = { +export type BuildBundlesBuildBundleFileSizesGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; - query: { + query?: { /** - * the granularity of the per-group dataset + * the fields to include for returned resources of type buildBundleFileSizes */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; + 'fields[buildBundleFileSizes]'?: Array<('deviceModel' | 'osVersion' | 'downloadBytes' | 'installBytes')>; /** - * maximum number of groups to return per page + * maximum resources per page */ limit?: number; - /** - * comma-separated list of sort expressions; metrics will be sorted as specified - */ - sort?: Array<('count' | '-count' | 'averageNumberOfRequests' | '-averageNumberOfRequests' | 'p50NumberOfRequests' | '-p50NumberOfRequests' | 'p95NumberOfRequests' | '-p95NumberOfRequests')>; }; }; -export type GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsResponse = (GameCenterMatchmakingQueueSizesV1MetricResponse); +export type BuildBundlesBuildBundleFileSizesGetToManyRelatedResponse = (BuildBundleFileSizesResponse); -export type GameCenterMatchmakingQueuesMatchmakingQueueSizesGetMetricsError = (ErrorResponse); +export type BuildBundlesBuildBundleFileSizesGetToManyRelatedError = (ErrorResponse); -export type GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsData = { +export type DiagnosticSignaturesLogsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; - query: { - /** - * filter by 'gameCenterDetail' relationship dimension - */ - 'filter[gameCenterDetail]'?: string; - /** - * filter by 'result' attribute dimension - */ - 'filter[result]'?: 'MATCHED' | 'CANCELED' | 'EXPIRED'; - /** - * the granularity of the per-group dataset - */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; - /** - * the dimension by which to group the results - */ - groupBy?: Array<('result' | 'gameCenterDetail')>; + query?: { /** - * maximum number of groups to return per page + * maximum resources per page */ limit?: number; - /** - * comma-separated list of sort expressions; metrics will be sorted as specified - */ - sort?: Array<('count' | '-count' | 'averageSecondsInQueue' | '-averageSecondsInQueue' | 'p50SecondsInQueue' | '-p50SecondsInQueue' | 'p95SecondsInQueue' | '-p95SecondsInQueue')>; }; }; -export type GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsResponse = (GameCenterMatchmakingQueueRequestsV1MetricResponse); +export type DiagnosticSignaturesLogsGetToManyRelatedResponse = (diagnosticLogs); -export type GameCenterMatchmakingQueuesMatchmakingRequestsGetMetricsError = (ErrorResponse); +export type DiagnosticSignaturesLogsGetToManyRelatedError = (ErrorResponse); -export type GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsData = { +export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipData = { path: { /** * the id of the requested resource */ id: string; }; - query: { - /** - * the granularity of the per-group dataset - */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; + query?: { /** - * maximum number of groups to return per page + * maximum resources per page */ limit?: number; - /** - * comma-separated list of sort expressions; metrics will be sorted as specified - */ - sort?: Array<('count' | '-count' | 'averagePlayerCount' | '-averagePlayerCount' | 'p50PlayerCount' | '-p50PlayerCount' | 'p95PlayerCount' | '-p95PlayerCount')>; }; }; -export type GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsResponse = (GameCenterMatchmakingSessionsV1MetricResponse); +export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipResponse = (GameCenterEnabledVersionCompatibleVersionsLinkagesResponse); -export type GameCenterMatchmakingQueuesMatchmakingSessionsGetMetricsError = (ErrorResponse); +export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelationshipError = (ErrorResponse); -export type GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsData = { +export type GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterEnabledVersionCompatibleVersionsLinkagesRequest; path: { /** * the id of the requested resource */ id: string; }; - query: { - /** - * filter by 'gameCenterMatchmakingQueue' relationship dimension - */ - 'filter[gameCenterMatchmakingQueue]'?: string; - /** - * filter by 'result' attribute dimension - */ - 'filter[result]'?: string; - /** - * the granularity of the per-group dataset - */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; - /** - * the dimension by which to group the results - */ - groupBy?: Array<('result' | 'gameCenterMatchmakingQueue')>; +}; + +export type GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipResponse = (void); + +export type GameCenterEnabledVersionsCompatibleVersionsCreateToManyRelationshipError = (ErrorResponse); + +export type GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterEnabledVersionCompatibleVersionsLinkagesRequest; + path: { /** - * maximum number of groups to return per page + * the id of the requested resource */ - limit?: number; + id: string; + }; +}; + +export type GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipResponse = (void); + +export type GameCenterEnabledVersionsCompatibleVersionsReplaceToManyRelationshipError = (ErrorResponse); + +export type GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipData = { + /** + * List of related linkages + */ + body: GameCenterEnabledVersionCompatibleVersionsLinkagesRequest; + path: { /** - * comma-separated list of sort expressions; metrics will be sorted as specified + * the id of the requested resource */ - sort?: Array<('count' | '-count')>; + id: string; }; }; -export type GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsResponse = (GameCenterMatchmakingBooleanRuleResultsV1MetricResponse); +export type GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipResponse = (void); -export type GameCenterMatchmakingRulesMatchmakingBooleanRuleResultsGetMetricsError = (ErrorResponse); +export type GameCenterEnabledVersionsCompatibleVersionsDeleteToManyRelationshipError = (ErrorResponse); -export type GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsData = { +export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; - query: { + query?: { /** - * filter by 'gameCenterMatchmakingQueue' relationship dimension + * the fields to include for returned resources of type apps */ - 'filter[gameCenterMatchmakingQueue]'?: string; + 'fields[apps]'?: Array<('name' | 'bundleId' | 'sku' | 'primaryLocale' | 'isOrEverWasMadeForKids' | 'subscriptionStatusUrl' | 'subscriptionStatusUrlVersion' | 'subscriptionStatusUrlForSandbox' | 'subscriptionStatusUrlVersionForSandbox' | 'contentRightsDeclaration' | 'streamlinedPurchasingEnabled' | 'appEncryptionDeclarations' | 'ciProduct' | 'betaTesters' | 'betaGroups' | 'appStoreVersions' | 'preReleaseVersions' | 'betaAppLocalizations' | 'builds' | 'betaLicenseAgreement' | 'betaAppReviewDetail' | 'appInfos' | 'appClips' | 'appPricePoints' | 'endUserLicenseAgreement' | 'appPriceSchedule' | 'appAvailabilityV2' | 'inAppPurchases' | 'subscriptionGroups' | 'gameCenterEnabledVersions' | 'perfPowerMetrics' | 'appCustomProductPages' | 'inAppPurchasesV2' | 'promotedPurchases' | 'appEvents' | 'reviewSubmissions' | 'subscriptionGracePeriod' | 'customerReviews' | 'gameCenterDetail' | 'appStoreVersionExperimentsV2' | 'alternativeDistributionKey' | 'analyticsReportRequests' | 'marketplaceSearchDetail')>; /** - * the granularity of the per-group dataset + * the fields to include for returned resources of type gameCenterEnabledVersions */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; + 'fields[gameCenterEnabledVersions]'?: Array<('platform' | 'versionString' | 'iconAsset' | 'compatibleVersions' | 'app')>; /** - * the dimension by which to group the results + * filter by id(s) of related 'app' */ - groupBy?: Array<('gameCenterMatchmakingQueue')>; + 'filter[app]'?: Array<(string)>; /** - * maximum number of groups to return per page + * filter by id(s) + */ + 'filter[id]'?: Array<(string)>; + /** + * filter by attribute 'platform' + */ + 'filter[platform]'?: Array<('IOS' | 'MAC_OS' | 'TV_OS' | 'VISION_OS')>; + /** + * filter by attribute 'versionString' + */ + 'filter[versionString]'?: Array<(string)>; + /** + * comma-separated list of relationships to include + */ + include?: Array<('compatibleVersions' | 'app')>; + /** + * maximum resources per page */ limit?: number; /** - * comma-separated list of sort expressions; metrics will be sorted as specified + * maximum number of related compatibleVersions returned (when they are included) + * @deprecated */ - sort?: Array<('count' | '-count' | 'averageResult' | '-averageResult' | 'p50Result' | '-p50Result' | 'p95Result' | '-p95Result')>; + 'limit[compatibleVersions]'?: number; + /** + * comma-separated list of sort expressions; resources will be sorted as specified + */ + sort?: Array<('versionString' | '-versionString')>; }; }; -export type GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsResponse = (GameCenterMatchmakingNumberRuleResultsV1MetricResponse); +export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedResponse = (GameCenterEnabledVersionsResponse); -export type GameCenterMatchmakingRulesMatchmakingNumberRuleResultsGetMetricsError = (ErrorResponse); +export type GameCenterEnabledVersionsCompatibleVersionsGetToManyRelatedError = (ErrorResponse); -export type GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsData = { +export type InAppPurchasePricePointsEqualizationsGetToManyRelatedData = { path: { /** * the id of the requested resource */ id: string; }; - query: { + query?: { /** - * filter by 'gameCenterMatchmakingQueue' relationship dimension + * the fields to include for returned resources of type inAppPurchasePricePoints */ - 'filter[gameCenterMatchmakingQueue]'?: string; + 'fields[inAppPurchasePricePoints]'?: Array<('customerPrice' | 'proceeds' | 'territory' | 'equalizations')>; /** - * the granularity of the per-group dataset + * the fields to include for returned resources of type territories */ - granularity: 'P1D' | 'PT1H' | 'PT15M'; + 'fields[territories]'?: Array<('currency')>; /** - * the dimension by which to group the results + * filter by id(s) of related 'inAppPurchaseV2' */ - groupBy?: Array<('gameCenterMatchmakingQueue')>; + 'filter[inAppPurchaseV2]'?: Array<(string)>; /** - * maximum number of groups to return per page + * filter by id(s) of related 'territory' */ - limit?: number; + 'filter[territory]'?: Array<(string)>; /** - * comma-separated list of sort expressions; metrics will be sorted as specified + * comma-separated list of relationships to include */ - sort?: Array<('count' | '-count')>; + include?: Array<('territory')>; + /** + * maximum resources per page + */ + limit?: number; }; }; -export type GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsResponse = (GameCenterMatchmakingRuleErrorsV1MetricResponse); +export type InAppPurchasePricePointsEqualizationsGetToManyRelatedResponse = (InAppPurchasePricePointsResponse); -export type GameCenterMatchmakingRulesMatchmakingRuleErrorsGetMetricsError = (ErrorResponse); \ No newline at end of file +export type InAppPurchasePricePointsEqualizationsGetToManyRelatedError = (ErrorResponse); \ No newline at end of file