@salesforce/plugin-packaging 1.12.2 → 1.12.4
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/README.md +0 -2
- package/lib/commands/package/convert.d.ts +23 -0
- package/lib/commands/package/convert.js +128 -0
- package/lib/commands/package/convert.js.map +1 -0
- package/lib/commands/package/create.d.ts +26 -0
- package/lib/commands/package/create.js +92 -0
- package/lib/commands/package/create.js.map +1 -0
- package/lib/commands/package/delete.d.ts +20 -0
- package/lib/commands/package/delete.js +65 -0
- package/lib/commands/package/delete.js.map +1 -0
- package/lib/commands/package/install/report.d.ts +19 -0
- package/lib/commands/package/install/report.js +65 -0
- package/lib/commands/package/install/report.js.map +1 -0
- package/lib/commands/package/install.d.ts +31 -0
- package/lib/commands/{force/package → package}/install.js +72 -76
- package/lib/commands/package/install.js.map +1 -0
- package/lib/commands/package/installed/list.d.ts +24 -0
- package/lib/commands/{force/package → package}/installed/list.js +19 -14
- package/lib/commands/package/installed/list.js.map +1 -0
- package/lib/commands/package/list.d.ts +26 -0
- package/lib/commands/{force/package → package}/list.js +23 -21
- package/lib/commands/package/list.js.map +1 -0
- package/lib/commands/package/uninstall/report.d.ts +15 -0
- package/lib/commands/package/uninstall/report.js +46 -0
- package/lib/commands/package/uninstall/report.js.map +1 -0
- package/lib/commands/package/uninstall.d.ts +19 -0
- package/lib/commands/package/uninstall.js +60 -0
- package/lib/commands/package/uninstall.js.map +1 -0
- package/lib/commands/package/update.d.ts +20 -0
- package/lib/commands/package/update.js +67 -0
- package/lib/commands/package/update.js.map +1 -0
- package/lib/commands/package/version/create/list.d.ts +18 -0
- package/lib/commands/{force/package → package}/version/create/list.js +28 -20
- package/lib/commands/package/version/create/list.js.map +1 -0
- package/lib/commands/package/version/create/report.d.ts +19 -0
- package/lib/commands/{force/package → package}/version/create/report.js +28 -24
- package/lib/commands/package/version/create/report.js.map +1 -0
- package/lib/commands/package/version/create.d.ts +40 -0
- package/lib/commands/package/version/create.js +220 -0
- package/lib/commands/package/version/create.js.map +1 -0
- package/lib/commands/package/version/delete.d.ts +21 -0
- package/lib/commands/package/version/delete.js +71 -0
- package/lib/commands/package/version/delete.js.map +1 -0
- package/lib/commands/package/version/displayancestry.d.ts +19 -0
- package/lib/commands/package/version/displayancestry.js +74 -0
- package/lib/commands/package/version/displayancestry.js.map +1 -0
- package/lib/commands/package/version/list.d.ts +40 -0
- package/lib/commands/{force/package → package}/version/list.js +56 -57
- package/lib/commands/package/version/list.js.map +1 -0
- package/lib/commands/package/version/promote.d.ts +18 -0
- package/lib/commands/{force/package → package}/version/promote.js +28 -25
- package/lib/commands/package/version/promote.js.map +1 -0
- package/lib/commands/package/version/report.d.ts +29 -0
- package/lib/commands/{force/package → package}/version/report.js +34 -32
- package/lib/commands/package/version/report.js.map +1 -0
- package/lib/commands/package/version/update.d.ts +22 -0
- package/lib/commands/package/version/update.js +77 -0
- package/lib/commands/package/version/update.js.map +1 -0
- package/lib/commands/package1/version/create/get.d.ts +15 -0
- package/lib/commands/{force/package1 → package1}/version/create/get.js +22 -14
- package/lib/commands/package1/version/create/get.js.map +1 -0
- package/lib/commands/package1/version/create.d.ts +28 -0
- package/lib/commands/package1/version/create.js +130 -0
- package/lib/commands/package1/version/create.js.map +1 -0
- package/lib/commands/package1/version/display.d.ts +16 -0
- package/lib/commands/{force/package1 → package1}/version/display.js +20 -18
- package/lib/commands/package1/version/display.js.map +1 -0
- package/lib/commands/package1/version/list.d.ts +16 -0
- package/lib/commands/{force/package1 → package1}/version/list.js +21 -20
- package/lib/commands/package1/version/list.js.map +1 -0
- package/messages/package1_version_create.md +33 -44
- package/messages/package1_version_create_get.md +11 -10
- package/messages/package1_version_display.md +10 -8
- package/messages/package1_version_list.md +14 -8
- package/messages/package_convert.md +31 -31
- package/messages/package_create.md +31 -40
- package/messages/package_delete.md +15 -20
- package/messages/package_displayancestry.md +25 -19
- package/messages/package_install.md +43 -52
- package/messages/package_install_report.md +9 -8
- package/messages/package_installed_list.md +9 -4
- package/messages/package_list.md +16 -13
- package/messages/package_uninstall.md +17 -15
- package/messages/package_uninstall_report.md +11 -10
- package/messages/package_update.md +13 -18
- package/messages/package_version_create.md +81 -127
- package/messages/package_version_create_list.md +26 -14
- package/messages/package_version_create_report.md +13 -10
- package/messages/package_version_delete.md +17 -17
- package/messages/package_version_list.md +29 -32
- package/messages/package_version_promote.md +22 -16
- package/messages/package_version_report.md +13 -14
- package/messages/package_version_update.md +23 -37
- package/messages/packaging.md +4 -12
- package/oclif.manifest.json +2455 -1
- package/package.json +61 -76
- package/schemas/package-convert.json +73 -0
- package/schemas/package-create.json +16 -0
- package/schemas/package-delete.json +72 -0
- package/schemas/package-install-report.json +169 -0
- package/schemas/package-install.json +169 -0
- package/schemas/package-installed-list.json +40 -0
- package/schemas/package-list.json +55 -0
- package/schemas/package-uninstall-report.json +51 -0
- package/schemas/package-uninstall.json +54 -0
- package/schemas/package-update.json +72 -0
- package/schemas/package-version-create-list.json +79 -0
- package/schemas/package-version-create-report.json +79 -0
- package/schemas/package-version-create.json +60 -0
- package/schemas/package-version-delete.json +72 -0
- package/schemas/package-version-displayancestry.json +61 -0
- package/schemas/package-version-list.json +146 -0
- package/schemas/package-version-promote.json +72 -0
- package/schemas/package-version-report.json +232 -0
- package/schemas/package-version-update.json +72 -0
- package/schemas/package1-version-create-get.json +91 -0
- package/schemas/package1-version-create.json +94 -0
- package/schemas/package1-version-display.json +37 -0
- package/schemas/package1-version-list.json +37 -0
- package/lib/commands/force/package/convert.d.ts +0 -11
- package/lib/commands/force/package/convert.js +0 -106
- package/lib/commands/force/package/convert.js.map +0 -1
- package/lib/commands/force/package/create.d.ts +0 -13
- package/lib/commands/force/package/create.js +0 -82
- package/lib/commands/force/package/create.js.map +0 -1
- package/lib/commands/force/package/delete.d.ts +0 -12
- package/lib/commands/force/package/delete.js +0 -63
- package/lib/commands/force/package/delete.js.map +0 -1
- package/lib/commands/force/package/install/report.d.ts +0 -12
- package/lib/commands/force/package/install/report.js +0 -39
- package/lib/commands/force/package/install/report.js.map +0 -1
- package/lib/commands/force/package/install.d.ts +0 -20
- package/lib/commands/force/package/install.js.map +0 -1
- package/lib/commands/force/package/installed/list.d.ts +0 -18
- package/lib/commands/force/package/installed/list.js.map +0 -1
- package/lib/commands/force/package/list.d.ts +0 -19
- package/lib/commands/force/package/list.js.map +0 -1
- package/lib/commands/force/package/uninstall/report.d.ts +0 -10
- package/lib/commands/force/package/uninstall/report.js +0 -44
- package/lib/commands/force/package/uninstall/report.js.map +0 -1
- package/lib/commands/force/package/uninstall.d.ts +0 -12
- package/lib/commands/force/package/uninstall.js +0 -55
- package/lib/commands/force/package/uninstall.js.map +0 -1
- package/lib/commands/force/package/update.d.ts +0 -11
- package/lib/commands/force/package/update.js +0 -63
- package/lib/commands/force/package/update.js.map +0 -1
- package/lib/commands/force/package/version/create/list.d.ts +0 -10
- package/lib/commands/force/package/version/create/list.js.map +0 -1
- package/lib/commands/force/package/version/create/report.d.ts +0 -11
- package/lib/commands/force/package/version/create/report.js.map +0 -1
- package/lib/commands/force/package/version/create.d.ts +0 -12
- package/lib/commands/force/package/version/create.js +0 -203
- package/lib/commands/force/package/version/create.js.map +0 -1
- package/lib/commands/force/package/version/delete.d.ts +0 -13
- package/lib/commands/force/package/version/delete.js +0 -66
- package/lib/commands/force/package/version/delete.js.map +0 -1
- package/lib/commands/force/package/version/displayancestry.d.ts +0 -13
- package/lib/commands/force/package/version/displayancestry.js +0 -70
- package/lib/commands/force/package/version/displayancestry.js.map +0 -1
- package/lib/commands/force/package/version/list.d.ts +0 -27
- package/lib/commands/force/package/version/list.js.map +0 -1
- package/lib/commands/force/package/version/promote.d.ts +0 -11
- package/lib/commands/force/package/version/promote.js.map +0 -1
- package/lib/commands/force/package/version/report.d.ts +0 -22
- package/lib/commands/force/package/version/report.js.map +0 -1
- package/lib/commands/force/package/version/update.d.ts +0 -11
- package/lib/commands/force/package/version/update.js +0 -73
- package/lib/commands/force/package/version/update.js.map +0 -1
- package/lib/commands/force/package1/version/create/get.d.ts +0 -10
- package/lib/commands/force/package1/version/create/get.js.map +0 -1
- package/lib/commands/force/package1/version/create.d.ts +0 -13
- package/lib/commands/force/package1/version/create.js +0 -115
- package/lib/commands/force/package1/version/create.js.map +0 -1
- package/lib/commands/force/package1/version/display.d.ts +0 -9
- package/lib/commands/force/package1/version/display.js.map +0 -1
- package/lib/commands/force/package1/version/list.d.ts +0 -9
- package/lib/commands/force/package1/version/list.js.map +0 -1
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/PackageInstallRequest",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"PackageInstallRequest": {
|
|
6
|
+
"$ref": "#/definitions/PackagingSObjects.PackageInstallRequest"
|
|
7
|
+
},
|
|
8
|
+
"PackagingSObjects.PackageInstallRequest": {
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"attributes": {
|
|
12
|
+
"$ref": "#/definitions/PackagingSObjects.Attributes"
|
|
13
|
+
},
|
|
14
|
+
"Id": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"IsDeleted": {
|
|
18
|
+
"type": "boolean"
|
|
19
|
+
},
|
|
20
|
+
"CreatedDate": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"CreatedById": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"LastModifiedDate": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"LastModifiedById": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
"SystemModstamp": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"SubscriberPackageVersionKey": {
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
38
|
+
"NameConflictResolution": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"enum": ["Block", "RenameMetadata"]
|
|
41
|
+
},
|
|
42
|
+
"SecurityType": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"enum": ["Custom", "Full", "None"]
|
|
45
|
+
},
|
|
46
|
+
"PackageInstallSource": {
|
|
47
|
+
"type": "string"
|
|
48
|
+
},
|
|
49
|
+
"ProfileMappings": {
|
|
50
|
+
"anyOf": [
|
|
51
|
+
{
|
|
52
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageProfileMappings"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "null"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
"Password": {
|
|
60
|
+
"type": ["string", "null"]
|
|
61
|
+
},
|
|
62
|
+
"EnableRss": {
|
|
63
|
+
"type": "boolean"
|
|
64
|
+
},
|
|
65
|
+
"UpgradeType": {
|
|
66
|
+
"type": ["string", "null"],
|
|
67
|
+
"enum": ["delete-only", "deprecate-only", "mixed-mode", null]
|
|
68
|
+
},
|
|
69
|
+
"ApexCompileType": {
|
|
70
|
+
"type": ["string", "null"],
|
|
71
|
+
"enum": ["all", "package", null]
|
|
72
|
+
},
|
|
73
|
+
"Status": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"enum": ["ERROR", "IN_PROGRESS", "SUCCESS", "UNKNOWN"]
|
|
76
|
+
},
|
|
77
|
+
"Errors": {
|
|
78
|
+
"anyOf": [
|
|
79
|
+
{
|
|
80
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageInstallErrors"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"type": "null"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"required": [
|
|
89
|
+
"attributes",
|
|
90
|
+
"Id",
|
|
91
|
+
"IsDeleted",
|
|
92
|
+
"CreatedDate",
|
|
93
|
+
"CreatedById",
|
|
94
|
+
"LastModifiedDate",
|
|
95
|
+
"LastModifiedById",
|
|
96
|
+
"SystemModstamp",
|
|
97
|
+
"SubscriberPackageVersionKey",
|
|
98
|
+
"NameConflictResolution",
|
|
99
|
+
"SecurityType",
|
|
100
|
+
"PackageInstallSource",
|
|
101
|
+
"EnableRss",
|
|
102
|
+
"Status"
|
|
103
|
+
],
|
|
104
|
+
"additionalProperties": false
|
|
105
|
+
},
|
|
106
|
+
"PackagingSObjects.Attributes": {
|
|
107
|
+
"type": "object",
|
|
108
|
+
"properties": {
|
|
109
|
+
"type": {
|
|
110
|
+
"type": "string"
|
|
111
|
+
},
|
|
112
|
+
"url": {
|
|
113
|
+
"type": "string"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"required": ["type", "url"],
|
|
117
|
+
"additionalProperties": false
|
|
118
|
+
},
|
|
119
|
+
"PackagingSObjects.SubscriberPackageProfileMappings": {
|
|
120
|
+
"type": "object",
|
|
121
|
+
"properties": {
|
|
122
|
+
"profileMappings": {
|
|
123
|
+
"type": "array",
|
|
124
|
+
"items": {
|
|
125
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageProfileMapping"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"required": ["profileMappings"],
|
|
130
|
+
"additionalProperties": false
|
|
131
|
+
},
|
|
132
|
+
"PackagingSObjects.SubscriberPackageProfileMapping": {
|
|
133
|
+
"type": "object",
|
|
134
|
+
"properties": {
|
|
135
|
+
"source": {
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
"target": {
|
|
139
|
+
"type": "string"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"required": ["source", "target"],
|
|
143
|
+
"additionalProperties": false
|
|
144
|
+
},
|
|
145
|
+
"PackagingSObjects.SubscriberPackageInstallErrors": {
|
|
146
|
+
"type": "object",
|
|
147
|
+
"properties": {
|
|
148
|
+
"errors": {
|
|
149
|
+
"type": "array",
|
|
150
|
+
"items": {
|
|
151
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageInstallError"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"required": ["errors"],
|
|
156
|
+
"additionalProperties": false
|
|
157
|
+
},
|
|
158
|
+
"PackagingSObjects.SubscriberPackageInstallError": {
|
|
159
|
+
"type": "object",
|
|
160
|
+
"properties": {
|
|
161
|
+
"message": {
|
|
162
|
+
"type": "string"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"required": ["message"],
|
|
166
|
+
"additionalProperties": false
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/PackageInstalledCommandResult",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"PackageInstalledCommandResult": {
|
|
6
|
+
"type": "array",
|
|
7
|
+
"items": {
|
|
8
|
+
"$ref": "#/definitions/PackageInstalledListResult"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"PackageInstalledListResult": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"Id": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"SubscriberPackageId": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"SubscriberPackageName": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"SubscriberPackageNamespace": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"SubscriberPackageVersionId": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"SubscriberPackageVersionName": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
"SubscriberPackageVersionNumber": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"required": ["Id"],
|
|
37
|
+
"additionalProperties": false
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/PackageListCommandResult",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"PackageListCommandResult": {
|
|
6
|
+
"type": "array",
|
|
7
|
+
"items": {
|
|
8
|
+
"$ref": "#/definitions/Package2Result"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"Package2Result": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"Id": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"SubscriberPackageId": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"Name": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"Description": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"NamespacePrefix": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"ContainerOptions": {
|
|
30
|
+
"$ref": "#/definitions/PackageType"
|
|
31
|
+
},
|
|
32
|
+
"ConvertedFromPackageId": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"PackageErrorUsername": {
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
38
|
+
"Alias": {
|
|
39
|
+
"type": "string"
|
|
40
|
+
},
|
|
41
|
+
"CreatedBy": {
|
|
42
|
+
"type": "string"
|
|
43
|
+
},
|
|
44
|
+
"IsOrgDependent": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"additionalProperties": false
|
|
49
|
+
},
|
|
50
|
+
"PackageType": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"enum": ["Managed", "Unlocked"]
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageVersionUninstallRequest",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"PackagingSObjects.SubscriberPackageVersionUninstallRequest": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"Id": {
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
"IsDeleted": {
|
|
12
|
+
"type": "boolean"
|
|
13
|
+
},
|
|
14
|
+
"CreatedDate": {
|
|
15
|
+
"type": "number"
|
|
16
|
+
},
|
|
17
|
+
"CreatedById": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"LastModifiedDate": {
|
|
21
|
+
"type": "number"
|
|
22
|
+
},
|
|
23
|
+
"LastModifiedById": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"SystemModstamp": {
|
|
27
|
+
"type": "number"
|
|
28
|
+
},
|
|
29
|
+
"SubscriberPackageVersionId": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
"Status": {
|
|
33
|
+
"type": "string",
|
|
34
|
+
"enum": ["Error", "InProgress", "Queued", "Success"]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"required": [
|
|
38
|
+
"Id",
|
|
39
|
+
"IsDeleted",
|
|
40
|
+
"CreatedDate",
|
|
41
|
+
"CreatedById",
|
|
42
|
+
"LastModifiedDate",
|
|
43
|
+
"LastModifiedById",
|
|
44
|
+
"SystemModstamp",
|
|
45
|
+
"SubscriberPackageVersionId",
|
|
46
|
+
"Status"
|
|
47
|
+
],
|
|
48
|
+
"additionalProperties": false
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/UninstallResult",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"UninstallResult": {
|
|
6
|
+
"$ref": "#/definitions/PackagingSObjects.SubscriberPackageVersionUninstallRequest"
|
|
7
|
+
},
|
|
8
|
+
"PackagingSObjects.SubscriberPackageVersionUninstallRequest": {
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"Id": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
},
|
|
14
|
+
"IsDeleted": {
|
|
15
|
+
"type": "boolean"
|
|
16
|
+
},
|
|
17
|
+
"CreatedDate": {
|
|
18
|
+
"type": "number"
|
|
19
|
+
},
|
|
20
|
+
"CreatedById": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"LastModifiedDate": {
|
|
24
|
+
"type": "number"
|
|
25
|
+
},
|
|
26
|
+
"LastModifiedById": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"SystemModstamp": {
|
|
30
|
+
"type": "number"
|
|
31
|
+
},
|
|
32
|
+
"SubscriberPackageVersionId": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"Status": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"enum": ["Error", "InProgress", "Queued", "Success"]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"required": [
|
|
41
|
+
"Id",
|
|
42
|
+
"IsDeleted",
|
|
43
|
+
"CreatedDate",
|
|
44
|
+
"CreatedById",
|
|
45
|
+
"LastModifiedDate",
|
|
46
|
+
"LastModifiedById",
|
|
47
|
+
"SystemModstamp",
|
|
48
|
+
"SubscriberPackageVersionId",
|
|
49
|
+
"Status"
|
|
50
|
+
],
|
|
51
|
+
"additionalProperties": false
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/PackageSaveResult",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"PackageSaveResult": {
|
|
6
|
+
"$ref": "#/definitions/SaveResult"
|
|
7
|
+
},
|
|
8
|
+
"SaveResult": {
|
|
9
|
+
"anyOf": [
|
|
10
|
+
{
|
|
11
|
+
"type": "object",
|
|
12
|
+
"properties": {
|
|
13
|
+
"success": {
|
|
14
|
+
"type": "boolean",
|
|
15
|
+
"const": true
|
|
16
|
+
},
|
|
17
|
+
"id": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"errors": {
|
|
21
|
+
"type": "array",
|
|
22
|
+
"items": {
|
|
23
|
+
"not": {}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"required": ["success", "id", "errors"],
|
|
28
|
+
"additionalProperties": false
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "object",
|
|
32
|
+
"properties": {
|
|
33
|
+
"success": {
|
|
34
|
+
"type": "boolean",
|
|
35
|
+
"const": false
|
|
36
|
+
},
|
|
37
|
+
"id": {
|
|
38
|
+
"not": {}
|
|
39
|
+
},
|
|
40
|
+
"errors": {
|
|
41
|
+
"type": "array",
|
|
42
|
+
"items": {
|
|
43
|
+
"$ref": "#/definitions/SaveError"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"required": ["success", "errors"],
|
|
48
|
+
"additionalProperties": false
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"SaveError": {
|
|
53
|
+
"type": "object",
|
|
54
|
+
"properties": {
|
|
55
|
+
"errorCode": {
|
|
56
|
+
"type": "string"
|
|
57
|
+
},
|
|
58
|
+
"message": {
|
|
59
|
+
"type": "string"
|
|
60
|
+
},
|
|
61
|
+
"fields": {
|
|
62
|
+
"type": "array",
|
|
63
|
+
"items": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"required": ["errorCode", "message"],
|
|
69
|
+
"additionalProperties": false
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/CreateListCommandResult",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"CreateListCommandResult": {
|
|
6
|
+
"type": "array",
|
|
7
|
+
"items": {
|
|
8
|
+
"$ref": "#/definitions/PackageVersionCreateRequestResult"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"PackageVersionCreateRequestResult": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"Id": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"Status": {
|
|
18
|
+
"$ref": "#/definitions/PackagingSObjects.Package2VersionStatus"
|
|
19
|
+
},
|
|
20
|
+
"Package2Id": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"Package2VersionId": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"SubscriberPackageVersionId": {
|
|
27
|
+
"type": ["string", "null"]
|
|
28
|
+
},
|
|
29
|
+
"Tag": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
"Branch": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"Error": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"items": {}
|
|
38
|
+
},
|
|
39
|
+
"CreatedDate": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
42
|
+
"HasMetadataRemoved": {
|
|
43
|
+
"type": ["boolean", "null"]
|
|
44
|
+
},
|
|
45
|
+
"CreatedBy": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"required": [
|
|
50
|
+
"Id",
|
|
51
|
+
"Status",
|
|
52
|
+
"Package2Id",
|
|
53
|
+
"Package2VersionId",
|
|
54
|
+
"SubscriberPackageVersionId",
|
|
55
|
+
"Tag",
|
|
56
|
+
"Branch",
|
|
57
|
+
"Error",
|
|
58
|
+
"CreatedDate",
|
|
59
|
+
"HasMetadataRemoved",
|
|
60
|
+
"CreatedBy"
|
|
61
|
+
],
|
|
62
|
+
"additionalProperties": false
|
|
63
|
+
},
|
|
64
|
+
"PackagingSObjects.Package2VersionStatus": {
|
|
65
|
+
"type": "string",
|
|
66
|
+
"enum": [
|
|
67
|
+
"Queued",
|
|
68
|
+
"InProgress",
|
|
69
|
+
"Success",
|
|
70
|
+
"Error",
|
|
71
|
+
"Initializing",
|
|
72
|
+
"VerifyingFeaturesAndSettings",
|
|
73
|
+
"VerifyingDependencies",
|
|
74
|
+
"VerifyingMetadata",
|
|
75
|
+
"FinalizingPackageVersion"
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/ReportCommandResult",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"ReportCommandResult": {
|
|
6
|
+
"type": "array",
|
|
7
|
+
"items": {
|
|
8
|
+
"$ref": "#/definitions/PackageVersionCreateRequestResult"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"PackageVersionCreateRequestResult": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"Id": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"Status": {
|
|
18
|
+
"$ref": "#/definitions/PackagingSObjects.Package2VersionStatus"
|
|
19
|
+
},
|
|
20
|
+
"Package2Id": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"Package2VersionId": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"SubscriberPackageVersionId": {
|
|
27
|
+
"type": ["string", "null"]
|
|
28
|
+
},
|
|
29
|
+
"Tag": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
"Branch": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"Error": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"items": {}
|
|
38
|
+
},
|
|
39
|
+
"CreatedDate": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
42
|
+
"HasMetadataRemoved": {
|
|
43
|
+
"type": ["boolean", "null"]
|
|
44
|
+
},
|
|
45
|
+
"CreatedBy": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"required": [
|
|
50
|
+
"Id",
|
|
51
|
+
"Status",
|
|
52
|
+
"Package2Id",
|
|
53
|
+
"Package2VersionId",
|
|
54
|
+
"SubscriberPackageVersionId",
|
|
55
|
+
"Tag",
|
|
56
|
+
"Branch",
|
|
57
|
+
"Error",
|
|
58
|
+
"CreatedDate",
|
|
59
|
+
"HasMetadataRemoved",
|
|
60
|
+
"CreatedBy"
|
|
61
|
+
],
|
|
62
|
+
"additionalProperties": false
|
|
63
|
+
},
|
|
64
|
+
"PackagingSObjects.Package2VersionStatus": {
|
|
65
|
+
"type": "string",
|
|
66
|
+
"enum": [
|
|
67
|
+
"Queued",
|
|
68
|
+
"InProgress",
|
|
69
|
+
"Success",
|
|
70
|
+
"Error",
|
|
71
|
+
"Initializing",
|
|
72
|
+
"VerifyingFeaturesAndSettings",
|
|
73
|
+
"VerifyingDependencies",
|
|
74
|
+
"VerifyingMetadata",
|
|
75
|
+
"FinalizingPackageVersion"
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/PackageVersionCommandResult",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"PackageVersionCommandResult": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"Id": {
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
"Status": {
|
|
12
|
+
"$ref": "#/definitions/PackagingSObjects.Package2VersionStatus"
|
|
13
|
+
},
|
|
14
|
+
"Package2Id": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"Package2VersionId": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"SubscriberPackageVersionId": {
|
|
21
|
+
"type": ["string", "null"]
|
|
22
|
+
},
|
|
23
|
+
"Tag": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"Branch": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"Error": {
|
|
30
|
+
"type": "array",
|
|
31
|
+
"items": {}
|
|
32
|
+
},
|
|
33
|
+
"CreatedDate": {
|
|
34
|
+
"type": "string"
|
|
35
|
+
},
|
|
36
|
+
"HasMetadataRemoved": {
|
|
37
|
+
"type": ["boolean", "null"]
|
|
38
|
+
},
|
|
39
|
+
"CreatedBy": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"additionalProperties": false
|
|
44
|
+
},
|
|
45
|
+
"PackagingSObjects.Package2VersionStatus": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"enum": [
|
|
48
|
+
"Queued",
|
|
49
|
+
"InProgress",
|
|
50
|
+
"Success",
|
|
51
|
+
"Error",
|
|
52
|
+
"Initializing",
|
|
53
|
+
"VerifyingFeaturesAndSettings",
|
|
54
|
+
"VerifyingDependencies",
|
|
55
|
+
"VerifyingMetadata",
|
|
56
|
+
"FinalizingPackageVersion"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|