@xmobitea/gn-typescript-client 2.3.0-esnext → 2.3.1-esnext
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.
|
@@ -534,4 +534,7 @@ export declare class GNParameterCode {
|
|
|
534
534
|
static readonly Longitude: string;
|
|
535
535
|
static readonly BackupValue: string;
|
|
536
536
|
static readonly AnalyticsPrice: string;
|
|
537
|
+
static readonly IssuerId: string;
|
|
538
|
+
static readonly KeyId: string;
|
|
539
|
+
static readonly P8Content: string;
|
|
537
540
|
}
|
|
@@ -535,3 +535,6 @@ GNParameterCode.Latitude = "Latitude";
|
|
|
535
535
|
GNParameterCode.Longitude = "Longitude";
|
|
536
536
|
GNParameterCode.BackupValue = "BackupValue";
|
|
537
537
|
GNParameterCode.AnalyticsPrice = "AnalyticsPrice";
|
|
538
|
+
GNParameterCode.IssuerId = "IssuerId";
|
|
539
|
+
GNParameterCode.KeyId = "KeyId";
|
|
540
|
+
GNParameterCode.P8Content = "P8Content";
|
|
@@ -127,6 +127,9 @@ export declare namespace DashboardModels {
|
|
|
127
127
|
class ThirtPartyAppleSettingsParam {
|
|
128
128
|
appleClientId: string;
|
|
129
129
|
sandboxEnable: boolean;
|
|
130
|
+
issuerId: string;
|
|
131
|
+
keyId: string;
|
|
132
|
+
p8Content: string;
|
|
130
133
|
}
|
|
131
134
|
class ThirtPartyFacebookSettingsParam {
|
|
132
135
|
facebookAppId: string;
|
|
@@ -457,6 +457,18 @@ export var DashboardModels;
|
|
|
457
457
|
BooleanDataMember({ code: GNParameterCode.SandboxEnable }),
|
|
458
458
|
__metadata("design:type", Boolean)
|
|
459
459
|
], ThirtPartyAppleSettingsParam.prototype, "sandboxEnable", void 0);
|
|
460
|
+
__decorate([
|
|
461
|
+
StringDataMember({ code: GNParameterCode.IssuerId }),
|
|
462
|
+
__metadata("design:type", String)
|
|
463
|
+
], ThirtPartyAppleSettingsParam.prototype, "issuerId", void 0);
|
|
464
|
+
__decorate([
|
|
465
|
+
StringDataMember({ code: GNParameterCode.KeyId }),
|
|
466
|
+
__metadata("design:type", String)
|
|
467
|
+
], ThirtPartyAppleSettingsParam.prototype, "keyId", void 0);
|
|
468
|
+
__decorate([
|
|
469
|
+
StringDataMember({ code: GNParameterCode.P8Content }),
|
|
470
|
+
__metadata("design:type", String)
|
|
471
|
+
], ThirtPartyAppleSettingsParam.prototype, "p8Content", void 0);
|
|
460
472
|
DashboardModels.ThirtPartyAppleSettingsParam = ThirtPartyAppleSettingsParam;
|
|
461
473
|
class ThirtPartyFacebookSettingsParam {
|
|
462
474
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmobitea/gn-typescript-client",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1-esnext",
|
|
4
4
|
"description": "",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"buildminudm": "webpack --config webpack.config.min.udm.js --mode production --stats-modules",
|
|
14
14
|
"build": "rm -rf ./dist && npm run buildnode && npm run buildudm && npm run buildminudm",
|
|
15
15
|
"build:withoutwebpack": "rm -rf ./dist && tsc",
|
|
16
|
-
"push": "npm run build && npm
|
|
16
|
+
"push": "npm run build && npm publish && git push"
|
|
17
17
|
},
|
|
18
18
|
"author": "changx.develop@gmail.com (https://xmobitea.com)",
|
|
19
19
|
"license": "ISC",
|