Skip to content

Commit 976a9e3

Browse files
Yogita ManjarekarYogita Manjarekar
authored andcommitted
Updated to 3.1.2 version
1 parent 7e6f8aa commit 976a9e3

File tree

21 files changed

+88
-43
lines changed

21 files changed

+88
-43
lines changed

.DS_Store

0 Bytes
Binary file not shown.

BuiltIOBackend.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'BuiltIOBackend'
3-
s.version = '3.1.1'
3+
s.version = '3.1.2'
44
s.summary = 'The BuiltIO Backend helps you to create apps quickly and effortlessly, taking care of all the backend requirements.'
55

66
s.description = <<-DESC

SDK/.DS_Store

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

SDK/iOS/BuiltIO.framework/BuiltIO

-117 KB
Binary file not shown.

SDK/iOS/BuiltIO.framework/Headers/BuiltGroup.h

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,9 @@ Add GroupMultiple to this object
145145
146146
147147
@param group Instance of BuiltGroupMultiple for this object
148+
@warning This method has been deprecated.
148149
*/
149-
- (void)addGroupMultiple:(BuiltGroupMultiple*)group;
150+
- (void)addGroupMultiple:(BuiltGroupMultiple*)group BUILTIO_DEPRECATED("addGroupMultiple: is been deprecated.");
150151

151152
/**
152153
Removes GroupMultiple to this object
@@ -161,8 +162,9 @@ Removes GroupMultiple to this object
161162
detailGroup.removeGroupMultiple(stepsGroup)
162163
163164
@param group Instance of BuiltGroupMultiple for this object
165+
@warning This method has been deprecated.
164166
*/
165-
- (void)removeGroupMultiple:(BuiltGroupMultiple*)group;
167+
- (void)removeGroupMultiple:(BuiltGroupMultiple*)group BUILTIO_DEPRECATED("removeGroupMultiple: is been deprecated.");
166168

167169
//MARK: - set values for reference fields
168170

@@ -368,8 +370,10 @@ Use this method only when the values of the fields inside referenced object is t
368370
369371
@param key Key containing the value of BuiltGroupMultiple
370372
@return Instance of BuiltGroupMultiple
373+
@warning This method has been deprecated.
374+
371375
*/
372-
- (BuiltGroupMultiple*)groupMultipleForKey:(NSString*)key;
376+
- (BuiltGroupMultiple*)groupMultipleForKey:(NSString*)key BUILTIO_DEPRECATED("groupMultipleForKey: is been deprecated.");
373377

374378
/**---------------------------------------------------------------------------------------
375379
* @name Configure

SDK/iOS/BuiltIO.framework/Headers/BuiltGroupMultiple.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111

1212
@class BuiltObject;
1313
@class BuiltGroup;
14-
14+
NS_CLASS_DEPRECATED(10,10_6,4_0,5_0)
1515
BUILT_ASSUME_NONNULL_BEGIN
1616
/**
17+
@note This class has been deprecated.
18+
1719
A Group is special type of field in Built.io Backend. The reason its named such is that its a set of fields grouped together. Each group field has its own schema and can contain sub-groups. GroupMultiple should be used when a group field is marked as 'multiple'.
1820
*/
1921

@@ -32,6 +34,7 @@ BUILT_ASSUME_NONNULL_BEGIN
3234
* @param fieldName UID of the group field in your class schema
3335
*
3436
* @return new BuiltGroupMultiple instance
37+
* @warning This method has been deprecated.
3538
*/
3639
+ (instancetype) groupMultipleWithFieldName:(NSString*)fieldName;
3740

@@ -44,13 +47,15 @@ BUILT_ASSUME_NONNULL_BEGIN
4447
* Add Group to this object
4548
*
4649
* @param group Instance of BuiltGroup for this object
50+
* @warning This method has been deprecated.
4751
*/
4852
- (void)addGroup:(BuiltGroup*)group;
4953

5054
/**
5155
* Removes Group to this object
5256
*
5357
* @param group Instance of BuiltGroup to remove from this object
58+
* @warning This method has been deprecated.
5459
*/
5560
- (void)removeGroup:(BuiltGroup*)group;
5661

@@ -63,6 +68,7 @@ BUILT_ASSUME_NONNULL_BEGIN
6368
* This should be used to mix array containing instances of BuiltGroup or BuiltGroupMultiple together.
6469
*
6570
* @param groupsArray Array containing instance of BuiltGroup or BuiltGroupMultiple
71+
* @warning This method has been deprecated.
6672
*/
6773
- (void)addByMixinGroups:(NSArray*)groupsArray;
6874

@@ -82,6 +88,7 @@ BUILT_ASSUME_NONNULL_BEGIN
8288
8389
8490
@param dictionary User Info
91+
@warning This method has been deprecated.
8592
*/
8693
- (void)configureWithArray:(NSArray*)array;
8794

@@ -95,6 +102,7 @@ Get BuiltGroup object of the specified index.
95102
96103
@param index index of which BuiltGroup need to get.
97104
@return BuiltGroup instance with data of specified index.
105+
@warning This method has been deprecated.
98106
*/
99107
- (BuiltGroup*)groupAtIndex:(NSInteger)index;
100108

SDK/iOS/BuiltIO.framework/Headers/BuiltObject.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -764,8 +764,9 @@ Adds GroupMultiple to this object
764764
bugObject.addGroupMultiple(stepsGroup)
765765
766766
@param groupMultiple Instance of BuiltGroupMultiple for this object
767+
@warning This method has been deprecated.
767768
*/
768-
-(void)addGroupMultiple:(BuiltGroupMultiple*)groupMultiple;
769+
-(void)addGroupMultiple:(BuiltGroupMultiple*)groupMultiple BUILTIO_DEPRECATED("addGroupMultiple: is been deprecated.");
769770

770771
/**
771772
Get the info of the specified key of BuiltGroup object and returns instance of BuiltGroup.
@@ -797,8 +798,9 @@ Get the info of the specified key of BuiltGroupMultiple object and returns insta
797798
798799
@param key Key containing the value of BuiltGroupMultiple
799800
@return Instance of BuiltGroupMultiple
801+
@warning This method has been deprecated.
800802
*/
801-
-(nullable BuiltGroupMultiple*)groupMultipleForKey:(NSString*)key;
803+
-(nullable BuiltGroupMultiple*)groupMultipleForKey:(NSString*)key BUILTIO_DEPRECATED("groupMultipleForKey: is been deprecated.");
802804

803805

804806
//MARK: - Object fetch
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)