Skip to content

Commit

Permalink
fix(RL-121): down scale
Browse files Browse the repository at this point in the history
  • Loading branch information
NoodleOfDeath committed Oct 15, 2023
1 parent 762218e commit 43c5d08
Show file tree
Hide file tree
Showing 53 changed files with 1,646 additions and 122 deletions.
81 changes: 0 additions & 81 deletions src/mobile/ios/Models/BulkMetadataResponse.swift

This file was deleted.

31 changes: 26 additions & 5 deletions src/mobile/ios/Models/BulkResponse.swift
Original file line number Diff line number Diff line change
@@ -1,16 +1,37 @@
//
// PublicOutletAttributes.swift
//
// Generated by openapi-generator
// https://openapi-generator.tech
// BulkResponse.swift
//

import Foundation
#if canImport(AnyCodable)
import AnyCodable
#endif

public struct BulkResponse<T: Codable, M: Codable>: Codable {
public struct BulkResponse<T: Codable>: Codable {

public var count: Int
public var rows: [T]

public init(count: Int, rows: [T]) {
self.count = count
self.rows = rows
}

public enum CodingKeys: String, CodingKey, CaseIterable {
case count
case rows
}

// Encodable protocol methods

public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(count, forKey: .count)
try container.encode(rows, forKey: .rows)
}
}

public struct BulkMetadataResponse<T: Codable, M: Codable>: Codable {

public var count: Int
public var rows: [T]
Expand Down
3 changes: 0 additions & 3 deletions src/mobile/ios/Models/PublicCategoryAttributes.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
//
// PublicCategoryAttributes.swift
//
// Generated by openapi-generator
// https://openapi-generator.tech
//

import Foundation
#if canImport(AnyCodable)
Expand Down
3 changes: 0 additions & 3 deletions src/mobile/ios/Models/PublicPublisherAttributes.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
//
// PublicPublisherAttributes.swift
//
// Generated by openapi-generator
// https://openapi-generator.tech
//

import Foundation
#if canImport(AnyCodable)
Expand Down
5 changes: 1 addition & 4 deletions src/mobile/ios/Models/PublicSummaryAttributes.swift
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
//
// PickSummaryAttributesExcludeKeyofSummaryAttributesRawTextOrFilteredText.swift
//
// Generated by openapi-generator
// https://openapi-generator.tech
// PublicSummaryAttributes.swift
//

import Foundation
Expand Down
146 changes: 121 additions & 25 deletions src/mobile/ios/ReadLess.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions src/mobile/ios/ReadLessWidget/ar.lproj/Intents.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
"2Lnniv" = "Technology";

"6pQo3g-GHz1XP" = "There are ${count} options matching ‘Custom Topic’.";

"6pQo3g-jjAaOW" = "There are ${count} options matching ‘Live Feed’.";

"6pQo3g-yHsbIT" = "There are ${count} options matching ‘Top Stories’.";

"AnaQy4" = "Update Interval";

"GHz1XP" = "Custom Topic";

"INvacD" = "Channel";

"Q88ETS" = "Topic";

"YAndPU" = "Topic";

"j3pgMG" = "Channel";

"jjAaOW" = "Live Feed";

"jtISxm" = "Widget Topic Configuration";

"natRPv-GHz1XP" = "Just to confirm, you wanted ‘Custom Topic’?";

"natRPv-jjAaOW" = "Just to confirm, you wanted ‘Live Feed’?";

"natRPv-yHsbIT" = "Just to confirm, you wanted ‘Top Stories’?";

"vlfd95" = "Intent for configuring the topic of a widget";

"yHsbIT" = "Top Stories";

34 changes: 34 additions & 0 deletions src/mobile/ios/ReadLessWidget/ca.lproj/Intents.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
"2Lnniv" = "Technology";

"6pQo3g-GHz1XP" = "There are ${count} options matching ‘Custom Topic’.";

"6pQo3g-jjAaOW" = "There are ${count} options matching ‘Live Feed’.";

"6pQo3g-yHsbIT" = "There are ${count} options matching ‘Top Stories’.";

"AnaQy4" = "Update Interval";

"GHz1XP" = "Custom Topic";

"INvacD" = "Channel";

"Q88ETS" = "Topic";

"YAndPU" = "Topic";

"j3pgMG" = "Channel";

"jjAaOW" = "Live Feed";

"jtISxm" = "Widget Topic Configuration";

"natRPv-GHz1XP" = "Just to confirm, you wanted ‘Custom Topic’?";

"natRPv-jjAaOW" = "Just to confirm, you wanted ‘Live Feed’?";

"natRPv-yHsbIT" = "Just to confirm, you wanted ‘Top Stories’?";

"vlfd95" = "Intent for configuring the topic of a widget";

"yHsbIT" = "Top Stories";

34 changes: 34 additions & 0 deletions src/mobile/ios/ReadLessWidget/cs.lproj/Intents.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
"2Lnniv" = "Technology";

"6pQo3g-GHz1XP" = "There are ${count} options matching ‘Custom Topic’.";

"6pQo3g-jjAaOW" = "There are ${count} options matching ‘Live Feed’.";

"6pQo3g-yHsbIT" = "There are ${count} options matching ‘Top Stories’.";

"AnaQy4" = "Update Interval";

"GHz1XP" = "Custom Topic";

"INvacD" = "Channel";

"Q88ETS" = "Topic";

"YAndPU" = "Topic";

"j3pgMG" = "Channel";

"jjAaOW" = "Live Feed";

"jtISxm" = "Widget Topic Configuration";

"natRPv-GHz1XP" = "Just to confirm, you wanted ‘Custom Topic’?";

"natRPv-jjAaOW" = "Just to confirm, you wanted ‘Live Feed’?";

"natRPv-yHsbIT" = "Just to confirm, you wanted ‘Top Stories’?";

"vlfd95" = "Intent for configuring the topic of a widget";

"yHsbIT" = "Top Stories";

34 changes: 34 additions & 0 deletions src/mobile/ios/ReadLessWidget/da.lproj/Intents.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
"2Lnniv" = "Technology";

"6pQo3g-GHz1XP" = "There are ${count} options matching ‘Custom Topic’.";

"6pQo3g-jjAaOW" = "There are ${count} options matching ‘Live Feed’.";

"6pQo3g-yHsbIT" = "There are ${count} options matching ‘Top Stories’.";

"AnaQy4" = "Update Interval";

"GHz1XP" = "Custom Topic";

"INvacD" = "Channel";

"Q88ETS" = "Topic";

"YAndPU" = "Topic";

"j3pgMG" = "Channel";

"jjAaOW" = "Live Feed";

"jtISxm" = "Widget Topic Configuration";

"natRPv-GHz1XP" = "Just to confirm, you wanted ‘Custom Topic’?";

"natRPv-jjAaOW" = "Just to confirm, you wanted ‘Live Feed’?";

"natRPv-yHsbIT" = "Just to confirm, you wanted ‘Top Stories’?";

"vlfd95" = "Intent for configuring the topic of a widget";

"yHsbIT" = "Top Stories";

34 changes: 34 additions & 0 deletions src/mobile/ios/ReadLessWidget/de.lproj/Intents.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
"2Lnniv" = "Technology";

"6pQo3g-GHz1XP" = "There are ${count} options matching ‘Custom Topic’.";

"6pQo3g-jjAaOW" = "There are ${count} options matching ‘Live Feed’.";

"6pQo3g-yHsbIT" = "There are ${count} options matching ‘Top Stories’.";

"AnaQy4" = "Update Interval";

"GHz1XP" = "Custom Topic";

"INvacD" = "Channel";

"Q88ETS" = "Topic";

"YAndPU" = "Topic";

"j3pgMG" = "Channel";

"jjAaOW" = "Live Feed";

"jtISxm" = "Widget Topic Configuration";

"natRPv-GHz1XP" = "Just to confirm, you wanted ‘Custom Topic’?";

"natRPv-jjAaOW" = "Just to confirm, you wanted ‘Live Feed’?";

"natRPv-yHsbIT" = "Just to confirm, you wanted ‘Top Stories’?";

"vlfd95" = "Intent for configuring the topic of a widget";

"yHsbIT" = "Top Stories";

34 changes: 34 additions & 0 deletions src/mobile/ios/ReadLessWidget/el.lproj/Intents.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
"2Lnniv" = "Technology";

"6pQo3g-GHz1XP" = "There are ${count} options matching ‘Custom Topic’.";

"6pQo3g-jjAaOW" = "There are ${count} options matching ‘Live Feed’.";

"6pQo3g-yHsbIT" = "There are ${count} options matching ‘Top Stories’.";

"AnaQy4" = "Update Interval";

"GHz1XP" = "Custom Topic";

"INvacD" = "Channel";

"Q88ETS" = "Topic";

"YAndPU" = "Topic";

"j3pgMG" = "Channel";

"jjAaOW" = "Live Feed";

"jtISxm" = "Widget Topic Configuration";

"natRPv-GHz1XP" = "Just to confirm, you wanted ‘Custom Topic’?";

"natRPv-jjAaOW" = "Just to confirm, you wanted ‘Live Feed’?";

"natRPv-yHsbIT" = "Just to confirm, you wanted ‘Top Stories’?";

"vlfd95" = "Intent for configuring the topic of a widget";

"yHsbIT" = "Top Stories";

34 changes: 34 additions & 0 deletions src/mobile/ios/ReadLessWidget/en-AU.lproj/Intents.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
"2Lnniv" = "Technology";

"6pQo3g-GHz1XP" = "There are ${count} options matching ‘Custom Topic’.";

"6pQo3g-jjAaOW" = "There are ${count} options matching ‘Live Feed’.";

"6pQo3g-yHsbIT" = "There are ${count} options matching ‘Top Stories’.";

"AnaQy4" = "Update Interval";

"GHz1XP" = "Custom Topic";

"INvacD" = "Channel";

"Q88ETS" = "Topic";

"YAndPU" = "Topic";

"j3pgMG" = "Channel";

"jjAaOW" = "Live Feed";

"jtISxm" = "Widget Topic Configuration";

"natRPv-GHz1XP" = "Just to confirm, you wanted ‘Custom Topic’?";

"natRPv-jjAaOW" = "Just to confirm, you wanted ‘Live Feed’?";

"natRPv-yHsbIT" = "Just to confirm, you wanted ‘Top Stories’?";

"vlfd95" = "Intent for configuring the topic of a widget";

"yHsbIT" = "Top Stories";

Loading

0 comments on commit 43c5d08

Please sign in to comment.