@microsoft/power-apps-cli 0.5.4 → 0.5.7
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/lib/Constants/HelpStrings.d.ts +3 -3
- package/lib/Constants/HelpStrings.js +3 -3
- package/lib/Constants/HelpStrings.js.map +1 -1
- package/lib/HttpClient/CliHttpClient.d.ts.map +1 -1
- package/lib/HttpClient/CliHttpClient.js +8 -1
- package/lib/HttpClient/CliHttpClient.js.map +1 -1
- package/lib/Verbs/AddDataSource.d.ts.map +1 -1
- package/lib/Verbs/AddDataSource.js +7 -6
- package/lib/Verbs/AddDataSource.js.map +1 -1
- package/lib/Verbs/DeleteDataSource.d.ts +1 -1
- package/lib/Verbs/DeleteDataSource.d.ts.map +1 -1
- package/lib/Verbs/DeleteDataSource.js +2 -1
- package/lib/Verbs/DeleteDataSource.js.map +1 -1
- package/lib/Verbs/ListConnectionReferences.js +6 -6
- package/lib/Verbs/ListConnectionReferences.js.map +1 -1
- package/lib/Verbs/ListEnvironmentVariables.js +6 -6
- package/lib/Verbs/ListEnvironmentVariables.js.map +1 -1
- package/lib/Verbs/Push.js +7 -10
- package/lib/Verbs/Push.js.map +1 -1
- package/lib/Verbs/VerbConstants.d.ts +1 -1
- package/lib/Verbs/VerbConstants.js +3 -3
- package/lib/Verbs/VerbConstants.js.map +1 -1
- package/lib/__tests__/E2eTests/addAndDeleteDataverseDS.test.js +4 -3
- package/lib/__tests__/E2eTests/addAndDeleteDataverseDS.test.js.map +1 -1
- package/lib/__tests__/E2eTests/addTop10Datasources.test.js +3 -2
- package/lib/__tests__/E2eTests/addTop10Datasources.test.js.map +1 -1
- package/lib/__tests__/E2eTests/cliHelp.test.js +4 -11
- package/lib/__tests__/E2eTests/cliHelp.test.js.map +1 -1
- package/lib/__tests__/helpers/e2eTestHelpers.d.ts +24 -0
- package/lib/__tests__/helpers/e2eTestHelpers.d.ts.map +1 -0
- package/lib/__tests__/helpers/e2eTestHelpers.js +28 -0
- package/lib/__tests__/helpers/e2eTestHelpers.js.map +1 -0
- package/lib-cjs/Constants/HelpStrings.d.ts +3 -3
- package/lib-cjs/Constants/HelpStrings.js +3 -3
- package/lib-cjs/Constants/HelpStrings.js.map +1 -1
- package/lib-cjs/HttpClient/CliHttpClient.d.ts.map +1 -1
- package/lib-cjs/HttpClient/CliHttpClient.js +8 -2
- package/lib-cjs/HttpClient/CliHttpClient.js.map +1 -1
- package/lib-cjs/Verbs/AddDataSource.d.ts.map +1 -1
- package/lib-cjs/Verbs/AddDataSource.js +7 -6
- package/lib-cjs/Verbs/AddDataSource.js.map +1 -1
- package/lib-cjs/Verbs/DeleteDataSource.d.ts +1 -1
- package/lib-cjs/Verbs/DeleteDataSource.d.ts.map +1 -1
- package/lib-cjs/Verbs/DeleteDataSource.js +5 -1
- package/lib-cjs/Verbs/DeleteDataSource.js.map +1 -1
- package/lib-cjs/Verbs/ListConnectionReferences.js +6 -6
- package/lib-cjs/Verbs/ListConnectionReferences.js.map +1 -1
- package/lib-cjs/Verbs/ListEnvironmentVariables.js +6 -6
- package/lib-cjs/Verbs/ListEnvironmentVariables.js.map +1 -1
- package/lib-cjs/Verbs/Push.js +11 -16
- package/lib-cjs/Verbs/Push.js.map +1 -1
- package/lib-cjs/Verbs/VerbConstants.d.ts +1 -1
- package/lib-cjs/Verbs/VerbConstants.js +3 -3
- package/lib-cjs/Verbs/VerbConstants.js.map +1 -1
- package/lib-cjs/__tests__/E2eTests/addAndDeleteDataverseDS.test.js +3 -2
- package/lib-cjs/__tests__/E2eTests/addAndDeleteDataverseDS.test.js.map +1 -1
- package/lib-cjs/__tests__/E2eTests/addTop10Datasources.test.js +2 -1
- package/lib-cjs/__tests__/E2eTests/addTop10Datasources.test.js.map +1 -1
- package/lib-cjs/__tests__/E2eTests/cliHelp.test.js +4 -11
- package/lib-cjs/__tests__/E2eTests/cliHelp.test.js.map +1 -1
- package/lib-cjs/__tests__/helpers/e2eTestHelpers.d.ts +23 -0
- package/lib-cjs/__tests__/helpers/e2eTestHelpers.d.ts.map +1 -0
- package/lib-cjs/__tests__/helpers/e2eTestHelpers.js +31 -0
- package/lib-cjs/__tests__/helpers/e2eTestHelpers.js.map +1 -0
- package/node_modules/@microsoft/powerapps-data/package.json +2 -2
- package/node_modules/@microsoft/powerapps-player-actions/lib/Actions/PushApp.js +10 -3
- package/node_modules/@microsoft/powerapps-player-actions/lib/Actions/PushApp.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/codeGenUtils.d.ts +20 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/codeGenUtils.d.ts.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/codeGenUtils.js +79 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/codeGenUtils.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/dataSourceInfoProcessor.d.ts +2 -2
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/dataSourceInfoProcessor.d.ts.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/dataSourceInfoProcessor.js +27 -68
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/dataSourceInfoProcessor.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/modelServiceGenerator.d.ts +0 -59
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/modelServiceGenerator.d.ts.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/modelServiceGenerator.js +69 -281
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/modelServiceGenerator.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/nameUtility.d.ts +26 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/nameUtility.d.ts.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/nameUtility.js +153 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/nameUtility.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/AzureDevOpsModelServiceGenerator.spec.d.ts +5 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/AzureDevOpsModelServiceGenerator.spec.d.ts.map +1 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/AzureDevOpsModelServiceGenerator.spec.js +93 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/AzureDevOpsModelServiceGenerator.spec.js.map +1 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/DataSourceInfoProcessor.spec.js +897 -2
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/DataSourceInfoProcessor.spec.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/ModelServiceGenerator.spec.js +1 -17
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/ModelServiceGenerator.spec.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/arrayTypeGeneration.spec.d.ts +5 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/arrayTypeGeneration.spec.d.ts.map +1 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/arrayTypeGeneration.spec.js +63 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib/__tests__/arrayTypeGeneration.spec.js.map +1 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/Actions/PushApp.js +9 -4
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/Actions/PushApp.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/codeGenUtils.d.ts +20 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/codeGenUtils.d.ts.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/codeGenUtils.js +86 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/codeGenUtils.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/dataSourceInfoProcessor.d.ts +2 -2
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/dataSourceInfoProcessor.d.ts.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/dataSourceInfoProcessor.js +25 -67
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/dataSourceInfoProcessor.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/modelServiceGenerator.d.ts +0 -59
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/modelServiceGenerator.d.ts.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/modelServiceGenerator.js +65 -279
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/modelServiceGenerator.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/nameUtility.d.ts +26 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/nameUtility.d.ts.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/nameUtility.js +161 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/CodeGen/nameUtility.js.map +1 -1
- package/node_modules/@microsoft/{powerapps-data/lib/components/codeGen/dataSourceInfo.js → powerapps-player-actions/lib-cjs/__tests__/AzureDevOpsModelServiceGenerator.spec.d.ts} +0 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/AzureDevOpsModelServiceGenerator.spec.d.ts.map +1 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/AzureDevOpsModelServiceGenerator.spec.js +206 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/AzureDevOpsModelServiceGenerator.spec.js.map +1 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/DataSourceInfoProcessor.spec.js +1277 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/DataSourceInfoProcessor.spec.js.map +1 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/ModelServiceGenerator.spec.js +0 -32
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/ModelServiceGenerator.spec.js.map +1 -1
- package/node_modules/@microsoft/{powerapps-data/lib/__tests__/dataSourceInfoProcessor.test.d.ts → powerapps-player-actions/lib-cjs/__tests__/arrayTypeGeneration.spec.d.ts} +0 -1
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/arrayTypeGeneration.spec.d.ts.map +1 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/arrayTypeGeneration.spec.js +171 -0
- package/node_modules/@microsoft/powerapps-player-actions/lib-cjs/__tests__/arrayTypeGeneration.spec.js.map +1 -0
- package/node_modules/@microsoft/powerapps-player-actions/package.json +2 -2
- package/node_modules/@pa-client/powerapps-player-services/package.json +1 -1
- package/package.json +4 -4
- package/node_modules/@microsoft/powerapps-data/lib/__tests__/dataSourceInfoProcessor.test.d.ts.map +0 -1
- package/node_modules/@microsoft/powerapps-data/lib/__tests__/dataSourceInfoProcessor.test.js +0 -782
- package/node_modules/@microsoft/powerapps-data/lib/__tests__/dataSourceInfoProcessor.test.js.map +0 -1
- package/node_modules/@microsoft/powerapps-data/lib/components/codeGen/dataSourceInfo.d.ts +0 -28
- package/node_modules/@microsoft/powerapps-data/lib/components/codeGen/dataSourceInfo.d.ts.map +0 -1
- package/node_modules/@microsoft/powerapps-data/lib/components/codeGen/dataSourceInfo.js.map +0 -1
- package/node_modules/@microsoft/powerapps-data/lib/components/codeGen/dataSourceInfoProcessor.d.ts +0 -10
- package/node_modules/@microsoft/powerapps-data/lib/components/codeGen/dataSourceInfoProcessor.d.ts.map +0 -1
- package/node_modules/@microsoft/powerapps-data/lib/components/codeGen/dataSourceInfoProcessor.js +0 -530
- package/node_modules/@microsoft/powerapps-data/lib/components/codeGen/dataSourceInfoProcessor.js.map +0 -1
package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/modelServiceGenerator.d.ts
CHANGED
|
@@ -65,39 +65,6 @@ export declare class ModelServiceGenerator {
|
|
|
65
65
|
* Returns true if schema.properties.swagger exists.
|
|
66
66
|
*/
|
|
67
67
|
private static isSwaggerSchema;
|
|
68
|
-
/**
|
|
69
|
-
* The extractModelName method extracts the model name and data source name from the schema.
|
|
70
|
-
* Returns an object with modelName and dataSourceName.
|
|
71
|
-
*/
|
|
72
|
-
private static extractModelName;
|
|
73
|
-
/**
|
|
74
|
-
* The getNameNode method retrieves the name node from the schema.
|
|
75
|
-
*/
|
|
76
|
-
private static getNameNode;
|
|
77
|
-
/**
|
|
78
|
-
* The isSharedName method checks if the name node is a shared name.
|
|
79
|
-
*/
|
|
80
|
-
private static isSharedName;
|
|
81
|
-
/**
|
|
82
|
-
* The getDisplayName method retrieves the display name from the schema.
|
|
83
|
-
*/
|
|
84
|
-
private static getDisplayName;
|
|
85
|
-
/**
|
|
86
|
-
* The getSharedDataSourceName method retrieves the shared data source name from the name node.
|
|
87
|
-
*/
|
|
88
|
-
private static getSharedDataSourceName;
|
|
89
|
-
/**
|
|
90
|
-
* The isGuid method checks if the name node is a GUID.
|
|
91
|
-
*/
|
|
92
|
-
private static isGuid;
|
|
93
|
-
/**
|
|
94
|
-
* The isDataverseEntity method checks if the schema represents a Dataverse entity.
|
|
95
|
-
*/
|
|
96
|
-
private static isDataverseEntity;
|
|
97
|
-
/**
|
|
98
|
-
* The getDataverseEntitySetName method retrieves the entity set name from a Dataverse schema.
|
|
99
|
-
*/
|
|
100
|
-
private static getDataverseEntitySetName;
|
|
101
68
|
/**
|
|
102
69
|
* Checks if a property is a Dataverse lookup column.
|
|
103
70
|
*/
|
|
@@ -116,18 +83,6 @@ export declare class ModelServiceGenerator {
|
|
|
116
83
|
* Example: "cr160_lookupcol" -> "_cr160_lookupcol_value"
|
|
117
84
|
*/
|
|
118
85
|
private static generateLookupValuePropertyName;
|
|
119
|
-
/**
|
|
120
|
-
* The getTitle method retrieves the title from the schema.
|
|
121
|
-
*/
|
|
122
|
-
private static getTitle;
|
|
123
|
-
/**
|
|
124
|
-
* The getParentFolderName method retrieves the parent folder name from the schema path.
|
|
125
|
-
*/
|
|
126
|
-
private static getParentFolderName;
|
|
127
|
-
/**
|
|
128
|
-
* Capitalizes the first letter of a string for file naming purposes only
|
|
129
|
-
*/
|
|
130
|
-
private static capitalizeForFileName;
|
|
131
86
|
/**
|
|
132
87
|
* The addCopyrightNotice method adds a copyright notice to the generated files.
|
|
133
88
|
*/
|
|
@@ -195,11 +150,6 @@ export declare class ModelServiceGenerator {
|
|
|
195
150
|
*/
|
|
196
151
|
private static generateTypeAliasForEmptyObject;
|
|
197
152
|
private static generatePropertyLines;
|
|
198
|
-
/**
|
|
199
|
-
* The normalizePropertyName method standardizes specific property names.
|
|
200
|
-
* For example, it converts "resultsets" to "ResultSets".
|
|
201
|
-
*/
|
|
202
|
-
private static normalizePropertyName;
|
|
203
153
|
/**
|
|
204
154
|
* Checks if a property has optionset data (enum and x-ms-enum-values)
|
|
205
155
|
*/
|
|
@@ -230,7 +180,6 @@ export declare class ModelServiceGenerator {
|
|
|
230
180
|
private static extractReferencedType;
|
|
231
181
|
private static mapDataverseTypeToTypeScript;
|
|
232
182
|
private static mapJsonTypeToTypeScript;
|
|
233
|
-
private static formatPropertyName;
|
|
234
183
|
private static addPropertyComment;
|
|
235
184
|
private static generateModelFromParameters;
|
|
236
185
|
private static addInterfaceDeclaration;
|
|
@@ -277,12 +226,6 @@ export declare class ModelServiceGenerator {
|
|
|
277
226
|
private static getOrderedPropertiesByRequired;
|
|
278
227
|
private static writeModelFile;
|
|
279
228
|
private static writeServiceFile;
|
|
280
|
-
private static isSqlStoredProcedure;
|
|
281
|
-
/**
|
|
282
|
-
* The isSharepointSchema method checks if the schema is a SharePoint schema.
|
|
283
|
-
* It returns true if the schema contains SharePoint-specific indicators.
|
|
284
|
-
*/
|
|
285
|
-
private static isSharepointSchema;
|
|
286
229
|
private static handleStandardSchema;
|
|
287
230
|
private static handleDataverseSchema;
|
|
288
231
|
private static handleStandardSchemaOnly;
|
|
@@ -315,7 +258,6 @@ export declare class ModelServiceGenerator {
|
|
|
315
258
|
private static addInnerPropertyDeclaration;
|
|
316
259
|
private static addModelInterfaceDeclaration;
|
|
317
260
|
private static addPropertyDeclaration;
|
|
318
|
-
private static isValidPropertyName;
|
|
319
261
|
private static generateTypeScriptService;
|
|
320
262
|
private static generateDataverseTypeScriptService;
|
|
321
263
|
private static addStandardServiceImports;
|
|
@@ -342,7 +284,6 @@ export declare class ModelServiceGenerator {
|
|
|
342
284
|
private static generateDataverseGetMethod;
|
|
343
285
|
private static generateDataverseGetAllMethod;
|
|
344
286
|
private static generateDataverseGetMetadataMethod;
|
|
345
|
-
private static getServiceName;
|
|
346
287
|
/**
|
|
347
288
|
* The generateIndexFile method creates an index.ts file that exports all models and services.
|
|
348
289
|
*/
|
package/node_modules/@microsoft/powerapps-player-actions/lib/CodeGen/modelServiceGenerator.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modelServiceGenerator.d.ts","sourceRoot":"","sources":["../../src/CodeGen/modelServiceGenerator.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAE/D,OAAO,EAAuC,UAAU,EAAa,MAAM,qBAAqB,CAAC;AAEjG,OAAO,EAAE,GAAG,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"modelServiceGenerator.d.ts","sourceRoot":"","sources":["../../src/CodeGen/modelServiceGenerator.ts"],"names":[],"mappings":"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"}
|