@schemastore/cryproj.52.schema 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) Florian Keller. All rights reserved.
3
+ Copyright (c) Florian Imdahl. All rights reserved.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -8,5 +8,5 @@ This package contains type definitions for cryproj.52.schema.
8
8
  Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.52.schema.
9
9
 
10
10
  ## Additional Details
11
- * Last updated: Sat, Jul 04, 2020, 11:00:07 GMT
11
+ * Last updated: Fri, Feb 24, 2023, 11:23:32 GMT
12
12
  * Dependencies: none
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -2455,18 +2455,22 @@ export type VariableName =
2455
2455
  * The default value of the CVar
2456
2456
  */
2457
2457
  export type ValueOfTheCVar = string;
2458
+ export type PropertiesConsoleVariables = PropertiesConsoleVariablesItems[];
2458
2459
  /**
2459
2460
  * This indicates where the assets are stored
2460
2461
  */
2461
2462
  export type AssetsFolder = string;
2463
+ export type PropertiesContentPropertiesAssets = AssetsFolder[];
2462
2464
  /**
2463
2465
  * This indicates where the code is stored
2464
2466
  */
2465
2467
  export type CodeFolder = string;
2468
+ export type PropertiesContentPropertiesCode = CodeFolder[];
2466
2469
  export type LibSName = string;
2467
2470
  export type LibSNameToImportForAllTheSupportedPlatforms = string;
2468
2471
  export type LibSNameToImportForTheWinX64Platform = string;
2469
2472
  export type LibSNameToImportForTheWinX86Platform = string;
2473
+ export type PropertiesContentPropertiesLibs = PropertiesContentPropertiesLibsItems[];
2470
2474
  /**
2471
2475
  * This indicates the project name
2472
2476
  */
@@ -2485,6 +2489,9 @@ export type PluginName = string;
2485
2489
  */
2486
2490
  export type PluginType = "EPluginType::Native" | "EPluginType::Managed";
2487
2491
  export type ThisPluginWillBeUsedOnlyByThesePlatforms = "pc" | "ps4" | "xboxone" | "linux";
2492
+ export type PropertiesPluginsItemsPropertiesPlatforms = ThisPluginWillBeUsedOnlyByThesePlatforms[];
2493
+ export type PropertiesRequirePropertiesPlugins = PropertiesRequirePropertiesPluginsItems[];
2494
+ export type PropertiesType = string;
2488
2495
  export type ProjectVersion = number;
2489
2496
  /**
2490
2497
  * Console command name
@@ -2675,49 +2682,58 @@ export type CommandName =
2675
2682
  * Arguments that has to be passed to the command. Leave empty if it has not parameters
2676
2683
  */
2677
2684
  export type ValueOfTheCommand = string;
2685
+ export type PropertiesConsoleCommands = PropertiesConsoleCommandsItems[];
2678
2686
 
2679
2687
  export interface CryProjSchema {
2680
- console_variables?: {
2681
- name: VariableName;
2682
- value: ValueOfTheCVar;
2683
- [k: string]: unknown;
2684
- }[];
2685
- content: {
2686
- assets?: AssetsFolder[];
2687
- code: CodeFolder[];
2688
- libs?: {
2689
- name?: LibSName;
2690
- shared?: {
2691
- any?: LibSNameToImportForAllTheSupportedPlatforms;
2692
- win_x64?: LibSNameToImportForTheWinX64Platform;
2693
- win_x86?: LibSNameToImportForTheWinX86Platform;
2694
- [k: string]: unknown;
2695
- };
2696
- [k: string]: unknown;
2697
- }[];
2698
- [k: string]: unknown;
2699
- };
2700
- info: {
2701
- name: ProjectName;
2702
- guid?: ProjectGUID;
2703
- [k: string]: unknown;
2704
- };
2705
- require: {
2706
- engine: EngineVersion;
2707
- plugins?: {
2708
- path: PluginName;
2709
- type: PluginType;
2710
- platforms?: ThisPluginWillBeUsedOnlyByThesePlatforms[];
2711
- [k: string]: unknown;
2712
- }[];
2713
- [k: string]: unknown;
2714
- };
2715
- type?: string;
2688
+ console_variables?: PropertiesConsoleVariables;
2689
+ content: PropertiesContent;
2690
+ info: PropertiesInfo;
2691
+ require: PropertiesRequire;
2692
+ type?: PropertiesType;
2716
2693
  version: ProjectVersion;
2717
- console_commands?: {
2718
- name: CommandName;
2719
- value: ValueOfTheCommand;
2720
- [k: string]: unknown;
2721
- }[];
2694
+ console_commands?: PropertiesConsoleCommands;
2695
+ [k: string]: unknown;
2696
+ }
2697
+ export interface PropertiesConsoleVariablesItems {
2698
+ name: VariableName;
2699
+ value: ValueOfTheCVar;
2700
+ [k: string]: unknown;
2701
+ }
2702
+ export interface PropertiesContent {
2703
+ assets?: PropertiesContentPropertiesAssets;
2704
+ code: PropertiesContentPropertiesCode;
2705
+ libs?: PropertiesContentPropertiesLibs;
2706
+ [k: string]: unknown;
2707
+ }
2708
+ export interface PropertiesContentPropertiesLibsItems {
2709
+ name?: LibSName;
2710
+ shared?: PropertiesContentPropertiesLibsItemsPropertiesShared;
2711
+ [k: string]: unknown;
2712
+ }
2713
+ export interface PropertiesContentPropertiesLibsItemsPropertiesShared {
2714
+ any?: LibSNameToImportForAllTheSupportedPlatforms;
2715
+ win_x64?: LibSNameToImportForTheWinX64Platform;
2716
+ win_x86?: LibSNameToImportForTheWinX86Platform;
2717
+ [k: string]: unknown;
2718
+ }
2719
+ export interface PropertiesInfo {
2720
+ name: ProjectName;
2721
+ guid?: ProjectGUID;
2722
+ [k: string]: unknown;
2723
+ }
2724
+ export interface PropertiesRequire {
2725
+ engine: EngineVersion;
2726
+ plugins?: PropertiesRequirePropertiesPlugins;
2727
+ [k: string]: unknown;
2728
+ }
2729
+ export interface PropertiesRequirePropertiesPluginsItems {
2730
+ path: PluginName;
2731
+ type: PluginType;
2732
+ platforms?: PropertiesPluginsItemsPropertiesPlatforms;
2733
+ [k: string]: unknown;
2734
+ }
2735
+ export interface PropertiesConsoleCommandsItems {
2736
+ name: CommandName;
2737
+ value: ValueOfTheCommand;
2722
2738
  [k: string]: unknown;
2723
2739
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "author": "Florian Keller <github@floriankeller.de>",
2
+ "author": "Florian Imdahl <git@ffflorian.de>",
3
3
  "dependencies": {},
4
4
  "description": "TypeScript definitions for cryproj.52.schema.",
5
5
  "license": "MIT",
@@ -7,8 +7,8 @@
7
7
  "name": "@schemastore/cryproj.52.schema",
8
8
  "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.52.schema",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "7d67a2b09aca4bd931a756e26d7403ca45738a2c2944e4c0a2b70be1a9453180",
10
+ "typesPublisherContentHash": "62103bffce52aabd48dfb1d0943530fbaee3ac417e59ffb87afc371ad985e59b",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.4",
12
+ "version": "0.0.5",
13
13
  "typeScriptVersion": "2.2"
14
14
  }