@rbxts/types 1.0.782 → 1.0.783

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,6 +12,7 @@ interface Services {
12
12
  AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
13
13
  AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
14
14
  AnnotationsService: AnnotationsService;
15
+ AppLifecycleObserverService: AppLifecycleObserverService;
15
16
  AppUpdateService: AppUpdateService;
16
17
  AssetCounterService: AssetCounterService;
17
18
  AssetDeliveryProxy: AssetDeliveryProxy;
@@ -1276,7 +1277,10 @@ interface AccessoryDescription extends Instance {
1276
1277
  Instance: Instance | undefined;
1277
1278
  IsLayered: boolean;
1278
1279
  Order: number;
1280
+ Position: Vector3;
1279
1281
  Puffiness: number;
1282
+ Rotation: Vector3;
1283
+ Scale: Vector3;
1280
1284
  }
1281
1285
 
1282
1286
  interface AccountService extends Instance {
@@ -2277,6 +2281,17 @@ interface AnnotationsService extends Instance {
2277
2281
  readonly _nominal_AnnotationsService: unique symbol;
2278
2282
  }
2279
2283
 
2284
+ interface AppLifecycleObserverService extends Instance {
2285
+ /**
2286
+ * **DO NOT USE!**
2287
+ *
2288
+ * This field exists to force TypeScript to recognize this as a nominal type
2289
+ * @hidden
2290
+ * @deprecated
2291
+ */
2292
+ readonly _nominal_AppLifecycleObserverService: unique symbol;
2293
+ }
2294
+
2280
2295
  interface AppUpdateService extends Instance {
2281
2296
  /**
2282
2297
  * **DO NOT USE!**
@@ -3584,8 +3599,11 @@ interface AvatarGenerationJob extends Instance {
3584
3599
  ErrorMessage: string;
3585
3600
  Progress: number;
3586
3601
  Status: Enum.AvatarGenerationJobStatus;
3587
- Cancel(this: AvatarGenerationJob): void;
3588
3602
  GetOutput(this: AvatarGenerationJob): object;
3603
+ /**
3604
+ * Tags: Yields
3605
+ */
3606
+ Cancel(this: AvatarGenerationJob): void;
3589
3607
  /**
3590
3608
  * Tags: Yields
3591
3609
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.782",
3
+ "version": "1.0.783",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },